Skip to content

Instantly share code, notes, and snippets.

BugFinder
whoohoo i got my money from dell hahaha
Squirrel in training
@BugFinder why?
BugFinder
I bought a laptop 1/1/2016, by 25/12/2016 it was hosed, something had died, and all it would do was blue screen.. so, they replaced the disk (dont ask) which not unsurprisingly didnt fix it, so they replaced the motherboard.. with one with half the graphics card I had paid for... they then argued for a month with their own build docs .. and finally put in the right one.. it was still blue screening
so, by march they replaced it with a new model, better graphics less screen but it was ok
except
interface IAnswer
{
}
interface IQuestion
{
IAnswers[] Answers { get; }
}
@NoobInTraining
NoobInTraining / Snake
Created November 15, 2016 12:20
My snake from back in the day
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading;
namespace SnakeV2
{
class Program
{
@NoobInTraining
NoobInTraining / CustomLabel
Last active November 8, 2016 11:44
A Custom Label to Draw a Bordfer around a albel
public partial class CustomLabel : Label
{
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Color borderColour = Color.Black;
int borderThickness = 1;
ControlPaint.DrawBorder(e.Graphics, ClientRectangle,