Skip to content

Instantly share code, notes, and snippets.

@cole007
cole007 / digitalocean.md
Last active November 22, 2023 16:54
Digital Ocean internal migration - moving files between droplets over SSH/SCP

If you need to move a lot of files between DO server you can move these through SCP over the internal private Digital Ocean network.

NB both droplets need to be within the same region

To do this you need:

  1. enable private network for each droplet (if not done at creation, note the droplet needs to be off for this to be enabled once live)
  2. ensure that eth1 is enabled for both droplets if not already - see https://www.digitalocean.com/community/tutorials/how-to-enable-digitalocean-private-networking-on-existing-droplets
  3. scp files from the source server to the destination server are sent like:
{
"type": "discount",
"data": {
"name": "Luna and Gryff - £5 Off",
"description": "£5 Off",
"code": "LUNAGRYFF",
"start-date": null,
"end-date": null,
"per-item-discount": 0,
"per-item-percentage-off": "-0",
@cole007
cole007 / index.html
Last active October 27, 2021 16:10
Shopify API filter for product prices
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Shopify filtering Boilerplate</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="_assets/css/style.css">
</head>
<body>
@cole007
cole007 / rogueone.md
Last active January 2, 2021 21:26
Why Rogue One is my favourite Star Wars film

Star Wars, socialism and twentieth century models of historiography [^1]

Warning: this brain dump contains spoilers for Rogue One

Earlier this week I took my son to see Rogue One when he was off school sick. I was hoping for a good film - I'm a big fan of Gareth Edwards' previous offerings Monsters and Godzilla, and of course a massive fan of the original Star Wars films - but I didn't have any particular expectations; especially as this was the first Star Wars film to sit outside the main canon (perhaps excluding Caravan of Courage).

What I wasn't expecting was to love it. It was a different take on a universe I had grown up loving, replete in the visual and auditory iconography of the original trilogy. But it had license to do things differently, from the score to the opening crawl. There were nods throughout to the original films that this preceded, and of course the plot

<html>
<head><title>Test Page</title></head>
<body>
<h1>Test Page</h1>
<div id="block-one">
<h2>Block One</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Elementum eu facilisis sed odio. Vel orci porta non pulvinar neque. Sed libero enim sed faucibus turpis. Sed turpis tincidunt id aliquet risus feugiat in. Erat nam at lectus urna duis. Tellus cras adipiscing enim eu turpis. Malesuada fames ac turpis egestas integer eget aliquet nibh praesent. Consectetur a erat nam at. Porttitor lacus luctus accumsan tortor posuere ac. Sit amet aliquam id diam maecenas. Lectus quam id leo in vitae turpis massa. Ullamcorper a lacus vestibulum sed arcu non odio euismod lacinia. Massa eget egestas purus viverra. Ultrices vitae auctor eu augue. Lectus proin nibh nisl condimentum id venenatis a condimentum vitae. Faucibus nisl tincidunt eget nullam non nisi est sit. Vitae justo eget magna fermentum iaculis eu non.</p>
@cole007
cole007 / ma_dec_2018.md
Created December 12, 2018 15:39
MA Presentations, 12 Dec 2018

MA Presentations, 12 Dec 2018

Crit #1 - Business/Cultural Context

Sasha (Oleksandra): Portal for Teenagers on Mental Health in Ukraine.

Current situation:

  • highest % in Europe (WHO)
  • low access to treatment and support

Solution:

@cole007
cole007 / gist:504a85676aac776f069a
Last active September 30, 2018 17:01
Top 30 Films
Thin Red Line
Layer Cake
Blade Runner
Raiders of the Lost Ark
The Abyss
---
True Romance
Back to the Future
Lawrence of Arabia
The Departed
@cole007
cole007 / .htaccess
Created November 8, 2017 14:34
SR conf
# Apache Server Configs v2.14.0 | MIT License
# https://github.com/h5bp/server-configs-apache
# (!) Using `.htaccess` files slows down Apache, therefore, if you have
# access to the main server configuration file (which is usually called
# `httpd.conf`), you should add this logic there.
#
# https://httpd.apache.org/docs/current/howto/htaccess.html.
# ######################################################################
@cole007
cole007 / freelance-2014.csv
Last active October 4, 2017 22:04
Freelance Rates 2014 (@asclearasmud)
Where are you based in the UK? How would you describe what you do? Is your primary skill set(s) How old are you? How many years have you been a web professional? How many years have you been freelance? What is your DAY (not hourly) rate? DAY RATE (clean) What is your HOUR (not daily) rate? HOUR RATE (clean) How do you primarily charge clients? Do you normally request a deposit before starting work on a project? Do you normally use a contract? Do you mostly work … What is the average value of projects you work on? What is your gender? Do you primarily charge a fixed rate or does your rate vary between clients? What is the average amount of time spent working on a project? How many projects do you tend to work on at any on time? What is your normal invoicing terms? Where do you primarily work? On average, how many hours a day do you normally work? On average, how many days a week do you normally work? Do you have an accountant? What accounting software do you use, if any? Accounting software (clean) Is fr
@cole007
cole007 / app.js
Last active June 6, 2017 05:38
Shopify code samples
$(function($){
function doProducts(collection, limit) {
collection = typeof collection !== 'undefined' ? collection : 'books';
limit = typeof limit !== 'undefined' ? limit : 250;
var url = 'http://XXXX.myshopify.com/collections/' + collection + '/products.json?limit=' + limit;
return url;
}
var doFilter = function(data,min,max) {