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
| dscacheutil -flushcache |
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
| find -print0 | xargs -0 cmd |
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
| openssl req -new -newkey rsa:2048 -nodes -keyout <domain>.key -out <domain>.csr |
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
| git push origin :branch_name |
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
| 'use strict'; | |
| var _ = require('lodash'); | |
| _.mixin({compactObject: _.partialRight(_.pick, _.identity)}); |
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
| /* http://css-tricks.com/centering-in-the-unknown/ */ | |
| /* This parent can be any width and height */ | |
| .block { | |
| text-align: center; | |
| } | |
| /* The ghost, nudged to maintain perfect centering */ | |
| .block:before { | |
| content: ''; |
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
| chrome://net-internals/#dns |
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
| db.users.aggregate( | |
| { $group : {_id : "$msisdn", total : { $sum : 1 } } }, | |
| { $match : { total : { $gte : 2 } } }, | |
| { $sort : {total : -1} } | |
| ); | |
| db.places.aggregate( | |
| { $group : {_id : "$extra_info.id", total : { $sum : 1 } } }, | |
| { $match : { total : { $gte : 2 } } }, |
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
| (typeof jQuery === "undefined" ? $ : jQuery).fn.jquery |
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
| require "formula" | |
| class Luarocks < Formula | |
| homepage "http://luarocks.org" | |
| url "http://luarocks.org/releases/luarocks-2.2.0.tar.gz" | |
| sha1 "e2de00f070d66880f3766173019c53a23229193d" | |
| revision 1 | |
| bottle do | |
| sha1 "eabd3d0f2bb7979ac831ce948e8d288569d2a0c8" => :mavericks |
OlderNewer