Skip to content

Instantly share code, notes, and snippets.

@brooksbecton
brooksbecton / createMockUsers.js
Last active December 4, 2020 18:49
Mocking Meteor User Account for Unit Tests
import { roles } from './../../roles';
/**
* User's Information
*/
export const users = {
eve: {
uid: null,
email: 'eve@gmail.com',
name: 'eve',
@ThatGuySam
ThatGuySam / .htaccess
Last active July 22, 2018 13:05
Compression and caching for MediaTemple Grid Shared Hosting
# Put in same folder as the html folder
# ex: /domains/example.com/.htaccess
# http://clicknathan.com/web-design/gzip-compression-on-mediatemple/
# BEGIN (mt) controlled settings
<IfModule !mod_fcgid.c>
AddHandler php-stable .php
</IfModule>
<IfModule mod_fcgid.c>
@djfrsn
djfrsn / meteorTemplateLevelSubscriptions.html
Last active August 29, 2015 14:26
Meteor Template Level Subscriptions
<template name="dashboardSlideOut">
{{> accountsBreadcrumb}}
{{#if Template.subscriptionsReady}}
<ul class="collection">
{{#each libSections}}
<li class="collection-item">{{ libSection }}
<i class="material-icons">heart</i>
</li>
{{/each}}
</ul>
@ziadoz
ziadoz / awesome-php.md
Last active May 8, 2025 07:37
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.