Skip to content

Instantly share code, notes, and snippets.

View boztek's full-sized avatar

Boris Gordon boztek

  • Sydney, Australia
View GitHub Profile
@boztek
boztek / gist:3261622
Created August 5, 2012 04:11
Failed to install PHP 5.3.15
uborg:~ boris$ brew unlink php53
Unlinking /usr/local/Cellar/php53/5.3.14... 34 links removed
uborg:~ boris$ brew install -V /usr/local/Library/Taps/josegonzalez-php/Formula/php53.rb --with-mariadb --with-cgi --without-apache --with-intl --with-gmp
==> Downloading http://www.php.net/get/php-5.3.15.tar.bz2/from/this/mirror
Already downloaded: /Library/Caches/Homebrew/php53-5.3.15
==> ./configure --prefix=/usr/local/Cellar/php53/5.3.15 --disable-debug --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.3 --with-config-file-path=/usr/local/etc/
==> make
==> make install
==> /usr/local/Cellar/php53/5.3.15/bin/pear config-set php_ini /usr/local/etc/php/5.3/php.ini
@boztek
boztek / dabblet.css
Created May 6, 2013 02:43
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@boztek
boztek / dabblet.css
Created May 6, 2013 02:47 — forked from anonymous/dabblet.css
Playground
/**
* Playground
*/
background: #f06;
min-height: 100%;
max-height: 100px;
overflow: scroll;
width: 50%;
margin: auto;
@boztek
boztek / javascript_resources.md
Created November 9, 2013 13:23 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@boztek
boztek / css_resources.md
Created November 9, 2013 13:23 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

diff --git a/nodehierarchy.info b/nodehierarchy.info
index ef90e9f..5032dac 100644
--- a/nodehierarchy.info
+++ b/nodehierarchy.info
@@ -2,6 +2,7 @@ name = Node Hierarchy
description = A module to make nodes hierarchical.
package = "Node Hierarchy"
core = 7.x
+php = 5.4
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle'
});
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'input',
attributeBindings: [ 'type', 'value', 'placeholder', 'data-stripe', 'name' ],
type: 'text',
_sanitizedValue: undefined,
input() { this._handleChangeEvent(); },
change() { this._handleChangeEvent(); },
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
model: [
{name: 'billy', age: 20},
{name: 'bob', age: 30},
{name: 'jruce', age: 50}
]
});
diff --git a/og_ui/og_ui.admin.inc b/og_ui/og_ui.admin.inc
index 0ce13a2..34ce1c3 100644
--- a/og_ui/og_ui.admin.inc
+++ b/og_ui/og_ui.admin.inc
@@ -420,6 +420,7 @@ function og_ui_delete_membership_submit($form, &$form_state) {
* Form builder; OG user administration page.
*/
function og_ui_admin_account($group_type, $gid) {
+ drupal_goto('/groups/'.$gid.'/manage');
og_set_breadcrumb($group_type, $gid, array(l(t('Group'), "$group_type/$gid/group")));