This file contains 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
```css | |
/* | |
Github flavoured CSS for Quiver Note app. | |
http://happenapps.com) | |
https://github.com/HappenApps/Quiver | |
https://twitter.com/happenapps | |
Acknowledgments: | |
Modified version of https://gist.github.com/kcamcam/225a16f32409f0ae66f61569d6f706fc |
This file contains 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
SELECT DISTINCT fdfpmn.field_project_machine_name_value, pdd.dependency | |
FROM project_dependency_dependency pdd | |
LEFT JOIN project_dependency_component pdc ON pdc.component_id = pdd.component_id | |
LEFT JOIN field_data_field_release_project fdfrp ON fdfrp.entity_id = pdc.release_nid | |
LEFT JOIN field_data_field_project_machine_name fdfpmn on fdfpmn.entity_id = fdfrp.field_release_project_target_id | |
WHERE pdd.dependency IN (SELECT DISTINCT pdc.name FROM project_dependency_dependency pdd | |
LEFT JOIN project_dependency_component pdc ON pdc.component_id = pdd.component_id | |
LEFT JOIN field_data_field_release_project fdfrp ON fdfrp.entity_id = pdc.release_nid | |
LEFT JOIN field_data_field_project_machine_name fdfpmn on fdfpmn.entity_id = fdfrp.field_release_project_target_id | |
WHERE fdfpmn.field_project_machine_name_value = 'context') |
This file contains 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
# prevent the creation of .DS_Store files on network drives | |
# http://hints.macworld.com/article.php?story=2005070300463515 | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
#--------------------------------------------------------------------- | |
# Disable/enable Dashboard: | |
# http://hints.macworld.com/article.php?story=20050723123302403 | |
defaults write com.apple.dashboard mcx-disabled -boolean YES |
This file contains 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
require 'formula' | |
class Pngout < Formula | |
url 'http://static.jonof.id.au/dl/kenutils/pngout-20130221-darwin.tar.gz' | |
homepage 'http://www.jonof.id.au/kenutils' | |
sha256 '995cc1df35e68b723c8143ad82c058be763f9af4fc373894ec74de3e7f18d0dd' | |
version '20130221' | |
def install | |
prefix.install Dir['*'] |
This file contains 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
####################################################### | |
### nginx compact basic configuration start | |
####################################################### | |
### | |
### deny crawlers and bots without 403 response | |
### | |
if ($http_user_agent ~* (HTTrack|HTMLParser|libwww|wget|AutomaticSiteMap|bot) ) { | |
return 444; | |
} |
This file contains 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
####################################################### | |
### nginx.conf site wp vhost include start | |
####################################################### | |
### | |
### deny crawlers without 403 response | |
### | |
if ($http_user_agent ~* (HTTrack|HTMLParser|libwww|wget) ) { | |
return 444; | |
} |