Skip to content

Instantly share code, notes, and snippets.

View guilbep's full-sized avatar
🕸️
Locked in

Guilbert Pierre guilbep

🕸️
Locked in
View GitHub Profile
@guilbep
guilbep / Preferences.sublime-settings
Created December 13, 2013 16:12
My sublime text 3 user preferences
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"font_size": 9,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
80
@guilbep
guilbep / Gruntfile.js
Created December 13, 2013 15:54
best grunt file
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
main: {
files: [{
expand: true,
cwd: './partials/',
@guilbep
guilbep / quickBubbleSort.c
Last active December 31, 2015 05:58
I made a bubble sort algorithm not very effective just for the purpose of showing how.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct list {
struct list* next;
int value;
} s_list;