I hereby claim:
- I am moniquelive on github.
- I am cyberleo (https://keybase.io/cyberleo) on keybase.
- I have a public key ASBjo7irIrNQlrV_Rj_nAk6r9elodoFIzz5gxBf_sBQnXgo
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"iter" | |
"math" | |
"strings" | |
) | |
// Map : A -> B |
00s club hits | 2000's Club Hits | 00sclubhits | |
---|---|---|---|
ambient | Ambient | ambient | |
atmospheric breaks | Atmospheric Breaks | atmosphericbreaks | |
bassline | Bassline | bassline | |
bass n jackin house | Bass and Jackin House | bassnjackinhouse | |
big beat | Big Beat | bigbeat | |
big room house | Big Room House | bigroomhouse | |
breaks | Breaks | breaks | |
chilled m | Chilled | chilledm | |
chill hop | Chill Hop | chillhop |
from random import randint | |
v = [1, 2, 3, 4, 5, 6, 7, 8, 9] | |
def swap(v, f, t): | |
print(f, t) | |
v[f] ^= v[t] | |
v[t] ^= v[f] | |
v[f] ^= v[t] |
from collections import defaultdict | |
import spotipy | |
from spotipy.oauth2 import SpotifyClientCredentials | |
sp = spotipy.Spotify(auth_manager=SpotifyClientCredentials()) | |
offset, limit = 0, 100 | |
playlist_id = '6tPcPBeTEoPqaZcR03IzwN' | |
ranking = defaultdict(int) |
I hereby claim:
To claim this, I am signing this object:
-- Render a spinning cube. | |
-- | |
-- Dependencies: | |
-- elm install elm-explorations/linear-algebra | |
-- elm install elm-explorations/webgl | |
-- | |
import Browser | |
import Browser.Events as E | |
import Html exposing (Html) |
sudo fallocate -l 2G /swapfile1 | |
sudo mkswap /swapfile1 | |
sudo chown root:root /swapfile1 | |
sudo chmod 0600 /swapfile1 | |
sudo swapon /swapfile1 | |
echo "/swapfile1 none swap sw 0 0" | sudo tee -a /etc/fstab |
augroup nasm " { | |
au! | |
au BufRead,BufNewFile *.asm set filetype=nasm | |
augroup END " } |
package main | |
import ( | |
"fmt" | |
"os" | |
"strings" | |
"github.com/anaskhan96/soup" | |
) |
import Data.Char | |
import Data.List | |
ana :: String -> [String] -> [String] | |
ana word dict = let lw = length word | |
ps = (nub . permutations $ word) | |
in ps `intersect` filter (\w -> (length w) == lw) dict | |
main = do | |
putStrLn "Digite uma palavra: " |