<?xml version='1.0' encoding='utf-8' ?>

<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:atom10='http://www.w3.org/2005/Atom'>
<channel>
  <title>fardell24</title>
  <link>https://fardell24.dreamwidth.org/</link>
  <description>fardell24 - Dreamwidth Studios</description>
  <lastBuildDate>Fri, 28 Dec 2018 08:49:38 GMT</lastBuildDate>
  <generator>LiveJournal / Dreamwidth Studios</generator>
  <lj:journal>fardell24</lj:journal>
  <lj:journaltype>personal</lj:journaltype>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/273044.html</guid>
  <pubDate>Fri, 28 Dec 2018 08:49:38 GMT</pubDate>
  <title>Google + Content reposting - 21 June 2015</title>
  <link>https://fardell24.dreamwidth.org/273044.html</link>
  <description>Digital and Interactive Games 2015, Term 2, Week 9, Session 1&lt;br /&gt;Mastermind continued&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Today:&lt;br /&gt;&lt;br /&gt;int correctPlace = 0;&lt;br /&gt;int correctColour = 0;&lt;br /&gt;&lt;br /&gt;if new(i) = puzzle(i)&lt;br /&gt;    correctPlace++;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://i483.photobucket.com/albums/rr193/Brenorenz/W17001_zpsdsllhcqn.png&quot;&gt;http://i483.photobucket.com/albums/rr193/Brenorenz/W17001_zpsdsllhcqn.png&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Square.cpp&lt;br /&gt;&lt;br /&gt;#include &quot;Square.h&quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Square::Square()&lt;br /&gt;{&lt;br /&gt;    DrawingObject::DrawingObject();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void Square::setUp(float size, ID2D1SolidColorBrush* brush) {&lt;br /&gt;    this-&amp;gt;size = size;&lt;br /&gt;    setLocation(halfSize, halfSize);&lt;br /&gt;    setBrush(brush);&lt;br /&gt;    setActive(true);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void Square::setLocation(float x, float y) {&lt;br /&gt;    location.x = x;&lt;br /&gt;    location.y = y;&lt;br /&gt;    rect = D2D1_RECT_F(/*&lt;br /&gt;        D2D1::Point2F(location.x, location.y),&lt;br /&gt;        location.x - halfSize, location.y - halfSize, location.x + halfSize, location.y + halfSize*/&lt;br /&gt;        );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void Square::update(GameTime gameTime) {&lt;br /&gt;    velocity.setX(velocity.getX() + getAccelerationX());&lt;br /&gt;    velocity.setY(velocity.getY() + getAccelerationY() + getGravity());&lt;br /&gt;    setLocation(static_cast&lt;float&gt;(location.x + velocity.getX() * static_cast&lt;float&gt;(gameTime.getElapsedTime())),&lt;br /&gt;        static_cast&lt;float&gt;(location.y + velocity.getY() * static_cast&lt;float&gt;(gameTime.getElapsedTime())));&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void Square::draw(ID2D1HwndRenderTarget* renderingTarget) {&lt;br /&gt;    renderingTarget-&amp;gt;DrawRectangle(rect, brush, strokeWidth);&lt;br /&gt;    renderingTarget-&amp;gt;FillRectangle(rect, brush);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Square::~Square()&lt;br /&gt;{&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;BaseApp.h&lt;br /&gt;#include “Square.h”&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Mastermind.java&lt;br /&gt;image.Background&lt;br /&gt;&lt;br /&gt;background = new image(“media/Mastermind 002.png”)&lt;br /&gt;&lt;br /&gt;#cplusplus #gamedesign   #gameprogramming   #java   #mastermind   #programming   #tafe  &lt;/float&gt;&lt;/float&gt;&lt;/float&gt;&lt;/float&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=273044&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/273044.html</comments>
  <category>game design</category>
  <category>game programming</category>
  <category>tafe</category>
  <category>programming</category>
  <category>java</category>
  <category>c++</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/271436.html</guid>
  <pubDate>Sat, 15 Dec 2018 07:49:19 GMT</pubDate>
  <title>Google + Content reposting - 25th April 2015 - 2</title>
  <link>https://fardell24.dreamwidth.org/271436.html</link>
  <description>Digital and Interactive Games 2015 – Term 2, Session 1&lt;br /&gt;Java&lt;br /&gt;IDE – Eclipse for Java&lt;br /&gt;Programming Minecraft in Term 3&lt;br /&gt;This term – Basic Java&lt;br /&gt;Java – can be used in other OS&apos;s for creating user interfaces&lt;br /&gt;&lt;br /&gt;Dungeon Game&lt;br /&gt;–    character (hero)&lt;br /&gt;–    Next week: collision detection routine&lt;br /&gt;&lt;br /&gt;…&lt;br /&gt;Today&lt;br /&gt;Setup Eclipse&lt;br /&gt;Intro to Java&lt;br /&gt;…&lt;br /&gt;JavaFX&lt;br /&gt;&lt;br /&gt;Read and Write files&lt;br /&gt;&lt;br /&gt;Other half of the time&lt;br /&gt;C++&lt;br /&gt;&lt;br /&gt;Minecraft&lt;br /&gt;–    minigame&lt;br /&gt;&lt;br /&gt;Still need to use Bitbucket&lt;br /&gt;&lt;br /&gt;Intro to Java&lt;br /&gt;–    Download Eclipse&lt;br /&gt;Not Microsoft, Apple or Google&lt;br /&gt;Oracle&lt;br /&gt;It is used extensively on Android&lt;br /&gt;&lt;br /&gt;Misconception – Java on Windows – vector for viruses&lt;br /&gt;&lt;br /&gt;Senior Programmer A$90,000 per year&lt;br /&gt;Junior Programmer A$65,000 per year&lt;br /&gt;More jobs in Europe.&lt;br /&gt;&lt;br /&gt;Java a Beginner&apos;s Guide (6th Edition)&lt;br /&gt;&lt;br /&gt;Other option – Netbean (Oracle)&lt;br /&gt;&lt;br /&gt;Eclipse – open source&lt;br /&gt;&lt;br /&gt;–    Create New Project&lt;br /&gt;New Java Project&lt;br /&gt;First Program&lt;br /&gt;JRE – JavaSE- 1.8&lt;br /&gt;No need for working sets – until we work on Minecraft.&lt;br /&gt;New Class&lt;br /&gt;Package&lt;br /&gt;au.com.nsct.first&lt;br /&gt;or&lt;br /&gt;com.hotmail.fardell24.first&lt;br /&gt;or&lt;br /&gt;com.gmail.brenorenz30.first&lt;br /&gt;&lt;br /&gt;Name&lt;br /&gt;FirstProgram (Pascal casing)&lt;br /&gt;Public&lt;br /&gt;/ public static void main (string[] args) – using console&lt;br /&gt;Finish&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// Print test message&lt;br /&gt;System.out.Println(“Test String”);&lt;br /&gt;&lt;br /&gt;Important to document&lt;br /&gt;&lt;br /&gt;Second Program&lt;br /&gt;&lt;br /&gt;int a = 5;&lt;br /&gt;int b = 3;&lt;br /&gt;&lt;br /&gt;System.out.Println(a + b);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;int sum = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10;&lt;br /&gt;&lt;br /&gt;System.out.Println(sum);&lt;br /&gt;&lt;br /&gt;Loops&lt;br /&gt;&lt;br /&gt;(C++)&lt;br /&gt;for (int i = 0; i != 10; ++i) {&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Java&lt;br /&gt;for (int i = 0; i &amp;lt; 10; ++i) {&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;(0, 10]&lt;br /&gt;&lt;br /&gt;for (int i = 0; i &amp;lt; 10; ++i) {&lt;br /&gt;    sum;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;2147483647&lt;br /&gt;64 bit int overflow&lt;br /&gt;Formula – sum of 1 to n&lt;br /&gt;n(n + 1)&lt;br /&gt;---------&lt;br /&gt;      2&lt;br /&gt;&lt;br /&gt;Third Project&lt;br /&gt;&lt;br /&gt;int sum = 0;&lt;br /&gt;int n = 10;&lt;br /&gt;sum = (n * (n + 1)) / 2;&lt;br /&gt;&lt;br /&gt;System.out.Println(sum);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ParseInt&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;int sum = 0;&lt;br /&gt;int n = 10;&lt;br /&gt;&lt;br /&gt;if (args.length = 0) {&lt;br /&gt;    n = Integer.parseInt(args[0]);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;sum = (n * (n + 1))/ 2;&lt;br /&gt;System.out.Println(sum);&lt;br /&gt;System.out.Println(args.length);&lt;br /&gt;Scope and lifetime of variables&lt;br /&gt;&lt;br /&gt;i483.photobucket.com/albums/rr…&lt;br /&gt;&lt;br /&gt;System.out.Print(“A”);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for (int x = 0; x &amp;lt; 5; x++) {&lt;br /&gt;    System.out.Print(“A”);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for (int x = 0; x &amp;lt; 5; x++) {&lt;br /&gt;    for (int y = 0; y &amp;lt; 5; y ++) {&lt;br /&gt;        System.out.Print(“A”);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;…&lt;br /&gt;&lt;br /&gt;* / + -&lt;br /&gt;% - mod – returns a remainder.&lt;br /&gt;&lt;br /&gt;for (int x = 0; x &amp;lt; 5; x++) {&lt;br /&gt;    for (int y = 0; y &amp;lt; 5; y ++) {&lt;br /&gt;        if (y % 2 == 0)&lt;br /&gt;            System.out.Print(&apos;A&apos;);&lt;br /&gt;        else&lt;br /&gt;            System.out.Print(&apos; &apos;);&lt;br /&gt;    }&lt;br /&gt;    System.out.Println();&lt;br /&gt;}&lt;br /&gt;for (int x = 0; x &amp;lt; 5; x++) {&lt;br /&gt;    for (int y = 0; y &amp;lt; 5; y ++) {&lt;br /&gt;        if (x % 2 == 0) {&lt;br /&gt;            if (y % 2 == 0)&lt;br /&gt;                System.out.Print(&apos;A&apos;);&lt;br /&gt;            else&lt;br /&gt;                System.out.Print(&apos; &apos;);&lt;br /&gt;        }&lt;br /&gt;        else {&lt;br /&gt;            if (y % 2 == 1) {&lt;br /&gt;                System.out.Print(&apos; &apos;);&lt;br /&gt;            else&lt;br /&gt;                System.out.Print(&apos;A&apos;);&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;i483.photobucket.com/albums/rr…&lt;br /&gt;&lt;br /&gt;Pass in row size&lt;br /&gt;Pass in column size&lt;br /&gt;Declare first variable (x – row)&lt;br /&gt;Declare second variable (y - column)&lt;br /&gt;&lt;br /&gt;Ask for number of rows&lt;br /&gt;Get number of rows&lt;br /&gt;Ask for number of columns&lt;br /&gt;Get number of columns&lt;br /&gt;&lt;br /&gt;x Loop (using number of rows)&lt;br /&gt;.    y Loop (using number of columns)&lt;br /&gt;.    .    if (x = 1)&lt;br /&gt;.    .    .    if (y = 1)&lt;br /&gt;.    .    .    .    Print &apos;X&apos;&lt;br /&gt;.    .    .    if else (y = n)&lt;br /&gt;.    .    .    .    Print &apos;X&apos;&lt;br /&gt;.    .    .    else&lt;br /&gt;.    .    .    .    Print &apos; &apos;&lt;br /&gt;.    .    if else (x = n)&lt;br /&gt;.    .    .    if (y = 1)&lt;br /&gt;.    .    .    .    Print &apos;X&apos;&lt;br /&gt;.    .    .    if else (y = n)&lt;br /&gt;.    .    .    .    Print &apos;X&apos;&lt;br /&gt;.    .    .    else&lt;br /&gt;.    .    .    .    Print &apos; &apos;&lt;br /&gt;.    .    else&lt;br /&gt;.    .    .    if (y = 1)&lt;br /&gt;.    .    .    .    Print &apos; &apos;&lt;br /&gt;.    .    .    if else&lt;br /&gt;.    .    .    .    Print &apos; &apos;&lt;br /&gt;.    .    .    else&lt;br /&gt;.    .    .    .    Print &apos;A&apos;&lt;br /&gt;.    .    New Row&lt;br /&gt;&lt;br /&gt;#cplusplus   #gamedesign   #gameprogramming   #java   #minecraft   #programming  &lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=271436&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/271436.html</comments>
  <category>java</category>
  <category>c++</category>
  <category>programming</category>
  <category>minecraft</category>
  <category>game programming</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/72762.html</guid>
  <pubDate>Wed, 09 Sep 2015 09:42:48 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 17</title>
  <link>https://fardell24.dreamwidth.org/72762.html</link>
  <description>Digital and Interactive Games 2015 – Term 3, Session 17&lt;br /&gt;Today: - Ready Minecraft Plugin for submission&lt;br /&gt;&lt;br /&gt;FullGameTutorialFour.java&lt;br /&gt;&lt;br /&gt;…&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/72762.html#cutid1&quot;&gt;FullGameTutorialFour.java&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;…&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=72762&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/72762.html</comments>
  <category>java</category>
  <category>minecraft plugins</category>
  <category>programming</category>
  <category>tafe</category>
  <category>minecraft</category>
  <category>game programming</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/70546.html</guid>
  <pubDate>Sat, 29 Aug 2015 02:43:55 GMT</pubDate>
  <title>Digital and Interactive Games 2015 – Term 3, Session 14</title>
  <link>https://fardell24.dreamwidth.org/70546.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/70546.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 14&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=70546&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/70546.html</comments>
  <category>game design</category>
  <category>powershell</category>
  <category>java</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/68230.html</guid>
  <pubDate>Sat, 15 Aug 2015 03:57:00 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 10</title>
  <link>https://fardell24.dreamwidth.org/68230.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/68230.html#cutid1&quot;&gt;Digital and Interactive Games 2015, Term 3, Session 10&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=68230&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/68230.html</comments>
  <category>programming</category>
  <category>java</category>
  <category>minecraft plugins</category>
  <category>game design</category>
  <category>minecraft</category>
  <category>yml</category>
  <category>game programming</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/68079.html</guid>
  <pubDate>Sat, 15 Aug 2015 03:11:18 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 9</title>
  <link>https://fardell24.dreamwidth.org/68079.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/68079.html#cutid1&quot;&gt;Digital and Interactive Games 2015, Term 3, Session 9&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=68079&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/68079.html</comments>
  <category>game design</category>
  <category>game programming</category>
  <category>minecraft</category>
  <category>programming</category>
  <category>minecraft plugins</category>
  <category>java</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/66918.html</guid>
  <pubDate>Sat, 08 Aug 2015 03:19:48 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 8</title>
  <link>https://fardell24.dreamwidth.org/66918.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/66918.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 8&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=66918&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/66918.html</comments>
  <category>minecraft</category>
  <category>game programming</category>
  <category>game design</category>
  <category>java</category>
  <category>programming</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/66304.html</guid>
  <pubDate>Thu, 06 Aug 2015 07:44:26 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 7</title>
  <link>https://fardell24.dreamwidth.org/66304.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/66304.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 7&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=66304&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/66304.html</comments>
  <category>java</category>
  <category>programming</category>
  <category>minecraft</category>
  <category>game programming</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/65329.html</guid>
  <pubDate>Sat, 01 Aug 2015 05:32:22 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 6</title>
  <link>https://fardell24.dreamwidth.org/65329.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/65329.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 6&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=65329&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/65329.html</comments>
  <category>java</category>
  <category>minecraft plugins</category>
  <category>programming</category>
  <category>game programming</category>
  <category>minecraft</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/65250.html</guid>
  <pubDate>Sat, 01 Aug 2015 04:16:03 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 5</title>
  <link>https://fardell24.dreamwidth.org/65250.html</link>
  <description>&lt;a href=&quot;http://fardell24.livejournal.com/148072.html&quot;&gt;http://fardell24.livejournal.com/148072.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(Again with the &apos;bad unicode encoding&apos;!)&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=65250&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/65250.html</comments>
  <category>plugins</category>
  <category>java</category>
  <category>programming</category>
  <category>minecraft</category>
  <category>game programming</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/63833.html</guid>
  <pubDate>Sat, 25 Jul 2015 03:45:50 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 4</title>
  <link>https://fardell24.dreamwidth.org/63833.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/63833.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 4&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=63833&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/63833.html</comments>
  <category>game programming</category>
  <category>minecraft</category>
  <category>game design</category>
  <category>plugins</category>
  <category>java</category>
  <category>programming</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/63549.html</guid>
  <pubDate>Thu, 23 Jul 2015 07:25:30 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 3</title>
  <link>https://fardell24.dreamwidth.org/63549.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/63549.html#cutid1&quot;&gt;Digital and Interactive Games 2015, Term 3, Session 3&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=63549&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/63549.html</comments>
  <category>game design</category>
  <category>minecraft</category>
  <category>game programming</category>
  <category>programming</category>
  <category>java</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/62879.html</guid>
  <pubDate>Sat, 18 Jul 2015 06:06:33 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 2</title>
  <link>https://fardell24.dreamwidth.org/62879.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/62879.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 2&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=62879&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/62879.html</comments>
  <category>game design</category>
  <category>game programming</category>
  <category>yml</category>
  <category>minecraft</category>
  <category>programming</category>
  <category>java</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/62583.html</guid>
  <pubDate>Thu, 16 Jul 2015 12:53:05 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 3, Session 1</title>
  <link>https://fardell24.dreamwidth.org/62583.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/62583.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 3, Session 1&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=62583&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/62583.html</comments>
  <category>minecraft</category>
  <category>yml</category>
  <category>game programming</category>
  <category>game design</category>
  <category>java</category>
  <category>programming</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/60608.html</guid>
  <pubDate>Mon, 25 May 2015 01:33:15 GMT</pubDate>
  <title>Digital and Interactive Games 2015 - Term 2, Week 5, Session 2</title>
  <link>https://fardell24.dreamwidth.org/60608.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/60608.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 2, Week 5, Session 2&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=60608&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/60608.html</comments>
  <category>game design</category>
  <category>game programming</category>
  <category>tafe</category>
  <category>programming</category>
  <category>java</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/60388.html</guid>
  <pubDate>Sat, 23 May 2015 07:51:59 GMT</pubDate>
  <title>Digital and Interactive Games 2015 – Term 2, Week 5, Session 1</title>
  <link>https://fardell24.dreamwidth.org/60388.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/60388.html#cutid1&quot;&gt;Digital and Interactive Games 2015 - Term 2, Week 5, Session 1&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=60388&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/60388.html</comments>
  <category>programming</category>
  <category>tafe</category>
  <category>java</category>
  <category>game design</category>
  <category>game programming</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/59828.html</guid>
  <pubDate>Mon, 18 May 2015 08:02:10 GMT</pubDate>
  <title>Digital and Interactive Games 2015 – Term 2, Week 4</title>
  <link>https://fardell24.dreamwidth.org/59828.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://fardell24.dreamwidth.org/59828.html#cutid1&quot;&gt;digital and Interactive Games 2015 - Term 2, Week 4&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=59828&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/59828.html</comments>
  <category>java</category>
  <category>c++</category>
  <category>tafe</category>
  <category>programming</category>
  <category>game programming</category>
  <category>game design</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://fardell24.dreamwidth.org/59214.html</guid>
  <pubDate>Sat, 16 May 2015 06:59:22 GMT</pubDate>
  <title>Digital and Interactive Games 2015 – Term 2, Week 3, Session 2</title>
  <link>https://fardell24.dreamwidth.org/59214.html</link>
  <description>Digital and Interactive Games 2015, Term 2, Session 2&lt;br /&gt;&lt;a href=&quot;http://fardell24.livejournal.com/138644.html&quot;&gt;http://fardell24.livejournal.com/138644.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=fardell24&amp;ditemid=59214&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://fardell24.dreamwidth.org/59214.html</comments>
  <category>tafe</category>
  <category>programming</category>
  <category>java</category>
  <category>game design</category>
  <category>game programming</category>
  <category>minecraft</category>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
</channel>
</rss>
