Skip to content

Instantly share code, notes, and snippets.

View charlesroper's full-sized avatar
🌱

Charles Roper charlesroper

🌱
View GitHub Profile

Installation

Via Chocolatey:

choco install fileoptimizer -y

Via Scoop:

scoop install fileoptimizer

@charlesroper
charlesroper / windows_terminal.reg
Last active February 17, 2020 21:39
Windows Terminal Here (add Windows Terminal to Explorer right-click menu)
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Windows Terminal [PS]]
"Icon"="\"C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Windows Terminal [PS]\command]
@="\"C:\\Users\\Charles\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe\" -d \"%V\""
[HKEY_CLASSES_ROOT\Directory\shell\Windows Terminal [PS]]
"Icon"="\"C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\""

How to setup a practically free CDN using Backblaze B2 and Cloudflare

⚠️ Note 2023-01-21
Some things have changed since I originally wrote this in 2016. I have updated a few minor details, and the advice is still broadly the same, but there are some new Cloudflare features you can (and should) take advantage of. In particular, pay attention to Trevor Stevens' comment here from 22 January 2022, and Matt Stenson's useful caching advice. In addition, Backblaze, with whom Cloudflare are a Bandwidth Alliance partner, have published their own guide detailing how to use Cloudflare's Web Workers to cache content from B2 private buckets. That is worth reading,

I'm doing a training course at work and promised I would list some of the books on progressive leadership I have found useful. Here they are in alphabetical order.

Creativity Inc. by Ed Catmull

I love Pixar movies. They have so very rarely fallen below the benchmark of excellent. Not only are they classic stories in their own right, they are also technical marvels. How does an organisation like Pixar maintain such a successful track record? How does it manage to be hugely commercially successful and critically acclaimed, too? Few studios can lay claim to staying so true to their art, especially when the stakes are so high, with the contemporary movies having typically having a budget in excess of $200 million. In this book, Ed Catmull explains how.

One of my favourite chapters, The Hungry Beast and the Ugly Baby, tells of how Pixar has to carefully balance the tension of feeding the "hungry beast" (that is, keeping the business going) with the need to generate and try new ideas, that enter the world a

@inherits UmbracoViewPage<IRelatedLinks>
@{
var linkCards = Model.LinkCards;
var linkCardsAreEnabled = Model.RelatedLinksEnabled;
if (linkCards == null || !linkCardsAreEnabled)
{
linkCards = Model.Parent.GetPropertyValue<IEnumerable<IPublishedContent>>("linkCards", true);
linkCardsAreEnabled = Model.Parent.GetPropertyValue<bool>("relatedLinksEnabled", true);
}
@charlesroper
charlesroper / 99BottlesCSharpTest.cs
Created April 27, 2017 10:54
Tests for 99 Bottles of Beer song
using Xunit;
public class BeerSongTest
{
[Fact]
public void First_generic_verse()
{
var expected =
"99 bottles of beer on the wall, 99 bottles of beer.\n"+
"Take one down and pass it around, 98 bottles of beer on the wall.\n"+
@charlesroper
charlesroper / cf-update-dns-txt.ps1
Last active December 29, 2021 20:53
PowerShell script to update the _acme-challenge TXT entry on CloudFlare
# See https://github.com/ebekker/ACMESharp/wiki/Quick-Start for background
# Could be enhanced by putting YOUR_CF_API_KEY and YOUR_EMAIL in environment vars
# Usage:
# > cf-update-dns-txt.ps1 -Domain example.com -Value vNx_fpLgvq0l4rqSATuxhxl9pa155SoeKvNZ98AFB_4
param( [string]$domain, [string]$value )
$headers = @{
"X-Auth-Key" = "YOUR_CF_API_KEY"
"X-Auth-Email" = "YOUR_EMAIL"
"Content-Type" = "application/json"

![If you want to wake at 6am, when should you go to sleep?][sleepy_crop]

I have a love-hate relationship with sleep. I love sleeping and I hate not getting enough. I naturally lean towards being a late [chronotype][chronotype] - a night owl. I tend to stay up late and rise late, yet I don't find this rhythm to be particularly productive. I used to get a second wind - or just one long wind - throughout the afternoon and into the late evening, but not any more. Now I'm older, I find I run out of mental steam sooner and end up spinning my wheels. If I'm particularly tired, my eyes will droop and I'll be nodding at the keyboard. Most importantly, a tired person who is grouchy because he didn't achieve what he wanted during the day is no good when an ebullient daughter wants to play. That I am present for my daughter is as important as any work, so I need to pace my energy.

To compound this problem, if I get out of bed early and really do not get enough sleep, I run out of steam much earlier and it can disrupt t

@charlesroper
charlesroper / pageName2.cshtml
Created April 5, 2016 11:20
Using partial view macro parameters
@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
var tag = Model.MacroParameters["tag"].ToString();
var klass = Model.MacroParameters["klass"].ToString();
}
<@tag class="@klass">
@Umbraco.Field("pageNameOverride", altFieldAlias: "pageName")
</@tag>