Skip to content

Instantly share code, notes, and snippets.

View timcosgrove's full-sized avatar

Tim Cosgrove timcosgrove

  • Agile Six
  • San Francisco, CA USA
View GitHub Profile
@timcosgrove
timcosgrove / pr_template.md
Created December 29, 2022 02:11
Testing PR template

Description

Relates to #issueid

Acceptance criteria

PR creator: please copy the AC from your issue.

Testing plan

PR creator: please copy the testing plan from your issue, if there is one.

➜ redacted_repo_directory git:(feature/redacted_branch) ✗ composer -vvv update
Reading ./composer.json
Loading config file /Users/timcosgrove/.composer/auth.json
Loading config file ./composer.json
Checked CA file /private/etc/ssl/cert.pem: valid
Executing command (/Users/timcosgrove/workspace/redacted_repo_directory): git branch --no-color --no-abbrev -v
Reading /Users/timcosgrove/.composer/composer.json
Loading config file /Users/timcosgrove/.composer/auth.json
Loading config file /Users/timcosgrove/.composer/composer.json
Loading config file /Users/timcosgrove/.composer/auth.json
@timcosgrove
timcosgrove / index.js
Last active March 24, 2017 19:08
Basic POC gist for sassdoc/490
var sassdoc = require('sassdoc');
sassdoc.parse('./scss', { verbose: true })
.then(function (data) {
console.log(data);
});
/** IE-specific **/
.ie8, .ie7, .ie6 {
.primary-nav {
float: left;
ul.menu li {
background-image: url(../images/ie/nav_bg.png);
background-position: 50%;
:hover {
https://gist.github.com/d340121c9c2256329f0b
@timcosgrove
timcosgrove / Folder Preferences
Created September 30, 2011 23:44 — forked from chrisyour/Folder Preferences
Show hidden files and hidden folders (except .git) in your TextMate project drawer
# Want to show hidden files and folders in your TextMate project drawer? Simple, just modify the file and folder patterns in TextMate's preferences.
# Instructions:
# Go to TextMate > Preferences...
# Click Advanced
# Select Folder References
# Replace the following:
# File Pattern
<?php
// Modules can add elements to $page as needed in hook_page_build().
foreach (module_implements('page_build') as $module) {
$function = $module . '_page_build';
$function($page);
}
// this could also have been
module_invoke_all('page_build', $page);