Chris Geihsler
@seejee
(and vice versa)
Chris Geihsler
@seejee
+
Be intentional about your career path.
Work for what's fun.
Technical?
XML
SOAP
WSDL
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace ErieDay
{
public static class Program
{
public static void Main ()
{
var data = new Dictionary<string, Dictionary<string, int>>()
{
{
"stats", new Dictionary<string, int>()
{
{ "students", 52 },
{ "teachers", 5 },
{ "admins", 2 },
}
}
};
Console.WriteLine(JsonConvert.SerializeObject(data));
}
}
}
data = {
stats: {
students: 52,
teachers: 5,
admins: 2
}
}
puts data.to_json
public static void Main ()
{
var values = new [] { -2, -1, 0, 1, 2, 3, 4, 5 };
values
.Where(x => x > 0)
.Select(x => x * x)
.Sum();
}
values = [ -2, -1, 0, 1, 2, 3, 4 ]
values
.reject { |x| x < 0 }
.map { |x| x * x }
.sum
Isn't slow?
(yes)
Single threaded?
(yes*)
¯\_(ツ)_/¯
+
/bin/bash
C:\
>
Lots of things are the same.
Estimates
Technology changes.
The other skills don't.
Practice both.
Challenge #1
Challenge #2
AND
Have fun!
Chris Geihsler
@seejee