thinkoholic.com - a blog by markus nolf

Archive for the ‘technology’ Category

[posted: Monday, 2005-08-01] [category: fun, technology] [tags: ]

just recently, i discovered a firefox extension called “firesomething”.
i think the idea is funny: firefox kind-of has a long history of previous names that had to be changed because of copyright/same name issues: phoenix was changed to firebird, which was then altered to firefox.

this is where firesomething joins – it creates random window titles everytime you start firefox.
right now, i’m surfing with mozilla hypnobee. :mrgreen:
i also liked this quote from the extension-page:

“browsing with mozilla turbobeaver makes me feel proud to be canadian.”

[get the extension]

 
completely unrelated:

[quote of the day]

i hope they’re not austrians. that’s the last thing this town needs. [MP3]

eric cartman in episode 8×07, about the new neighbors that have just moved in.

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Wednesday, 2005-07-20] [category: technology]

without any kind of active notification (sure, you’ll find a message on some forum if you search the web), my webspace provider turned off register_globals in PHP today.
the effect on my website: everything but the blog was practically inoperable.

if this happens to you, here’s a short-run solution: insert the following code-snippet at the very beginning of the concerning files:

    <?php
       if(!empty($_GET)) extract($_GET);
       if(!empty($_POST)) extract($_POST);
    ?>

this also works with $_SERVER, and it should be working with $_COOKIE as well (but i haven’t tested that yet)…

 
it’s only a temporary solution, though, because it bypasses the effects of register_globals being turned off, for that specific file:
 
with register_globals turned ON, all the variables that are transmitted to the server (get, post, cookie, mainly) can just be used just by the name they were entered.
if you access a php-page and enter “?s=text” after the filename (=sending a get-variable “s” with the value being “text”), for example, you can use “$s” rightaway in the script.

because there have been security concerns, you now have to first assign the query’s variable to the variable in the script, limiting the input to get-queries (in this example):

    $s = $_GET['s'];

speaking of purpose, this is a bad example. but regarding cookies i seems more reasonable – until shortly, it was possible to just simulate a cookie by sending the needed variables in a get-request…


bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Monday, 2005-07-18] [category: in german, technology]

[die deutsche version dieses eintrags ist weiter unten]

as stated in my previous posts containing (time-lapse) videos, i’m using the open source codec mpeg4/xvid to compress the files.
my search for a “universal codec” that just works (and doesn’t need extra installation of files etc.) AND is free to use wasn’t very successful yet, so i’m sticking with xvid for now. (however, any advice will be appreciated!) [more...]

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Friday, 2005-07-15] [category: technology] [tags: ]

just in case someone else is annoyed at the inverted comma looking like a or , and the quote signs being bent to and in wordpress 1.2*…

the “replace”-commands are located in the file wp-includes/functions-formatting.php.
the html-entities to replace are: &#8216; , &#8217; , &#8220; and &#8221;
be sure to add slashes where necessary, so you don’t screw up the code.

* yeah, still using version 1.2. it would currently take too much time to apply my layout to a wordpress theme…

[lyrics quote of the moment]
oh look now,
there you go with hope again!
dashboard confessional – carve your heart out yourself

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Wednesday, 2005-07-06] [category: technology]

my little brother anton told me about this:

when you’re viewing the calendar in “week” or “month” mode (you’re pretty much stuck in “today”), you can use the following number keys to navigate quicker:

    1 … previous week 3 … next week
    4 … previous month 6 … next month
    7 … previous year 9 … next year

and pressing “c” (above number 3) will take you back to today’s entries.

this also works with sony ericsson’s t630, and presumably with all the other SE phones. and it’s a lot faster than choosing “more” – “select month”, and then scrolling to the one you want.

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Friday, 2005-07-01] [category: technology]

ok, so maybe the title is *a bit* exaggerated… :???:

 
as of today, i no longer get free email-notification via sms. so it could take me a little longer to respond, especially when i’m not home or i’m getting email to one of my non-standard-mailboxes.

i guess, sooner or later i’ll have to subscribe to the paid service…

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
[posted: Thursday, 2005-06-30] [category: technology]

i haven’t checked google maps in some time. when i went there today, i found out that they seem to be adding the rest of the world to their service.
so far, they’ve got the lakes in austria covered. hurray!

i also just downloaded one of google’s new services: google earth“a 3D interface to the planet.”

it’s really powerful! i love it!

the googleblog turns out to be a real treasure chest!
try google video, for example.

 
this may sound stupid now, but i’m glad i’m living in this era: the coolest developments are made everywhere, our ways of communication are practically unbounded, and we’re on the brink to total destruction of our environment…

bookmark / recommend:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Live
  • MisterWong
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter