Skip to content

Instantly share code, notes, and snippets.

View garguelles's full-sized avatar
🏴

gargs garguelles

🏴
View GitHub Profile
@garguelles
garguelles / Delta.cs
Last active August 29, 2015 14:16 — forked from anonymous/Delta.cs
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using API.Infrastructure.Helpers.FastMember;
using ServiceStack;
namespace API.Infrastructure.Models
{
public class Delta<T> : DynamicObject where T : class
@garguelles
garguelles / codeship-install-meteor.sh
Created October 2, 2016 11:38
Install meteor 1.3+ in codeship
# You can use nvm to install any Node.js (or io.js) version you require.
nvm install 4.5.0
nvm use 4.5.0
#install meteor normally
curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
./meteor_install_script.sh
export PATH=$PATH:~/.meteor/
# install deps