1

Add linklist

This commit is contained in:
Evan Pratten 2020-12-07 23:26:42 -05:00
parent 61a8bdab63
commit 8997064874
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
7 changed files with 164 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{
"name": "Interesting Open Source Projects",
"entries": [
{
"text": "ImHex: A hex editor build on ImGUI",
"url": "https://github.com/WerWolv/ImHex"
},
{
"text": "Aseprite source code",
"url": "https://github.com/aseprite/aseprite"
},
{
"text": "Windows memory access from JavaScript",
"url": "https://github.com/Rob--/memoryjs"
},
{
"text": "Poetry: A very nice Python build tool",
"url": "https://python-poetry.org/"
},
{
"text": "CLI rich text formatting for Python",
"url": "https://github.com/willmcgugan/rich"
},
{
"text": "Small but powerful JavaScript animation library",
"url": "https://github.com/alexfoxy/lax.js"
},
{
"text": "A modern implementation of the Flash Player in Rust+WASM",
"url": "https://github.com/ruffle-rs/ruffle"
}
]
}

View File

@ -0,0 +1,53 @@
{
"name": "Minecraft",
"entries": [
{
"text": "Source code for the Wurst hacked client",
"url": "https://github.com/Wurst-Imperium/Wurst7"
},
{
"text": "Tool-assisted parkour",
"url": "https://youtu.be/SabNImEKUS8"
},
{
"text": "Optimal Minecraft server launch arguments",
"url": "https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/"
},
{
"text": "An optimized alternative to the default Minecraft renderer",
"url": "https://www.curseforge.com/minecraft/mc-mods/sodium"
},
{
"text": "Isometric world viewer",
"url": "https://github.com/spoutn1k/mcmap"
},
{
"text": "Fancy terrain generation",
"url": "https://terraforged.com/"
},
{
"text": "World seed cracker",
"url": "https://github.com/KaptainWutax/SeedCracker"
},
{
"text": "Server software with a JavaScript scripting API",
"url": "https://github.com/PrismarineJS/flying-squid"
},
{
"text": "A world renderer",
"url": "http://overviewer.org/"
},
{
"text": "A proxy between bedrock and java edition multiplayer sessions",
"url": "https://github.com/GeyserMC/Geyser/"
},
{
"text": "Scratch-like educational programming environment based on Minecraft",
"url": "https://minecraft.makecode.com/"
},
{
"text": "Information on the animated texture systems used by Minecraft and Optifine",
"url": "https://bitbucket.org/prupe/mcpatcher/wiki/Custom_Animations"
}
]
}

View File

@ -0,0 +1,21 @@
{
"name": "Random Links",
"entries": [
{
"text": "Polyglot programming",
"url": "https://en.wikipedia.org/wiki/Polyglot_(computing)"
},
{
"text": "A lot of information on the P2P networking that powers GTA Online",
"url": "https://www.reddit.com/r/GTA/comments/5onqrv/can_i_catch_a_modder_with_wireshark_pc/"
},
{
"text": "The UI tools used to build GitHub",
"url": "https://primer.style/"
},
{
"text": "Using takeout and GDPR data to graph activity",
"url": "https://twitter.com/Benjojo12/status/1335569822776700928?s=19"
}
]
}

View File

@ -0,0 +1,13 @@
{
"name": "Reference Material",
"entries": [
{
"text": "Aggregated programming documentation",
"url": "https://devdocs.io/"
},
{
"text": "3D coordinate systems by company",
"url": "https://twitter.com/FreyaHolmer/status/1325556229410861056"
}
]
}

View File

@ -11,6 +11,7 @@
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link" href="{{site.baseurl}}/blog">Blog</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/events">Events</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/linklist">LinkList</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/downloads">Downloads</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/about">About</a>
</div>

26
linklist.atom Normal file
View File

@ -0,0 +1,26 @@
---
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US"
xmlns="http://www.w3.org/2005/Atom"
xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
<id>{{ site.url }}/linklist.atom</id>
<link rel="alternate" type="text/html" href="{{ site.url }}/linklist"/>
<link rel="self" type="application/atom+xml" href="{{ site.url }}/linklist.atom"/>
<title>{{ site.title }} - The LinkList</title>
<author>
<name>{{site.title}}</name>
</author>
{% for category in site.data.linklist %}
{% for entry in category[1].entries %}
<entry>
<id>{{entry.url}}</id>
<link rel="alternate" type="text/html" href="{{entry.url}}"/>
<title><![CDATA[{{ entry.text }}]]></title>
<author>
<name>{{ site.title }}</name>
</author>
</entry>
{% endfor %}
{% endfor %}
</feed>

17
linklist.md Normal file
View File

@ -0,0 +1,17 @@
---
title: The LinkList
description: A collection of interesting content I find around the internet
layout: page
---
The LinkList is an idea provided by @rsninja722. I have a habit of constantly messaging him URLs to things I find, and he suggested just making a proper list. So, here you go. Enjoy!
{% for category in site.data.linklist %}
## {{category[1].name}}
{% for entry in category[1].entries %}
- [{{entry.text}}]({{entry.url}})
{% endfor %}
{% endfor %}