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.
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 | |
| # | |
| # Google Cloud Platform functions. | |
| # | |
| # - All functions act on the default project configured for `gcloud'. | |
| # | |
| # Install the gcloud command line interface. | |
| install_gcloud_cli() { |
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
| #### Contents of the preconfiguration file (for jessie) | |
| ### Localization | |
| # Preseeding only locale sets language, country and locale. | |
| d-i debian-installer/locale string en_US | |
| # The values can also be preseeded individually for greater flexibility. | |
| #d-i debian-installer/language string en | |
| #d-i debian-installer/country string NL | |
| #d-i debian-installer/locale string en_GB.UTF-8 | |
| # Optionally specify additional locales to be generated. |
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 "path_utils.jinja" as path_utils with context %} | |
| {% set project = env["project"] %} | |
| {% set deployment = env["deployment"] %} | |
| {% set name = "%s-vm-tmpl" % env["name"] %} | |
| {% set instanceName = "%s-vm" % deployment %} | |
| {% set zone = properties["zone"] %} | |
| {% set machineType = properties["machineType"] %} | |
| {% set network = path_utils.networkPath(properties["network"]) %} | |
| {% set subnetwork = properties["subnetwork"] %} |
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
| #!/usr/bin/python | |
| PAGESPEED_API_KEY='<...>' | |
| import json | |
| import requests | |
| import pprint | |
| from googleapiclient.discovery import build |
Google Sign-in implementation for Websauna.
- Persistent offline access to scope
- On-the-air installs of android apps
- Everything supported by Google Sign-in
This implementation follows the “Google Sign-In for server-side apps”[fn:1] at the exception of verifying user-submitted code with Google.