- mkdir vagrant
- cd vagrant
- vagrant box add ubuntu http://dl.dropbox.com/u/7490647/talifun-ubuntu-11.04-server-i386.box
- vagrant init ubuntu
{ | |
// Sets the colors used within the text area | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
// Note that the font_face and font_size are overriden in the platform | |
// specific settings file, for example, "Base File (Linux).sublime-settings". | |
// Because of this, setting them here will have no effect: you must set them | |
// in your User File Preferences. | |
"font_face": "Monaco", | |
"font_size": 12, |
#!/bin/bash | |
set -e # exit on error | |
### README | |
# * installs your desired ruby versions using rbenv | |
# ** including openssl (needed by bundler) | |
# ** including sqlite (probably needed for rails apps) | |
# | |
# Before you start: | |
# * put ssh-keys in place |
Custom recipe to get macOS 10.12 Sierra running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.11 El Capitan setup recipe and 10.10 Yosemite setup recipe. I am currently tweaking this for 10.12 Sierra and expect to refine this gist over the next few weeks.
I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. I generally reinstall each computer from scratch every 6 months, and I do not perform upgrades between releases.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your o
#!/usr/sgug/bin/bash | |
# Must rebuild: zlib | |
rpmbuild -ba zlib.spec --nocheck | |
touch ~/rpmbuild/PROGRESS/zlib.done | |
# Must rebuild: xz | |
rpmbuild -ba xz.spec --nocheck | |
touch ~/rpmbuild/PROGRESS/xz.done | |
# Must rebuild: xosview | |
rpmbuild -ba xosview.spec --nocheck | |
touch ~/rpmbuild/PROGRESS/xosview.done |
Driven by these "requires": | |
special_packages.emplace("rpm"); | |
special_packages.emplace("sudo"); | |
special_packages.emplace("vim-minimal"); | |
special_packages.emplace("sgug-rpm-tools"); | |
special_packages.emplace("git-all"); | |
special_packages.emplace("tar"); | |
special_packages.emplace("bzip2"); | |
special_packages.emplace("gzip"); |
#!/bin/bash | |
_srpms=~/rpmbuild/SRPMS | |
_tinybuild=~/btw/tiny_build | |
_gitrepo=~/sgug-rse.git | |
_tbgit="${_tinybuild}/sgug-rse.git" | |
_releasepackages="${_tbgit}/releasepackages.lst" | |
#setup |
<?php | |
// | |
// Meatloaf - A Commodore 64/128 multi-device emulator | |
// https://github.com/idolpx/meatloaf | |
// Copyright(C) 2022 James Johnston | |
// | |
// Meatloaf Server Script----------------------------------------- | |
// Create a directory listing as a Commodore Basic Program | |
// Responds with binary PRG file ready to load and list | |
// --------------------------------------------------------------- |