Skip to content

Instantly share code, notes, and snippets.

View guillaumevincent's full-sized avatar

Guillaume Vincent guillaumevincent

View GitHub Profile
@guillaumevincent
guillaumevincent / README.md
Last active December 9, 2024 14:37
Windows Service with Python 3.5 and pyinstaller
@guillaumevincent
guillaumevincent / output.txt
Created January 15, 2017 11:12
zmq lost message PUSH/PULL
$ python push.py
message n°0
message n°1
message n°2
message n°3
message n°4
message n°5
message n°6
message n°7
message n°8
@guillaumevincent
guillaumevincent / index.html
Created June 14, 2017 16:34
test async copy
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test</title>
</head>
<body>
@guillaumevincent
guillaumevincent / installation.md
Last active August 9, 2018 16:08
react-native-navigation v2 react-native 0.56 android installation

Installing

Requirements

  • node >= 8
  • react-native >= 0.56

npm

  • npm install --save react-native-navigation@alpha

Android

words = "gruyère apporter rituel mallette anguleux intime irréel ralentir posture orque grand fatal donner négation carotte replier nocif opprimer tenir accolade éprouver sonde tambour cylindre"
import binascii
from mnemonic import mnemonic
from bip32 import BIP32
import base58
import hashlib
mnemo = mnemonic.Mnemonic("french")
@guillaumevincent
guillaumevincent / portefeuille.test.ts
Last active December 23, 2020 16:39
ES Typescript Kata
interface IEvenement {}
class Depot implements IEvenement {
valeur: number;
constructor(valeur: number) {
this.valeur = valeur;
}
}