https://github.com/paritytech/parity/releases
macOS :
pass { from: 0.0.0.0/0 to: 109.239.140.0/24 } | |
pass { from: 0.0.0.0/0 to: 149.154.164.0/23 } | |
pass { from: 0.0.0.0/0 to: 149.154.164.0/22 } | |
pass { from: 0.0.0.0/0 to: 149.154.166.0/23 } | |
pass { from: 0.0.0.0/0 to: 149.154.168.0/22 } | |
pass { from: 0.0.0.0/0 to: 149.154.172.0/22 } | |
pass { from: 0.0.0.0/0 to: 149.154.172.0/23 } | |
pass { from: 0.0.0.0/0 to: 205.172.60.0/22 } | |
pass { from: 0.0.0.0/0 to: 67.198.55.0/24 } | |
pass { from: 0.0.0.0/0 to: 91.108.12.0/22 } |
#!/usr/bin/env bash | |
REMOTE_HOST=${1-"YOUR REMOTE HOST HERE"} | |
DEFAULT_API_FILE="$HOME/.ipfs/api" | |
API_FILE="${IPFS_PATH-$DEFAULT_API_FILE}" | |
if [ -e "$API_FILE" ]; then | |
echo "IPFS API is already running" | |
exit 1 | |
fi |
This is a collection of working commandline examples to show how one could use FFMpeg and VLC for live transcoding of video streams. All examples have been tested on OSX 10.7.5 with FFMPeg 1.1.3 and VLC 2.0.5 in early 2013.
Documentation links
//usr/bin/env go run $0 "$@"; exit | |
package main | |
import ( | |
"fmt" | |
"os" | |
) | |
func main() { | |
fmt.Println("Hello world!") |
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
import sys | |
import logging | |
import datetime | |
import requests | |
import BeautifulSoup | |
from requests.adapters import HTTPAdapter |
package proxy | |
import ( | |
"io" | |
"log" | |
"net" | |
) | |
func Proxy(srvConn, cliConn *net.TCPConn) { | |
// channels to wait on the close event for each connection |
var $buttons = $('button.star-button') | |
var index = 0 | |
var timer = window.setInterval(function(){ | |
if(index >= $buttons.length){ | |
window.clearInterval(timer); | |
}else{ | |
$buttons[index++].click(); | |
} | |
}, 1000) |