Skip to content

Instantly share code, notes, and snippets.

View neilghosh's full-sized avatar
🇮🇳

Neil Ghosh neilghosh

🇮🇳
View GitHub Profile
@steven2358
steven2358 / ffmpeg.md
Last active April 21, 2024 02:08
FFmpeg cheat sheet
@AlanHohn
AlanHohn / makecsv.py
Created January 19, 2017 13:59
Generate a random CSV in Python
#!/usr/bin/python
import csv
import random
records=9000000
print("Making %d records\n" % records)
fieldnames=['id','name','age','city']
writer = csv.DictWriter(open("people.csv", "w"), fieldnames=fieldnames)