This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |