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
# Tools installation | |
pip install gitinspector | |
gem install git_stats | |
# Generate the reports | |
cd git_proj | |
git_stats generate | |
gitinspector -f php,js,less -F html > git_stats/inspector.html | |
# Generate time-sheets |
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
$app->register('Jenssegers\Mongodb\MongodbServiceProvider'); | |
$app->withEloquent(); | |
$app->withFacades(); | |
config(['database.connections.mongodb' => array( | |
'driver' => 'mongodb', | |
'host' => env('DB_HOST', 'localhost'), | |
'port' => env('DB_PORT', 27017), | |
'username' => env('DB_USERNAME'), |
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
import urllib2, urllib | |
import simplejson | |
opener = urllib2.build_opener() | |
opener.addheaders = [('User-agent', 'Mozilla/5.0')] | |
class ImageApi(object): | |
uri = "http://ajax.googleapis.com/ajax/services/search/images?v=1.0&%s" | |
params = { 'q': 'term', 'imgsz': 'medium|large|xlarge', 'start': 0, 'imgtype': 'photo' } |
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
/** | |
Based on the work: | |
- http://jsfiddle.net/josedvq/3HG6d/ | |
- http://codeitdown.com/css-triangles-responsive/ | |
*/ | |
.responsive-triangle-base(@size; @color;) { | |
width: @size/2; | |
height: 0; |
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
$('textarea').on('keyup', function() { | |
// store cursor location | |
var start = this.selectionStart, | |
end = this.selectionEnd, | |
len = this.value.length; | |
// remove duplicate spaces from field | |
$(this).val( | |
this.value.trim() | |
.replace(/(\n\n)+/g, '\n') |
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
/** | |
* IPython Commands | |
*/ | |
shell: { | |
ipnb_kernel: { | |
command: 'ssh me@server "nohup ipython kernel &> kernel.log &"' | |
}, | |
ipnb_kernel_json: { | |
command: 'rsync -t me@server:~/.ipython/profile_default/security/kernel* ./kernel/' | |
}, |
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
<?php | |
class Csv_Writer | |
{ | |
public $stream, $wrote = false; | |
function __construct() { | |
header( 'Content-Type: text/csv' ); | |
$this->stream = fopen('php://output', 'w'); | |
} |
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
$(window).on('load', function() { | |
var player = $('video.wp-video-shortcode').data('mediaelementplayer'); | |
player.options.success = function(media, dom) { | |
if (media.pluginType === 'flash') { | |
media.addEventListener('canplay', function() { | |
// Player is ready | |
media.play(); | |
}, false); | |
} else { | |
media.play(); |
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
$.extend(true, $.magnificPopup.defaults, { | |
// Allow embed youtube (playlist, etc) | |
iframe: { | |
patterns: { | |
youtube: { | |
index: 'youtube.com', | |
id: function(src) | |
{ | |
// link pattern | |
var mt = src.match(/v=([^&]+)(&(.*))?/); |
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
diff -rupN yaffey-orig/main.cpp yaffey-qt5/main.cpp | |
--- yaffey-orig/main.cpp 2014-06-11 20:01:50.155769286 -0300 | |
+++ yaffey-qt5/main.cpp 2014-06-11 20:24:07.659482714 -0300 | |
@@ -16,7 +16,7 @@ | |
* along with this program. If not, see <http://www.gnu.org/licenses/> | |
*/ | |
-#include <QtGui/QApplication> | |
+#include <QApplication> | |
NewerOlder