Skip to content

Instantly share code, notes, and snippets.

View Dileesha-abilash's full-sized avatar

dileesha abilash Dileesha-abilash

View GitHub Profile
@safinahmed
safinahmed / readme.md
Last active June 9, 2025 06:49
Javascript to export TradingView Screener as CSV

TradingView Screener Exporter

Simple JS to export the result of a TradingView Screener (https://www.tradingview.com/screener/) to CSV

Provides 2 methods to download the whole table wth headers, or only the tickers without headers

Run the whole script on the console, then run method exportTable to export everything, or exportTickers for tickers only

@jhaddix
jhaddix / all.txt
Last active November 24, 2025 14:42
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
import requests
import sys
import json
def waybackurls(host, with_subs):
if with_subs:
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host
else:
url = 'http://web.archive.org/cdx/search/cdx?url=%s/*&output=json&fl=original&collapse=urlkey' % host
@lpsandaruwan
lpsandaruwan / windows_font_installer.py
Last active November 14, 2025 13:10
Install a font file in Windows - Python3
""" Python 3 Windows font installer
Script must be run with the privileges in order to access Windows fonts directory. System reboot is not necessary.
This will install the font and will inform programs that a new font has been added.
Python3 Windows font installer is a free python script: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.