Skip to content

Instantly share code, notes, and snippets.

View Nindouja's full-sized avatar

Nindouja Nindouja

  • Clermont-Ferrand, France
View GitHub Profile
@designbyadrian
designbyadrian / JavaScript Array functions for IE7.js
Last active January 19, 2017 08:57
ECMA262-5 MDC Fallback implementations
'use strict';
// Add ECMA262-5 method binding if not supported natively
//
if (!('bind' in Function.prototype)) {
Function.prototype.bind= function(owner) {
var that= this;
if (arguments.length<=1) {
return function() {
return that.apply(owner, arguments);
@pksunkara
pksunkara / config
Last active April 28, 2024 18:59
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta