(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
brew install git bash-completion
Configure things:
git config --global user.name "Kartik Verma"
git config --global user.email "[email protected]"
I hereby claim:
To claim this, I am signing this object:
package com.hprog99; | |
import java.io.BufferedReader; | |
import java.io.DataOutputStream; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import javax.net.ssl.HttpsURLConnection; | |
import requests | |
from bs4 import BeautifulSoup | |
import sys | |
import csv | |
sys.setrecursionlimit(5000) | |
# We've now imported the two packages that will do the heavy lifting | |
# for us, reqeusts and BeautifulSoup | |
# Let's put the URL of the page we want to scrape in a variable |
import requests | |
from bs4 import BeautifulSoup | |
import sys | |
import json | |
import threading | |
import re | |
import time | |
import os | |
proxies = { |
$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
myapp/
βββ manage.py
βββ myapp
βββ __init__.py
βββ settings
β βββ __init__.py
β βββ base.py
β βββ dev.py
β βββ feature.py
""" | |
Code to create a signed URL to upload a file using that signed URL to Google Cloud Storage | |
Constants to be present in settings module or can be defined locally: | |
- GCP_CRED_FILE_PATH (JSON file where the GCP credentials are present) | |
- GCP_PROJECT (GCP Project name) | |
- GCP_STORAGE_BASE_URL (Base Url of GCP, usually https://storage.googleapis.com) | |
- GCP_SIGNED_URL_TIMEOUT (Timeout in seconds for which the signed URL is valid) | |
- GCP_BUCKET (Google Cloud Bucket Name) | |
""" | |
import logging |