Skip to content

Instantly share code, notes, and snippets.

View digitaldesigndj's full-sized avatar
🦕
JavaScript

Taylor Young digitaldesigndj

🦕
JavaScript
View GitHub Profile
@digitaldesigndj
digitaldesigndj / gist:8725933
Created January 31, 2014 03:02
BoundStar CommandStar Config
upstream app_commandstar {
server 127.0.0.1:8080;
}
upstream app_boundstar {
server 127.0.0.1:3000;
}
server {
server_name furious.boundstar.com;
@digitaldesigndj
digitaldesigndj / readme.md
Last active January 4, 2016 20:59
Starbound Upstart Configuration - Furious Koala

Starbound Furious Koala Upstart Script

I use this with Ubuntu and StarBound installed via steamcmd.

Save the content below into the file /etc/init/starbound.conf

so nano /etc/init/starbound.conf, then paste in the content, then crtl+o to save and crtl+x to exit nano.

Warning! - You might have to correct the path /root/starbound/linux64/starbound_server to point correctly at your stabound install.

@digitaldesigndj
digitaldesigndj / pre_print_r.sublime-snippet
Last active December 16, 2015 19:38
Pre Print_R - SublimeText Snippet
<snippet>
<content>
<![CDATA[
echo '<pre>';
print_r( $1 );
echo '</pre>';
]]>
</content>
<tabTrigger>print_r</tabTrigger>
<tabTrigger>pre</tabTrigger>