-
https://docs.micropython.org/en/latest/develop/gettingstarted.html
-
https://docs.espressif.com/projects/esp-idf/en/release-v3.0/get-started/linux-setup.html
-
Ubuntu 20.04
-
You'll need at least 5GB free space
-
Build time approx: 30 mins with 4 cores i7-4770
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 | |
# Drop me into: /usr/lib/zabbix/externalscripts | |
# Zabbix usage | |
# snmpwalk["OID","{HOST.CONN}","{$SNMPARGS}"] | |
# | |
if [ $# -gt 1 ]; then | |
/bin/snmpwalk -OQvs ${3} ${2} ${1} | |
else | |
echo "Error: No parameter specified." |
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
Updating everything on OnePlus One (bacon) Windows 10 | |
This will erase ALL your data, so your phone will be completely empty | |
1. Backup all your stuff, photos, etc. | |
2. Download latest files to your PC: | |
* TWRP: https://eu.dl.twrp.me/bacon/ | |
* LineageOS: https://download.lineageos.org/bacon | |
* Gapps Android 10 ARM PICO version: https://opengapps.org/ | |
* Android platform tools (adb): https://developer.android.com/studio/releases/platform-tools |
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
// ==UserScript== | |
// @name Extract TradingView Databox on keypress | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.tradingview.com/chart/IQRwR53e/?symbol=USI%3APCC | |
// @icon https://www.google.com/s2/favicons?domain=tradingview.com | |
// @grant none | |
// @run-at document-end |
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
// | |
// This is a blade component which contains 2 <tr> rows. In the first row you click on the product name, the second row should show/hide. (toggle) | |
// x-cloak will hide <tr> during page load, so it won't "blink". | |
// | |
// | |
@props([ | |
'sku' => null, | |
'name' => null, | |
'mpn' => null, |
https://laravel.com/docs/10.x/container#binding-primitives
Having issues with php artisan config:cache
, saying it's unserializable? Say no more!
- Remove any objects from
config/logger.php
. See below. - Inject mailer dependencies with
AppServiceProvider.php
- Note: env() variables does not work in
AppServiceProvider.php
. Define your variables somewhere, then useconfig()
to access them.
$mailer
and $email
variables are the given class' (defined in when()
) constructor arguments.
OlderNewer