- Download strongswan
https://www.strongswan.org/download.html
sudo apt-get update
sudo apt-get install build-essential libgmp3-dev
tar xvf strongswan.tar.gz
cd strongswan
| Agnes en_US # Isn't it nice to have a computer that will talk to you? | |
| Albert en_US # I have a frog in my throat. No, I mean a real frog! | |
| Alex en_US # Most people recognize me by my voice. | |
| Alice it_IT # Salve, mi chiamo Alice e sono una voce italiana. | |
| Alva sv_SE # Hej, jag heter Alva. Jag är en svensk röst. | |
| Amelie fr_CA # Bonjour, je m’appelle Amelie. Je suis une voix canadienne. | |
| Anna de_DE # Hallo, ich heiße Anna und ich bin eine deutsche Stimme. | |
| Bad News en_US # The light you see at the end of the tunnel is the headlamp of a fast approaching train. | |
| Bahh en_US # Do not pull the wool over my eyes. | |
| Bells en_US # Time flies when you are having fun. |
| { | |
| "name": "workshop-setup", | |
| "version": "1.0.0", | |
| "description": "This is the common setup script for most of my workshops", | |
| "bin": "./setup.js" | |
| } |
| Angular CLI version | Angular version | Node.js version | TypeScript version | RxJS version | |
|---|---|---|---|---|---|
| ~15.1.0 | ~15.1.0 | ^14.20.0 || ^16.13.0 || ^18.10.0 | >=4.8.4 <5.0.0 | ^6.5.5 || ^7.4.0 | |
| ~15.0.5 | ~15.0.4 | ^14.20.0 || ^16.13.0 || ^18.10.0 | ~4.8.4 | ^6.5.5 || ^7.4.0 | |
| ~14.2.0 | ~14.2.0 | ^14.15.0 || ^16.10.0 | >=4.6.4 <4.9.0 | ^6.5.5 || ^7.4.0 | |
| ~14.1.3 | ~14.1.3 | ^14.15.0 || ^16.10.0 | >=4.6.4 <4.8.0 | ^6.5.5 || ^7.4.0 | |
| ~14.0.7 | ~14.0.7 | ^14.15.0 || ^16.10.0 | >=4.6.4 <4.8.0 | ^6.5.5 || ^7.4.0 | |
| ~13.3.0 | ~13.3.0 | ^12.20.2 || ^14.15.0 || ^16.10.0 | >=4.4.4 <4.7.0 | ^6.5.5 || ^7.4.0 | |
| ~13.2.6 | ~13.2.7 | ^12.20.2 || ^14.15.0 || ^16.10.0 | >=4.4.4 <4.6.0 | ^6.5.5 || ^7.4.0 | |
| ~13.1.4 | ~13.1.3 | ^12.20.2 || ^14.15.0 || ^16.10.0 | >=4.4.4 <4.6.0 | ^6.5.5 || ^7.4.0 | |
| ~13.0.4 | ~13.0.3 | ^12.20.2 || ^14.15.0 || ^16.10.0 | ~4.4.4 | ^6.5.5 || ^7.4.0 |
| #!/bin/sh | |
| PROXY_INTERFACE="Wi-Fi" | |
| PROXY_HOST=127.0.0.1 | |
| PROXY_PORT=1080 | |
| # A host where ssh can login without interaction, with a key-based | |
| # authentication. | |
| SOCKS_PROC_USER="username" | |
| SOCKS_PROC_HOST="example.com" |
https://www.strongswan.org/download.html
sudo apt-get update
sudo apt-get install build-essential libgmp3-dev
tar xvf strongswan.tar.gz
cd strongswan
| pin | I/O | label | description | remark |
|---|---|---|---|---|
| 1 | - | GND | ground | |
| 2 | I/O | I2CSCL | I²C clock | (pulled up by camera) |
| 3 | I/O | I2CSDA | I²C data | (pulled up by camera) |
| 4 | - | GND | ground | |
| 5 | I | BATTIN | battery input | |
| 6 | I | BATTIN | battery input | |
| 7 | O | 3V8OUT | unregulated power out 3.8V | 0V when camera is off. |
| 8 | O | 3V8STBY | unregulated power out 3.8V | always keep 3.8V unless battery is out. |
Version 0.1.2
This script allows you to keep an process running which shows you current prices for the Altcoins you like. Also it shows % and revenue in BTC or $ if configured. Feel free to use or modify the script. If you make some nice changes i would be happy if you send them back to me too.
I created this options friendly because i think others might need it too. Show me your support with a little tip!
Below are the key settings that I apply on any unifi installation for optimal performance.
Ensure Enable Advanced Features is enabled
This allows you to follow along with the guide in it's entirety.
Ensure Automatically Optimise Network and WiFi performance is disabled
These settings will do a better job.
| import Cocoa | |
| import CoreBluetooth | |
| import PlaygroundSupport | |
| public class BTHelper: NSObject, CBCentralManagerDelegate, CBPeripheralDelegate { | |
| // BLE Access | |
| var centralManager: CBCentralManager | |
| override init() { | |
| self.centralManager = CBCentralManager(delegate: nil, queue: nil) |