Skip to content

Instantly share code, notes, and snippets.

@Dr4g0
Dr4g0 / ConsoleGame1
Last active December 19, 2015 19:19
using System;
using System.Text;
using System.Threading;
class ConsoleGame
{
static Random randomPosition = new Random();
static char[,] matrix;
static void Main()
{
using System;
class IntroOrGameOver
{
static void Main()
{
Console.WriteLine(@" .-'-.
/` |__
/` _.--`-,-`
'-|` a '<-. []
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NotesPopcorn
{
class Program
{
@Dr4g0
Dr4g0 / gist:6009985
Last active December 19, 2015 19:58
Music Popcorns
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace NotesPopcorn
{
class Program
@Dr4g0
Dr4g0 / ConsoleGame2
Created July 27, 2013 14:21
Our hero is moving too, put some colors.
using System;
using System.Text;
using System.Threading;
class ConsoleGame
{
static Random randomPosition = new Random();
static char[,] playfieldMatrix;
static char popeyeSymbol = (char)001;
static int popeyeX = 0;
@Dr4g0
Dr4g0 / gist:6097772
Created July 28, 2013 07:04
Kaspichan Numbers
using System;
class KaspichanNumbers
{
static void Main()
{
ulong number = ulong.Parse(Console.ReadLine());
string[] kaspichanBaseNumbers = new string[256];
int counter = 1;
for (int i = 0; i < 26; i++)
@Dr4g0
Dr4g0 / HomeworkClasses
Last active December 20, 2015 08:49
ReversePolishNotation
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
class CalculateArithExpression
{
static List<string> operators = new List<string>();
static List<string> allTokens = new List<string>();
static string[][] priority = {