git clone https://github.com/mastodon/mastodon
cd mastodon
{ curl https://gist.githubusercontent.com/pikesley/f573e283d7c3724f7cb202e73e0f49ee/raw/4d25875d725ecc280ff671a3e5317308568d8d1c/hack.patch ; echo ; } | git apply -v --index # apply my patch
touch .env.production
docker compose build
This file contains 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
FROM python:3.12 | |
ARG PROJECT | |
COPY ./ /opt/${PROJECT} | |
WORKDIR /opt/${PROJECT} |
This file contains 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
CLIVE_PORT=6060 | |
COCKROACH_PORT=7070 | |
POKROVSKY_PORT=8080 |
This file contains 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
const url = 'http://foo:8000' | |
module.exports = { | |
"The spans have the correct class": function (browser) { | |
let spans = ['#foo', '#bar', '#a', '#really', '#long', '#list'] | |
spans.forEach(function (span) { | |
browser | |
.url(url) |
Formatting 64GB and larger MicroSD cards with the SD Card Formatter thing no worky, it needs to be FAT32. And I've forgotten that more than once, so I'm writing it down here
This all presumes that you're happy to blat whatever's already on the card
- Create a new directory
- Create a
Makefile
in the directory with the content below - Copy the latest NOOBS into the directory
make download
if you don't already have it
This file contains 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
Thu Feb 28 11:16:48 UTC 2019 |
This file contains 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
mkdir -p /tmp/trap && pushd /tmp/trap && echo -e "FROM alpine\nRUN apk add ack\nCMD clear && echo && ack --bar && echo" > Dockerfile && docker build -t ackbar . && rm Dockerfile && docker run ackbar && popd > /dev/null |
This file contains 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
{ | |
"chain_length": 49, | |
"blocks": [ | |
{ | |
"data": "duck", | |
"time": 1535910914, | |
"hash": "0000556b89b5fcf5759862ec7d3c9f5a74979d9c87b378f12889330e500d0868", | |
"prev": "00009cb06f74e26cd1feea75624d7e967f1f73d763691c6eab268fb068b9e14c", | |
"nonce": 188474, | |
"difficulty": 4 |
I recently started using FontAwesome 5's beautiful SVG icons. However I was unable to get them to work on my Leaflet.js markers using https://github.com/lvoogdt/Leaflet.awesome-markers
After a little poking around in the inspection window, I came up with this:
- You need to give the
extraClasses
value in your marker definition (fas
orfab
or whatever, it's on the FontAwesome page for each icon) - The default layout is not great, but a little CSS fixes it right up. You'll want to constrain it to only these icons though, using some SASS nesting, or it will screw up all the other FA icons on your page
I hope somebody finds this useful
NewerOlder