Skip to content

Instantly share code, notes, and snippets.

View hammanandre's full-sized avatar

Andre Hamman hammanandre

View GitHub Profile
@hammanandre
hammanandre / cool-game-programming-blogs.opml
Last active December 2, 2018 22:37 — forked from Reedbeta/cool-game-programming-blogs.opml
List of cool blogs on game programming, graphics, theoretical physics, and other random stuff
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Graphics, Games, Programming, and Physics Blogs</title>
</head>
<body>
<outline text="Tech News" title="Tech News">
<outline type="rss" text="Road to VR" title="Road to VR" xmlUrl="http://www.roadtovr.com/feed" htmlUrl="https://www.roadtovr.com"/>
<outline type="rss" text="Seattle VR" title="Seattle VR" xmlUrl="http://seattlevr.us/feed/" htmlUrl="http://seattlevr.us"/>
<outline type="rss" text="The Tech Report - News" title="The Tech Report - News" xmlUrl="http://techreport.com/news.xml" htmlUrl="https://techreport.com/"/>
@hammanandre
hammanandre / curl.md
Created October 15, 2018 18:32 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@hammanandre
hammanandre / LitDissolveInOut.shader
Last active April 15, 2018 12:19 — forked from benloong/UIDissolve.shader
Dissolve shader for Unity
Shader "Custom/LitDissolveInOut" {
Properties {
_Color ("Color", Color) = (1,1,1,1)
_MainTex ("Albedo (RGB)", 2D) = "white" {}
_DissolveTex("Dissolve Texture", 2D) = "white" {}
_Level("Dissolution level", Range(0.0, 1.0)) = 0.1
_EdgeColour1("Edge colour 1", Color) = (1.0, 1.0, 1.0, 1.0)
_EdgeColour2("Edge colour 2", Color) = (1.0, 1.0, 1.0, 1.0)
_Edges("Edge width", Range(0.0, 1.0)) = 0.1