15:39, 20 March 2012 Unity Shaders(hist) [827 bytes] Schmid(Talk | contribs)(Created page with "== Complex Shaders == Certain shaders cannot be run on e.g. PS3 or Xbox 360, so disabling those outputs may get a shader to compile: <pre> Shader "Test/Complex" { SubShader...")
17:23, 9 February 2012 Closure(hist) [1,313 bytes] Schmid(Talk | contribs)(Created page with "Example: <pre> using System; public class ClosureTest { public static void Main() { new ClosureTest(); } int x = 7; ClosureTest() { var f1 = ClosureTest1()...")
16:42, 24 January 2012 Git(hist) [844 bytes] Schmid(Talk | contribs)(Created page with "== Git Cheat Sheet == git reset --hard HEAD # erase all local changes git diff --cached # inspect staged changes git diff --cached --name-only # inspect staged cha...")
22:35, 30 August 2011 Patterns(hist) [555 bytes] Schmid(Talk | contribs)(Created page with "<code> include Math def svin(x) return sin(x)*0.5+0.5 end puts "P3\n#{800} #{800}\n255" (0...800).each{|py| s="" (0...800).each{|px| x=(px-400)/400.0 y=(py-400)/4...")
13:54, 9 March 2011 C Sharp 4.0(hist) [518 bytes] Schmid(Talk | contribs)(Created page with "== Optional Parameters and Named Arguments == <pre> using System; class Test { void doStuff(int? birthdate = null, string name = "none") { if( birthdate.HasValue ) ...")
13:07, 9 March 2011 C Sharp 3.0(hist) [3,500 bytes] Schmid(Talk | contribs)(Created page with "This example demonstrates the following C# 3.0 features: * Local variable type inference * Collection initializer * Lambda expressions <pre> using System; using System.Collection...")
18:13, 9 November 2010 Super Nintendo(hist) [250 bytes] Schmid(Talk | contribs)(New page: == Using a US SNES in Europe == === Power Supply === * [https://www.elextra.dk/main.aspx?page=article&artno=H19920 Example 230VAC to 110VAC converter, 45W] * [http://www.emulationzone.or...)
16:24, 28 October 2010 C++ Polymorphic Shared Pointer Container(hist) [1,570 bytes] Schmid(Talk | contribs)(New page: <code> #include <memory> #include <list> #include <map> using namespace std; struct A { virtual int value() { return 2; } }; struct B : public A { virtual int value() { return...)
18:43, 13 September 2010 Windows Ruby(hist) [1,186 bytes] Schmid(Talk | contribs)(New page: == Deploying a Local Ruby == To be able to use Ruby as a BATCH replacement for e.g. a company, we need to be able to run Ruby on machines that do not necessarily have Ruby installed. ...)
11:25, 4 August 2010 GPU Programming(hist) [3,055 bytes] Schmid(Talk | contribs)(New page: == Creating Geometry == === OpenGL === === Direct X === === Unity === == Setting Values in Shaders == === OpenGL === === Direct X === === Unity ===)