- Python 3
- Pip 3
$ brew install python3
Install via pip:
0x354f535C25363419DE8169e39bd6719Bf1766aCF |
This script creates a swapfile to fix this error. Tested on ubuntu 16 | |
sudo fallocate -l 1G /swapfile | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile | |
sudo swapon --show | |
sudo cp /etc/fstab /etc/fstab.bak | |
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab |
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; | |
} |
#!/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" |
echo "export PATH=\$PATH:~/Library/Android/sdk/build-tools/x.x.x/" >> ~/.bash_profile&& . ~/.bash_profile |
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.
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDsTF0HYvycAswKLyRJByRYaXmzxeejIlL57z+rAs5hkk+tz7o/yEMrLSDxg/l6G3ptcWjETUjlOxadtHFW67L36qow+c4kLjk9jd/KJ4DGTQlo9ajEj0aAkza/eTMtATSlozJwUwJREOQHFF9qb2Lq1Bf3lDunTebDg5o44qMp+Y7MhVLglbn8fypWcOrr03ENmjItZcAF6MyF4W2KL0sfNQoAiuOabnJKL3zAENet0ZBEyULFYmMjEoe9vwsEHcZKzGzdh5QdRfAMc/EkdMnk8S4+p2Qw6wYLSYViVYJHsqCmjvzx6ZE9XYAmj+XQ5Z6y4RwFGMu9sSEY+sQAtc59 [email protected] |
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): |
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.