Incus is a utility for managing both LXC containers and virtual machines. Their website describes it as "a next generation system container, application container, and virtual machine manager".
Fedora doesn't ship with ruby installed and I've previously utilised rbenv to manage different versions. This gist contains instructions for using the built-in Toolbox / Podman container systems in Fedora so Ruby and Rails development can be carried out without installing packages on the base system.
This should also work well in Silverblue or similar immutable distributions.
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Money\14.0] | |
| "AddBankMemo"=dword:00000001 | |
| "AddPayPrompt"=dword:00000000 | |
| "AlternateRegNav"=dword:00000000 | |
| "AskRemove"=dword:00000001 | |
| "AutoComplete"=dword:00000001 | |
| "AutoDropCombos"=dword:00000001 | |
| "BackupFDCompress"=dword:00000001 |
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
| run "mv README.rdoc README.md" | |
| gsub_file("README.md", "== README", "# #{app_name.titleize}") | |
| gem 'haml' | |
| gem_group :development, :test do | |
| gem 'annotate' | |
| gem 'better_errors' | |
| gem 'capybara' | |
| gem 'quiet_assets' |
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
| <snippet> | |
| <content><![CDATA[{{${1:outlet}}}]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>hb</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> | |
| <!-- <scope>source.html</scope> --> | |
| </snippet> |
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 | |
| gitcreate() { | |
| repo_name=$1 | |
| invalid_credentials=0 | |
| dir_name=`basename $(pwd)` | |
| if [ "$repo_name" = "" ]; then | |
| echo "Repo name (hit enter to use '$dir_name')?" |