This file contains 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
/** | |
* Script for generating Facebook user's own liked pages status report as JSON. The report consists of active, inactive, | |
* unavailable page Ids validated based on page's latest post time. | |
* | |
* Unfortunately Facebook doesn't support "unlike" a page via API. So, these IDs should be used with a userscript. | |
*/ | |
const got = require("got"); | |
const cheerio = require("cheerio"); | |
const fs = require("fs"); |
This file contains 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
@ECHO off | |
ECHO :: GIF to WEBM Converter :: | |
ECHO --------------------------- | |
:: Replace this ffmpeg variable value with your own ffmpeg.exe path. | |
SET ffmpeg=%USERPROFILE%\Programs\JDownloader\tools\Windows\ffmpeg\x64\ffmpeg.exe | |
SET command=%ffmpeg% -i "%%f" -c:v libvpx-vp9 -b:v 0 -crf 30 -an -f webm -passlogfile "%TEMP%\ffmpeg2pass.log" | |
SET /P folder="Input directory path: " |
This file contains 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
@ECHO OFF | |
COLOR 00 | |
ECHO :: WiFi Hotspot Utility :: | |
ECHO -------------------------- | |
:: Set your desired Network name to "ssid" and Password to "key" variable. | |
netsh wlan set hostednetwork mode=allow ssid=HomePC key=Hello_World >nul | |
netsh wlan start hostednetwork | |
ECHO ! Did you enable Internet Connection Sharing of your connected modem? |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
A Python 3 script to copy latest VPNBook password to clipboard. | |
Copy to clipboard is supported on Windows / macOS. | |
Author: Nissan Ahmed | |
""" | |
import os |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
A python 3 script to reboot TP-LINK routers. | |
Tested on: TD-W8950N / TD-W8950ND. | |
Author: Nissan Ahmed | |
""" | |
import base64 |