Skip to content

Instantly share code, notes, and snippets.

@joradom
joradom / SassMeister-input.scss
Created May 20, 2016 23:46 — forked from jdsteinbach/SassMeister-input.scss
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// Breakpoint (v2.5.0)
// Susy (v2.1.3)
// ----
@import "breakpoint";
@import "susy";
@joradom
joradom / ! Using susy with breakpoint.rdm
Last active May 21, 2016 09:17 — forked from jdsteinbach/SassMeister-input-HTML.html
Generated by SassMeister.com.
from Sitepoint post:
https://www.sitepoint.com/creating-responsive-grid-system-susy-breakpoint/
@joradom
joradom / PANDA-SassMeister-input-HTML.html
Last active May 21, 2016 08:57
Generated by SassMeister.com.
<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>
@joradom
joradom / SassMeister-input-HTML.html
Created May 31, 2016 14:21 — forked from mirisuzanne/SassMeister-input-HTML.html
Susy One Tutorial: Mobile-First Magic Grids [part 2]
<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>
@joradom
joradom / cartodb-install-ubuntu-1204.md
Created September 24, 2016 19:33 — forked from arjendk/cartodb-install-ubuntu-1204.md
Installing CartoDB on Ubuntu Server 12.04
@joradom
joradom / override_controllers_admin_AdminImportController.php
Created September 28, 2016 10:56 — forked from phproberto/override_controllers_admin_AdminImportController.php
Prestashop importer override to update prices without losing product names
<?php
class AdminImportController extends AdminImportControllerCore
{
public function __construct()
{
parent::__construct();
}
@joradom
joradom / update-to-php5.6-on-ubuntu-14.04.sh
Created April 24, 2017 15:10 — forked from eyecatchup/update-to-php5.6-on-ubuntu-14.04.sh
Update PHP 5.x to PHP 5.6 on Ubuntu 14.04
#!/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
@joradom
joradom / wordpress-plugin-svn-to-git.md
Created April 26, 2017 17:08 — forked from kasparsd/wordpress-plugin-svn-to-git.md
Using Git with Subversion Mirroring for WordPress Plugin Development

The Angular Service Worker

What is a service worker?

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.

Features

@joradom
joradom / EthereumNodeGCP.md
Created June 14, 2018 17:52 — forked from learner-long-life/EthereumNodeGCP.md
How to Run an Ethereum (Geth Light) Node on GCP

How to Run an Ethereum Node in GCP

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.