Source: https://github.com/idaniali/6to4-tunnel-IPV6-Local
Step 0:
Source: https://github.com/idaniali/6to4-tunnel-IPV6-Local
Step 0:
# Source: https://rosettacode.org/wiki/Voronoi_diagram | |
# Dependency: ➜ ~ pip install pillow | |
from PIL import Image | |
import random | |
import math | |
def generate_voronoi_diagram(width, height, num_cells): | |
image = Image.new("RGB", (width, height)) | |
putpixel = image.putpixel |
const SPREADSHEET_ID = '{{SHEET_ID}}'; | |
const SHEET_ID = 123456789; | |
const RANGE = 'ApplicantsList!A2:L2'; | |
//---------------------- | |
chrome.runtime.onConnect.addListener(port => { | |
port.onMessage.addListener(request => { | |
if (request.action === 'copyValues') { | |
const info = request.data; | |
writeToGoogleSheets(SPREADSHEET_ID, RANGE, [info[0], 'To Call / Email - 1', '', 'Jobinja', info[4], '', info[1], '', '', info[3], '', info[2]]); | |
} |
curl -s https://api.github.com/repos/google/bundletool/releases/latest \ | |
| grep "browser_download_url.*jar" \ | |
| cut -d : -f 2,3 \ | |
| tr -d \" \ | |
| wget -qi - |
# encoding=utf8 | |
#---------- | |
# AUTHOR: Farbod Samsamipour <[email protected]> | |
# GITHUB: https://github.com/firebase/firebase-admin-python | |
#---------- | |
import os | |
import importlib.util | |
import plistlib as plist | |
import firebase_admin | |
from firebase_admin import credentials, project_management |
#!/bin/bash | |
#---------- | |
# Set variables | |
sl='en' | |
tl='' | |
query='' | |
#---------- | |
# Get the options | |
while getopts ":s:t:q:" option; do | |
case $option in |
<div style="font-family: sans-serif;"> | |
<? var data = valid(); ?> | |
<form id="form" name="form"> | |
<? if(Object.prototype.toString.call(data) === '[object Array]') { ?> | |
<? for (var i = 0; i < data.length; i++) { ?> | |
<? for (var j = 0; j < data[i].length; j++) { ?> | |
<input type="checkbox" id="ch<?= '' + i + j ?>" name="ch<?= '' + i + j ?>" value="<?= data[i][j] ?>"><?= data[i][j] ?><br> | |
<? } ?> | |
<? } ?> | |
<? } else { ?> |
# encoding=utf8 | |
import sys, os | |
import requests | |
import json | |
def t5(t, e, n, i): | |
return abs(float(n) * float(i) / float(t) - float(e)) | |
def number_check(t): | |
return t if t > 0 else 0 |
#!/usr/bin/env python | |
# coding: utf-8 | |
# This file is part of Adblock Plus <http://adblockplus.org/>, | |
# Copyright (C) 2006-2014 Eyeo GmbH | |
# | |
# Adblock Plus is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License version 3 as | |
# published by the Free Software Foundation. | |
# |