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://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
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
Linux / OS X: | |
export npm_config_strict-ssl=false | |
npm install npm -g --ca=null | |
npm --version | |
unset npm_config_strict-ssl | |
Windows: |
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
--- | |
admin: | |
access_log_path: "/tmp/admin_access.log" | |
address: | |
socket_address: | |
address: "127.0.0.1" | |
port_value: 9901 | |
stats_sinks: | |
- | |
name: "envoy.statsd" |
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
// Modified from: http://www.labnol.org/internet/gmail-auto-purge/27605/ | |
// Labels to support | |
// Delete after 15 days | |
// Delete after 30 days | |
// Delete after 90 days | |
var days = [15,30,90]; | |
function Intialize() { | |
return; |
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
import Prelude hiding (lookup) | |
class MapLike m where | |
empty :: m k v | |
lookup :: Ord k => k -> m k v -> Maybe v | |
insert :: Ord k => k -> v -> m k v -> m k v | |
delete :: Ord k => k -> m k v -> m k v | |
fromList :: Ord k => [(k,v)] -> m k v | |
newtype ArrowMap k v = ArrowMap { getArrowMap :: k -> Maybe v } |
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
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
OlderNewer