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
| <div class="timer-bar" id="countdown-timer"></div> |
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
| /* | |
| * \u200B: ZERO WIDTH SPACE | |
| * \u200C: ZERO WIDTH NON-JOINER | |
| * \u200D: ZERO WIDTH JOINER | |
| * \uFE00-\uFE0F: VARIATION SELECTOR 1 to 16 | |
| * \u2139: INFO EMOJI | |
| * \u20E3: Number Emoji COMBINING ENCLOSING KEYCAP (joiner for number emoji) | |
| */ | |
| const regex = /[^\s\p{L}\p{M}]|[\u200B\u200C\u200D\uFE00-\uFE0F\u2139\u20E3]/gu; |
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
| let make = new video({ | |
| title: "JavaScript Calculator with Arbitrary Precision", | |
| description: openai.generateFrom(keyWords), | |
| keyWords: [ | |
| "CSS Grid", | |
| "Arbitrary Precision", | |
| "No Floating Point Error", | |
| "State Management", | |
| "Storing History in LocalStorage", | |
| "Formatting Output with Intl" |
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
| /* ==UserStyle== | |
| @name Git History Diff ➕ & ➖ | |
| @namespace https://gist.github.com/nitin2953 | |
| @version 1.0.0 | |
| @description Add ➕ & ➖ as ::before element on Added & Deleted line respectively for quick looking | |
| @author Nitin Kumar (https://github.com/nitin2953) | |
| @homepageURL https://gist.github.com/nitin2953/e3c7a8bc4a4805c97963671f2b3790da | |
| @updateURL https://gist.github.com/nitin2953/e3c7a8bc4a4805c97963671f2b3790da/raw/3fcbddad8f93777ad9008b8415d45d6e71001491/githistory.xyz.user.css | |
| @license AGPL-3.0 | |
| @preprocessor default |
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
| /* ==UserStyle== | |
| @name MDN Design Fix | |
| @namespace https://gist.github.com/nitin2953 | |
| @version 1.0.0 | |
| @description Beautify Details Summary, color, line-height, focus-ring, etc | |
| @author Nitin Kumar (https://github.com/nitin2953) | |
| @homepageURL https://gist.github.com/nitin2953/77c39db1b726fc48916bd53988bd6b31 | |
| @updateURL https://gist.github.com/nitin2953/77c39db1b726fc48916bd53988bd6b31/raw/b0ce8ca4d31c6f755181fe0185b20169579fb21c/new-mdn-fix.user.css | |
| @license AGPL-3.0 | |
| @preprocessor default |
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
| /* ==UserStyle== | |
| @name MDN Design Fix | |
| @namespace https://gist.github.com/nitin2953 | |
| @version 1.0.0 | |
| @description Beautify Details Summary, color, line-height, focus-ring, etc | |
| @author Nitin Kumar (https://github.com/nitin2953) | |
| @homepageURL https://gist.github.com/nitin2953/e375812a5fd5e85ac6a189b623dcaca7 | |
| @updateURL https://gist.github.com/nitin2953/e375812a5fd5e85ac6a189b623dcaca7/raw/61c1c1aad922feb2b3f040436f4a316432fff2e4/github-link-fix.user.css | |
| @license AGPL-3.0 | |
| @preprocessor default |
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
| /* ==UserStyle== | |
| @name Github link fix | |
| @namespace https://gist.github.com/nitin2953 | |
| @version 1.0.0 | |
| @description Expand click area of links in github repo files viewer | |
| @author Nitin Kumar (https://github.com/nitin2953) | |
| @homepageURL https://gist.github.com/nitin2953/e375812a5fd5e85ac6a189b623dcaca7 | |
| @updateURL https://gist.github.com/nitin2953/e375812a5fd5e85ac6a189b623dcaca7/raw/61c1c1aad922feb2b3f040436f4a316432fff2e4/github-link-fix.user.css | |
| @license AGPL-3.0 | |
| @preprocessor default |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>JS Selectors vs CSS Selectors</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
| <script src="./suite.js"></script> | |
| </head> | |
| <body> | |
| <h1>Open the console to view the results</h1> |