Proliferating Peer-to-Peer Electronic Cash
What drives retailers to accept bitcoin? The state of P2P electronic cash, and incentivizing proper Bitcoin adoption. 5% off Sats the standard, No-KYC & ...
All of the mentioned packages
can be downloaded using sudo apt-get install PACKAGE
.
Using mpv
and youtube-dl
we can stream a single song using
mpv https://youtu.be/JUpidCc7wwY --no-video
or shuffle a whole playlist
mpv PLAYLIST_LINK --shuffle --no-video
We can create a audio visual using vis
in another terminal
feh --randomize --bg-fill ~/Pictures/Wallpapers/*
Automatically switch OBS streaming scene to desktop with current mouse location:
#!/bin/bash
# Whenever out mouse is past XSPLIT in the X-direction,
# A hotkey is sent to OBS to change scenes
XSPLIT=1920
# Hotkeys
LEFT='F7'
RIGHT='F8'
PAST=$RIGHT
obs | while :
do
XCOORD=$(xdotool getmouselocation | cut -d : -f 2 | cut -d ' ' -f 1)
if [ "$XCOORD" -lt "$XSPLIT" ] && [ "$PAST" == "$RIGHT" ]; then
WINDOWID=$(xdotool search --name OBS | tail -1)
xdotool key --window $WINDOWID $LEFT
PAST=$LEFT
echo "CHANGE LEFT"
elif [ "$XCOORD" -gt "$XSPLIT" ] && [ "$PAST" == "$LEFT" ]
then
WINDOWID=$(xdotool search --name OBS | tail -1)
xdotool key --window $WINDOWID $RIGHT
PAST=$RIGHT
echo "CHANGE RIGHT"
fi
done
What drives retailers to accept bitcoin? The state of P2P electronic cash, and incentivizing proper Bitcoin adoption. 5% off Sats the standard, No-KYC & ...
I spent two weeks copy trading the KuCoin hacker on FTX for profit. High leverage great ape shorts.
A hidden message sent to the Twitter Hacker seems to involve impossibly rare Bitcoin addresses, how did they do it?
How to create a legacy Bitcoin address from scratch with basic-intermediate C programming, using public key cryptography, hashing functions, and base 58.
GW190425 is the second detection of gravitational waves originating from a double neutron star inspiral; the topic of my honours thesis and team’s paper.
My current Linux setup (i3-gaps, compton, wal, st, + more).
I recently installed Arch on my new X1 Extreme Gen 2 laptop. Here I document some of the intricacies of the installation.
Here’s how we can create a video of the moon in just a few lines of python code
I remember watching ASCII animation of Star Wars IV in terminal on my primary school’s library computers in ~2005.
We wish to be able to create ethereum vanity addresses like 0xda66666666c... through the only way possible, brute force. Never store significant value on add...