Web/blog/src/posts.json

129 lines
5.7 KiB
JSON
Raw Normal View History

[{
2019-02-17 17:54:15 +01:00
"name": "Blogs are Cool, I Think",
2019-10-03 13:29:55 +02:00
"summary": "The first post and how I created it",
2019-02-17 17:54:15 +01:00
"id": "blogs_are_cool",
"date": "2/17/2019",
2020-05-06 19:54:21 +02:00
"discuss": "https://twitter.com/Ellpeck/status/1096937184601538566",
"archived": true
2019-02-17 17:54:15 +01:00
},
{
"name": "Why You Should Mod Minecraft",
2019-10-03 13:29:55 +02:00
"summary": "About what makes Minecraft modding great and why you should probably try it if you enjoy programming",
2019-02-17 17:54:15 +01:00
"id": "why_you_should_mod_minecraft",
2019-02-17 17:56:17 +01:00
"date": "2/17/2019",
"discuss": "https://twitter.com/Ellpeck/status/1097177774337462272"
2019-03-22 15:36:33 +01:00
},
{
"name": "Kindling the Reading Flame",
2019-10-03 13:29:55 +02:00
"summary": "About the Kindle, Harry Potter and what I like and dislike about them",
2019-03-22 15:36:33 +01:00
"id": "reading",
2019-03-22 15:39:52 +01:00
"date": "3/22/2019",
"discuss": "https://twitter.com/Ellpeck/status/1109102077911973888"
2019-05-01 20:10:56 +02:00
},
{
"name": "Small Projects",
2019-10-03 13:29:55 +02:00
"summary": "Why creating a small, unplanned project is sometimes good for you",
2019-05-01 20:10:56 +02:00
"id": "small_projects",
2019-05-01 20:13:43 +02:00
"date": "5/1/2019",
"discuss": "https://twitter.com/Ellpeck/status/1123651624201871360"
2019-07-06 15:47:38 +02:00
},
{
"name": "About Cross-Platform and Motivation",
2019-10-03 13:29:55 +02:00
"summary": "How moving from Java to C# taught me how horrible it is to create a cross-platform application with little to no knowledge or documentation",
2019-07-06 15:47:38 +02:00
"id": "cross_platform_trainwreck",
2019-07-06 15:50:08 +02:00
"date": "7/6/2019",
2020-05-06 19:54:21 +02:00
"discuss": "https://twitter.com/Ellpeck/status/1147502654236573697",
"archived": true
2019-09-15 16:49:08 +02:00
},
{
"name": "Big Projects",
2019-10-03 13:29:55 +02:00
"summary": "How a once small project I even created a post about turned into the first game I'm selling: Foe Frenzy",
2019-09-15 16:49:08 +02:00
"id": "big_projects",
2019-09-15 16:50:47 +02:00
"date": "9/15/2019",
"discuss": "https://twitter.com/Ellpeck/status/1173247686654517249"
2019-10-04 14:08:22 +02:00
},
{
"name": "How to make a Rock Bottom mod",
"summary": "My adventures back into a game I stopped working on about two years ago and how I start on a mod for it",
"id": "rock_bottom_mod",
2019-10-04 14:10:02 +02:00
"date": "10/3/2019",
"discuss": "https://twitter.com/Ellpeck/status/1180092634410487808"
2019-10-10 01:42:04 +02:00
},
{
"name": "Java Tutorial, Part 1: Hello World",
"summary": "The first part of my post series for programming beginners where I explain how to write code in Java.",
"id": "java_1",
2019-10-10 01:47:35 +02:00
"date": "10/10/2019",
"discuss": "https://twitter.com/Ellpeck/status/1182080078827737088"
2019-10-10 19:56:37 +02:00
},
{
"name": "Java Tutorial, Part 2: Intro to Conditions and Loops",
"summary": "The second part of my post series for programming beginners. This one is all about conditions and loops.",
"id": "java_2",
2019-10-10 19:57:58 +02:00
"date": "10/10/2019",
"discuss": "https://twitter.com/Ellpeck/status/1182354544707198976"
2019-10-11 23:51:35 +02:00
},
{
"name": "Java Tutorial, Part 3: (Static) Methods",
"summary": "In this Java tutorial for beginners, we cover what (static) methods, parameters and return types are.",
"id": "java_3",
2019-10-11 23:52:41 +02:00
"date": "10/11/2019",
"discuss": "https://twitter.com/Ellpeck/status/1182775985885847558"
2019-10-14 23:24:06 +02:00
},
{
"name": "Java Tutorial, Part 4: Classes and Objects",
"summary": "In this Java tutorial for beginners, we cover the basics of creating classes with a constructor, some fields and some methods and creating objects of them.",
"id": "java_4",
2019-10-15 12:27:08 +02:00
"date": "10/14/2019",
"discuss": "https://twitter.com/Ellpeck/status/1183857460660101133"
2019-10-17 20:11:03 +02:00
},
{
"name": "Java Tutorial, Part 5: Things I Left Out So Far",
"summary": "In this Java tutorial for beginners, we cover some shorthands, some more data types, the difference between pass-by-reference and pass-by-value, null, as well as arrays and lists.",
"id": "java_5",
2019-10-17 20:12:15 +02:00
"date": "10/17/2019",
"discuss": "https://twitter.com/Ellpeck/status/1184894859133509632"
2019-10-20 23:14:41 +02:00
},
{
"name": "Lows",
"summary": "About depression and what it feels like when I don't know what to do with myself",
"id": "lows",
2019-10-20 23:16:07 +02:00
"date": "10/20/2019",
2020-05-06 19:54:21 +02:00
"discuss": "https://twitter.com/Ellpeck/status/1186028260838334471",
"archived": true
2019-10-31 14:51:24 +01:00
},
{
"name": "Java Tutorial, Part 6: Inheritance",
"summary": "In this Java tutorial for beginners, we cover classes extending other classes and the instanceof keyword.",
"id": "java_6",
2019-10-31 14:58:50 +01:00
"date": "10/31/2019",
"discuss": "https://twitter.com/Ellpeck/status/1189904487722487809"
2019-11-26 15:49:48 +01:00
},
{
"name": "Java Tutorial, Part 7: Overriding Methods",
"summary": "In this Java tutorial for beginners, we cover overriding methods, calling superclass methods and toString().",
"id": "java_7",
2019-11-26 15:50:55 +01:00
"date": "11/26/2019",
"discuss": "https://twitter.com/Ellpeck/status/1199339701640945664"
2020-05-06 20:16:52 +02:00
},
{
"name": "But Do You Really Care?",
"summary": "On taking a break from social media",
"id": "but_do_you_really_care",
"date": "5/6/2020"
2020-05-10 23:44:59 +02:00
},
{
"name": "Oh God, Please Don't Port Actually Additions",
"summary": "As Actually Additions celebrates its fifth birthday, I break down what I like and dislike about it.",
"id": "actually_additions",
2020-05-10 23:45:52 +02:00
"date": "5/10/2020",
"discuss": "https://twitter.com/Ellpeck/status/1259600490377216002"
2020-11-23 19:16:36 +01:00
},
{
"name": "The Future of Actually Additions",
"summary": "Not wanting to accept the fate of Actually Additions, someone has come to its rescue. 1.16, here we come?",
"id": "future_actually_additions",
2020-11-23 19:18:30 +01:00
"date": "11/23/2020",
"discuss": "https://twitter.com/Ellpeck/status/1330938597785169925"
2019-02-17 17:54:15 +01:00
}
]