Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View wo0dyn's full-sized avatar

Nicolas Dubois wo0dyn

View GitHub Profile
@wo0dyn
wo0dyn / gist:3340763
Last active March 17, 2023 11:04
Write “KFC” with one-line-script using the string “Kentucky Fried Chicken” once.

KFC

Write KFC with one-line-script using the string “Kentucky Fried Chicken” once.

Bash

for w in $(echo "Kentucky Fried Chicken" | tr " " "\n"); do echo -n ${w:0:1}; done;

PyElliptic

PyElliptic is a high level wrapper for the cryptographic library : OpenSSL. Under the GNU General Public License

Python3 compatible. For GNU/Linux and Windows. Require OpenSSL

Features

Create user and database for PostgreSQL

Just a simple script to create a user and its database easily.

Requirements

Tested w/ PostgreSQL 8.4 on Mint 11 (±Ubuntu). Be careful to use md5 in your pg_hba.conf.

Installation

@wo0dyn
wo0dyn / gist:4113739
Created November 19, 2012 20:41
GitHub HOW-TO “Resync a fork from original repo”

GitHub HOW-TO “Resync a fork from original repo”

I forked a repo dzen/omgcats a couple weeks ago on duboisnicolas/omgcats. I missed some commits so I need to resynchronize dzen/omgcats on duboisnicolas/omgcats.

$ git clone git://github.com/duboisnicolas/omgcats.git
$ cd omgcats 
# New branch for latest commits:
$ git checkout -b upstream/master
# Add new remote upstream from original repo:
# make sure there's no TODO, debugging... left
errors=0
for bad in 'import pdb' 'import ipdb' 'TODO' 'print' 'assert False'; do
echo ">> checking for '$bad'"
res=$(git diff-index --name-only --cached $against -S"$bad" --)
if test -n "$res"; then # if not empty, found some guilty files
echo "ERROR, found '$bad' in files commited:"
echo $res
errors=$(($errors + 1))
fi

Jean-Michel Armand, aka JMad

Djangonaute cheminot-entrepreneur-rôliste sous licence GPL.

… TU FERAS DU SYMFONY 2 !

busting up

@wo0dyn
wo0dyn / ovh_deploy_simulation.py
Last active December 28, 2015 17:28
/me en train de déployer une petite application Django sur un serveur mutualisé d'OVH…
# -*- coding: utf-8 -*-
from random import choice
import sys
from webbrowser import open_new as please_help_me
def switch_to(app):
print('⌘ + ⇥ to ' + app.title())