date | address | current balance | oldest utxo txid |
---|---|---|---|
2014-04-22 | 1MSC4v6T |
238,033 | c8f06acc |
2014-04-22 | 1K5Tofy7 |
50,000 | 9e50d2d0 |
2014-04-22 | 157FxpGB |
4,856 | 737c7aa6 |
2014-04-22 | 16bsXHmw |
355,688 | 2c46f00f |
2014-04-22 | [13Tjts99 ](https://www.omniexplorer |
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
<Virtualhost *:80> | |
VirtualDocumentRoot "/var/www/%1/public" | |
ServerName vhosts.dev | |
ServerAlias *.dev | |
UseCanonicalName Off | |
LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon | |
ErrorLog ${APACHE_LOG_DIR}/vhosts-error_log | |
SetEnv APPLICATION_ENV "development" | |
<Directory "/var/www/*"> | |
Options Indexes FollowSymLinks MultiViews |
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
# In response to https://bitcointalk.org/index.php?topic=56424.msg1454348#msg1454348 | |
# Highlights that json encoding of floats is no good | |
# and that decimals can be used for encoding. | |
import json | |
from decimal import Decimal as D | |
d1 = D(11) / D(10) # 1.1 | |
d2 = D(22) / D(10) # 2.2 |
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
{ | |
"Ext": "chat", | |
"Method": "Send", | |
"Data": "This is a chat message" | |
} |
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
{ | |
"Ext": "http", | |
"Method": "Call", | |
"Error": "Invalid ext.Method: chat.Shout" | |
} |
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
// Copyright 2016 MaidSafe.net limited. | |
// | |
// This SAFE Network Software is licensed to you under (1) the MaidSafe.net Commercial License, | |
// version 1.0 or later, or (2) The General Public License (GPL), version 3, depending on which | |
// licence you accepted on initial access to the Software (the "Licences"). | |
// | |
// By contributing code to the SAFE Network Software, or to this project generally, you agree to be | |
// bound by the terms of the MaidSafe Contributor Agreement, version 1.0. This, along with the | |
// Licenses can be found in the root directory of this project at LICENSE, COPYING and CONTRIBUTOR. | |
// |
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
{ | |
"Account": "Account", | |
"Account Info": "Account Info", | |
"Account not found": "Account not found", | |
"Account Password": "Account Password", | |
"Account password needs to be stronger.": "Account password needs to be stronger.", | |
"Account Secret": "Account Secret", | |
"Account secret needs to be stronger.": "Account secret needs to be stronger.", | |
"Account Storage": "Account Storage", | |
"Accounts are made of two parts, an 'account secret' and an 'account password'.": "Accounts are made of two parts, an 'account secret' and an 'account password'.", |
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
#!/usr/bin/python3 | |
# Convert files with surround sound to use stereo | |
# CAUTION: will overwrite original file! | |
# Some additional bash helpers | |
# convert all videos in directory to smaller size, output in /tmp | |
# for f in `ls | grep mp4`; do ffmpeg -i $f -vf scale=720:-2 -c:a copy /tmp/$f; done |
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
# Prints out a table of the number of tries to generate a specific key with a | |
# specific probability | |
# | |
# More info at https://forum.safedev.org/t/secure-random-relocation/1321/41 | |
# | |
# It's messy but the maths is correct. | |
import math | |
def tidyNum(n): |