Skip to content

Instantly share code, notes, and snippets.

View nhed's full-sized avatar
💭
but why

Nevo Hed nhed

💭
but why
View GitHub Profile
@pystardust
pystardust / pdf_contrast.py
Created May 1, 2022 21:09
Change contrast of pdf using python
"""
# pdf_contrast.py
Modify contrast of pdf
## Install
```
pip install Pillow pdf2image img2pdf tqdm
```
> Save this file as pdf_contrast.py
@narate
narate / fblive-dl.sh
Created June 12, 2017 16:27
Facebook live downloader [ Update : Facebook change permission to access m3u8 url :'( ]
#!/bin/bash
if [ $# -eq 0 ]
then
echo "Usage : $0 url [output]"
exit
fi
VID=$(basename $1)
@kevincennis
kevincennis / Scam.md
Last active December 26, 2015 17:29
Scam

Oct 24

Please contact me for a transaction. Claudia.

Oct 24

Oh, hello.

Oct 25

@marcelom
marcelom / pysyslog.py
Created December 5, 2012 18:06
Tiny Python Syslog Server
#!/usr/bin/env python
## Tiny Syslog Server in Python.
##
## This is a tiny syslog server that is able to receive UDP based syslog
## entries on a specified port and save them to a file.
## That's it... it does nothing else...
## There are a few configuration parameters.
LOG_FILE = 'youlogfile.log'