Skip to content

Instantly share code, notes, and snippets.

View Deathnerd's full-sized avatar

Wes Gilleland Deathnerd

  • eLink Design
  • Lexington, KY
View GitHub Profile
@Deathnerd
Deathnerd / using_git-svn.md
Last active July 21, 2018 16:33 — forked from rickyah/using_git-svn.md
A simple guide to git-svn

Getting started with git-svn

git-svn is a git command that allows using git to interact with Subversion repositories.git-svn is part of git, meaning that is NOT a plugin but actually bundled with your git installation. SourceTree also happens to support this command so you can use it with your usual workflow.

Reference: http://git-scm.com/book/en/v1/Git-and-Other-Systems-Git-and-Subversion

Cloning the SVN repository

You need to create a new local copy of the repository with the command

@Deathnerd
Deathnerd / ssid-sniffer-scapy-python.py
Created November 23, 2016 18:34 — forked from securitytube/ssid-sniffer-scapy-python.py
WLAN SSID Sniffer in Python using Scapy
#!/usr/bin/env python
from scapy.all import *
ap_list = []
def PacketHandler(pkt) :
if pkt.haslayer(Dot11) :
if pkt.type == 0 and pkt.subtype == 8 :
@Deathnerd
Deathnerd / Test.py
Created February 27, 2016 17:42 — forked from anonymous/Test.py
def factorial(n):
if (n == 0):
return 1
elif (n == 1):
return n
else:
return n * factorial(n-1)
def nCk(n,k):
return factorial(n)/(factorial(k)*factorial(n-k))