Skip to content

Instantly share code, notes, and snippets.

View luetkemj's full-sized avatar
🌄
Working from home

Mark Luetke luetkemj

🌄
Working from home
View GitHub Profile
@luetkemj
luetkemj / gist:5ac8aebc9bc498409c09
Created June 30, 2014 14:40
increase ulimit mac osx
##too many open files error when installing gulp for google's web starter. This did the trick
ulimit -n 1048
<div class="pattern" id="demo-pattern.variant">
<details class="pattern-details">
<summary class="pattern-name">
demo-pattern.variant <a class="pattern-link" rel="bookmark" href="" title="View just this pattern">#</a>
</summary>
<code class="pattern-markup language-markup">
<!-- github gists or possibly a grunt task to highlight markup here... -->
</code>
@luetkemj
luetkemj / gist:a8a0b317cb58ed5ec136
Last active August 29, 2015 14:23
Create category on WPMS blog from another blog in the same network.
<?php
// current blog
$switch_from = get_current_blog_id();
// blog id we are switching to so we can create a category there
$switch_to = 2;
echo 'About to switch to '.$switch_to.' from '. $switch_from.'.';
// https://codex.wordpress.org/WPMU_Functions/switch_to_blog
switch_to_blog( $switch_to );
@luetkemj
luetkemj / gist:2007213
Created March 9, 2012 15:54
HTML: Abbreviated Template
<!DOCTYPE html>
<title>HTML5 abbr</title>
<meta charset=utf-8>
<h1>That's it!</h1>
<ul>
<li>Really?
<li>Really.
</ul>
@luetkemj
luetkemj / gist:2031976
Created March 13, 2012 21:50 — forked from bekapod/gist:2017562
CSS: Inline Block Hack
.inline-block {
display: inline-block;
/* IE7 hack to mimic inline-block on block elements */
*display: inline;
*zoom: 1;
}
@luetkemj
luetkemj / quicktemplate.html
Created April 5, 2013 19:37
HTML: Quick Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="description" content="Quick Template">
<meta name="author" content="luetkemj">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
@luetkemj
luetkemj / gist:9c1a8d5d0a9a01fe683eefed3e4440a8
Created February 14, 2017 03:12
scribe*:weather.controller
meanTemp: 73
highTemp: 95
lowTemp: 63
{
"zone": "temperate",
"terrain": "plains",
"season": "summer",
"month": "july",
"initialMs": 0
}
meanRH: 65
highRH: 82
lowRH: 48
[
{
"temp":77
},
{
"temp":68
},
{
"temp":64
},