sudo apt update
sudo apt install curl
This file contains hidden or 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
| {"version":1,"resource":"file:///c%3A/Users/mvinn/Documents/repositorios/dinnerdash/front/src/components/Select/styles.ts","entries":[{"id":"BPj5.ts","source":"Renaming StyledInput to StyledSelect","timestamp":1652926036645},{"id":"DahI.ts","timestamp":1652926441838},{"id":"No7F.ts","timestamp":1652926595396},{"id":"w9Mp.ts","timestamp":1652926611881},{"id":"gMvP.ts","timestamp":1652926652886},{"id":"OovF.ts","source":"undoRedo.source","timestamp":1652926676641}]} |
This file contains hidden or 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
| // In cmd run | |
| $ Test-Path $PROFILE | |
| // if False run: | |
| $ New-Item -Type File -Force $PROFILE | |
| $ ise $PROFILE | |
| // It will open an editor, where you can create your alias, eg. | |
| function alias-example { set-location "C:\..." } | |
| // When you reopen cmd, it says that the file is not digitally signed, | |
| // I don't know yet how to solve this other way, but this is what I do | |
| $ Set-ExecutionPolicy Bypass |
This file contains hidden or 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 <bits/stdc++.h> | |
| using namespace std; | |
| #define rep(i,a,n) for (int i=a;i<n;i++) | |
| #define per(i,a,n) for (int i=n-1;i>=a;i--) | |
| #define pb push_back | |
| #define mp make_pair | |
| #define pii pair<int, int> | |
| #define all(x) (x).begin(),(x).end() | |
| typedef long long ll; | |
| typedef double db; |
This file contains hidden or 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
| /** | |
| * Transforms strings like &;\'><" to &;'><" | |
| */ | |
| function htmlEncode(s: string) { | |
| var el = document.createElement("div"); | |
| el.innerText = el.textContent = s; | |
| s = el.innerHTML; | |
| return s; | |
| } |
Links that I found while reading BNOC and other bitcoin related stuff.
Other resource aggregators:
- https://bitcoin-noc.github.io/map-of-bitcoin-monitoring/
- https://www.lopp.net/bitcoin-information.html
Resources:
- https://bitnodes.io/ : F, couldn't leave it out, but it's down for now
- replacement http://bitnod.es/ by bitmex
- https://www.dsn.kastel.kit.edu/bitcoin/ : This site presents several charts and research dashboards about Bitcoin's P2P network, including node demographics, transaction propagation, and latency measurements.