Skip to content

Instantly share code, notes, and snippets.

View magnus919's full-sized avatar
💭
Diving back into Hugo and figuring out how/where I want to deploy it.

Magnus Hedemark magnus919

💭
Diving back into Hugo and figuring out how/where I want to deploy it.
View GitHub Profile
@melroy89
melroy89 / mastodon-docker-setup.md
Last active March 19, 2024 18:24 — forked from akuechl/mastodon-docker-setup.md
Mastodon Docker Setup - most complete and easiest guide online
@soarez
soarez / ca.md
Last active April 15, 2024 12:20
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.

@treydock
treydock / foreman_dns_mass_recreate.rb
Last active March 3, 2021 03:04
foreman_dns_mass_recreate.rb
#!/usr/share/foreman/script/rails runner -e production
Host.all.each do |host|
next unless host.dns?
print "#{host}..."
dns_a_record = host.dns_a_record
print "#{dns_a_record}..."