Hot-Sale-300pcs-30value-Rang-1ohm-Three-Mohm-1-2W-Carbon-Film-Metal-Resistors-Assortment-Kit
65-Pcs-Variable-Resistor-Potentiometer-Assortment-Kit-13-value
HOT-SELL-100-PCS-1N4148-DO-35-IN4148-Silicon-Switching-Diode-FREE-SHIPPMENT
100PCS-1A-1000V-Diode-1N4007-IN4007-DO-41
[Free-Shipping-100PCS-1N5819-IN5819-DO-41-DIODE-1A-40V-SCHOTTKY-BARRIER](https://www.aliexpress.com/item/Free-Shipping-100PCS-1N5819-IN5819-DO-41-DIODE-1A-40V-SCHOTTKY-BARRIER/1928414577.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------------------------------------------------- | |
mtr www.google.com | |
mtr --report google.com | |
mtr -4b google.com #combined IPv4 only and IP addresses | |
mtr -n google.com #display numeric IP addresses instead of host names | |
mtr -c5 google.com #limit the number of pings to a specific value | |
mtr -r -c 5 google.com >mtr-report #report mode using the -r flag | |
mtr -rw -c 5 google.com >mtr-report #wide report mode | |
mtr -i 2 google.com #The default interval between ICMP ECHO requests is one second | |
mtr --tcp test.com #use TCP SYN packets or UDP datagrams instead of the default ICMP ECHO requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var db = firebase.firestore(); | |
var content = require("./sourceData.json"); | |
content && | |
Object.keys(content).forEach(contentKey => { | |
const nestedContent = content[contentKey]; | |
if (typeof nestedContent === "object") { | |
Object.keys(nestedContent).forEach(docTitle => { | |
firebase | |
.firestore() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var citiesRef = db.collection("cities"); | |
var query = citiesRef.where("capital", "==", true); | |
citiesRef.where("state", "==", "CA") | |
citiesRef.where("population", "<", 100000) | |
citiesRef.where("name", ">=", "San Francisco") | |
citiesRef | |
.where("state", "==", "CA") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import argparse | |
import base64 | |
import json | |
""" | |
Currently uses Google's cloud speech API | |
""" | |
from googleapiclient import discovery |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Hot-Sale-300pcs-30value-Rang-1ohm-Three-Mohm-1-2W-Carbon-Film-Metal-Resistors-Assortment-Kit
65-Pcs-Variable-Resistor-Potentiometer-Assortment-Kit-13-value
HOT-SELL-100-PCS-1N4148-DO-35-IN4148-Silicon-Switching-Diode-FREE-SHIPPMENT
100PCS-1A-1000V-Diode-1N4007-IN4007-DO-41
[Free-Shipping-100PCS-1N5819-IN5819-DO-41-DIODE-1A-40V-SCHOTTKY-BARRIER](https://www.aliexpress.com/item/Free-Shipping-100PCS-1N5819-IN5819-DO-41-DIODE-1A-40V-SCHOTTKY-BARRIER/1928414577.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Based on the scripts written by class101 of xda-developers.com: | |
# http://forum.xda-developers.com/showpost.php?p=57490025&postcount=205 | |
# | |
# This script enables a secure tunnel for your android phone to "reverse tether" | |
# and access the internet/a private network via the following steps: | |
# | |
# 1. Establish a level 3 (TAP) tunnel from your local host to a remote server via SSH (tap0) | |
# 2. Establish a level 3 interface between your local host and your android phone via USB (usb0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scrapy.spider import BaseSpider | |
# Requires this patch: | |
# https://github.com/joehillen/scrapy/commit/6301adcfe9933b91b3918a93387e669165a215c9 | |
from scrapy.selector import PyQuerySelector | |
class DmozSpiderPyQuery(BaseSpider): | |
name = "pyquery" | |
allowed_domains = ["dmoz.org"] | |
start_urls = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setup( | |
entry_points={ | |
'paste.filter_app_factory': [ | |
'ssl_only = myapp.middlewares.ssl_only:make_filter', | |
], | |
} | |
) |
NewerOlder