Skip to content

Instantly share code, notes, and snippets.

View fordnox's full-sized avatar
🍕
Eating pizza

Andrius Putna fordnox

🍕
Eating pizza
View GitHub Profile
@fordnox
fordnox / Makefile
Created November 1, 2023 11:31
Random echo between 2 values in Makefile
#!make
run:
@if [ $$(($$RANDOM % 2)) -eq 0 ]; then \
echo 1; \
else \
echo 2; \
fi
@fordnox
fordnox / makefile
Created October 5, 2023 09:08
clean all docker shit makefile target
clean:
docker stop $$(docker ps -aq) || true
docker rm $$(docker ps -aq) || true
docker container prune -f || true
docker rmi $$(docker images -q) || true
docker image prune -f || true
docker volume rm $$(docker volume ls -q) || true
@fordnox
fordnox / convert-md-html.sh
Created June 30, 2023 07:35
Convert all folder markdown files to html
find ./content -name '*.md' | xargs -n 1 bash -c 'pandoc -f markdown -t html -o "${1/.md/.htm}" "${1}"' -
find ./content -name '*.md' -exec rm {} \;
@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)

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
# 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 / world.json
Created August 29, 2022 10:52
World countries coordinates
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fordnox
fordnox / postgres-brew.md
Created July 6, 2022 05:24 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@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
"""
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
```
"""
@fordnox
fordnox / gaby.php
Created August 23, 2021 19:48
For Gaby
<?php
$a=['Automattia','WordPresq','Jetpaci','WooCommercc'];
$data = array_map(function($value) {
$r = ['a'=>'c', 'q'=>'s', 'i'=>'k', 'c'=>'e'];
return substr($value, 0, strlen($value)-1).$r[$value[-1]];
}, $a);
var_dump($data);
@fordnox
fordnox / Makefile
Last active November 2, 2020 17:18
Makefile semver
.SILENT:
revbump:
set -e ;\
git tag --sort=v:refname | tail -1
NEW_VERSION=$$( git tag --sort=v:refname | tail -1 | awk 'BEGIN{FS=OFS="."}{print $$1,$$2,$$3+1}' ) ;\
echo "unstable release $$NEW_VERSION" ;\
git tag $$NEW_VERSION
git push --tags