Skip to content

Instantly share code, notes, and snippets.

View raphaelbastide's full-sized avatar
↪️
Recent code is on gitlab: https://gitlab.com/raphaelbastide/

Raphaël Bastide raphaelbastide

↪️
Recent code is on gitlab: https://gitlab.com/raphaelbastide/
View GitHub Profile
neu/*!
Pure v1.0.0
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
/*!
normalize.css v^3.0 | MIT License | git.io/normalize
Copyright (c) Nicolas Gallagher and Jonathan Neal
*/
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
@raphaelbastide
raphaelbastide / README.md
Last active August 29, 2015 14:21
rotate pdf

Rotation des pages d’un PDF

Ce script bash permet de changer l’orientation de certaines pages d’un PDF. Il nécessite PDFtk server, il faut donc l’installer au préalable. Une petite recherche vous permettra de trouver les instructions pour l’installation de PTFtksur Mac Os.

Utiliser le script

  1. Téléchargez le script
  2. Copiez votre PDF dans le répertoire où se trouve rotate.sh
  3. Éditez rotate.sh pour indiquer les pages que vous voulez garder à l’endroit et celles que vous voulez retourner
@raphaelbastide
raphaelbastide / README.md
Last active February 20, 2019 22:50
ABConnect

ABConnect

ABConnect illustration

ABConnect will help you to connect graphically two HTML elements with smart dependency-free JavaScript lines.

Demo

Try a demo.

@raphaelbastide
raphaelbastide / correction.md
Last active August 29, 2015 14:01
Brackets notation

Plain text notation for correction and review

This document has now its own repository.

How to use brackets [ ] to advise lossless corrections.

In short

[1][2][3]

Keybase proof

I hereby claim:

  • I am raphaelbastide on github.
  • I am raphael (https://keybase.io/raphael) on keybase.
  • I have a public key whose fingerprint is 6329 4F35 9A3E F86C 9C98 01BA FF38 02BE 007F 1142

To claim this, I am signing this object:

@raphaelbastide
raphaelbastide / zamiere.css
Created November 9, 2013 13:35
Brackets Zamiere theme fixed
.zamiere .panel {
background:#3C3F41;
}
.zamiere #status-bar,
.zamiere #status-indicators {
background:#242424;
color:#ccc;
}
@raphaelbastide
raphaelbastide / figure.snippet
Last active December 26, 2015 06:58
Brackets snippets https://github.com/jrowny/brackets-snippets/ Keyboard shortcuts: [Ctrl + . ] to apply and [Ctrl + Alt + . ] to list snippets.
<figure>
<img src=\"$${src}\" width=\"$${width}\" height=\"$${height}\" alt=\"$${alt}\" />
<figcaption>$${caption}</figcaption>
</figure>
@raphaelbastide
raphaelbastide / modul checkpt()
Last active December 22, 2015 10:18
A checkpoint static modul. Contains skin and behaviour.
var ctx = modul.context;
// Skin
function checkpt(ledColor){
function circle(x, y, r, col){
ctx.beginPath();
ctx.fillStyle = col;
ctx.arc(x, y, r, 0, Math.PI * 2, false);
ctx.closePath();
ctx.fill();
@raphaelbastide
raphaelbastide / modul follow()
Last active December 22, 2015 04:18
Your modul will follow the nearest modul
// follow
var activeFollow = false;
function follow(){
var siblingModuls = modul.sonar();
var c = modul.coordinates();
if(siblingModuls.length === 0){
ui.log("You seem alone…");
}else{
var modul1 = siblingModuls[0];
var mc = modul1.coordinates();