So I'm using skobbler/scoutmaps version 2.3 and I'm trying to include skmaps with SKMaps like so:
#import <SKMaps.h>
But I'm getting a SKMaps.h file not found error. In my pod I see that file and I've tried changing my header search paths but it's not working. Any help or ideas as to why this is happening would be appreciated. The other header files from skobbler and the other pods seem to work fine.
So I figured out it's supposed to be #import in case anyone else ran into the same issue.
Related
I've been trying to deploy my frontend portion of my fullstack app onto Heroku (linking it to the beckend also on Heroku) but I keep getting the same error. any thoughts? follows the message below and a print of the error... Any help is much appreciated!
Module not found: Error: Can't resolve 'react-bootstrap/card' in '/tmp/build_3c0b8276/src/components/card'
Thanks,
Danilo
I've tried everything that I've found on StackFlow and other internet sources and nothing seems to work... Change bootstrap versions, reinstall, check node versions, removing package-lock and so on...
I am trying to move an image from one folder into another folder by using:
Storage::move(storage_path('app/public/temporary/').$imageName, storage_path('app/public/profilePic/'.$imageName));
But when i run it gave me the error:
File not found at path: home/vagrant/code/avida/storage/app/public/temporary/5bfb7272e9dc9.download.jpeg
i google and found the following solution:
Storage::disk('local')->move(storage_path('app/public/temporary/').$imageName, storage_path('app/public/profilePic/'.$imageName));
but then it gave another error:
Method 'disk' not found in \Illuminate\Support\Facades\Storage
Can anyone please help me how can i move this file ?
Thank you
Storage class operate in storage directory so there is no need to use storage_path() helper.
Change your code to the one below:
Storage::move('public/temporary/'.$imageName, 'public/profilePic/'.$imageName);
I hope that helps :)
I've installed these https://github.com/holman/dotfiles .dotfiles, every thing works well, but as I see .zshrc dosent exist anymore in ~/.
So the thing is that I want to overwrite some config from the zshrc.symlink.
First I do ls -l .zshrc and I get /Users/hiero/.dotfiles/zsh/zshrc.symlink.
So if I edit the zshrc.symlink, I add
ZSH_THEME="honukai"
to change the theme but even if I restart, settings are not updated, and I see the old theme, if I $ZSH_THEME - command not found honukai.
I'm doing something wrong?
Can someone please explain how can I fix this?
So if I edit the zshrc.symlink, I add
ZSH_THEME="honukai"
You would need to do more than that. You will need to source your oh-my-zsh configuration, for example as the last statement in zshrc.symlink.
One way or another, if the oh-my-zsh configuration is not included, the theme will not be applied.
if I
$ZSH_THEME - command not found honukai.
Not very clear what you're trying to do there. It looks as if you're trying to run $ZSH_THEME, whose value is honukai, and there is no such command, "honukai".
Repro steps are as follows:
I have a main.css.scss file that looks like this:
#import "defaults";
I have a _defaults.scss file that looks like this:
body { background: #FFF; }
When I first start the site, everything looks good. If I change main.css.scss, everything works as expected. But changes to _defaults.scss are not picked up unless I restart the server or touch main.css.scss
A workaround would be greatly appreciated!
It's really hacky, but this does fix the issue. In one terminal, I run the docpad server. In another terminal, I run this command:
fswatch-run src/documents/css/_* 'touch ./src/documents/css/main.css.scss'
What this does is touch the main scss file any time any of the imported scss files are touched. This in turn causes docpad to pick up the change and recompile the scss. There's probably a much better way to do this, but this works at the moment.
It's too hacky for me to actually accept it as the answer, though.
I've trying to package up and old MVC 3 project to send it out but I keep getting a strange error where it telling me
'The file '/Views/Shared/print.Master' does not exist. /Views/Questionnaire/View.aspx'
But I can clearly see the file and have renamed it to try and fix it but no luck, then I tried changing the package settings to include everything but that too didn't fix it so does anybody have any idea why this could be happening? (btw it's a 2nd master file)
Any ideas or help would be much appreciated.
Solution was to check file Properties and set 'Build Action' to 'Content'.