sudo apt-get update
sudo apt-get install git
cd ~
git clone --recursive https://github.com/CartoDB/cartodb20.git
| // ---- | |
| // Sass (v3.4.7) | |
| // Compass (v1.0.1) | |
| // Breakpoint (v2.5.0) | |
| // Susy (v2.1.3) | |
| // ---- | |
| @import "breakpoint"; | |
| @import "susy"; |
| from Sitepoint post: | |
| https://www.sitepoint.com/creating-responsive-grid-system-susy-breakpoint/ | |
| <div class="page"> | |
| <header> | |
| <a class="logo" href="#"><img src="http://app.reminderbear.com/assets/images/panda-bear-large.png"></a> | |
| <h1 class="company-name">Pandas 'R Us</h1> | |
| <nav> | |
| <ul> | |
| <li class="nav-item"><a href="#">Nav 1</a></li> | |
| <li class="nav-item"><a href="#">Nav 2</a></li> | |
| <li class="nav-item"><a href="#">Nav 3</a></li> | |
| <li class="nav-item"><a href="#">Nav 4</a></li> |
| <div class="page"> | |
| <header class="banner"> | |
| <p>Banner</p> | |
| </header> | |
| <nav class="pagenav"> | |
| <p><a href="#">Page Nav</a></p> | |
| </nav> | |
| <main class="main"> | |
| <aside class="summary"> | |
| <p>Summary</p> |
sudo apt-get update
sudo apt-get install git
cd ~
git clone --recursive https://github.com/CartoDB/cartodb20.git
| <?php | |
| class AdminImportController extends AdminImportControllerCore | |
| { | |
| public function __construct() | |
| { | |
| parent::__construct(); | |
| } |
| #!/bin/sh | |
| # In case df shows >90% for /boot run: | |
| #sudo apt-get autoremove | |
| # Add repository | |
| sudo add-apt-repository ppa:ondrej/php | |
| # Install required packages | |
| sudo apt-get update |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn.
Author: Kaspars Dambis
kaspars.net / @konstruktors
A service worker is a special script which runs in the background in the browser and manages network requests to a given origin. It's originally installed by an app and stays resident on the user's machine/device. It's activated by the browser when a page from its origin is loaded, and has the option to respond to HTTP requests during the page loading, including the initial navigation request (for /index.html). This makes service workers very useful for true offline support in applications.
Additionally, service workers are the client-side endpoint for push notifications on the web.
The first step to setting up an Ethereum development environment is running a node. Public nodes run by MyEtherWallet and Augur are great public services. However, you cannot always attach your private keys securely to such a node, and so you are limited to read-only interactions (reading contract variables, checking account balances). Moreover, you cannot always upload contracts reliably due to (Solidity) compiler incompatibilities.