Skip to content

Instantly share code, notes, and snippets.

@pncnmnp
pncnmnp / gist:8afb7903f61ec69a157287435a6347aa
Created December 9, 2023 17:51
Test out bazzargh's variation of "Shuffling using Fibonacci hashing"
import random
import math
import copy
import numpy as np
def shuffle_songs(songs):
"""Return a list of shuffled songs."""
num_songs = len(songs)
# Auto-suggestion
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
# Aliases
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias py="python3.10"
alias ptpy="python3.10 -m ptpython"
title artist ytdlp_title ytdlp_artist ytmdl_title ytmdl_artist
How Ya Doin'? (feat. Missy Elliott) Little Mix How Ya Doin'? (feat. Missy Elliott) Little Mix
Crazy Kids (feat. will.i.am) Kesha Crazy Kids (feat. will.i.am) Kesha Crazy Kids (Originally Performed by Ke$Ha Feat. Will.I.Am) [Karaoke Version] Singer's Edge Karaoke
Ooh La La (from "The Smurfs 2") Britney Spears Ooh La La (From "The Smurfs 2") Britney Spears Fu-Gee-La Fugees
People Like Us Kelly Clarkson People Like Us Kelly Clarkson People Like Us Micah Tyler
Overdose Ciara Overdose Ciara Overdose Finesse2tymes
Right Now - Dyro Radio Edit Rihanna Right Now (feat. David Guetta) Rihanna Right Now - Dyro Radio Edit Rihanna
Give It 2 U Robin Thicke Give It 2 U (feat. Kendrick Lamar & 2 Chainz) Robin Thicke Give It 2 U (feat. Kendrick Lamar & 2 Chainz) Robin Thicke
Foolish Games Jewel Foolish Games Jewel Foolish Games Jewel
Outta Nowhere (feat. Danny Mercer) Pitbull Outta Nowhere (feat. Danny Mercer) Pitbull
@pncnmnp
pncnmnp / fio.vim
Created April 1, 2023 11:19
Vim syntax file for Fio (Flexible I/O Tester)
" Vim syntax file for Fio (Flexible I/O Tester)
" Language: Fio
" Maintainer: Parth Parikh <parthparikh1999p@gmail.com>
" Last Change: 2023-04-01
" This code is licensed under Vim License:
" https://github.com/vim/vim/blob/master/LICENSE
" Fio files are a type of classic INI files
" This is a slight modification of:
@pncnmnp
pncnmnp / words_of_life.py
Created December 16, 2022 04:22
Game of Life but with alphabets
# initialize the grid with random alphabets
import random
from itertools import permutations
from collections import Counter
import pickle
import enchant
# define the grid size
GRID_SIZE = 8
@pncnmnp
pncnmnp / genres.json
Created December 13, 2022 08:14
List of genres supported by Phoenix10.1 (https://github.com/pncnmnp/phoenix10.1)
This file has been truncated, but you can view the full file.
[
"rooms and buildings",
"Lautonom",
"m3nosu",
"okrutna realnost",
"painful",
"fahrradfahren bei nacht",
"music to fall asleep to",
"3 am",
"Same name not same song tag",
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 2.
,text
0,"1595
THE TRAGEDY OF ROMEO AND JULIET
by William Shakespeare
Dramatis Personae
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 2.
,text
0,"Alice’s Adventures in Wonderland
by Lewis Carroll
THE MILLENNIUM FULCRUM EDITION 3.0
Contents
CHAPTER I. Down the Rabbit-Hole
.model small
.data
res1 db 10,13,"Enter the bcd value: $"
iresult db 10,13,"Hex value is: $"
result db 10,13,"Ascii value is: $"
.code
mov ax,@data
mov ds,ax
lea dx,res1
@pncnmnp
pncnmnp / bit_stuffing.c
Created November 6, 2019 01:25
Computer Network practical practise problems
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 100
int main(void) {
char data[MAX], output_data[MAX+MAX];
printf("Enter the data: ");
scanf("%s", data);