sudo apt install proxychains
[ProxyList]
# add proxy here ...
# meanwile
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML Table Cell Split Diagonally</title> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td> | |
<div class="c1">A</div> |
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
#!/bin/bash | |
#A Shell script to fetch bitcoin price and display ! | |
#Author: Lakshya Khera | |
#Dependencies | |
# - jq https://stedolan.github.io/jq/ | |
# - lolcat https://github.com/busyloop/lolcat/ | |
# | |
bitcoin_price=$(curl -s https://api.coindesk.com/v1/bpi/currentprice.json | jq '.bpi.USD.rate ') |
Here are the steps needed to run a self hosted Open Street Map server (using Docker):
Download desired pbf
files (like south-carolina-latest.osm.pbf
) from https://download.geofabrik.de or just use the following empty planet below:
<?xml version='1.0' encoding='UTF-8'?>
<osm version="0.6" generator="osmconvert 0.8.8" timestamp="2019-10-23T20:18:02Z">
<bounds minlat="42.4276" minlon="1.412368" maxlat="42.65717" maxlon="1.787481"/>
</osm>
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML Table Cell Split Diagonally</title> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td> | |
<div class="c1">A</div> |
/* This file is part of: | |
* Jalali, a Gregorian to Jalali and inverse date convertor | |
* Copyright (C) 2001 Roozbeh Pournader <[email protected]> | |
* Copyright (C) 2001 Mohammad Toossi <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either | |
* version 2.1 of the License, or (at your option) any later version. | |
* |
#for not running docker, use save: | |
docker save <dockernameortag> | gzip > mycontainer.tgz | |
#for running or paused docker, use export: | |
docker export <dockernameortag> | gzip > mycontainer.tgz | |
#load | |
gunzip -c mycontainer.tgz | docker load |