Skip to content

Instantly share code, notes, and snippets.

Avatar
🍕
Eating pizza

Andrius Putna fordnox

🍕
Eating pizza
View GitHub Profile
@fordnox
fordnox / DNS_TO_LOCALHOST.markdown
Created November 18, 2022 14:16 — forked from tinogomes/DNS_TO_LOCALHOST.markdown
Public DNS Pointing to localhost (127.0.0.1)
View DNS_TO_LOCALHOST.markdown

Available Public Wildcard DNS Domains pointing to localhost (127.0.0.1)

DISCLAIMER: I have no responsibility for any domains listed here, or in the comments, and if any of them capture any data transmitted by the HTTP request. At any time, any of the domains listed in this article may stop working (except localhost).

It turns out that some kind hearted people already set up wildcard domains for you already. You can use any domain below and/or any subdomain of these and they currently resolve to 127.0.0.1 but could switch at any time to resolve somewhere else. Here's the list of ones I know about. Let me know if there are more!

NOTE: You can (and should) check if any domain resolve to 127.0.0.1.

  • localhost - It will always works. Do you know why? <--- Now there's no sorry.
  • [*.]fbi.com - 👏 👏 👏 👏 👏
@fordnox
fordnox / clone_and_push.bash
Created September 22, 2022 17:37 — forked from antomor/clone_and_push.bash
make a private fork of a public repo
View clone_and_push.bash
# from https://stackoverflow.com/a/30352360/6816965
# 1. clone the publish repo and push it into the private one
git clone --bare https://github.com/exampleuser/public-repo.git
cd public-repo.git
git push --mirror https://github.com/yourname/private-repo.git
cd ..
rm -rf public-repo.git
# 2. work on the private repository as usual
@fordnox
fordnox / postgres-brew.md
Created July 6, 2022 05:24 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)
View postgres-brew.md
@fordnox
fordnox / cloudflare_bulk_delete_dns.py
Created February 4, 2022 10:30 — forked from almazkun/cloudflare_bulk_delete_dns.py
Cloudflare bulk delete dns
View cloudflare_bulk_delete_dns.py
"""
This module is contains a handy tool to bulk delete DNS records from Cloudflare DNS via API
Usage:
```bash
git clone https://gist.github.com/bb15b3fc54ec6cbe7476b52c49e7c4aa.git
cd bb15b3fc54ec6cbe7476b52c49e7c4aa
python3 ./cloudflare_bulk_delete_dns.py your_api_token zone_id
```
"""
View static_server.js
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);
View BoxBillingApi.php
<?php
/**
* BoxBilling
*
* LICENSE
*
* This source file is subject to the license that is bundled
* with this package in the file LICENSE.txt
* It is also available through the world-wide-web at this URL:
* http://www.boxbilling.com/LICENSE.txt