Skip to content

Instantly share code, notes, and snippets.

View Sunchock's full-sized avatar
🚀
The hands on the keyboard, my head in a spaceship 👩‍🚀

Sunchock Sunchock

🚀
The hands on the keyboard, my head in a spaceship 👩‍🚀
View GitHub Profile
@armornick
armornick / openicon.c
Created August 23, 2012 08:47
Draw an Image with SDL2
#include <stdio.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#define WIDTH 800
#define HEIGHT 600
#define IMG_PATH "exit.png"
int main (int argc, char *argv[]) {
@AdamMarsden
AdamMarsden / sassas.md
Last active July 14, 2024 04:22
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|