| 64 bit | 32 bit | 16 bit | 8 bit | |
|---|---|---|---|---|
| A (accumulator) | RAX |
EAX |
AX |
AL |
| B (base, addressing) | RBX |
EBX |
BX |
BL |
| C (counter, iterations) | RCX |
ECX |
CX |
CL |
| D (data) | RDX |
EDX |
DX |
DL |
This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
| Description | Syntax |
|---|---|
| Get the length of a string | ${#VARNAME} |
| Get a single character | ${VARNAME[index]} |
TypeScript 6.0 is a transition release bridging 5.9 and the forthcoming 7.0 (a native Go port). Most changes are new defaults and deprecations preparing for 7.0. Here is what you need to do:
Most projects need these tsconfig changes:
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
| /*------------------------------------------ | |
| Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
| 1280-1024 - desktop (default grid) | |
| 1024-768 - tablet landscape | |
| 768-480 - tablet | |
| 480-less - phone landscape & smaller | |
| --------------------------------------------*/ | |
| @media all and (min-width: 1024px) and (max-width: 1280px) { } | |
| @media all and (min-width: 768px) and (max-width: 1024px) { } |
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
| โโโโโโ[ box drawing cheat sheet ] | |
| โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ | |
| โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ | |
| โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ | |
| โ โก โข โฃ โค โฅ โฆ โง โจ โฉ โช โซ โฌ โญ โฎ โฏ |
| Provider | IPv4 | IPv6 | DNS Over HTTPS | DNSSEC |
|---|---|---|---|---|
| CleanBrowsing |
|
|
https://doh.cleanbrowsing.org/doh/security-filter/ | Yes |
| Cloudflare |
|
|
https://1.1.1.1/dns-query | Yes |
| Google DNS |
|
|
https://dns.google.com/resolve | Yes |
| Hurricane Electric |
|
|
||
| Omnispring |
|
Yes | ||
| [Private Internet Access](https://helpdesk.privateinternetaccess.com/hc/en-us/articles/219460397-How-to-change-DNS-settings |
javascript:(function(){
allowCopyAndPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('copy', allowCopyAndPaste, true);
document.addEventListener('paste', allowCopyAndPaste, true);
document.addEventListener('onpaste', allowCopyAndPaste, true);
})(); NewerOlder
{ "compilerOptions": { "types": ["node"], // @types are no longer auto-discovered (see ยง1.6)