Skip to content

Instantly share code, notes, and snippets.

View glennhefley's full-sized avatar
💭
I may be slow to respond.

Glenn Hefley glennhefley

💭
I may be slow to respond.
View GitHub Profile
Project for 'more than grammar' checker.
@glennhefley
glennhefley / keybase.md
Created January 25, 2017 09:15
Keybase Proof of GitHub Account

Keybase proof

I hereby claim:

  • I am glennhefley on github.
  • I am glennhefley (https://keybase.io/glennhefley) on keybase.
  • I have a public key ASBSfKBPkQXQ5A0hilfwxPt_SQWlcsSMwehgucQRYRgxBwo

To claim this, I am signing this object:

/*!
* jQuery TextChange Plugin
* http://www.zurb.com/playground/jquery-text-change-custom-event
*
* Copyright 2010, ZURB
* Released under the MIT License
*/
(function ($) {
$.event.special.textchange = {
@glennhefley
glennhefley / consoleStuff.js
Last active April 27, 2020 14:50
Set of Util functions in Javascript
console.log(html5player.url_low);
@glennhefley
glennhefley / diary.txt
Created March 27, 2017 15:55
[A Blithe Dirge] #wordthoughts
Blithe sounds to me like a note of Goth good cheer or a 9th chord inside a happy dirge.
@glennhefley
glennhefley / Percision_typography.html
Created June 7, 2017 21:49
Precision responsive typography by Mike at CodePen
<h1>Responsive Typography</h1>
<p><a href="https://codepen.io/MadeByMike/pen/YPJJYv">By Mike at Codepen</a>
<p>It appears that by using calc() and vw we can get responsive typography that scales perfectly between specific pixel values within a specific viewport range.</p>
<p>The problem with the common approach to responsive typography is that it is jumpy and requires a lot of media queries.</p>
<p>Viewport units are fluid but lack precise control over font-size.</p>
<p>Typically you might use a table like this to work out the range of font sizes across different resolutions.</p>
<table>
<tbody>
@glennhefley
glennhefley / syntax examples for winwrap basic.txt
Created May 18, 2018 11:55
WinWrap Basic Start Project notes
'#Language "WWB-COM"
Project Project1
Optimizer On
EntryPoint Main
LoadModule "main.bas"
LoadModule "module1.bas"
End Project
@glennhefley
glennhefley / index.html
Created June 20, 2020 03:39
Navigation Awesome
C<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="navbarContainer">
@glennhefley
glennhefley / wiktionarylookup.html
Created July 14, 2020 00:57 — forked from nichtich/wiktionarylookup.html
Look up a word in Wiktionary via MediaWiki API and show the Wiktionary page
<html>
<head>
<script type="text/javascript" src="./jquery-1.4.3.min.js"></script>
<script type="text/javascript">
var baseURL = 'http://en.wiktionary.org';
function showPage(page,text) {
var sourceurl = baseURL + '/wiki/' + page;
$('#pagetitle').text(page);
$('#wikiInfo').html(text);
$('#sourceurl').attr('href',sourceurl);
@glennhefley
glennhefley / shBrushJScript.js
Created July 14, 2020 19:48 — forked from mhawksey/shBrushJScript.js
SyntaxHighlighter which includes Google Apps Script services
/**
* SyntaxHighlighter
* http://alexgorbatchev.com/SyntaxHighlighter
*
* SyntaxHighlighter is donationware. If you are using it, please donate.
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
*
* @version
* 3.0.83 (July 02 2010)
*