Skip to content

Instantly share code, notes, and snippets.

View jj09's full-sized avatar

Jacob Jedryszek jj09

View GitHub Profile
@jj09
jj09 / Xml2Json
Last active April 20, 2021 12:22
Convert XML to JSON in C#
using Newtonsoft.Json;
using System.IO;
using System.Xml;
namespace ConvertXml2Json
{
class Program
{
static void Main(string[] args)
{
@jj09
jj09 / NDC London 2016 - Top 30 talks.txt
Last active May 15, 2016 21:06
Top 30 talks from NDC London 2016 (by view count)
(25500) Project Rider - Hadi Hari https://vimeo.com/151644168
(6802) What’s new in Security in ASP.NET 5 and MVC 6 - Dominick Baier https://vimeo.com/154041158
(5972) Saying “Goodbye” to DNX and “Hello!” to the .NET Core CLI - Damian Edwards & David Fowler https://vimeo.com/153212604
(3813) Fun with Generics - Benjamin Hodgson https://vimeo.com/154564491
(3686) Keynote NDC London 2016: JavaScript, The Cloud, and the Rise of the New Virtual Machine - Scott Hanselman https://vimeo.com/153120762
(3479) Introduction to IdentityServer - Brock Allen https://vimeo.com/154172925
(2980) Aurelia: Next-Generation Web Apps - Rob Eisenberg https://vimeo.com/153090562
(2118) Better single-page apps with ASP.NET MVC 6 - Steve Sanderson https://vimeo.com/157273325
(1741) A brief history of ASP.NET: From 1.0 to 5.0 - Damian Edwards and David Fowler https://vimeo.com/154034601
(1636) JavaScript Combinators, the “Six” Edition - Reginald Braithwaite https://vimeo.com/153097877
var grade = Math.floor(Math.random() * 5) + 1; grade = 5;''
console.log("grade", grade);
@jj09
jj09 / Tree-IsBalanced
Created November 13, 2013 22:22
Check whether tree is balanced.
using System;
public class Node
{
public Node Left {get;set;}
public Node Right {get;set;}
public object Value {get;set;}
}
public class Tree