-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 6.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html><html lang="en-us"><head><link href="http://gmpg.org/xfn/11" rel="profile"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta http-equiv="content-type" content="text/html; charset=utf-8"><!-- Mobile FTW --><meta name="viewport" content="width=device-width,initial-scale=1"><!-- Title --><title>askesian · Supping life's nitrous oxide</title><!-- Social Meta --><meta name="twitter:card" content="summary"><meta name="twitter:site" content="@askesian"><meta name="twitter:title" content="askesian"><meta name="twitter:description" content="Crabwalking through the mind of a learner"><meta name="twitter:creator" content="@askesian"><meta name="twitter:domain" content="http://askesian.net"><!-- CSS --><link href="/assets/css/main.css" rel="stylesheet"><!-- JS --><script src="/assets/js/vendor-all.js"></script><!-- Font Face Observer for fast loading of webfonts --><script>(function (window, undefined) {
var lato400, lato700;
var docEl = window.document.documentElement;
if (COOKIEJAR.getCookie('fonts-loaded') === 'true') {
console.log('fonts-loaded');
docEl.className += " fonts-loaded";
}
else {
lato400 = new FontFaceObserver('Lato', {
weight: 400
});
lato700 = new FontFaceObserver('Lato', {
weight: 700
});
Promise.all([
lato400.check(),
lato700.check()
]).then(function() {
docEl.className += " fonts-loaded";
COOKIEJAR.addCookie('fonts-loaded', 'true', 7);
});
}
}(this));</script><!-- Google Site Verification --><meta name="google-site-verification" content="U6YPESxNVHg41T6gYx640_oFdniD2hQZ6jaiYWJBsUY"><!-- Icons --><link rel="apple-touch-icon-precomposed" sizes="144x144" href="/assets/images/apple-touch-icon-precomposed.png"><link rel="shortcut icon" href="/favicon.ico"><!-- RSS --><link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"></head><body class="home"><!-- Google Tag Manager --><noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-K3873T" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-K3873T');</script><!-- End Google Tag Manager --><nav class="main-nav"><div class="wrapper--main-nav"><h1 class="brand"><a class="brand-link" href="/" title="home page of askesian.net">askesian</a></h1><ul class="nav-list"><li class="nav-list__item"><a class="nav-list__link" title="About" href="/about/">About</a></li><li class="nav-list__item"><a class="nav-list__link" title="Blog" href="/blog/">Blog</a></li><li class="nav-list__item"><a class="nav-list__link" title="Work" href="/work/">Work</a></li><li class="nav-list__item"><a class="nav-list__link" title="Get In Touch" href="/contact/">Contact</a></li></ul></div></nav><div class="container"><div class="main" role="main"><!-- show most recent post as featured post --><section class="section section--featured"><article class="post"><header class="post-header"><h2 class="post-title"><a class="post-title__link" href="/2015/06/06/wifi-strength-in-the-console/">Wi-Fi strength graph in the console</a></h2><span class="post-date post-date--inline">Jun 6, 2015</span></header><div class="post-body"><p>After learning about <a href="http://zachholman.com/spark/" title="Spark repo on Github">spark</a> by <a href="https://github.com/holman" title="Zach Holman Github profile">Zach Holman</a>, and reviewing some of the <a href="https://github.com/holman/spark/wiki/Wicked-Cool-Usage" title="Examples using Spark">examples</a>, I wrote up this little <a href="https://gist.github.com/askesian/26ee4a76f147d1ee22e1" title="View Gist">bash helper</a> function for showing wi-fi strength in the console.</p><a class="read-more-link" href="/2015/06/06/wifi-strength-in-the-console/" title="Wi-Fi strength graph in the console">Read the full post</a></div></article></section><section class="section older-posts"><header class="posts-header"><h2 class="section-title">Older Articles</h2></header><article class="post"><header class="post-header"><h2 class="post-title"><a class="post-title__link" href="/2015/05/22/gulp-filter-exclusion-filter-gotcha/">Exclusion filter gotcha with gulp-filter</a></h2><span class="post-date post-date--inline">May 22, 2015</span></header><div class="post-body"><p>When using <a href="https://www.npmjs.com/package/gulp-filter">gulp-filter</a>, you might run into an issue when using an exclusion filter to remove certain files or directories from the source files passed to <code>gulp.src(...)</code>.</p><a class="read-more-link" href="/2015/05/22/gulp-filter-exclusion-filter-gotcha/" title="Exclusion filter gotcha with gulp-filter">Read the full post</a></div></article><article class="post"><header class="post-header"><h2 class="post-title"><a class="post-title__link" href="/2013/04/23/require-js-conditional-load/">Conditional loading with require.js</a></h2><span class="post-date post-date--inline">Apr 23, 2013</span></header><div class="post-body"><p>For one of my mobile-first projects, I wanted to use jQuery 2.x by default, but fallback to jQuery 1.9.x when the site was loaded in IE8 or lower.</p><a class="read-more-link" href="/2013/04/23/require-js-conditional-load/" title="Conditional loading with require.js">Read the full post</a></div></article></section></div><aside class="articles articles--external"><header><h1>Other Writings</h1></header><div class="article"><a class="link--external" href="//uxmag.com/articles/modals-on-mobile-how-to-use-them-wisely" title="Modals on mobile: How to use them wisely" rel="prefetch">Modals on mobile: How to use them wisely</a><div class="external-article__date">May 28, 2015</div></div><div class="article"><a class="link--external" title="Editing Files on Raspberry Pi with Local Sublime" href="//www.onenorth.com/blog/post/editing-files-on-raspberry-pi-with-local-sublime" rel="prefetch">Editing Files on Raspberry Pi with Local Sublime</a><div class="external-article__date">March 23, 2015</div></div></aside></div><footer class="footer" role="complimentary"><div class="wrapper--footer"></div></footer><script src="/assets/js/all.js"></script></body></html>