Sections

Home
Technology
About

About

Welcome to E-Dude.org!

The place for everything about your friend/colleague/enemy!

Enjoy!

Tycho

Twittered

Links

Google
Ultimum

Endorced

 Use OpenOffice.org

Proclamation

Hacker

Powered by

Powered by Pivot - 1.40.6: 'Dreadwind'
XML: RSS Feed
XML: Atom Feed

Search::

by Tycho | + 11 - 11 | Link [ Programming ] Javascript array annoyance from database results

A common thing done in webdevelopment is using data from a database.
In your average PHP code you'd just do a while( list( ,$val ) = each( $dbResult ) ) loop, maintaining the correct order for the query results.

Now for the twist!

If you want to quite literally use your query result, an array of rows with their associated fields and values, in Javascript you can't really convert that one-to-one.

So, what's the solution?

Simple! (more)

by Tycho | + 14 - 19 | Link [ Programming ] Colore - Templates?

As some of you might know, I've been working on a project called Colore.

Colore is basically a framework for Rapid Application Development (RAD).

Colore does so, by allowing the developer (from a functional point of view) to specify contexts in which a request/event will be executed and being able to "attach" code and variables to these contexts.

After test driving developing with Colore a bit, I've realized I made an error in how I was developing.

Although Colore was giving me all of the flexibility I needed, I was still stuck in my old design patterns. Kinda like having the latest hardware and still running a very old operating system.

What I intended to do with Colore was make things easier, but I screwed up myself by using way too complicated templates.

I'm now going to rewrite some of the templates for my hosting control panel to have 1 template per target, where possible, instead of sticky taping everything together at run-time.

by Tycho | + 17 - 16 | Link [ Gaming ] Warsow

Okay, what if you had a nice team of tech savvy gamers, who felt the need for a game with a strong community foundation and aimed for eSports?

Most likely it would look something like Warsow.

It's still a game in progress, but to me it comes across as being a sort of cartoonesque game.

I can't really describe it that well, but from what I've seen, it might get very interesting in the future and it's already interesting in this phase!

As Warsow is meant to be free in terms of beer, I can only suggest to start downloading it and judge for yourself! :)

by Tycho | + 8 - 20 | Link [ Programming ] WoW Live Signature Generator

Okay, I've had this for some time now, but I figured I might as well do a post about it!

To make this interesting for the general public, I'll explain a bit about it.
(Just press the Read more link.)

For the WoW geeks, here's a short explanation:
It automatically displays your stats based on which class and spec you play.
For instance, for PvP it displays your Resilience, for PvE DPS it displays your (Spell) Hit Rating and tanks will have all of their vital stats.

You can find the signature generator on WoWLiveSig (more)

by Tycho | + 12 - 13 | Link [ Programming ] Colore Framework

As some of my friends know, I've been working on a framework to enable developers to develop applications in a more efficient manner.

Okay, I know this sounds mostly as sales talk, so let me explain.

Originally, I felt the need for a framework to be able to execute certain logic based on events, for instance.

To make this more specific, I'm working on control panel like software to use on the server I'm running.
When I started programming, I ran into the problem most programmer are familiar with; when you need to handle a specific request,
you need to figure out which pieces of logic you need to execute in order to properly handle the request.

My framework, going by the working name of Colore, aims to exactly address that issue.

When looking at things, you could make a flowchart based on the logic executed to handle a specific request.

The main aim of Colore is to define the specific aspects of that workflow, define them and allowing the developer (who could even be lacking technical knowledge) to define the separate workflows therefor not having the burden of having to write code which executes the specific code, but rather just get the code executed.

The main reason for abstracting this into a standard rather than a complete implementation is because my friend Eecolor is rather interested in the whole concept as well...
But he "hates" PHP :P

So, I'm developing an implementation while writing the standard at the same time and, yes, making it open source.