forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (49 loc) · 1.99 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
layout: default
---
<div class="posts homepage">
<article class="post excerpt">
{% for post in site.posts limit:1 %}
<h1>Featured Post</h1>
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
<span class="dateStamp">{{ post.date | date: "%d %b, %Y" }}</span>
{% endfor %}
</article>
<article class="post excerpt">
<h1>Links</h1>
<ul class="projectList">
<li><a href="https://github.com/vexx32/PSKoans">PSKoans</a>
<p>
A simple yet extremely thorough introduction to PowerShell, built using Pester's testing syntax.
Enjoy a guided and helpful foray into the strange little quirks and helpful features of PowerShell!
</p>
</li>
<li><a href="https://www.youtube.com/watch?v=PxwHElPtD-0&t=1s">PowerShell's Tokenizer</a>
<p>
Shane and I take a dive through the underbelly of PowerShell Core, examining the language tokenizer
and what makes it tick. Join us as we get hopelessly lost and confused, and I show you how to add
complex number parsing to PowerShell Core, because <em>why not?</em>
</p>
</li>
<li><a href="https://github.com/vexx32/PSWordCloud">PSWordCloud</a>
<p>
Create masterful works of art from vast swathes of text. Use it for your scripts, your books, your
essays, that random text file you downloaded from <em>god only knows where</em> last week!
</p>
</li>
</ul>
</article>
<article class="post excerpt">
<h1>Recent Posts</h1>
<ul class="listRecent">
{% for post in site.posts offset:1 limit:3 %}
<li>{{ post.date | date: "%Y-%m-%d" }} — <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/blog/">More Posts</a>
</article>
</div>