Skip to content

Instantly share code, notes, and snippets.

@sondreb
sondreb / docker-compose-yml
Created January 9, 2019 15:16
docker-compose for City Chain Nako Block Indexer
version: '2'
services:
nako:
container_name: city-nako
networks:
nakonet:
ipv4_address: 172.16.10.100
image: coinvault/nako
command: city
ports:
@sondreb
sondreb / docker-compose-yml
Created January 9, 2019 15:12
docker-compose for Stratis Nako Block Indexer
version: '2'
services:
nako:
container_name: stratis-nako
networks:
nakonet:
ipv4_address: 172.16.11.100
image: coinvault/nako
command: stratis
ports:
Verifying my Blockstack ID is secured with the address 1qYUwfvrfaxeqrsEgDResKQvsBBnSQVVF https://explorer.blockstack.org/address/1qYUwfvrfaxeqrsEgDResKQvsBBnSQVVF
@sondreb
sondreb / gulp.js
Created January 31, 2018 15:18
SFX gulp.js
"use strict";
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License file under the project root for license information.
//-----------------------------------------------------------------------------
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
Verifying my Blockstack ID is secured with the address 1qYUwfvrfaxeqrsEgDResKQvsBBnSQVVF https://explorer.blockstack.org/address/1qYUwfvrfaxeqrsEgDResKQvsBBnSQVVF

Keybase proof

I hereby claim:

  • I am sondreb on github.
  • I am sondreb (https://keybase.io/sondreb) on keybase.
  • I have a public key ASBflNAn_pbBNxKTmd06R_H_X8PdnHvUNAhsFK2WEYx0rwo

To claim this, I am signing this object:

Verifying that +sondreb is my blockchain ID. https://onename.com/sondreb
@sondreb
sondreb / deepmind-css-guide.md
Last active August 29, 2015 14:26 — forked from bobbygrace/trello-css-guide.md
Deepmind CSS Guide
@sondreb
sondreb / DictionaryExtensions
Created April 14, 2015 14:14
DictionaryToObject
namespace Utils
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
public static class DictionaryExtensions
{
public static T DictionaryToObject<T>(this IDictionary<string, string> dict) where T : new()
@sondreb
sondreb / game.html
Created February 14, 2015 01:13
Game (app) layout using flex-layout, works on IE, FireFox and Chrome
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Game Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<style>
*, *:before, *:after
{