Switch to using Hugo
This commit is contained in:
parent
03328460ae
commit
7caf09852c
29 changed files with 462 additions and 846 deletions
51
data/links.json
Normal file
51
data/links.json
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
[
|
||||
{
|
||||
"title": "Principles of Lighting and Rendering with John Carmack at QuakeCon 2013",
|
||||
"description": "John Carmack talking about various 3D rendering concepts.",
|
||||
"URL": "https://www.youtube.com/watch?v=IyUgHPs86XM"
|
||||
},
|
||||
{
|
||||
"title": "Why the Flash Crash Really Matters",
|
||||
"description": "An article on the flash crash of 2010 and the <a href=\"https://en.wikipedia.org/wiki/High-frequency_trading\" target=\"_blank\">high-frequency trading</a> programs that caused it.",
|
||||
"URL": "http://nautil.us/issue/23/dominoes/why-the-flash-crash-really-matters"
|
||||
},
|
||||
{
|
||||
"title": "Algorithms and Bias: Q. and A. With Cynthia Dwork",
|
||||
"description": "An interview with Cynthia Dwork of Microsoft Research on how algorithms show bias and where those biases come from.",
|
||||
"URL": "https://www.nytimes.com/2015/08/11/upshot/algorithms-and-bias-q-and-a-with-cynthia-dwork.html?abt=0002&abg=1"
|
||||
},
|
||||
{
|
||||
"title": "Origin of Quake3’s Fast InvSqrt() ",
|
||||
"description": "An article on the inverse square root function in Quake 3 looking into how it works and its history.",
|
||||
"URL": "https://www.beyond3d.com/content/articles/8/"
|
||||
},
|
||||
{
|
||||
"title": "Real Time Rendering: An Overview for Artists",
|
||||
"description": "A look at various aspects of real time 3D rendering, especially in video games.",
|
||||
"URL": "https://jesshiderue4.wordpress.com/real-time-rendering-an-overview-for-artists/"
|
||||
},
|
||||
{
|
||||
"title": "Entering the Quantum Era—How Firefox got fast again and where it’s going to get faster",
|
||||
"description": "An article that looks at various architectural changes to Firefox in version 57 and changes planned for future versions.",
|
||||
"URL": "https://hacks.mozilla.org/2017/11/entering-the-quantum-era-how-firefox-got-fast-again-and-where-its-going-to-get-faster/"
|
||||
},
|
||||
{
|
||||
"title": "The whole web at maximum FPS: How WebRender gets rid of jank ",
|
||||
"description": " An article that gives a high level description how Firefox’s new rendering engine works.",
|
||||
"URL": "https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/"
|
||||
},
|
||||
{
|
||||
"title": "Inside a super fast CSS engine: Quantum CSS (aka Stylo)",
|
||||
"description": "A high level overview of how Firefox’s new CSS engine Stylo works.",
|
||||
"URL": "https://hacks.mozilla.org/2017/08/inside-a-super-fast-css-engine-quantum-css-aka-stylo/"
|
||||
},
|
||||
{
|
||||
"title": "The Judge’s Code",
|
||||
"description": "An article on Judge William Alsup, who was the judge for the first <a href=\"https://en.wikipedia.org/wiki/Oracle_America,_Inc._v._Google,_Inc.\" target=\"_blank\"> Oracle v. Google</a> case over whether an API can be copywritten, and is now the judge for the <a href=\"http://www.businessinsider.com/google-waymo-v-uber-case-explained-2017-5\" target=\"_blank\">Waymo (Google) v. Uber</a>."
|
||||
},
|
||||
{
|
||||
"title": "Linkedin Dark Patterns",
|
||||
"description": "An in depth blog post detailing how LinkedIn used dark patterns to trick users.",
|
||||
"URL": "https://schlosser.io/writing/linkedin-dark-patterns/"
|
||||
}
|
||||
]
|
||||
59
data/projects.toml
Normal file
59
data/projects.toml
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
[[project]]
|
||||
title = "Snippets"
|
||||
incomplete = true
|
||||
description = "A web based tool for managing reusable pieces of code and useful programming resources"
|
||||
[[project.links]]
|
||||
title = "Web Client"
|
||||
URL = "https://snippets.neilbrommer.com/"
|
||||
[[project.links]]
|
||||
title = "Documentation"
|
||||
URL = "https://snippets.neilbrommer.com/documentation.html"
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/SnippetManager"
|
||||
|
||||
[[project]]
|
||||
title = "Start"
|
||||
incomplete = false
|
||||
description = "A new tab page that displays lists of links using the browser's indexedDB to store all data"
|
||||
[[project.links]]
|
||||
title = "Site"
|
||||
URL = "https://start.neilbrommer.com/"
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/NewTabPage"
|
||||
|
||||
[[project]]
|
||||
title = "Picture Viewer"
|
||||
incomplete = false
|
||||
description = "A Windows program for viewing image files written using C# and WPF"
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/PictureViewer"
|
||||
|
||||
[[project]]
|
||||
title = "Website"
|
||||
incomplete = false
|
||||
description = "The source code for this website"
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/Personal-Site"
|
||||
|
||||
[[project]]
|
||||
title = "Resume"
|
||||
incomplete = false
|
||||
description = "My [Resume](resume)"
|
||||
[[project.links]]
|
||||
title = "PDF"
|
||||
URL = "/NeilBrommer-WebResume.pdf"
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/Resume"
|
||||
|
||||
[[project]]
|
||||
title = "Auto Dark"
|
||||
incomplete = false
|
||||
description = "A small utility for setting/toggling the Windows 10 dark theme. Useful in combination with the Windows Task Scheduler to automatically change the theme."
|
||||
[[project.links]]
|
||||
title = "Source Code"
|
||||
URL = "https://github.com/NeilBrommer/WindowsAutoDark"
|
||||
2
data/social.toml
Normal file
2
data/social.toml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
github = "https://github.com/NeilBrommer"
|
||||
linkedin = "https://www.linkedin.com/in/neilbrommer/"
|
||||
Loading…
Add table
Add a link
Reference in a new issue