Skip to content

Instantly share code, notes, and snippets.

View leogoncalves's full-sized avatar
🏠
Working from home

Leonardo Gonçalves leogoncalves

🏠
Working from home
View GitHub Profile
@leogoncalves
leogoncalves / syntax.s
Created April 3, 2017 02:59 — forked from mishurov/syntax.s
AT&T assembly syntax and IA-32 instructions
# --------
# Hardware
# --------
# Opcode - operational code
# Assebly mnemonic - abbreviation for an operation
# Instruction Code Format (IA-32)
# - Optional instruction prefix
# - Operational code
@leogoncalves
leogoncalves / laravel-lumen-5-homestead-win.md
Created October 18, 2015 04:08 — forked from prograhammer/laravel-lumen-5-homestead-win.md
Laravel/Lumen 5.1 Homestead for Windows (includes fixes for shared-folder related slowness, npm install problems, caching, etc)

Laravel / Lumen Homestead for Windows w/fixes

###Initial installation and configuration Install Git for Windows which includes Git Bash.

Install VirtualBox and Vagrant.

Note: Do not install VirtualBox 5.0 and Vagrant 1.7.4. At the moment these versions are causing problems that I've been unable to solve with this Gist. Use the previous versions instead. VirtualBox 4.3.30 and Vagrant 1.7.3.

@leogoncalves
leogoncalves / RSA.py
Last active August 29, 2015 14:22 — forked from avalonalex/RSA.py
#!/usr/bin/env python
import argparse
import copy
import math
import pickle
import random
from itertools import combinations