State: Draft
Based on the Peatio Stable branch
To the coin daemon's {coin}.conf
file, include the -walletnotify
command:
# Notify when receiving coins
State: Draft
Based on the Peatio Stable branch
To the coin daemon's {coin}.conf
file, include the -walletnotify
command:
# Notify when receiving coins
#!/bin/bash | |
INTERFACE=Wi-Fi | |
networksetup -setsocksfirewallproxy $INTERFACE 127.0.0.1 9050 off | |
networksetup -setsocksfirewallproxystate $INTERFACE on | |
tor | |
networksetup -setsocksfirewallproxystate $INTERFACE off |
The layout of keyboards varies per country, with some countries having multiple | |
common layouts. Please select the country of origin for the keyboard of this | |
computer. | |
1. Afghani 48. Irish | |
2. Albanian 49. Italian | |
3. Amharic 50. Japanese | |
4. Arabic 51. Japanese (PC-98xx Series) | |
5. Arabic (Morocco) 52. Kazakh | |
6. Arabic (Syria) 53. Khmer (Cambodia) |
#!/usr/bin/env bash | |
# | |
# Author: Stefan Buck | |
# https://gist.github.com/stefanbuck/ce788fee19ab6eb0b4447a85fc99f447 | |
# | |
# | |
# This script accepts the following parameters: | |
# | |
# * owner | |
# * repo |
# Navigate to AVD | |
cd ~/.android/avd/<device dir> | |
# Delete old image | |
#rm userdata-qemu.* | |
# Re-size the images | |
e2fsck -f userdata-qemu.img | |
resize2fs userdata-qemu.img 512M | |
e2fsck -f userdata.img |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/GarageBandBasicContent.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/JamPack1.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/JamPack4_Instruments.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsChillwave.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsDeepHouse.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsDubstep.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsElectroHouse.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsHipHop.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsLegacy1.pkg | |
http://audiocontentdownload.apple.com/lp10_ms3_content_2013/MAContent10_AppleLoopsLegacyRemix.pkg |
module.exports = { | |
reporter: function (res) { | |
var len = res.length; | |
var str = ""; | |
res.forEach(function (r) { | |
var file = r.file; | |
var err = r.error; | |
str += file + ":" + err.line + ": error: " + err.reason + "\n"; |
for f in "$@" | |
do | |
filename="${f%.*}" | |
plutil -convert xml1 "$filename".json -o "$filename".plist | |
done |