Skip to content

Instantly share code, notes, and snippets.

View ryanwi's full-sized avatar

Ryan Williams ryanwi

View GitHub Profile
@ryanwi
ryanwi / JsonExperiements.cs
Last active August 26, 2020 12:35
Parse JSON object in C# with different value types
using System;
using Newtonsoft.Json.Linq;
namespace JsonExperiments
{
class Program
{
static void Main(string[] args)
{
ExecuteEmployeeSearch();
@ryanwi
ryanwi / software-terms.dic
Last active December 27, 2023 18:40
Dictionary of software technology terms
.NET
.NET Core
Agile
AI/alias[AI|Artificial Intelligence]
Airflow
Android
Ansible
Angular 2/alias[Angular2|Angular 2]
AngularJS/js[Angular]
API
@ryanwi
ryanwi / rails_new
Last active December 17, 2015 17:39
Create new Rails app with gemset, using postgresql
$ rvm use --create 2.1@app_name
$ gem install rails --no-ri --no-rdoc
$ rails new app_name --database=postgresql
$ cd app_name/
$ rvm --rvmrc 2.1@app_name
$ git init
$ git add .
# setup db
$ rake db:drop db:create db:migrate db:seed