- Install clang-omp using homebrew:
brew install clang-omp
- Create a new Xcode project.
- Under Build Settings
- add a new user-defined setting CC with the value
/usr/local/bin/clang-omp
- Add
-fopenmp
to Other C Flags - Add
/usr/local/include
to Header Search Paths - Set Enable Modules (C and Objective-C) to
No
- add a new user-defined setting CC with the value
- Under Build Phases
- Add
/usr/local/lib/libiomp5.dylib
to Link Binary With Libraries
- Add
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location /owncloud/ { | |
error_page 403 = /owncloud/core/templates/403.php; | |
error_page 404 = /owncloud/core/templates/404.php; | |
client_max_body_size 0; | |
proxy_buffering off; | |
rewrite ^/owncloud/caldav(.*)$ /owncloud/remote.php/caldav$1 redirect; | |
rewrite ^/owncloud/carddav(.*)$ /owncloud/remote.php/carddav$1 redirect; | |
rewrite ^/owncloud/webdav(.*)$ /owncloud/remote.php/webdav$1 redirect; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# System tweaks | |
## Quicklook | |
* Markdown preview: http://inkmarkapp.com/markdown-quick-look-plugin-mac-os-x/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sayMyName = function(batches) { | |
var sale = do_sell(batches); | |
if(sale) { | |
message('Heisenberg!!!'); | |
pd.stats.hand_sold_widgets += sale; | |
fix_make_sell(); | |
return sale; | |
} | |
} |
NewerOlder