(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.
/** | |
* A Javascript test runner in 20 lines of code | |
* From http://joakimbeng.eu01.aws.af.cm/a-javascript-test-runner-in-20-lines/ | |
*/ | |
(function () { | |
// The test queue: | |
var tests = []; | |
// Function to add tests: | |
this.test = function test (name, cb) { |
mWebView.setResourceClient(new XWalkResourceClient(mWebView) { | |
@Override | |
public WebResourceResponse shouldInterceptLoadRequest(XWalkView view, String url) { | |
WebResourceResponse ret = null; | |
try { | |
URL tmpUrl = new URL(url); | |
mConn = (HttpURLConnection)tmpUrl.openConnection(); | |
mConn.addRequestProperty("Authorization", authHeader); | |
mConn.addRequestProperty(getString(R.string.app_version_header_key), ((MyApplication)getApplication()).getVersioName()); |
const I = x => x | |
const K = x => y => x | |
const A = f => x => f (x) | |
const T = x => f => f (x) | |
const W = f => x => f (x) (x) | |
const C = f => y => x => f (x) (y) | |
const B = f => g => x => f (g (x)) | |
const S = f => g => x => f (x) (g (x)) | |
const S_ = f => g => x => f (g (x)) (x) | |
const S2 = f => g => h => x => f (g (x)) (h (x)) |
This document describes how to set up Windows 10 for cross-platform development (Go, NodeJS, etc) with Windows Subsystem for Linux (WSL).
Most of the information here is collected from
It's great for beginners. Then it turns into a mess.
These are some notes on my process when I review dependency updates for both JavaScript and Python projects at Hypothesis.
Before adding a dependency to a project, consider the impact on future maintenance. If what the dependency does for the project can be implemented with only a few lines of code, or can be implemented in an alternative way using dependencies the project already has, it may be a better choice to do that and avoid the dependency.
sub vcl_recv { | |
#FASTLY recv | |
# We don't do other methods | |
if (req.method != "GET") { | |
return(error); | |
} | |
# Handle IPv4 or IPv6 provided in url path (nothing extraneous allowed, perform basic matching) | |
if (req.url.path ~ "^/([a-f0-9:.]+)$") { | |
set client.geo.ip_override = re.group.1; |
from urllib.request import Request, urlopen | |
from urllib import parse | |
import os | |
import time | |
import json | |
#------------------------------------------------------------------------------ | |
# get environment variables | |
#------------------------------------------------------------------------------ | |
api_base = os.getenv('DBT_URL', 'https://cloud.getdbt.com/') # default to multitenant url |