Skip to content

Instantly share code, notes, and snippets.

View sean-clayton's full-sized avatar
🎷
🐢

Sean Clayton sean-clayton

🎷
🐢
View GitHub Profile
#qbt {
/* Insert global styles here */
box-sizing: border-box;
}
/***********************************************************
****************************TABS**************************
************************************************************/
#qbt-tabs{
//Credits to "ISleepTheDayAway" for the basic autoexec, edited and tweaked by me
//bhop mode switcher thing - optional, can remove
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "+jump"
bind "space" "+back"
// bind mouse3 "bhopon" // toggle scroll wheel bhop
Here is my model I'm working with:
```Post.add({
title: { type: String, required: true },
slug: { type: String, index: true },
state: { type: Types.Select, options: 'draft, published, archived', default: 'draft', index: true },
author: { type: Types.Relationship, ref: 'User', index: true },
publishedDate: { type: Types.Date, index: true },
image: { type: Types.CloudinaryImage },
content: {
Here is my model I'm working with:
```Post.add({
title: { type: String, required: true },
slug: { type: String, index: true },
state: { type: Types.Select, options: 'draft, published, archived', default: 'draft', index: true },
author: { type: Types.Relationship, ref: 'User', index: true },
publishedDate: { type: Types.Date, index: true },
image: { type: Types.CloudinaryImage },
content: {

Here is my model I'm working with:

Post.add({
	title: { type: String, required: true },
	slug: { type: String, index: true },
	state: { type: Types.Select, options: 'draft, published, archived', default: 'draft', index: true },
	author: { type: Types.Relationship, ref: 'User', index: true },
	publishedDate: { type: Types.Date, index: true },
	image: { type: Types.CloudinaryImage },
@sean-clayton
sean-clayton / colorpalette.scss
Created August 3, 2014 18:22
skulbuny color palette
$pink: #f58;
$blue: #09f;
$yellow: #dc4;
$orange: #f80;
$green: #00d030;
$khaki: #db8;
$brown: #4d3510;
$foam: #6c9;
$fire: #f50;
$sponge: #ffb;
hostname "NZ Insurgency Server!"
rcon_password "INS2FTW"
sv_password "" //Only set this if you intend to have a private server!
// sv_downloadurl "type-url-here"
// sv_allowdownload 1
// sv_allowupload 1
// mp_coop_lobbysize 8 // sets coop lobby size to 4 players
// maxplayers 32 // sets maxplayers to 40
Template.market.events
'submit form[name="marketForm"]': (e) ->
e.preventDefault()
# Code to be run on click
{
name: "Dalton Gateway",
system: "LHS 3447",
type: "station",
hasBlackmarket: true,
bannedItems: [],
commodities: [
{
commodity: "Hydrogen Fuels",
category: "Chemicals",
@sean-clayton
sean-clayton / mpg.py
Created February 9, 2015 00:49
Project 1 - Calculating Gas Mileage
from support import * # Imports your helper functions from support.py
def main():
# Call all of your functions from support.py in here
# and return the output to the user
main()