News categories

Archives

Thomas Hambach - Web engineer

Archive for August, 2007

random signature

Haven’t you always craved for a rotating signature? No? LIAR!

I’ve recently created rotatingsignature.com which allows you to create such a random signature! No longer will you need to withstand those tech-geeks that scold at you for asking how to make a random signature! This system has been monkey-tested and you should have no problem getting your first rotating signature up and running!

Monkey verified

Be sure to double-check your e-mail before saving and -in case you don’t receive it- checking your spam folder for the verification e-mail!

So far, no comments has/have been added
Click here to add your comment

javascript str_replace equivalent

I needed the equivalent of str_replace in JavaScript and was able to fish up this nifty piece of code! Enjoy.

0
1 /**
2 * str_replace
3 *
4 * This function returns a string or an array with all occurrences of
5 * [search] in [subject] replaced with the given [replace] value.
6 * If you don’t need fancy replacing rules (like regular expressions), you should always use this function.
7 *
8 * @param string search
9 * @param string replace
10 * @param string string
11 */
12 function str_replace (search, replace, subject)
13 {
14      var result = “”;
15      var oldi = 0;
16      for (i = subject.indexOf (search); i > -1; i = subject.indexOf (search, i))
17      {
18           result += subject.substring (oldi, i);
19           result += replace;
20           i += search.length;
21           oldi = i;
22      }
23      return result + subject.substring (oldi, subject.length);
24 }
25

So far, 3 comments has/have been added
Click here to add your comment

so clean and so fresh…

Having fresh content on your site is a must if you want to score in search engines. Most of the world is already aware of that and almost all companies are establishing or have established their own blog(s) and are (exploiting) this new way to strengthen their brand identity, advertise their services and to show the world how awesome they are.

Surely it’s time for me to do the same! Though my portfolio will most certainly show you how -freaking- fantastic I am, I’ll have yet another way to rub it in!

So far, no comments has/have been added
Click here to add your comment

ClanCommandCenter update

A bunch of updates! Yeehaw!

What has been done

- Fixed bug that prevented uploading your personal picture
- Fixed bug that prevented uploading an avatar
- Fixed bug that would display wrong links at matches overview
- Added a squad roster (look on your right)
- Added the news administration module
- Added the news category administration module
- Added the matches administration module
- Provided a new way of inserting smilies in your message
- Added the administration dashboard
What is there left to do

- Add the other administration modules
- Make sure that gender defaults to nothing, now it says female
- Get the page that let’s you define your signature working
- Add the function to make search engine friendly URLs
- create an installer

What has been planned for the next versions
- Add images to your matches
- Add a gallery
- Add downloads & links
- Add demo player
- Nifty-fy the markup buttons
- Make the shoutbox fully ajax
- Create auto update functionality

Again, I’d like to ask you to REGISTER and start finding bugs, you may post them as a comment. People that register now have more chance of taking part in the closed beta!

So far, no comments has/have been added
Click here to add your comment

Close
E-mail It