As configured in my dotfiles.
start new:
tmux
start new with session name:
(function (window, document, $, undefined) { | |
if (!$.Deferred) throw 'jQuery 1.5 is required to use the jQuery.oauth script!'; | |
function require(name, url) { | |
if (window[name] === undefined) | |
return $.ajax({ type: 'GET', cache: true, dataType: 'script', url: url }); | |
} | |
$.oauth = function (options) { | |
var d = $.Deferred(); |
As configured in my dotfiles.
start new:
tmux
start new with session name:
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
/** | |
* Module dependencies. | |
*/ | |
var express = require('express') | |
// , routes = require('./routes') | |
// , user = require('./routes/user') | |
, http = require('http') | |
, path = require('path'); |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
stuff: { | |
dest: 'foo/', | |
ext: '.bar', | |
}, | |
log_files: { | |
my_target: { | |
files: grunt.file.expandMapping('**/*.js', '<%= stuff.dest %>', { |
gifify() { | |
if [[ -n "$1" ]]; then | |
if [[ $2 == '--good' ]]; then | |
ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png | |
time convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $1.gif | |
rm out-static*.png | |
else | |
ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
fi | |
else |