Skip to content

Instantly share code, notes, and snippets.

View razzius's full-sized avatar
🍉

Razzi Abuissa razzius

🍉
View GitHub Profile
@razzius
razzius / game.txt
Created December 11, 2025 20:14
flickgame
{"gameLink":"www.flickgame.org","activeIndex":2,"canvasses":[[348,"0",10,"9",143,"0",23,"9",133,"0",30,"9",128,"0",35,"9",42,"0",14,"3",68,"0",38,"9",38,"0",17,"3",66,"0",17,"9",6,"0",18,"9",35,"0",19,"3",1,"0",3,"9",60,"0",11,"9",19,"0",15,"9",31,"0",21,"3",4,"9",59,"0",7,"9",26,"0",14,"9",28,"0",23,"3",3,"9",58,"0",6,"9",31,"0",13,"9",25,"0",24,"3",3,"9",29,"0",3,"9",25,"0",7,"9",33,"0",13,"9",22,"0",25,"3",15,"9",16,"0",5,"9",24,"0",6,"9",36,"0",14,"9",18,"0",26,"3",22,"9",9,"0",5,"9",23,"0",6,"9",40,"0",14,"9",11,"0",4,"9",26,"3",28,"9",3,"0",5,"9",23,"0",6,"9",42,"0",16,"9",4,"0",7,"9",26,"3",36,"9",22,"0",6,"9",45,"0",24,"9",27,"3",40,"9",18,"0",6,"9",47,"0",22,"9",27,"3",6,"9",7,"0",29,"9",16,"0",5,"9",51,"0",19,"9",27,"3",6,"9",14,"0",25,"9",13,"0",5,"9",54,"0",15,"9",1,"0",26,"3",2,"0",6,"9",19,"0",21,"9",11,"0",5,"9",58,"0",8,"9",4,"0",26,"3",2,"0",6,"9",21,"0",22,"9",8,"0",5,"9",70,"0",25,"3",4,"0",6,"9",19,"0",23,"9",8,"0",5,"9",42,"0",4,"9",24,"0",24,"3",5,"0",6,"9",19,"0",11,"9",2,"0",10,"9",8,"
@razzius
razzius / game.txt
Created December 11, 2025 20:13
flickgame
{"gameLink":"www.flickgame.org","activeIndex":0,"canvasses":[[2022,"9",3,"7",156,"9",5,"7",155,"9",6,"7",154,"9",6,"7",154,"9",6,"7",155,"9",6,"7",154,"9",6,"7",154,"9",7,"7",154,"9",7,"7",153,"9",7,"7",154,"9",6,"7",155,"9",4,"7",1691,"9",4,"7",155,"9",16,"2",2,"7",73,"9",14,"7",48,"9",24,"2",14,"7",55,"9",23,"7",39,"9",30,"2",24,"7",39,"9",31,"7",31,"9",36,"2",17,"7",10,"2",4,"7",27,"9",36,"7",26,"9",40,"2",11,"7",24,"2",4,"7",13,"9",43,"7",23,"9",25,"2",12,"9",5,"2",8,"7",32,"2",34,"7",10,"9",12,"7",20,"9",20,"2",19,"9",6,"2",5,"9",38,"2",25,"7",19,"9",8,"7",18,"9",17,"2",24,"9",6,"2",3,"9",43,"2",17,"7",27,"9",5,"7",15,"9",15,"2",30,"9",5,"2",1,"9",17,"2",6,"9",23,"2",12,"7",31,"9",5,"7",14,"9",12,"2",34,"9",17,"2",20,"9",16,"2",5,"7",37,"9",5,"7",14,"9",10,"2",36,"9",14,"2",28,"9",12,"2",41,"9",5,"7",14,"9",8,"2",37,"9",13,"2",34,"9",8,"2",41,"9",5,"7",14,"9",6,"2",39,"9",11,"2",39,"9",5,"2",41,"9",5,"7",15,"9",3,"2",41,"9",9,"2",41,"9",5,"2",41,"9",5,"7",59,"9",8,"2",42,"9",5,"2",41,"9",5,"7",59,"9",8,"
#!fish
export EDITOR=vim
export BROWSER=firefox
export RIPGREP_CONFIG_PATH=$HOME/.rgrc
function add_path --argument path
fish_add_path -g $path
end
add_path ~/.local/bin
---
title: Factoring Quadratic Equations Comes Full Circle
---
A student in my math class was having trouble with factoring the following quadratic equation:
$
x^2 -5x + 4
$
@razzius
razzius / razzi-associate-extension-mode.el
Created December 4, 2023 16:48
razzi-associate-extension-mode.el
(defun razzi-associate-extension-mode (extension mode)
"Associate a file extension with an editing mode.
For example, (razzi-associate-extension-mode \"js\" 'javascript-mode)"
(let ((pattern (concat "\\." extension "$")))
(add-to-list 'auto-mode-alist (cons pattern mode))))
const space = String.fromCharCode(32)
const at_symbol = String.fromCharCode(64)
const newline = String.fromCharCode(10)
const openb = String.fromCharCode(91)
const closb = String.fromCharCode(93)
const quote = String.fromCharCode(39)
const comma = String.fromCharCode(44)
function represent(ss) {
return ss.join(newline).replace(
at_symbol,
syntax enable
filetype plugin indent on
set tabstop=4
set smartindent
let mapleader = ' '
nnoremap <leader>q :q<cr>
nnoremap <leader><leader> :w<cr>
from urllib.parse import urlparse
database_url = input()
parsed = urlparse(database_url)
parts = {
'port': parsed.port,
'dbname': parsed.path[1:],
from urllib.parse import urlparse
database_url = input()
parsed = urlparse(database_url)
parts = {
'port': parsed.port,
'dbname': parsed.path[1:],
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<script>
const KEY_NAMES = {
enter: 'ret',
' ': 'spc',
escape: 'esc',