browse by category or date

To celebrate April’s Fools Day, I decided to create yet another Quote of the Day :-). The additional feature is a link to the Wikipedia article of the person quoted will be included. You also make it reload different quote every specified time. And it no longer forces you to link back to my Website. But I will be really grateful if you could link back to my blog 🙂

Features
Link to biography/article of the author at Wikipedia.

Auto refresh. You can change how many minutes passed before the quotes is repaced with a new one.

Do you have feature-request?
Known Bugs
The CSS is broken when displayed on IE. has something to do with the DOM.

Have you found another bug?
<p style="color:#FF34FF; background-color:#EEEEEE">
<script langugage="javascript" type="text/javascript"> /* Quote of The Day user Guide: qotd_style, a string value for CSS of the QOTD. Default: no CSS example: qotd_style ="color:#FF34FF"; reloadTime, an integer value to regulate how many minutes before the QOTD is refreshed. Default: not refreshed. example: reloadTime = 5; //QOTD will be refreshed every 5 minutes. isUsingWikipedia, a boolean value to indicate whether a link to Wikipedia.org's related article will be included. Default: true. example: isUsingWikipedia = false; //no link to wikipedia.org isItalic, a boolean value to indicate whether the quotation is diplayed in italics. Default: false */ var reloadTime = 1; var isItalic = true; var qotd_style = "color:#FF34FF; background-color:#EEEEEE"; </script>

<script language="javascript" type="text/javascript" src="http://sodeve.net/qotd2/qotd.js" ></script><h5><a href="http://sodeve.net/quotes/">Sodeve's QOTD</a></h5>
</p>

If you have any problem installing the script in your website, feel free to drop a comment.

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Possibly relevant:

I was lurking on Slashdot reading article about software bug that became a feature. Someone mentioned a bug in the Firefox’s bookmarking name. Then another person suggested a Firefox Extension to make your bookmark Toolbar looks Cool.

OK, so here are the steps:

  1. Download this Firefox Extension HERE
  2. Blank out the name of your bookmarks in the Bookmark Toolbar
  3. If the websites in your toolbar doesn’t have icon, visit that particular website, get its logo URL, and then visit this PAGE to convert the logo into icon.

As a teaser, here is how my Bookmark Toolbar looks like:

cool-bookmark-toolbar.png

Source: Slashdot

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Apparently installing DotNetNuke is quite tricky. I did make a few mistakes which wasted a few minutes. So hopefully this post will save you from hassle.

  1. Get your Internet Information Server (IIS) up and running
    IIS is by default available on Windows 2000 all version, Windows XP Professional, Windows Server 2003. If you have Windows XP Home Edition, don’t worry. This hack should help to get IIS installed on Windows XP Home Edition. To confirm your installation click this HERE.
  2. Install .NET Framework 2.0
    Get your .NET Framework 2.0 HERE. The trick is always to get .NET Framework installed after your IIS confirmed up and running. You can’t do it the other way round. For most Windows XP installation, usually .NET Framework is already installed by default. If you happen to have such condition, you need to uninstall your .NET Framework, confirm that your IIS is up and running and then you proceed to install .NET Framework.
  3. Download DotNetNuke
    Although I recommended .NET Framework 2.0 at step 2, DotNetNuke older version is running on .NET Framework 1.1. So if you haven’t upgrade your .NET Framework to 2.0 and you don’t have intention to do so, download the DotNetNuke version 3.x. Otherwise, download version 4.x. The download page is HERE.
  4. Setup the Folder
    Extract the archive you download in Step 3. In this example we will assume the installation folder is C:DotNetNuke. Right-click on C:DotNetNuke folder, click Properties. On the General tab, make sure the Read-Only checkbox is not ticked. On the Security tab, add user “ASPNET” and give it Full Control access rights. You might want to add user “IUSER_YOURCOMPUTERNAME” (the IIS guest account) and give it non-Write access rights.
  5. Setup the Virtual Directory

    Open the IIS Management Console. You could do it by StartRun-type “C:WindowsSystem32inetserviis.msc“-OK, or by StartRun-type “compmgmt.msc“-OK continued by browsing to the IIS section. Right-click on the Default Web Site, New -> Virtual Directory. A wizard window will show up, click Next. Put DotNetNuke in the Alias text box, click Next. Browse to “C:DotNetNuke”, click Next. Tick Read and Run Scripts only, click Next. Click Finish.
  6. Install Database
    Although DotNetNuke supports not only MS SQL Database, I have yet to research them. In this opportunity, I will only discuss about MS SQL. Hopefully someday I will have time to test DotNetNuke installation with other type of Databases and report it there. Okay, first you need to download your copy of MS SQL Express Edition. You can downloaded it HERE.
  7. Setup Database

    Open your SQL Server Management Studio (Start -> All Programs -> Microsof SQL Server 2005 -> SQL Server Management Studio). Click Connect. Above Database, Right-click -> New Database. Give the database a name, in this case we will name it MyDNN and click OK.


    Go to Security -> Logins. Above Logins, Right-click -> New Login. Type the Login Name –we will call it myDNNuser and then change the radio-button into SQL Server Authentication, and then type the password and confirm it, and then select the Default Database (i.e. MyDNN), and finally click OK.


    Go back to the MyDNN Database -> Security -> MyDNNuser -> Right-click -> Properties. Make sure db_owner on the “Schemas owned by this user is ticked”

  8. Edit Configuration File
    On the folder “C:DotNetNuke” you will find web.config, edit it. If you could not find web.config, rename release.config into web.config. Look for a tag called <connectionStrings>. Inside it, comment the first child tag and uncomment the second one. Make sure you put the correct value in that tag. (i.e. value=”Server=YOUR_ComputerNameSQLEXPRESS; Database=myDNN; uid=myDNNuser; pwd=the_password;”). Do the same on the other tag called <appSettings>

After this you need to point your browser to “http://localhost/DotNetNuke/Install/install.aspx”. The installation should be automatic. Problems? Critics? Suggestions? Just drop your opinion on the comments. 🙂

About Hardono

Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.

Possibly relevant: