digitalcraftsman
10 years ago
2 changed files with 106 additions and 0 deletions
@ -0,0 +1,94 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}"> |
|||
<head> |
|||
{{ partial "head.html" . }} |
|||
</head> |
|||
<body> |
|||
<nav class="main-nav"> |
|||
<a href='/about'>About </a> |
|||
<a class="cta" href="/feed.xml">Subscribe</a> |
|||
</nav> |
|||
<div class="profile"> |
|||
<section id="wrapper"> |
|||
<header id="header"> |
|||
<a href='/about'> |
|||
<img id="avatar" class="2x" src="{{ .Site.BaseURL }}images/profile.png" /> |
|||
</a> |
|||
<h1>Nick Balestra</h1> |
|||
<!-- <h2>Software engineer</h2> --> |
|||
<h2>Try. Fail. Learn. Repeat. </h2> |
|||
</header> |
|||
</section> |
|||
</div> |
|||
<section id="wrapper" class="home"> |
|||
<ul id="post-list"> |
|||
<li> |
|||
<a href='/2015/javascript-functional-libraries/'> |
|||
<aside class="dates">Jun 13</aside> |
|||
</a> |
|||
<a href='/2015/javascript-functional-libraries/'>JS Functional Programming Libraries <h2>From underscore to lodash and Ramda, from chaining to composition and auto-currying</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/Kactus/'> |
|||
<aside class="dates">Jun 11</aside> |
|||
</a> |
|||
<a href='/2015/Kactus/'>Kactus for Jekyll <h2>A theme for Jekyll</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/IIFE/'> |
|||
<aside class="dates">Jun 08</aside> |
|||
</a> |
|||
<a href='/2015/IIFE/'>The IIFE pattern <h2>Immediately-Invoked Function Expression</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/truthy-and-falsy/'> |
|||
<aside class="dates">Jun 07</aside> |
|||
</a> |
|||
<a href='/2015/truthy-and-falsy/'>Truthy and falsy values <h2>When non-boolean values are coerced to booleans</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/prime-algos/'> |
|||
<aside class="dates">May 25</aside> |
|||
</a> |
|||
<a href='/2015/prime-algos/'>Trial division, Sieve of Eratosthenes and Factorization Wheel <h2>A short post on prime algorithms</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/using-every-to-return-some/'> |
|||
<aside class="dates">May 15</aside> |
|||
</a> |
|||
<a href='/2015/using-every-to-return-some/'>Using every() to return some() <h2>Functional programming helpers</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/jekyll-on-github-quick-guide/'> |
|||
<aside class="dates">May 10</aside> |
|||
</a> |
|||
<a href='/2015/jekyll-on-github-quick-guide/'>Jekyll on Github - Quick guide <h2>Static site generator for Github pages</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/hackbot-a-js-robot-for-the-browser/'> |
|||
<aside class="dates">Jan 26</aside> |
|||
</a> |
|||
<a href='/2015/hackbot-a-js-robot-for-the-browser/'>Hackbot - A js robot for the browser <h2>A fully programmable bot, modeled after Hubot.js</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/intro-js-onboarding-api/'> |
|||
<aside class="dates">Jan 25</aside> |
|||
</a> |
|||
<a href='/2015/intro-js-onboarding-api/'>Intro.js onboarding API <h2>My contribute for a better onboarding script</h2></a> |
|||
</li> |
|||
<li> |
|||
<a href='/2015/javascripts-lexical-scope-hoisting-and-closures-without-mystery/'> |
|||
<aside class="dates">Jan 17</aside> |
|||
</a> |
|||
<a href='/2015/javascripts-lexical-scope-hoisting-and-closures-without-mystery/'>JavaScript’s lexical scope, hoisting and closures without mystery <h2>Understanding the Javascript language mechanics</h2></a> |
|||
</li> |
|||
</ul> |
|||
<footer id="footer"> |
|||
<p class="small">© Copyright 2015 Nick Balestra</p> |
|||
</footer> |
|||
</section> |
|||
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> |
|||
<script src="{{ .Site.BaseURL }}js/main.js"></script> |
|||
</body> |
|||
|
|||
</html> |
@ -0,0 +1,12 @@ |
|||
<meta charset="utf-8"> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}"> |
|||
<meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}"> |
|||
<meta name="generator" content="{{ .Hugo.Generator }}" /> |
|||
<title>{{ .Site.Title }}</title> |
|||
<link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.png"> |
|||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css"> |
|||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.css"> |
|||
{{ "<!-- RSS Feed -->" | safeHTML }} |
|||
<link rel="alternate" type="application/rss+xml" title="{{ with .Site.Params.name }}{{ . }}{{ end }}" href="/feed.xml"> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue