somewhere to talk about random ideas and projects like everyone else

stuff

Today's Updates II 26 May 2008

As I mentioned earlier, more would happen today. I’ve just made an update. I updated the Update system to also compile (it doesn’t compress anything yet, it really doesn’t need to) CSS files. This should speed up the application a bit, and should also make it easier when updating some smaller things. As with that, it will also starting from build 83, create release archives of the CSS files. The compiler mechanism has changed a bit too, but that’s not really important.

The most visible additions, is the embedded Color Dialog. If you look at the title, you’ll find a Steve Jobs reference. Right below the huge drawing tools list (what? is it like 2 times that of the old version?) there is a Line Width slider (this is indirectly inspired by OnlyPath’s Mondrian-style color picker). it also embeds the Color Field plugin, so if you press the little button on the side, a little color palette shows up. Ideally, this will enhance user’s efficiency and be less confusing than the old one.

I don’t know if I can make a “Today’s Updates III” :P

[EDIT] BTW, the page is located at

http://antimatter15.110mb.com/animator/Animator2/build/ajaxanimator.htm


Starting Over 25 May 2008

Today, I’ve launched the new site. My new blog. We’re starting over. I don’t know what to do exactly. I just hope that everyone can adjust to this new site. I like it more, it may be somewhat faster - at least my spam problem will be fixed.

If you still wan to visit the old site, feel free to do so at http://antimatter15.110mb.com/phpfusion everything will still be perfectly accessible, and feel free to register there. If this doesn’t work out, i could revert back to phpfusion. But I think the move is for the better.

Please, Really, post your thoughts as a comment to this post. Please, I beg of you.


About 07 May 2008

I’m really not that interesting. This blog is just a place where I talk about random ideas or projects like just about everyone else.

I’ve never really been into talking about myself, rather just the stuff I do or think. I may be somewhat paranoid, or whatever. I think I’m an INTP but I’m not too certain (could my subconscious be deceiving me?).

If you’re more interested on the history of this blog, well, it started a long time ago. I started with phpfusion as my CMS (and 110mb as my host) back in late May 2007, and switched to WordPress and phpBB in mid-2008. Later the year, I got a new web host, GoDaddy, but the blog didn’t migrate there. Just a few days later I switched from phpBB to BBPress. From then to Mid-July 2009, I upgraded to WordPress 2.8 and migrated to a new host.

This blog initially was for the sole purpose of hosting changelogs for the Ajax Animator project (which itself began sometime before March of 2007).

Before this blog, I had several sites starting with a simple Google Page Creator one from 2005. After that I made a Jupiter CMS powered site and later used Joomla after experimenting with Drupal. After moving to 110mb, I used phpfusion because people on the forums seem to like it. Now I’m on wordpress (and repeating whatever I wrote 2 paragraphs above)!

If you want to contact me, my email’s antimatter15@gmail.com I’d really appreciate it if nobody sent spambots after me. You can follow me on Twitter at @antimatter15 or on Google+.


Hello world! 07 May 2008

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!


I’ve decided to keep this, it’s a nice marker of when exactly this blog transitioned to a different platform.


Updates Today 06 May 2008

http://antimatter15.110mb.com/animator/Animator2/build/ajaxanimator.htm

Now, its at Ajax Animator Build 48. It has an improved “Properties” menu. The Drawing icons have been updated (to give you a taste of features of OnlyPaths that will be added). Notice that there are some features left out. Zoom will be done via the zoom button on the canvas toolbar, and panning won’t be necessary. I’m curious of whether I should or should not include the z-index ordering. Simply, the whole purpose of layers is that. and Layers seem much more managable, visible, and such.

Speaking of layers, the Layer browser part of the timeline has been added. It is currently just a simple Editor Grid (so you can inline edit the label!). I’m going to add http://cellactions.extjs.eu/ for the ability to remove/edit layers via a nice icon.

I have also almost sucessfully ported OnlyPaths to ExtJS. it turns out, that all prototype code is in richdraw.js, and it is as simple as replacing prototype code with Extjs counterparts.

such as this.blahlistener = this.blah.bindAsListener(this) Event.observe(this.explosion, “mouseexplode”, this.blahlistener)

becomes Ext.get(this.explosion).on(“mouseexplode”,this.blah,this);

Often, Ext code is simpler, and more consise, but other times it is not so.