All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Here we write upgrading notes for brands. It's a team effort to make them as
| /**************************************************************************/ | |
| // Based on code from Adafruit's PN532 NFC shield example | |
| // BSD license | |
| /**************************************************************************/ | |
| #include <Wire.h> | |
| #include <Adafruit_NFCShield_I2C.h> | |
| #define IRQ (2) |
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Here we write upgrading notes for brands. It's a team effort to make them as
| import 'dart:math' as Math; | |
| import 'dart:ui'; | |
| //import 'package:flutter/foundation.dart'; | |
| //import 'package:recorder/util/logger.dart'; | |
| import 'package:uuid/uuid.dart'; | |
| const _TAG = 'Util'; |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
| <?php | |
| // copied from python code at https://stackoverflow.com/a/23221582/3103058 | |
| function base32_decode($key) { | |
| // https://www.php.net/manual/en/function.base-convert.php#122221 | |
| $key = strtoupper($key); | |
| list($t, $b, $r) = array("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", "", ""); | |
| foreach(str_split($key) as $c) | |
| $b = $b . sprintf("%05b", strpos($t, $c)); | |
| foreach(str_split($b, 8) as $c) | |
| $r = $r . chr(bindec($c)); |
| function toNBTUUID(uuid) { | |
| return `[I;${uuid.replace(/-/g, '').match(/.{8}/g).map(str => Number.parseInt(str, 16)).map(num => num & 0x80000000 ? num - 0xffffffff - 1 : num).join(',')}]`; | |
| } | |
| // toNBTUUID('0e9b65dd-3dce-4a3f-8a13-3299a91ceac7'); | |
| // -> [I;245065181,1036929599,-1978453351,-1457722681] |
| import React, { useEffect, useState, useRef } from 'react'; | |
| import { | |
| Dimensions, SafeAreaView, | |
| ScrollView, | |
| StatusBar, StyleSheet, useColorScheme, Animated, | |
| LayoutAnimation, | |
| View | |
| } from 'react-native'; | |
| import { LineChart, ProgressChart } from 'react-native-chart-kit'; | |
| import { Colors } from 'react-native/Libraries/NewAppScreen'; |
Help Ukraine by attacking Russian web sites. Good load testing training.
Tools:
Update 2025-07-16: Use either Revanced, NewPipe or Firefox with add-ons. Revanced is my personal pick, due to it being a mod of the official App like Vanced, but better (e.g. it has integration of Sponsor Block, Return YouTube Disklike and more).
I wouldn't recommend Kiwi Browser anymore as it has been discontinued. AFAIK it has been accuired by Microsoft and the extension support has been merged into Edge (Canary). But you'd have to use Edge. Yuck.
| # Install the toolchain | |
| ```bash | |
| brew tap SergioBenitez/osxct | |
| brew install x86_64-unknown-linux-gnu | |
| ``` | |
| # this should get installed in: | |
| # /opt/homebrew/Cellar/x86_64-unknown-linux-gnu/ | |
| # Installing the macOS OpenSSL - if not already installed |