- https://github.com/storozhukBM/verifier
- golang package to validate data
Spend at least as much time playing to your strengths as working on your weaknesses.
Alex Moore, CEO of Boomerang
Karma is real, but it’s not always your job to serve it.
Maurice Cherry, designer
My mother used to say, “You become your friends.” It’s true—over time, you start to reflect the people you hang around. This has inspired me to pick really good friends who are role models for me and lift me up.
Ben Chestnut, co-founder of Mailchimp
Stop doing that.
- D'où vient le long dédain de l'école pour les matières techniques? - 26/01/2019
- avec : Thierry Weil, Professeur à Mines Paristech + Laurence Decreau, agrégée de lettres classiques
- d-ou-vient-le-long-dedain-ecole-matieres-techniques
-
Quoi Hegel ? Qu'est-ce qu'il a Hegel ? (4/4) - Le droit, c'est la vie - 03/05/2018
- avec : Jean-François KERVÉGAN, professeur de philosophie à l’Université Paris 1 Panthéon-Sorbonne
- hegel-le-droit-cest-la-vie
-
Quoi Hegel ? Qu'est-ce qu'il a Hegel ? (3/4) - L'Histoire a-t-elle un sens ? - 02/05/2018
- avec : Gilles MARMASSE, professeur de philosophie à l’université de Poitiers
- hegel-lhistoire-a-t-elle-un-sens
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
restore() { | |
if test ! $(which gcc); then | |
echo "Installing xcode..." | |
xcode-select --install | |
fi | |
if test ! "$(which brew)"; then | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH=$HOME/.oh-my-zsh | |
### REQUIREMENTS | |
function reinstall() { | |
echo "installing oh-my-zsh \n" | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
echo "installing plugins \n" | |
curl -L https://iterm2.com/shell_integration/zsh -o ~/.iterm2_shell_integration.zsh | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import sys | |
def main(): | |
archive = sys.argv[1] | |
dictionary = sys.argv[2] | |
with open(dictionary, "r") as dic: | |
for line in dic: | |
word = line.rstrip('\n') | |
stdout = subprocess.call( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import sys | |
def main(): | |
dictionary = sys.argv[1] | |
with open(dictionary, "r") as dic: | |
for line in dic: | |
word = line.rstrip('\n') | |
stdout = subprocess.call( | |
'ssh-keygen -c -C "user@server" -P "{0}" -f "./id_rsa"'.format(word), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
CONSOLE_ARGUMENTS = None | |
def test(): | |
print(CONSOLE_ARGUMENTS.color_enabled) | |
def main(): | |
parser = argparse.ArgumentParser(description='test script with global argparse') |