Skip to content

Instantly share code, notes, and snippets.

@varomix
varomix / maya2019install.sh
Created February 27, 2019 18:54
Linux Mint Maya 2019 Install script
#!/bin/bash
### INSTRUCTIONS
# make a folder called maya2019Install
# mkdir -p maya2019Install
# down load maya 2019 and put it in that folder
# the name has to be this >> Autodesk_Maya_2019_Linux_64bit.tgz
# if is different either rename it or change the name below
# by varomix, www.mixtrn.com
###
@varomix
varomix / main.odin
Created February 12, 2025 04:52
Odin SDL3 Load Texture with stb_image
package sdl_tex
import sdl "vendor:sdl3"
import stbi "vendor:stb/image"
window: ^sdl.Window
renderer: ^sdl.Renderer
should_close := false
main :: proc() {