Skip to content

Instantly share code, notes, and snippets.

View cedricloneux's full-sized avatar

Cédric Loneux cedricloneux

View GitHub Profile
@84adam
84adam / AA-Bitcoin-RSS-Feeds.opml
Last active September 6, 2023 16:01
My collection of bitcoin-related RSS newsfeeds.
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.1">
<head>
<title>
Feeder
</title>
</head>
<body>
<outline title="Stacker+News" text="Stacker+News" type="rss" xmlUrl="https://stacker.news/rss"/>
<outline title="𝐁𝐂𝟏𝟗𝟖𝟒" text="𝐁𝐂𝟏𝟗𝟖𝟒" type="rss" xmlUrl="https://bc1984.com/rss/"/>
@System-Glitch
System-Glitch / generate_blocks.sh
Last active June 21, 2024 18:48
Tutorial for bitcoin regtest
# Script to generate a new block every minute
# Put this script at the root of your unpacked folder
#!/bin/bash
echo "Generating a block every minute. Press [CTRL+C] to stop.."
address=`./bin/bitcoin-cli getnewaddress`
while :
do
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 22, 2024 10:23 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@nsteele
nsteele / glx.bash
Last active July 15, 2021 03:35
Enable glx between mac client and linux server
#!/bin/bash
# on macOS, enable indirect opengl vi xquartz
defaults write org.macosforge.xquartz.X11 enable_iglx -bool true
# ssh to linux server with x forwarding, and start an opengl app
ssh -X user@linux_server
glxgears
# note that using indirect rendering (which is the case when going over ssh), xquartz only supports up to opengl 1.4
@wanyakun
wanyakun / LLDB Debugger commands.txt
Created November 8, 2016 03:03
LLDB Debugger commands
Debugger commands:
apropos -- List debugger commands related to a word or subject.
breakpoint -- Commands for operating on breakpoints (see 'help b' for
shorthand.)
bugreport -- Commands for creating domain-specific bug reports.
command -- Commands for managing custom LLDB commands.
disassemble -- Disassemble specified instructions in the current
target. Defaults to the current function for the
current thread and stack frame.
@vsouza
vsouza / .bashrc
Last active June 14, 2024 08:45
Golang setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell, fish or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin