- https://www.brompton.com/shop/bags
- https://vincita.cc/collections/brompton-bags
- https://brilliantbikes.co.uk/37-brompton-bags
- https://www.valeriasbikeaccessories.com/en/12-bags-baskets
- https://soumaleather.com/collections/brompton-collection
- https://eu.restrap.com/collections/folding-bike-bags
- https://www.carradice.co.uk/bags/commuting-folding
- https://www.odinwooddesign.com/shop?category=For+Brompton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
################################################################################ | |
# | |
# Description: | |
# Convert images for compatibility with the Supernote A6X and A5X. | |
# | |
# If an original image's size exceeds the ratio required to be compatible | |
# with the Supernote, it will automatically be centered and cropped. | |
# | |
# Usage: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// This is an example of a resilient worker program written in Go. | |
// | |
// This program will run a worker, wait 5 seconds, and run it again. | |
// It exits when SIGINT or SIGTERM is received, while ensuring any ongoing work | |
// is finished before exiting. | |
// | |
// Unexpected panics are also handled: program won't crash if the worker panics. | |
// However, panics in goroutines started by the worker won't be handled and have |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
trap "exit" INT TERM ERR | |
trap "kill 0" EXIT | |
# These lines make sure that the Hugo server and the Argo Tunnel processes are killed when you ctrl+c the terminal window. | |
cd /Users/samrhea/blog-samrhea | |
# This changes the directory to where my blog lives. Replace this with your own by running `pwd` in your blog directory and adding the output here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import client from 'part:@sanity/base/client' | |
import ReactKanban from 'react-kanban-dnd'; | |
const columns = [ | |
] | |
const query = `{ | |
"draft": *[_type == "post" && editorial == "draft"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"dev": "sapper dev", | |
"format:check": "prettier --check './**/*.{js,ts,css,html,svelte}'", | |
"format": "prettier --write './**/*.{js,ts,css,html,svelte}'", | |
"build": "NODE_ENV=production sapper build", | |
"export": "NODE_ENV=production sapper export", | |
"start": "node __sapper__/build", | |
"cy:run": "cypress run", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link | |
rel="prefetch" | |
as="image" | |
href="https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg" | |
onload="fetch('https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg')" | |
/> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{/* Assemble imgix URL without the query bit */}} | |
{{ $path := ((.Get "url") | default (.Get 0)) }} | |
{{/* Handle public shared images from Google Drive */}} | |
{{ if (in $path "drive.google.com") }} | |
{{ $path = ($path | replaceRE "([^=\\s]+id=)([\\w_-]+)" "https://drive.google.com/uc?id=$2") }} | |
{{ end }} | |
{{/* Encode paths that are full URLs or contain a "?" */}} | |
{{ if ((in $path "?") | or (findRE "^https?:\\/\\/" $path 1)) }} | |
{{ $path = (delimit (slice "/" (strings.TrimPrefix "=" (querify "" $path))) "") }} | |
{{ end }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (event, context, callback) => { | |
let name | |
if (event.pathParameters && event.pathParameters.name) { | |
name = event.pathParameters.name | |
} | |
/* generate the hello paragraph */ | |
const helloParagraph = greetPerson(name) | |
// callback is sending HTML back |
NewerOlder