Skip to content

Instantly share code, notes, and snippets.

View nikeee's full-sized avatar

Niklas Mollenhauer nikeee

View GitHub Profile
@nikeee
nikeee / smiley-code.sco
Created June 30, 2014 17:45
draft idea for a programming language
:/ Comment
:\
Comment block
:*/
:/ assigning variables
"abc" :> VAR
:/ throwing exceptions
class BitmapExtensions
{
public static unsafe Bitmap StackBlur(this Bitmap sourceImage, int radius)
{
int width = sourceImage.Width;
int height = sourceImage.Height;
int size = radius << 1;
var destinationImage = new Bitmap(width, height);
var lockRect = new Rectangle(0, 0, width, height);