2010-01-30 04:33:54 +00:00
<!DOCTYPE html>
< html >
< head >
2010-03-10 09:04:08 +00:00
< %= render '_head' %>
2010-01-30 04:33:54 +00:00
< / head >
2010-02-03 02:42:15 +00:00
< body class = "home" >
2010-02-04 02:38:35 +00:00
< %= render '_header' %>
2018-03-16 23:48:48 +00:00
< main >
< section id = "posts" class = "column" >
< h1 >
2018-03-17 00:00:48 +00:00
< a href = "/articles/" > Recent Posts< / a >
< a href = "/feed/" > < img src = "/images/feed-icon.svg" class = "feed-icon feed-icon-sup" width = "12" height = "12" alt = "Feed Icon" / > < / a >
2010-01-30 04:33:54 +00:00
< / h1 >
2018-03-16 23:48:48 +00:00
2010-01-30 04:33:54 +00:00
< ul class = "articles" >
2018-03-16 23:48:48 +00:00
< % sorted_articles[0..4].each do |article| %>
2010-02-04 02:38:35 +00:00
< %= render '_article', :article => article %>
2018-03-16 23:48:48 +00:00
< % end %>
2010-01-30 04:33:54 +00:00
< / ul >
2018-03-16 23:48:48 +00:00
< a href = "/articles/" class = "more" > More » < / a >
< / section >
2010-01-30 04:33:54 +00:00
2018-03-16 23:48:48 +00:00
< section id = "projects" class = "column" >
< h1 > < a href = "/projects/" > Projects< / a > < / h1 >
< ul class = "projects" >
< li >
< a href = "https://readrust.net/" >
< img src = "/images/read-rust.svg" > Read Rust
< / a >
< p > Curated posts from the Rust community.< / p >
< / li >
< li >
2019-07-14 23:22:00 +00:00
< a href = "https://desktop.institute/" >
< svg fill = "#000000" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 64 64" x = "0px" y = "0px" > < g data-name = "Browser" > < path d = "M2,2V62H62V2ZM60,4v6H4V4ZM4,60V12H60V60Z" > < / path > < rect x = "6" y = "6" width = "2" height = "2" > < / rect > < rect x = "10" y = "6" width = "2" height = "2" > < / rect > < rect x = "14" y = "6" width = "2" height = "2" > < / rect > < rect x = "56" y = "6" width = "2" height = "2" > < / rect > < path d = "M8,56H32V16H8Zm2-38H30V54H10Z" > < / path > < path d = "M36,34H56V16H36Zm2-16H54V32H38Z" > < / path > < path d = "M36,56H56V38H36Zm2-16H54V54H38Z" > < / path > < / g > < / svg > Desktop Institute
2018-03-16 23:48:48 +00:00
< / a >
2019-07-14 23:22:00 +00:00
< p > Documenting the search for the perfect desktop environment.< / p >
2018-03-16 23:48:48 +00:00
< / li >
< li >
2019-07-14 23:22:00 +00:00
< a href = "https://bitcannon.net/" >
2018-03-16 23:48:48 +00:00
< svg id = "bookmark" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 32 32" fill = "#85144b" >
< path d = "M6 2 L26 2 L26 30 L16 24 L6 30 Z" > < / path >
< / svg > Bit Cannon
< / a >
< p > A blog about operating system exploration.< / p >
< / li >
2019-07-14 23:22:00 +00:00
< li >
< a href = "https://binarytrance.com/apps/symbolmate" >
< img src = "/images/symbolmate.png" > SymbolMate
< / a >
< p > iPhone and iPad app for finding symbols and emoji.< / p >
< / li >
2018-03-16 23:48:48 +00:00
< li >
< a href = "https://linkedlist.org/" >
< svg id = "i-link" viewBox = "0 0 32 32" width = "32" height = "32" fill = "none" stroke = "currentcolor" stroke-linecap = "round" stroke-linejoin = "round" stroke-width = "2" >
< path d = "M18 8 C18 8 24 2 27 5 30 8 29 12 24 16 19 20 16 21 14 17 M14 24 C14 24 8 30 5 27 2 24 3 20 8 16 13 12 16 11 18 15" / >
< / svg > Linked List
< / a >
< p > A personal knowledge base.< / p >
< / li >
2010-01-30 04:33:54 +00:00
< / ul >
2018-03-16 23:48:48 +00:00
< a href = "/projects/" class = "more text-right" > More » < / a >
< / section >
< / main >
2010-01-30 04:33:54 +00:00
2010-02-04 02:38:35 +00:00
< %= render '_footer' %>
2010-01-30 04:33:54 +00:00
< / body >
< / html >