Hover over the white circles to reveal the magic letters.
  
    
      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 json | |
| import subprocess | |
| import time | |
| import os | |
| import math | |
| # ===== CONFIG ===== | |
| JSON_FILE = "tracks.json" | |
| OUTPUT_DIR = "music" | |
| AUDIO_FORMAT = "mp3" | 
  
    
      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
    
  
  
    
  | defmodule FastInverseSquareRoot do | |
| @magic_number 0x5f3759df | |
| # Quake Fast Inverse Square Root | |
| # steps | |
| # integer into a 32 bit integer. | |
| # the magic number - (the integer shifted to the right) | |
| # turn the int32integer to a float | 
  
    
      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
    
  
  
    
  | /* | |
| Test Case: https://en.wikipedia.org/wiki/List_of_English_abbreviations_made_by_shortening_words | |
| Creates a js dictionary from a list in wikipedia. | |
| modules requires! Cheerio & fs | |
| The result might need a little cleaning | |
| */ | |
| const fs = require("fs"); | |
| const cheerio = require("cheerio"); | 
  
    
      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
    
  
  
    
  | # thank you u/al2o3cr for the constructive feedback!! | |
| defmodule Complex do | |
| defstruct real: 0, imag: 0 | |
| @type t :: %Complex{real: number, imag: number} | |
| def add(%Complex{real: r1, imag: i1}, %Complex{real: r2, imag: i2}) do | |
| %Complex{real: r1 + r2, imag: i1 + i2} | |
| 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
    
  
  
    
  | #include <stdio.h> | |
| #include "raylib.h" | |
| char asciiChars[] = {'@', '#', 'S', '%', '?', '*', '+', ';', ':', ',', '.'}; | |
| int windowWidth = 1024; | |
| int windowHeight = 780; | |
| int imageResizeValue = 100; | 
  
    
      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
    
  
  
    
  | class Git { | |
| constructor(name) { | |
| this.name = name; | |
| this.lastCommitId = -1; | |
| this.branches = []; | |
| var master = new Branch("master, null"); | |
| this.branches.push(master); | |
| this.Head = master; | 
  
    
      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="container"> | |
| <div class="module"> | |
| <div id="shape" class="module__shape "> | |
| <div class="module__shape-shadow-1"></div> | |
| <div class="module__shape-shadow-2"></div> | |
| <div class="module__shape-shadow-3"></div> | |
| <div class="module__shape-rec1"></div> | |
| <div class="module__shape-rec2"></div> |