Skip to content

Instantly share code, notes, and snippets.

@elopezphy
elopezphy / video.js
Created May 24, 2018 10:31 — forked from Drubo/video.js
Node js on the fly video conversion
var child_process = require('child_process'),
sys = require('sys'),
http = require('http'),
parse = require('url').parse,
fs = require('fs');
var spawn = child_process.spawn;
var exec = child_process.exec;
@elopezphy
elopezphy / excel2csv.py
Created November 28, 2017 10:42 — forked from julianthome/excel2csv.py
Python script to export excel sheets to CSV from a workbook in UTF-8
#!/usr/bin/env python
# export data sheets from xlsx to csv
from openpyxl import load_workbook
import csv
from os import sys
def get_all_sheets(excel_file):
sheets = []
@elopezphy
elopezphy / osx-for-pentesting.sh
Created August 16, 2016 16:32 — forked from gabemarshall/osx-for-pentesting.sh
A fork of osx-for-hackers for my personal pentesting setup preferences
# OSX for Pentesting (Mavericks/Yosemite)
#
# A fork of OSX for Hackers (Original Source: https://gist.github.com/brandonb927/3195465)
#!/bin/sh
# Ask for the administrator password upfront
echo "Have you read through the script prior to running this? (y or n)"
read bcareful