yes master yoda
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
| bytebeat | infix | 11kHz | |
| t>>>7&t>>>222*2222/.025|t>>>4 | |
| bytebeat | infix | 8kHz [[not mine]] | |
| (t>>10^t>>11)%5*((t>>14&3^t>>15&1)+1)*t%99 + ((3 + (t >> 14 & 3) - (t >> 16 & 1)) / 3 * t % 99 & 64) |
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
| if (number % 2 == 0) then | |
| .....it is even | |
| else | |
| .....it is odd | |
| end |
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
| { | |
| "tabWidth": 2, | |
| "useTabs": true, | |
| "jsxSingleQuote": false, | |
| "semi": true, | |
| "singleQuote": false, | |
| "trailingComma": "all", | |
| "bracketSpacing": true, | |
| "arrowParens": "always", | |
| "printWidth": 80, |
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
| export default function TodaysDate() { | |
| const current = new Date(); | |
| const month = current.toLocaleString("default", { month: "long" }); | |
| const date = `${month} ${current.getDate()}, ${current.getFullYear()}`; | |
| return <span>{date}</span>; | |
| } |
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
| import youtube_dl | |
| # Asks for the url | |
| link = input("Write the url") | |
| # Instantiate the YoutubeDL class from the youtube_dl framework | |
| ydl = youtube_dl.YoutubeDL({}) | |
| # Download the video. | |
| ydl.download([link]) |
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
| <section class="hero"> | |
| <div class="hero-body"> | |
| <div class="container"> | |
| <h1 class="title"> | |
| Hero title | |
| </h1> | |
| <h2 class="subtitle"> | |
| Hero subtitle | |
| </h2> | |
| </div> |