View Delete branches older than one month locally and on remote.sh
for k in $(git branch | sed /\*/d); do | |
if [ -n "$(git log -1 --before='1 month ago' -s $k)" ]; then | |
git branch -D $k | |
git push origin --delete $k | |
fi | |
done |
View fyi-def.txt
FYI - For Your Information. | |
I just want to add a useful comment to your pull request. | |
There's no need to make changes right now. | |
This comment is not blocking a merge of this PR from happening. |
View hash.js
function hash(obj) { | |
var cache = []; | |
function sanitize(obj) { | |
if (obj === null) { return obj; } | |
if (['undefined', 'boolean', 'number', 'string', 'function'].indexOf(typeof(obj)) >= 0) { return obj; } | |
if (typeof(obj)==='object') { | |
var keys = Object.keys(obj).sort(), | |
values = []; |
View ancestry-of-attributes.js
var ancestryOfAttributes = function(targetNode){ | |
result = []; | |
while(targetNode.parentNode){ | |
var attrs = []; | |
for(var i=0; i<targetNode.attributes.length; i++){ attrs.push(targetNode.attributes[i].nodeName); } | |
result.unshift(attrs.join(",")); | |
targetNode = targetNode.parentNode | |
} | |
return JSON.stringify(result, undefined, 4); | |
}; |
View gist:a8c58d2e911ace1ca7c8
<html> | |
<head> | |
<style> | |
.imageList img { | |
transition: opacity 2s ease; | |
} | |
.imageList img.inactive { | |
opacity: 0; |
View code_eval_score.py
def get_submission_score(score, memory_taken, time_taken, category): | |
""" | |
@param score: the score which is received by test-cases | |
@param memory_taken: memory taken by submission | |
@param time_taken: time taken by submission | |
@param category: Easy(1)/Moderate(2)/Hard(3) | |
""" | |
total_max = { | |
1: 35, # max 35 points for Easy challenge |
View gist:11139437
<template name="postItem"> | |
<div class="post"> | |
<div class="post-content"> | |
<h3><a href="{{url}}">{{title}}</a><span>{{domain}}</span></h3> | |
</div> | |
<a href="{{postPagePath this}}" class="discuss btn">Discuss</a> | |
</div> | |
</template> |
View gist:11139409
Meteor.Router.add({ | |
'/': 'postsList', | |
'/posts/:_id': { | |
to: 'postPage', | |
and: function(id) { | |
Session.set('currentPostId', id); | |
} | |
} | |
}); |
View .vimrc
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |
View gist:5351634
<html> | |
<head> | |
<title>Side By Side Div Example</title> | |
<style> | |
div.left-column { | |
background-color: yellow; | |
display: inline; | |
} |
NewerOlder