- https://www.aliexpress.com/item/160x30x30mm-6-29-1-18-1-18-Driver-Chisel-Bits-Tools-Socket-Kit-7pcs-Multi/32948157330.html
- https://www.aliexpress.com/item/220V-16W-Portable-Solder-Smoke-Absorber-ESD-Fume-Extractor-for-Soldering-Iron-Work-Soldering-Smoking-Fan/32922973116.html
- https://www.aliexpress.com/item/ANIMORE-Food-Vacuum-Sealer-For-Food-Saver-220V-110V-Household-Vacuum-Sealer-With-10pcs-Vacuum-Bags/32942226548.html
- https://www.aliexpress.com/item/100pics-lot-Vaccum-Bags-7-10CM-12-17CM-15-25CM-20-25CM-22-30CM-25-35CM/32824110414.html
- https://www.aliexpress.com/item/Dozzlor-100pcs-Vacuum-Sealer-Pouches-Storage-Bag-Heat-Seal-Aluminium-Foil-Bags-Food-Grade-Heat-Sealing/32965184890.html
- https://www.aliexpress.com/item/Bootloader-Programmer-Module-Test-Tool-PCB-Test-Fixture-1-10P-use-to-test-module-board-upload/32823334953.html
- https://www.aliexpress.com/item/Andonstar-ADSM302-Microscopes-Industrial-Maintenance-Digital-Display-Electronic-Microscope-Magnifier-with-Remote-Control-Tools/32960223107
This file contains 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 | |
## **Updates to this file are now at https://github.com/giovtorres/virt-install-centos ** | |
# Take one argument from the commandline: VM name | |
if ! [ $# -eq 1 ]; then | |
echo "Usage: $0 <node-name>" | |
exit 1 | |
fi |
This file contains 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
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# Customized by: Mike Donaghy | |
# Last Modified: 12/19/2017 9:04:01 AM | |
# | |
# Install boxstarter: | |
#Set Set-ExecutionPolicy RemoteSigned | |
#. { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# |
This file contains 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
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <ArduinoOTA.h> | |
#include <WiFiManager.h> | |
void setup() { | |
Serial.begin(115200); | |
Serial.println("Booting"); | |
WiFiManager wifiManager; |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000