Firefox 3.5 Released

167662-firefox-35_original

Yes people it is true. I am not joking or anything. I wouldn't joke with something like this... The new firefox is out and it is the  best firefox yet. Go check it out:http://www.mozilla.com/en-US/firefox/firefox.html

I am already loving it ;)

I would recommend checking this video out, as it gives you an insight of what's new with this firefox build.

No Comments

Adobe Air

Adobe AirLately, I've been extremely bored. I've been searching for some sort of project related to programming but, I've been unable to get any idea I feel like working on. Yesterday, something changed though, now I have a very minimal idea. I will be using Adobe Air as my platform and try to develop some app I still have to think of. Basically, I've only discovered what I want to use as a Platform, I am still in the search for the real app idea though.  I was thinking on making some sort of notepad, or maybe something to check my Facebook friend's status and update mine but, I am not sure yet. I might just make a little program to tweet. If anyone has any idea feel free to comment.

No Comments

Simple factorial function

Well, today my sister was working doing her homework and, she kind of got stressed with it, so she called me and, I ended up making it for her... I learned what a factorial is and, made this nice little function that finds the factorial of any number you pass to it. It was supposed to be written in labview, but I don't really know what that is... so I used php xD It worked like a charm in labview according to my sister. so you can also use it in labview I guess :O

 
<?php
function factorial($input){
  $output = 1;
  for($x = $input; $x >= 1; $x--){
    $output *= $x;
  }
  return($output);
}
?>
 

I made an example of this function's usage using JavaScript, check it out here

Tags: , ,

No Comments

Basic of $_GET variables (PHP)

Hello everyone, today I am posting a tutorial on the basic usage of the $_GET super variable in php. This tutorial was originally posted at the MWPS community forums, which almost never is read so I figured that this would be a better place for it to be. It goes through the basics of the $_GET variable and some basic usage examples.
Read the rest of this entry »

Tags: , ,

No Comments

FeedBurner

Well due to (probably) my own stupidity, I've lost control of my feedburner account, and since I don't want to stop using the service provided by it, I've been forced into changing my account and thus, changing my feed url, the old url will still be active, but I would appreciate if any subscriber I might have migrated to the new url. The animated clicket on the side bar has been updated, and everything should work fine. Thank you for understanding, or at least for reading this.

The new feed url is: http://feeds2.feedburner.com/Seichleon2

I heart FeedBurner

Tags: , ,

No Comments

Music out of boredom

Well, I will admit... I am not the most compromised of bloggers.. In fact I only post something when I remember about this blog existing -.-'. Other than that I think I am an awesome blogger!

Music Scores

Recently I've been playing with FL Studio 8 XXL Producer edition, as you may or not know I work as a server manager for a server on Graal, an online game. Recently, this weird idea of adding background music to improve the general game play experience, has invaded my mind and I as a music enthusiast begun composing stuff. I’ve tried several different things, but none seemed to fit the style I wanted for Noctorious (the server I manage). I tried something S4ish, which was my first thought but, it didn’t seem to be what I wanted I tried with several different styles afterwards until I found the perfect one. I made this basic loop using some old techniques and developed in that way, a pleasant fast paced loop I can use as background music during some events. I am still searching to develop a consistent and simple loop to use as BGM on everything else other than events.

Check out my first attempt:

Audio clip: Adobe Flash Player (version 9 or above) is required to play this audio clip. Download the latest version here. You also need to have JavaScript enabled in your browser.

It's a loop btw that's why it's only 4 secs long -.-' play it a couple of times and you will get the feeling out of it..

Tags: , , ,

No Comments

HTML from Noob to Expert

Hello Everyone Seich here,

I am just making some random advertising in here... as I am terribly bored as always, (of course) I started writing my new book (this is the 2nd book of this type I start writing) "HTML from Noob to Expert", I am taking my time... I actually expect to finish writing it sometime this year, I will distribute it electronically as an ebook, just to see if I can make any sales.

Read the rest of this entry »

No Comments

MWPS QuickBar

Hello everyone, :P this is this year's first post, and yes it's a freebie! I've been working on my first jQuery plugin, called QuickBar, I added MWPS for obvious reasons. QuickBar creates a browser-like notice bar on the top, this bar can be customized by using different options available through the plugin.

you simple include the file, and use $('#something').QuickBar();

it's pretty simple as you may see, check it out here.

If you find any bug please report it at my Google project page or leave a comment at the bottom of this page.

  MWPS QuickBar (15.2 KiB, 20 hits)

No Comments

Happy New Year!

I want to wish a happy new year to everyone.Let's hope that this coming year is as good as the past one...

I will continue my work, and as my tradition, I will create a new website for Martian Wabbit Productions, so stay around for when I publish it :D

No Comments

MWPS’s GChart

I was rather bored the other day when i found out about google's chart api, which allows you to create a chart by linking to a url with some things in it..  you can find more about it in here.

Well, I became bored somedays later, and started creating a class to work with it. This class would create and add all the information needed to the base url, After reading and adding a lot of things into the class, I made a rather decent php chart for he creation of charts using google's api. After googling "php google charts api" I found out there are many other similar classes, which make mine look ... plain... i wil exapand it a little and then present the final one, currantly it only supports a limited number of google's settings. I will add all settings, and eventually have a complete class. Also, i found out, that my class has something in favor.. it's really simple to use :P.

Download here:

  MWPS's GChart (unknown, 21 hits)


For instructions,
Read the rest of this entry »

No Comments