- https://tails.boum.org/doc/first_steps/reset/windows/index.en.html
- Don't forget to FORMAT your USB after doing resetting the USB
TL;DR:
/** | |
* see https://xstate.js.org/viz/?gist=543eafd14d94ee75901e7bfdb065b9ae | |
*/ | |
// xs::StateMachine robotoBusena = { | |
const machine = Machine({ | |
id: "roboto-busena", | |
initial: "pradine", | |
on: {}, | |
states: { |
{ | |
"settingsVersion": "1.66", | |
"exclusionRules": [ | |
{ | |
"pattern": "https?://mail.google.com/*", | |
"passKeys": "" | |
}, | |
{ | |
"pattern": "http://127.0.0.1:5050/", | |
"passKeys": "" |
/** | |
Graph implementation (edges) (look at example 2): | |
https://www.techiedelight.com/graph-implementation-using-stl/ | |
C++ containers: | |
https://en.cppreference.com/w/cpp/container | |
N = max(N, max(a, b)) | |
foo = (foo + bar + const) % const |
TL;DR:
{"lastUpload":"2024-10-08T01:20:53.886Z","extensionVersion":"v3.4.3"} |
#pragma GCC optimize ("O3") | |
#pragma GCC target ("sse4") | |
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
typedef unsigned long long ull; |