My digital notepad RSS 2.0
 Sunday, June 03, 2007

Yup. "More like faceCRACK".

april 26 2007 - facecrack!

 
Sunday, June 03, 2007 10:35:53 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -
Funny | Internet
 Thursday, May 31, 2007

A simple way to make your AppleTV box a lot more useful :)

How-To: play DivX and Xvid on your Apple TV - Engadget

The two biggest Apple TV limitations are the lack of codec support (like XviD, DivX, etc.) and not even having the ability to do basic surround sound like Dolby Digital 5.1. These issues were resolved almost immediately after the Apple TV was released, although the hacks were somewhat less than practical. Something as simple as getting your Apple TV to, say, sync and recognize your XviD movies as playable was no simple feat. Thankfully, that's no longer the case, and we want to show you how to get the most out of your Apple TV. Who says you can't have your cake and eat it, too?
 
Thursday, May 31, 2007 2:36:37 AM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -

 Monday, May 28, 2007

StarWars.com have put up a trailer for the coming CG animated Star Wars series The Clone Wars.

Quoted from http://en.wikipedia.org/wiki/Clone_Wars_(3D_CGI_TV_series):

Star Wars: The Clone Wars (TV series) - Wikipedia, the free encyclopedia

Star Wars: The Clone Wars is an American 3D CGI animated television series currently set to debut in 2008.[1] It is set in the fictional Star Wars galaxy; a continuation of the 2003 Star Wars: Clone Wars series.
 
Monday, May 28, 2007 12:14:56 AM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -
Movies

Well, if you can read this then Adobe Contribute CS3 works with DasBlog, which is the blog engine I'm using. When you start Contribute for the first time it asks you to set up a connection. If not, you can select Edit, My Connections.. from the menu and click the Create... button.

Select that you connect to a blog, select Other Blog Servers in the second drop down and specify the URL to your blog. It should automagically find the /blogger.aspx web service file. Click Next, specify your username and password for the blog and you're good to go.

It looks pretty good, it picks up my categories, I can browse my blog in Contribute and just click Edit when I'm on a page I want to edit, it integrates with IE and Firefox, giving me a "Post to blog" button, I can insert documents as PDF and a bunch of other things. All in all, it looks pretty easy to use so I think I start using it to update my blog.

There is one thing I'd like to see though. The ability to just paste an image into the text and have Contribute automatically save the image along with my blog. That would be cool!

Edit: Worked like a charm. Uploaded image and everything. Sweet!

 
Sunday, May 27, 2007 11:46:02 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -
Internet
 Tuesday, May 08, 2007
Update: SonyEricsson have upgraded their PC Suite to support Vista. So head on over to their support page, pick your phone and download the PC Suite for XP/Vista. Works like a charm.

I have a SonyEricsson K810i phone and have been using the SonyEricsson PC Suite to syncronize it with my Outlook. For an absent minded guy like me, having my phone warn me when I have to be somewhere is invaluable.

However, Sony Ericsson has been rather slow in their Vista support. It just won't install, giving you a message that you need to run Windows XP or 2000. They say that Vista support for PC Suite will be available in Q2 2007 and on forums and blogs September 2007 is often mentioned.

But there is a way to install the PC Suite on Vista today. It involves editing the .msi file to remove the OS condition and remove two files that are updated in Vista that will cause the installer to hang.

Joel at thinktekno has the details.

I did not have to install the m-router. During the installation the installer hung for ages at the end but it came through eventually. Just have patience.

 
Tuesday, May 08, 2007 8:29:52 AM (Central Europe Standard Time, UTC+01:00)  #    Comments [5] -
Operating Systems | Tips and tricks
 Thursday, April 19, 2007
In order to install the SQL 2005 Express edition with Reporting Services you have to have IIS properly installed. It's not enough to just install it and be happy about it, you'll have to enable some services for it to.

Otherwise you'll get a warning in the System Configuration Checker of the SQL setup: "Microsoft Internet Information Services (IIS) is either not installed or is disabled."

 KB920201 has the details on what you have to install. And don't forget to use the SP2 version of SQL Server.

 
Thursday, April 19, 2007 9:06:42 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -
Operating Systems | Programming
 Tuesday, March 27, 2007

