Skip to content

Instantly share code, notes, and snippets.

View johdah's full-sized avatar

Johan Dahlberg johdah

  • Göteborg, Sverige
View GitHub Profile
@johdah
johdah / gist:1c57c3b004be08e3401f
Last active August 29, 2015 14:03
Atom packages
atom-color-highlight
file-icons
filetype-color
regex-railroad-diagram
resize-panes
atom-beautify
autocomplete-plus
color-picker
editor-stats
@johdah
johdah / I18nHelper.java
Created May 20, 2014 14:04
I18n helper - Java
package utils;
/**
* Created by JohanD on 2014-05-20.
*/
public class I18nHelper {
public static String getCollateSQL(String language) {
switch (language) {
case "cs":
return "COLLATE utf8_czech_ci";
@johdah
johdah / XNAModelClass
Created January 17, 2013 17:53
A XNA model that can rotate one part
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content;
namespace XNAGists {
public class Snowplow
@johdah
johdah / XNASimpleQuad
Last active October 24, 2019 04:51
A simple Quad object for XNA
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework;
namespace XNAGists
{
public class SimpleQuad
@johdah
johdah / XNASimpleCamera
Last active December 11, 2015 05:59
A Simple XNA Camera
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
namespace XNAGists
{
public class Camera
{