Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View gf3's full-sized avatar
🍊
workin' goodly

Gianni Chiappetta gf3

🍊
workin' goodly
View GitHub Profile
@gf3
gf3 / linked_list.c
Created April 20, 2010 18:25 — forked from Veejay/linked_list.c
Map in C
#include <stdio.h>
#include <stdlib.h>
struct node{
void* data;
struct node* next;
};
void set_int_value(struct node* node, int val)
{
@gf3
gf3 / fold.c
Created April 20, 2010 18:25 — forked from Veejay/fold.c
Inject in C
#include <stdio.h>
#include <stdlib.h>
struct node{
void* data;
struct node* next;
};
void set_int_value(struct node* node, int val)
{
@gf3
gf3 / comma-first-var.js
Created April 9, 2010 18:56 — forked from isaacs/comma-first-var.js
A better coding convention for lists and object literals in JavaScript
// See comments below.
// This code sample and justification brought to you by
// Isaac Z. Schlueter, aka isaacs
// standard style
var a = "ape",
b = "bat",
c = "cat",
d = "dog",
@gf3
gf3 / gist:361449
Created April 9, 2010 18:41 — forked from paulirish/gist:315916
Everyones favourite closure!
// everyone's new favorite closure pattern:
(function(window,document,undefined){ ... })(this,this.document);
// when minified:
(function(w,d,u){ ... })(this,this.document);
// which means all uses of window/document/undefined inside the closure
// will be single-lettered, so big gains in minification.
// it also will speed up scope chain traversal a tiny tiny little bit.
@gf3
gf3 / gist:357155
Created April 6, 2010 02:37 — forked from paulirish/gist:357048
Average hex colour
// get the average color of two hex colors.
function avgcolor(color1,color2){
var avg = function(a,b){ return (a+b)/2; },
t16 = function(c){ return parseInt((''+c).replace('#',''),16) },
hex = function(c){ return (c>>0).toString(16) },
hex1 = t16(color1),
hex2 = t16(color2),
r = function(hex){ return hex >> 16 & 0xFF},
g = function(hex){ return hex >> 8 & 0xFF},
b = function(hex){ return hex & 0xFF},
@gf3
gf3 / gist:349292
Created March 30, 2010 16:54 — forked from paulirish/gist:274913
jQuery backgroundPosition
// The CSS property backgroundPosition does not exist in the accessible DOM properties within IE 8.
// this monkeypatch retifies that issue
// usage: $(elem).css('backgroundPosition');
// ticket: http://dev.jquery.com/ticket/5749
(function($){
var _css = $.fn.css;
@gf3
gf3 / prototype-doc-workflow.txt
Created February 16, 2010 17:28 — forked from dandean/prototype-doc-workflow.txt
Prototype documentation workflow
#####
## INITIAL CONFIGURATION
#####
# Fork sstephenson/prototype on GitHub
# Go to this url and click the fork button. This will create a prototype
# repository under your GitHub account.
http://github.com/sstephenson/prototype
%h1.lol
NO U
@gf3
gf3 / getHtml.fuse.js
Created February 4, 2010 20:14
getHTML
(function($, doc) {
var getHTML = function getHTML() {
return $.String(this.raw.outerHTML);
};
if (!('outerHTML' in doc.documentElement)) {
var dummy = doc.createElement('html');
getHTML = function getHTML() {
dummy.appendChild(this.raw.cloneNode(true));
var result = dummy.innerHTML;
@gf3
gf3 / description.txt
Created December 18, 2009 07:12 — forked from mislav/description.txt
Git Workflow
so my workflow is that each ticket gets a branch. Before merging the branch to master
it needs to be peer-reviewed. So sometimes I have a bunch of branches that are off
being reviewed while I work on something else.
Currently when I run "git branch" I see:
[branch 1]
[branch 2]
[branch 3]
*[branch 4]
[branch 5]