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
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 |
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
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. |
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
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 = []; |
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 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); | |
}; |
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
<html> | |
<head> | |
<style> | |
.imageList img { | |
transition: opacity 2s ease; | |
} | |
.imageList img.inactive { | |
opacity: 0; |
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
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 |
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
<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> |
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
Meteor.Router.add({ | |
'/': 'postsList', | |
'/posts/:_id': { | |
to: 'postPage', | |
and: function(id) { | |
Session.set('currentPostId', id); | |
} | |
} | |
}); |
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
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |
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
<html> | |
<head> | |
<title>Side By Side Div Example</title> | |
<style> | |
div.left-column { | |
background-color: yellow; | |
display: inline; | |
} |
NewerOlder