For some idiotic reason (marketing) several server manufacturers insist on putting a self-promoting default wallpaper on the Windows installation making a remote desktop connection unnessecarily slow for the initial connect. Run the attached .reg file to remove the wallpaper for the default user. If you don't trust files downloaded from the Internet, copy the following text, paste into an empty notepad document, save as "RemoveWallpaper.reg" (or something similar) and run the file (double-click it).

Windows Registry Editor Version 5.00

[HKEY_USERS\.DEFAULT\Control Panel\Desktop]
"Wallpaper"=""

[HKEY_CURRENT_USER\Control Panel\Desktop]
"Wallpaper"=""

RemoveWallpaper.reg (,32 KB)

 
Tuesday, March 27, 2007 12:55:44 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -
Administration
 Thursday, March 01, 2007

In my previous post I had a quote and I wanted that to stand out from the text. So I added <blockquote>...</blockquote> around my text and with CSS added a dashed line but something was missing... So I made a quote mark. But it didn't look that nice inside the border. I wanted it outside the border. In order to get that I have to have an element around the quote div. And I wanted an end quote as well so that meant another div...

<div class=outerQuote>
 <div class=centerQuote>
  <blockquote>
   ...
  </blockquote>
 </div>
</div>

Not particularly pretty, certainly not semantic code and mixing content and presentation like this is so Web 1.0... But I recently read about JQuery, a lightweight framework that makes it really easy to manipulate the DOM.

I won't bother with the details on downloading, installing and setting up JQuery, it's really easy and very well explained already, but I thought I might share the code for making my quotes:

$("blockquote").wrap('<div class="outerQuote"><div class="centerQuote"></div></div>');

There, that wasn't very hard, was it? In plain English it is "find a blockquote and wrap it in the two divs specified". In my source, I only have one <blockquote> element, only JavaScript enabled clients will see the other divs and it degrades nicely. Perfect!

For the interested, here is the CSS used for the quotes:

blockquote {
 margin: 0 0;
 padding: 0 5px 0 5px;
 border: dashed 1px #666;
}
.outerQuote {
 margin: -10px 20px -10px 20px;
 background: url("quote.png") no-repeat;
}
.centerQuote {
 padding: 10px 10px;
 background: url("quote-end.png") no-repeat bottom right;
}

The images are quote.png and quote-end.png

According to their own website, JQuery is...

...a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript.

If you do any javascript programming you should really check it out, it will make your life easier! (see how nice my quotes turned out :-) )

The JQuery code, the CSS code and the two quote images presented here are created by me and hereby released into the public domain. That means you can take them and do whatever you want with them. If you'd like to give me credit or drop me a note saying that you found it usefull, that would be appreciated but is not required.

The rest of the text is copyrighted by me and is not released into the public domain but released under a Creative Commons license.

 
Thursday, March 01, 2007 8:33:54 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [2] -

In these times we often hear that Islam is a hostile religion, that the Qur'ān teaches that all non-believers should be killed. Well, I haven't read the Qur'an my self, but I found an interesting quote in sura 60, verse 8 and 9:

GOD does not enjoin you from befriending those who do not fight you because of religion, and do not evict you from your homes. You may befriend them and be equitable towards them. GOD loves the equitable.

GOD enjoins you only from befriending those who fight you because of religion, evict you from your homes, and band together with others to banish you. You shall not befriend them. Those who befriend them are the transgressors.

In other words, you may befrend those who are not hostile to you but you shall not befrend those who are not. Seems reasonable enough?

Sura 60, verse 8

 
Thursday, March 01, 2007 7:14:48 PM (Central Europe Standard Time, UTC+01:00)  #    Comments [0] -

Links
Twitter updates
    Archive
    <June 2007>
    SunMonTueWedThuFriSat
    272829303112
    3456789
    10111213141516
    17181920212223
    24252627282930
    1234567
    About the author/Disclaimer

    Disclaimer
    The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

    © Copyright 2010
    Glenn F. Henriksen
    Sign In
    Statistics
    Total Posts: 48
    This Year: 0
    This Month: 0
    This Week: 0
    Comments: 31
    All Content © 2010, Glenn F. Henriksen
    DasBlog theme 'Business' created by Christoph De Baene (delarou)