Like PHP's htmlentities()/htmlspecialchars() functions, JavaScript is easy to implement it.
/**Like PHP's htmlentities()/htmlspecialchars() functions, JavaScript is easy to implement it.
/**Y = a * R + b * G + c * B
Cb = (B - Y) / d
Cr = (R - Y) / e
| BT.601 | BT.709 | BT.2020 | |
|---|---|---|---|
| a | 0.299 | 0.2126 | 0.2627 |
| b | 0.587 | 0.7152 | 0.6780 |
| let question = ['🥚','🐔'] | |
| let answer = question.sort() | |
| console.log(answer[0] + ' was first!') |
| const waitFor = (ms) => new Promise(r => setTimeout(r, ms)) | |
| const asyncForEach = (array, callback) => { | |
| for (let index = 0; index < array.length; index++) { | |
| await callback(array[index], index, array) | |
| } | |
| } | |
| const start = async () => { | |
| await asyncForEach([1, 2, 3], async (num) => { | |
| await waitFor(50) |
| ### Working for 3.5.3 [44396] ### | |
| Turn off Ads/Featured Content/Bundle for µTorrent | |
| Compilation of all settings i find in Internet for disable ads on µTorrent | |
| Options -> Preferences -> Advanced | |
| bt.enable_pulse | |
| distributed_share.enable |
1- Attaching Aliases to the native command line:
Steps in this stackoverflow answer.Quoting:
you may make the alias(es) persistent with the following steps,
| // https://davidpiesse.github.io/tailwind-md-colours/ | |
| // | |
| //Notes | |
| // | |
| //All colours are generated from Material Design Docs | |
| //Colours have a base, a set of shades (50-900) accent colours | |
| //In addition a companion set of contrast colours are included for colouring text / icons | |
| // Example usage | |
| // class="w-full bg-red-600 text-red-600-constrast" |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.