Skip to content

Instantly share code, notes, and snippets.

@fawx
fawx / css3.scss
Last active October 13, 2015 21:48
css3 mixins
// ---- CSS3 SASS MIXINS ----
// https://github.com/madr/css3-sass-mixins
//
// Copyright (C) 2011 by Anders Ytterström
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
@fawx
fawx / symphony-extensions.markdown
Created October 10, 2012 19:19
symphony extension ideas

symphony extension ideas

easy contact forms

  • simple all-in-one interface
  • choose a section with relevant fields (name, email, phone, message, etc)
  • automatically generate an event
  • automatically generate a data source
  • automatically generate page template for etm
  • display markup for developer to paste into contact form (think event creation page), including error/success message, required fields, postback field data
@fawx
fawx / install.markdown
Created October 1, 2012 16:12 — forked from landonlewis/install.markdown
New Machine Setup

New Machine

What I do after I do a fresh install. Things are sorta grouped by type.

First Things First

  1. Turn on TRIM if machine has a non-Apple SSD

General Config

@fawx
fawx / symphony.sh
Created October 1, 2012 16:05
automatic symphony setup
#!/bin/bash
echo "creating project directory.."
mkdir $1
cd $1
git init
echo "downloading symphony files.."
git remote add core git://github.com/symphonycms/symphony-2.git > /dev/null
git pull core master > /dev/null
<?php
require_once(TOOLKIT . '/class.datasource.php');
Class datasourceblog_tags extends SectionDatasource{
public $dsParamROOTELEMENT = 'blog-tags';
public $dsParamORDER = 'desc';
public $dsParamPAGINATERESULTS = 'no';
public $dsParamLIMIT = '20';
@fawx
fawx / script.js
Created July 6, 2012 20:34
sugar js
/*
* page functions are grouped by <body>'s class.
* all pages in a class fire init().
* named functions are fired according to <body>'s id.
* hyphens are stripped from classes and ids automatically.
*
*/
SUGAR = {
@fawx
fawx / symphony.sh
Created June 14, 2012 18:41
symphony install script
#!/bin/bash
echo "creating project directory.."
mkdir $1
cd $1
git init
echo "downloading symphony files.."
git remote add core git://github.com/symphonycms/symphony-2.git
git pull core master
Array
(
[0] => Array
(
[number] => 2
[message] => XSLTProcessor::importStylesheet(): </xsl:template>
[file] => /Users/fox/Sites/mercytrials/symphony/lib/toolkit/class.xsltprocess.php
[line] => 145
[type] => xsl
[context] => <?xml version="1.0" encoding="UTF-8"?>
@fawx
fawx / .vimrc
Created February 29, 2012 20:03
.vimrc, now with commented goodness
au! BufWritePost .vimrc source % " automatically reload when editing .vimrc
" 4 spaces for tabs and automatically inherit previous line's indentation.
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
@fawx
fawx / format-date-time-advanced.xsl
Created August 14, 2011 20:46
rowan's format date/time advanced (modified)
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date">
<!--
Description:
This is a date formatting utility. The named template "format-date" takes 2 parameters:
1. date - [required] takes an ISO date (2005-12-01T13:45:00)