Skip to content

Instantly share code, notes, and snippets.

@vikram7
vikram7 / lightning-maps.md
Created July 18, 2018 22:37 — forked from bretton/lightning-maps.md
Visualisers of the Lightning Network (and some other explorers)

A (mostly) visual collection of the Lightning Network

Disclaimer

Network views tend to be the view of the network from a single node, or small selection of nodes. They are not complete views of the network. This is impossible to achieve. Even if many node views were combined, it would still be incomplete.

These network views, or network maps, have been termed 'visualisers' by the LN community.

Bitcoin Mainnet

import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Stephanie Hobson App',
data: {
id: 1,
slug: 'WD',
name: {
en: 'Working Draft',
@vikram7
vikram7 / fork_and_sync.md
Last active January 4, 2016 17:33
forking and sync'ng a repo
  • Fork a repo on github

  • Git clone the forked version

  • Set the remotes (origin and upstream)

git remote set-url origin [git@github.com:vikram7/guides.git] (forked git url)
git remote add upstream [git@github.com:emberjs/guides.git] (base git url)
@vikram7
vikram7 / application.controller.js
Last active September 2, 2015 20:16
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
queryParams: ['category'],
appName:'E',
category: null,
posts: [ { title: "Descartes was Nice", category: "philosophy" },
{ title: "Wittgenstein is mad smart", category: "philosophy" },
{ title: "Ember is going 3.0", category: "programming" },
import Ember from 'ember';
const {
get
} = Ember;
export default Ember.Controller.extend({
appName:'Ember Twiddle',
wizards: [

Get your dev environment setup!:

Part 1: The Essentials

Part 2: The Extras

A lot of the above will be covered here:

(minus the brew cask stuff at the bottom)