Skip to content

Instantly share code, notes, and snippets.

View ceejbot's full-sized avatar
📈
bigger on the inside

C J Silverio ceejbot

📈
bigger on the inside
View GitHub Profile
@ceejbot
ceejbot / secure-client.js
Last active August 9, 2022 21:09
A node https server/client pair that uses client certs to authorize clients.
#!/usr/bin/env node
var fs = require('fs'),
https = require('https');
// We pass our client key & cert to the http agent,
// which we then use to make the request.
var agentOptions = {
key: fs.readFileSync('client.key'),
cert: fs.readFileSync('client.crt'),
@ceejbot
ceejbot / skyrimse_visual_mods.md
Last active April 22, 2022 21:52
skyrim special edition visual mods, a brief discussion

Skyrim mods redux

Skyrim mods are why the game is alive eight years after it was launched. They’re amazing and fantastic and disturbing and inspiring. They fix game bugs, add new features, and make the game look fresh.

I am happily role-playing my way through my social distancing 2020 playthrough, posting ridiculous screenshots. Sometimes people on Twitter ask me for a modlist. My modlist is on Modwatch. But... I'm not sure this helps anyway. This list is names of plugin files, not mod names, so it can be super-confusing to read. Also, let’s be honest: this list of mods is bewildering to the newcomer. If you wanted to mod Skyrim so it looks and plays wonderfully, my modlist would not help you get started.

So what would help you get started? Well, how about Ceejbot’s introduction to Skyrim modding?

This is not a modding guide. A modding guide sets out to help you build a specific modlist that works well together, without bugs. I'

@ceejbot
ceejbot / config
Last active September 1, 2021 17:47
fast notes on how to build and test rust lambdas in local dev on a mac
# this goes into your ~/.cargo/config file
[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"
@ceejbot
ceejbot / deploy.yml
Last active August 11, 2021 16:03
Using Honeycomb's buildevents tool inside a github action
name: deploy service tar
on:
push:
branches:
- 'deploy/*'
jobs:
docker:
name: Build and archive service
runs-on: ubuntu-latest
@ceejbot
ceejbot / README.md
Last active December 2, 2020 07:06
How I set up a mastodon instance on AWS with ansible on ubuntu trusty
@ceejbot
ceejbot / majordomo.js
Created June 9, 2012 22:58
ZeroMQ router/dealer example for node.js
var zmq = require('zmq');
function Majordomo(options)
{
this.requests = zmq.socket('router');
this.requests.identity = 'majordomo:incoming:' + process.pid;
this.responders = zmq.socket('dealer');
this.responders.identity = 'majordomo:outgoing:' + process.pid;
if (options)
this.configure(options);
@ceejbot
ceejbot / keys-signed-message.txt
Created April 27, 2020 17:07
my voice is my passport. verify me.
BEGIN MESSAGE.
GfpOjO4LfNgGyn3 Jf978A3jQ8zuPOa 9Z4XMUnyYdzTfXs 3k8q9NVjvRpESd1
aZMwFeUbXDj9Mf5 cOfl0xNC5z5TCKq 6Xr2MZHgg7HZov5 heLT8FXX8UMzhCa
FwnBHkHRJSXqZP7 eAaQxl20aJKpN9X DbqVEIGPFsoLEPa XjnSiFMS1xeI0I7
HJdXhPEARKzONiL aI8qjsOHMCBNsrY 0VaNu2IP.
END MESSAGE.
@ceejbot
ceejbot / ceej-vortex-modlist.json
Last active March 28, 2020 22:36
All mods I have installed via Nexus Vortex, in json format. Restore the list with this extension: https://github.com/Garethp/Vortex-Modlist-Backup
[
{
"name": "Vurts Ascadian Isles Trees Replacer II",
"game": "morrowind",
"modId": 37249,
"fileId": 76153
},
{
"name": "HQ Weapons",
"game": "morrowind",
@ceejbot
ceejbot / 2020-01-16-notes.md
Created January 17, 2020 05:22
notes from pairing session 2020/01/16 Chris & CJ

notes from pairing session 2020/01/16 Chris & CJ

What is a signature in entropic?

  • chris wants a binary format
  • we have to hash it
  • order matters
  • let's get fussy

All objects start with type, expressed as a string.

@ceejbot
ceejbot / stashwoes.md
Last active March 14, 2019 02:57
A summary of things I miss about Github when I use Stash.

What I miss about github

See this Cloudup stream for visual references.

The short answer is that I miss everything. There is no comparing the two projects. Stash's feature set is a shadow of Github's.

What a project looks like on Github:

What a project looks like on Github