Skip to content

Instantly share code, notes, and snippets.

@sguzman
sguzman / netflix-lang.md
Created December 3, 2023 01:01
A bunch of shows to watch in their original language on netflix

Scary shows to watch in their native language (with subtitles) on Netflix

Table

Title Language Link
Dark German Link
Equinox Danish Link
Ares Dutch Link
Cracow Monsters Polish Link
@sguzman
sguzman / zelda.md
Created November 29, 2023 20:05
Zelda Games in Different Languages

Zelda Games in Different Languages

Executive Summary

This file is my attempt to garner material for learning new languages by playing video games. I plan to play classic Zelda games in different language. Each language will have at least one game associated with it. I may pick multiple games for difficult video games. The consoles will span different generations.

Games

ID Game Console Language
@sguzman
sguzman / prog-typology.md
Last active November 29, 2023 07:41
Making a list of different programming languages what niche they fill. I will reach for these languages when programming in specific domains

Programming Niche

|----|-----|-----|----|

ID Lang Niche Desc
1 Rust Systems,Performance Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety.
2 Python General,Algo,Scripting Python is a programming language that lets you work quickly and integrate systems more effectively.
3 Uiua Stack,Arrays,Lite,Quick Uiua is a programming language that lets you work quickly with arrays.
4 JavaScript Web,Scripting,General JavaScript is a programming language of the web.
5 CSound Web,audio,live CSound is a declarative language for audio live coding
@sguzman
sguzman / index.html
Created November 18, 2023 18:55
Nice looking transitions
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Hi</h1>
<svg width="500" height="100">
@sguzman
sguzman / alphabet.md
Last active November 11, 2023 18:42
A series of pedagogical
Letter Words
A apple, ant, anchor
B ball, banana, butterfly
C cat, cup, carrot
D dog, duck, dolphin
E elephant, egg, eagle
F fish, frog, flower
G goat, grape, giraffe
H hat, horse, house
@sguzman
sguzman / productive.md
Created November 7, 2023 23:35
A list of productive software thats free, open source and self-hosted. As suggested by chat-gpt and chose by me
Category Your Choice Additional Options Notes
Email & Communication Thunderbird Mailspring, K-9 Mail Thunderbird is a solid choice for email.
Spreadsheets & Databases NocoDB Airtable (not open-source) NocoDB is a versatile tool similar to Airtable.
Office Suite LibreOffice ONLYOFFICE, Apache OpenOffice LibreOffice is a comprehensive suite.
Task Management & To-Do Lists Taskwarrior Kanboard, Todo.txt Taskwarrior is CLI-based, Kanboard offers a GUI.
Project Management Redmine, Kanboard Taiga.io, Phabricator Redmine is feature-rich, Kanboard focuses on Kanban.
Time Tracking Watso
@sguzman
sguzman / games-by-lang.md
Last active October 22, 2023 06:23
Games and diff langs I play them in
ID Game Language Voice Subtitles Interface
1 Dredge Italian
2 Genesis Noire Italian
3 Bugsnax Portuguese
4 Kentucky Route Zero Spanish
5 The Witcher 3 Polish
6 Atomic Heart Russian
7 Ad Nauseum German
8 Eastward German
@sguzman
sguzman / build.sbt
Created October 5, 2023 18:51
Working SBT version of the maven pom file for runelite project
val scala3Version = "3.3.1"
lazy val root = project
.in(file("."))
.settings(
name := "Runelite-scala",
organization := "net.runelite",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
resolvers ++= Seq(
@sguzman
sguzman / read-list.md
Last active July 11, 2023 23:21
Reading list from The Secret History of the 20th Century

Reading List

  • Tragedy and Hope, Carroll Quigley
  • The Evolution of Civilizations, Carroll Quigley
  • Bloodlands, Timothy Snyder
  • Liberalism, Paul Gottfried
  • War in Human Civilization, Azar Gat
  • The Master and His Emissary, McGhilchrist
  • Man and His Symbols, Carl Jung
  • The Origin of Ideology, Todd Immanuel
@sguzman
sguzman / collatz-extension.wsl
Created June 23, 2023 06:10
My extension of the collatz conjecture to add fix point instead of a orbit
co[n_Integer /; EvenQ[n]] := co[n] = n / 2
co[n_Integer /; OddQ[n]] := co[n] = 3 n + 1
co[1] = 0
co[0] = 0