These are working as of 2nd July 2021, some dispense once daily, once every hour etc Please return testnet coins when you're done testing so that others can keep building
Below you is my build instructions for GnuPG 2.1.20 released on 03-Apr-2017. These instructions are built for a headless Ubuntu 16.04 LTS server.
Or if you wish, you may use the install script to install GnuPG 2.1.20 by entring the following:
curl -sL "https://gist.github.com/mattrude/3883a3801613b048d45b/raw/install-gnupg2.sh" |sh
apt-get -y install libgnutls-dev bzip2 make gettext texinfo gnutls-bin \
A description of known problems in Satoshi Nakamoto's paper, "Bitcoin: A Peer-to-Peer Electronic Cash System", as well as notes on terminology changes and how Bitcoin's implementation differs from that described in the paper.
The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power.
from rest_framework import generics | |
from allauth.account.utils import send_email_confirmation | |
from rest_framework.views import APIView | |
from rest_framework import status | |
from rest_framework.response import Response | |
from rest_framework.permissions import AllowAny | |
# request a new confirmation email | |
class EmailConfirmation(APIView): |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDsTF0HYvycAswKLyRJByRYaXmzxeejIlL57z+rAs5hkk+tz7o/yEMrLSDxg/l6G3ptcWjETUjlOxadtHFW67L36qow+c4kLjk9jd/KJ4DGTQlo9ajEj0aAkza/eTMtATSlozJwUwJREOQHFF9qb2Lq1Bf3lDunTebDg5o44qMp+Y7MhVLglbn8fypWcOrr03ENmjItZcAF6MyF4W2KL0sfNQoAiuOabnJKL3zAENet0ZBEyULFYmMjEoe9vwsEHcZKzGzdh5QdRfAMc/EkdMnk8S4+p2Qw6wYLSYViVYJHsqCmjvzx6ZE9XYAmj+XQ5Z6y4RwFGMu9sSEY+sQAtc59 [email protected] |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
echo "export PATH=\$PATH:~/Library/Android/sdk/build-tools/x.x.x/" >> ~/.bash_profile&& . ~/.bash_profile |
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
echo "1. server dependencies updated and upgraded" | |
echo " " | |
echo "2. installing build essentials and python-dev" |
Developing apps with angularjs comes with it's own headaches, one of which is the caching of files in the browser. | |
As a developer you can make use of plugins like Classic Cache Killer or disable caching in devtools. You can't go around asking all | |
your users to clear their cache after every new update | |
After going through several SO posts and blogs, only one solution worked for me(based on my setup). | |
Using Nginx, I added this directive | |
location ~* \.(?:manifest|appcache|html?|xml|json)$ { | |
expires -1; | |
} |