What I did today

What I did today:
Installed tons of plugins for Eclipse after finding something called ‘Eclipse Marketplace’…
How did I not know of the Eclipse-Marketplace?

Oof, you’ve been missing out on quite a lot!

I am studying assembly in school + internet tutorials
So far i have made this:

ZfJQ8I8lqNs

I created a parser for my XML based scripting language


<rml class ="MyClass" test ="This is a test">
	<main>
		<variables>
			<int name="i" val="10"/int>
			<list name="myArray" type="string">
				<ar val="Hello"/ar>
				<ar val="Goodbye" /ar>
				<ar val="Welcome"/ar>
			</list>
		</variables>
	</main>
</rml>

Output:


class com.gh.main.Parser: Opened: rml
class com.gh.main.Parser: rml-> class-->MyClass
class com.gh.main.Parser: rml-> test-->This is a test
class com.gh.main.Parser: Opened: main
class com.gh.main.Parser: Opened: variables
class com.gh.main.Parser: Opened: int
class com.gh.main.Parser: int-> name-->i
class com.gh.main.Parser: Opened: list
class com.gh.main.Parser: list-> name-->myArray
class com.gh.main.Parser: list-> type-->string
class com.gh.main.Parser: Opened: ar
class com.gh.main.Parser: ar-> val-->Hello
class com.gh.main.Parser: Opened: ar
class com.gh.main.Parser: ar-> val-->Goodbye
class com.gh.main.Parser: Opened: ar
class com.gh.main.Parser: ar-> val-->Welcome
class com.gh.main.Parser: Closed: list
class com.gh.main.Parser: Closed: variables
class com.gh.main.Parser: Closed: main
class com.gh.main.Parser: Closed: rml

Tried a little experiment with HTML/CSS, http://sticks.x10.bz/

What is the experiment there?

To see how good I can draw in Paint.NET and how good my HTML/CSS skills are.

You should place the lines that have to be read first above the later ones :slight_smile: (second comic).
Nice though.

Are you talking about the transcript for the comics? The transcript isn’t really that important, but I like to include it, just in case someone doesn’t get the joke.

No. The way the comic is made you would read first “Replaced it with cherry jello.” and then “Woah! What’d you do to the floor?” because the line that is up is also read first.

Same in the second part in the strip.

Ah, I’ll fix that. Thanks

What I did today: Began recoding my entire math-library.
Or: Commits, commits, and even more commits.


Added full documentation to the TupleX classes.
Tiny corrections. (component variable name characters lower- to upper-case)
Merge branch 'master' of https://bitbucket.org/longor1996/lmath
Added methods to TupleUnwrap to write tuples to a DataOutputStream.
README.md edited online with Bitbucket

Created TupleUnwrap class and implemented all possible unwrap methods.
Implemented all missing constructors (of all kinds) for Vec2d.
Implemented all missing constructors of all kind for Vec2f.
Implemented missing copy-constructors for Vec3f.
Implemented missing copy-constructors in Vec3d.
Added missing copy constructors to Vec4d.
Implemented ALL constructors for Vec4f. (*phew*)
Implemented all constructors for Vec4d. (Now on to Vec4f!)
Implemented buffer constructors for Vec2d and Vec2f.
Implemented all constructors for Vec3f.
Implemented all constructors for Vec2d.
Implemented constructors for Vec2d and Vec2f.
Forgot to make all vector fields public!
Implemented the 'data'-portion of all vector classes.
Finished 'data' interface definitions.
Defined 'data' interfaces for the 3 kinds of tuples.
Added LMath utility class.
Added LMathStringHelper.
Comments/JavaDoc and removal of some methods in PerlinNoise.
Initial upload. (Noisegen)

The repository is public, if anybody wants to take a look at the (possibly insane) code.
https://bitbucket.org/longor1996/lmath

Downloaded ArtFlow to my tablet and learnt to use it. It’s a great little tool, it may be all I need for 2D art, I’m using it to make some new art for my Verbal word game.

I… Broke my water heater. I’d had my bag for coke cans hanging off the exposed, insulated power cord. It wasn’t a problem until I started crushing cans again instead of just tossing them in uncrumpled. The weight was finally enough to cause the power to disconnect some how (When I moved the cans and shifted the cord it powered back up. Which makes me think it was badly wired. >.>). It was brilliant. I spent the day without hot water because of it. xD

Also, reinstalled ADK and other stuff on my desktop in preparation of using it as a development computer again (After my laptop keeps continuously crashing badly on me.)

And messed around with Blender. Productive destructive day.

I’ve got several issues with it (Haven’t used it in about two months though. >.>):

  1. Even with the settings at max opacity the pen tools tend to need layering to put down a clear specific color.
  2. No real selection tools.
  3. Paint tool glitches out at times on larger image sizes and doesn’t completely cover the screen (Like, it selects a diagonal line across the image and paints everything to one side of it.) It seems like it’s an issue with how the layers are stored in memory.

Finished the new sun when playing with light scattering and started looking into some smaller vegetation:


http://stateoffortune.com/pictures/alpha2/sun.png

Mike

Not as impressive as other stuff posted, but I made my project’s average FPS go from 60 to a silky smooth 90 by making everything possible (including text) use the ARB extension VBO. :slight_smile:

CopyableCougar4

I managed to implement AABB collision detection for my 3d engine. Now, it’s time to work on the collision resolver :slight_smile:

Started making parts for my next project.

The color-style reminds me of the BitmapBrothers

i wrote a minimum triangle size subdivision on the cpu and these shapes showed up :