Skip to content

Instantly share code, notes, and snippets.

View webplumbr's full-sized avatar
🐌
Hibernating

Prasanna webplumbr

🐌
Hibernating
View GitHub Profile
@webplumbr
webplumbr / my-iptv-list.m3u
Last active November 27, 2019 02:31
My IPTV list
#EXTM3U
#EXTINF:-1 tvg-logo="http://saalaitv.com/logo/IBCPAKIDI.png" group-title="Kids",IBC Kids Tamil
https://ibckids-origin.ibctamil.com/transcode/ibckids_std.m3u8
#EXTINF:-1 tvg-logo="https://video.toggle.sg/image/5249138/16x9/947/533/c658032fe6530ca661a7a94ca9f0354e/JR/vasantham.png" group-title="Tamil",Vasantham SG
https://d39v9xz8f7n8tk.cloudfront.net/hls/vsnthmctv/master02.m3u8
#EXTINF:-1 tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/201_300.png" group-title="Tamil",Astro வானவில்
http://playbackn18.aotg-video.astro.com.my/CH1/master_VAAN_8_05.m3u8
#EXTINF:-1 tvg-logo="http://cinemaworld.asia/wp-content/themes/CinemaWorld/bootstrap/img/logo.png" group-title="Movies",CinemaWorld SG
http://45.126.83.51:443/uq2663/h/h04/01.m3u8
#EXTINF:-1 tvg-logo="https://i.imgur.com/gHCOcuF.png" group-title="",CinemaWorld MY
@webplumbr
webplumbr / docker-getting-started
Last active October 5, 2015 22:30
Getting started with Docker
# fetch a new docker image from the hub
# NOTE: if you run in to permissions issue - run it as a sudo user
docker pull beh01der/logstash-es-kibana
# start a docker container as a daemon in the background
docker run -d beh01der/logstash-es-kibana
# listing active docker containers
docker ps
@webplumbr
webplumbr / searchable-pdf
Last active September 3, 2015 22:09
How to make a searchable PDF
#
# This pertains to making a searchable PDF
#
# (1) Make sure your scanner setting is set to either Greyscale or Full-Colour and 200 dpi.
# (2) You need to have the following installed on your Ubuntu (Debian) system
#
sudo apt-get install imagemagick tesseract-ocr
# (3) Once you get the scanned PDF sent to your Univ e-mail address, download it and run the following
@webplumbr
webplumbr / vagrant-getting-started
Last active January 8, 2017 05:10
Getting started with Vagrant
# If you are on a VM (like me), I did the following on Peppermint 5 VM on VirtualBox.
sudo apt-get install vagrant virtualbox
# Make a directory named demo.
mkdir demo
cd demo
# add vagrant virtual box that can be used to initialize VM instances
@webplumbr
webplumbr / git-commands
Last active September 3, 2015 22:10
A quick reference to git commands
# to add a local git branch
git branch <branch-name>
# switchover to a branch
git checkout <branch-name>
# merge trunk (master) with a branch
git checkout <branch-name>
git merge master