Skip to content

Instantly share code, notes, and snippets.

@gersande
gersande / extracturls.py
Last active August 11, 2020 02:04
A thing that uses Beautiful Soup
#!/usr/bin/env python
import requests
from bs4 import BeautifulSoup
url = "http://www.gersande.com"
response = requests.get(url)
# parse html
page = str(BeautifulSoup(response.content))
@gersande
gersande / academicresources.md
Created January 19, 2015 20:56
Links to Academic Resources
@gersande
gersande / flame.lua
Last active May 16, 2023 00:09 — forked from joshski/flame.lua
-- a little flame in a functional style
function particle(step, style, t)
local newStyle = step(style, t)
return {
style = newStyle,
next = function()
return particle(step, newStyle, t + 1)
end
}
@gersande
gersande / LinksToGameResources.md
Last active July 28, 2017 21:26
Links to Game Resources

I compiled this list privately for my own development as a game maker, mostly in a series of bookmarks in my browser, and then realised this is could be really valuable for others to check out and contribute to as well.

This gist is separated into three sections: Getting Started, Design and Aesthetics, and Programming and Methodology. Getting Started is for general blog posts, inspiration, and stuff that's useful for getting off your ass and starting up that project you've been itching to make since forever. Design and Aesthetics is for manifestos, for art design, graphic design, UI (user interface), and also aesthetic decisions that lie beyond ludology, beyond rules, beyond programming, but sometimes needs those concepts to get shit done. Programming and Methodology is for the code, librar

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

@gersande
gersande / TriangleOutput.java
Last active August 29, 2015 13:57
Weeee just some homework
//-----------------------------------------
// Assignment 3
// Patterns : Triangle/Pattern Output in Java
// Written by Gersande 9505334
//-----------------------------------------
import java.util.Scanner;
import java.util.Arrays; // Just in case
public class TriangleOutput {
@gersande
gersande / CashierCalculator.java
Created March 7, 2014 20:21
A super simple intro to java cashier's calculator that i did for a blog post assignment thingy
//-----------------------------------------
// Cashier Calculator
// Written by Gersande La Fleche
//-----------------------------------------
/*
*/
import java.util.Scanner;
import java.text.DecimalFormat; // Just in case I decide to use it
import java.util.Arrays;
@gersande
gersande / unity3tutoriallist.md
Last active August 5, 2020 01:15
Unity Tutorial List for 2D Games
@gersande
gersande / BlogPrompts.md
Last active January 1, 2016 19:59
Blog Post Prompts

which blog? this blog

Blog Ideas

In no particular order

Terminal, Git

  • A tutorial on getting started with gist.io and doing minimalistic web writing/publishing from terminal/text editor
    • also a good way to introduce git to folks

Anxiety