= Header
== Header 2
=== Header 3
View nodeid-flag.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ccan/crypto/sha256/sha256.h> | |
#include <ccan/err/err.h> | |
#include <ccan/opt/opt.h> | |
#include <ccan/short_types/short_types.h> | |
#include <ccan/str/hex/hex.h> | |
#include <stdio.h> | |
#include <assert.h> | |
#include <string.h> | |
int main(int argc, char *argv[]) |
View gist:762297e84dc5239fe408c45e6811e1a9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"reckless install <url>" | |
- might turn simple names (.e.g summary) into references to the GH plugins repo | |
- allow URLs to inside repos for GH plugins. | |
Technical: | |
- if first run, creates ~/.lightning/reckless/, puts in empty "bitcoin.config" and 'include ../reckless/bitcoin.config' if not already in ~/.lightning/bitcoin/config | |
- download and unpack/move into ~/.lightning/reckless/<subdir> | |
- perform simple check (e.g. for Python, you can run the plugin normally and it should exit with status 0). | |
- start up dynamically | |
- if it works, add to reckless/bitcoin.config |
View perfme.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple wrapper to allow a program to perf itself. | |
* Copyright Rusty Russell, Blockstream 2015. | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
View times-headlines.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dec 2008: | |
1: Tory MP is accused of orchestrating leaks | |
2: Officials who failed Baby P are forced out | |
3: De Menezes coroner rules out unlawful killing verdict | |
4: Emergency rescue for mortgage defaulters | |
5: Rates cut again as recession deepens | |
6: Vauxhall in secret cash plea to save 5,000 jobs | |
8: Traditional subjects go in schools shake-up | |
9: Brown's recovery gathers pace with new poll boost |
View permute-image.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ccan/array_size/array_size.h> | |
#include <ccan/asort/asort.h> | |
#include <ccan/crypto/sha256/sha256.h> | |
#include <ccan/err/err.h> | |
#include <ccan/str/hex/hex.h> | |
#include <ccan/short_types/short_types.h> | |
#include <SDL2/SDL.h> | |
#include <SDL2/SDL_image.h> | |
#include <SDL2/SDL_pixels.h> |
View foo.md
View foo.md
= Header
== Header 2
=== Header 3
View dijkstra-hard-limit.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gossipd/gossip_wire.csv b/gossipd/gossip_wire.csv | |
index 63392d87b..7b36f9831 100644 | |
--- a/gossipd/gossip_wire.csv | |
+++ b/gossipd/gossip_wire.csv | |
@@ -37,6 +37,7 @@ msgdata,gossip_getroute_request,fuzz,double, | |
msgdata,gossip_getroute_request,num_excluded,u16, | |
msgdata,gossip_getroute_request,excluded,short_channel_id_dir,num_excluded | |
msgdata,gossip_getroute_request,max_hops,u32, | |
+msgdata,gossip_getroute_request,hard_limit,bool, | |
View genaddress.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "../lightning/external/libwally-core/include/wally_address.h" | |
#include "../lightning/external/libwally-core/include/wally_bip32.h" | |
#include "../lightning/external/libwally-core/src/secp256k1/include/secp256k1.h" | |
#include "../lightning/common/bech32.c" | |
#include <ccan/crypto/sha256/sha256.h> | |
#include <ccan/crypto/ripemd160/ripemd160.h> | |
#include <ccan/str/hex/hex.h> | |
#include <err.h> | |
#include <assert.h> | |
#include <stdio.h> |
View build-release.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
set -e | |
if [ "$(git status --porcelain -u no)" != "" ]; then | |
echo "Not a clean git directory" >&2 | |
exit 1 | |
fi | |
VERSION=`git tag --points-at HEAD` | |
if [ "$VERSION" = "" ]; then |
NewerOlder