[Desktop Entry]
Type=Application
Name=Bitcoin-QT
GenericName=Bitcoin Client
Comment=Bitcoin wallet
Categories=Qt;Network;
Exec=/usr/local/bin/bitcoin-qt %u
Icon=bitcoinicon
StartupNotify=false
This file contains hidden or 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
commit 6aa9fc335a11eb1d177d73cb8a2df4ccf35be247 | |
Author: Braydon Fuller <[email protected]> | |
Date: Mon Mar 14 21:16:40 2016 -0400 | |
script: interpreter fixes | |
diff --git a/lib/script/interpreter.js b/lib/script/interpreter.js | |
index e7e164b..275f820 100644 | |
--- a/lib/script/interpreter.js | |
+++ b/lib/script/interpreter.js |
This file contains hidden or 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
describe('Cursors (utf16 string key and binary value)', function() { | |
this.timeout(10000); | |
var env; | |
var dbi; | |
var total = 10; | |
before(function() { | |
env = new lmdb.Env(); | |
env.open({ | |
path: testDirPath, | |
maxDbs: maxDbs, |
This file contains hidden or 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 <stdlib.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <nettle/aes.h> | |
#include <nettle/ctr.h> | |
int main() { | |
struct aes256_ctx *ctx = malloc(sizeof(struct aes256_ctx)); |
This file contains hidden or 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
// An implementation of what is decribed at: | |
// https://nikhilm.github.io/uvbook/threads.html#id1 | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <uv.h> |
This file contains hidden or 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
--- | |
configure.ac | 2 +- | |
tests/run_wine.bash | 5 +++++ | |
tests/strerror_override.c | 3 +++ | |
tests/test1.c | 2 +- | |
tests/test_util_file.c | 10 ++++------ | |
5 files changed, 14 insertions(+), 8 deletions(-) | |
create mode 100755 tests/run_wine.bash | |
diff --git a/configure.ac b/configure.ac |
This file contains hidden or 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
From f9e4e11063bb7ddda4c05c061e1f8b4ee29a1be4 Mon Sep 17 00:00:00 2001 | |
From: Braydon Fuller <[email protected]> | |
Date: Sun, 5 Feb 2017 01:20:23 -0500 | |
Subject: [PATCH] tests with mingw | |
--- | |
tests/test1.c | 16 ++++++++-------- | |
1 file changed, 8 insertions(+), 8 deletions(-) | |
diff --git a/tests/test1.c b/tests/test1.c |
This file contains hidden or 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
/* | |
"dependencies": { | |
"benchmark": "^2.1.4", | |
"memcached": "^2.2.2", | |
"mongodb-core": "^2.1.9", | |
"redis": "^2.7.1" | |
} | |
*/ | |
const redis = require('redis'); |
This file contains hidden or 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 <stdio.h> | |
#include <errno.h> | |
#include <stdint.h> | |
#ifdef _WIN32 | |
#include <windows.h> | |
#include <io.h> | |
#else | |
#include <sys/mman.h> | |
#endif |
This file contains hidden or 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
#define _GNU_SOURCE | |
#ifdef _WIN32 | |
#include <windows.h> | |
#endif | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <stdint.h> | |
#include <stdio.h> |