browse by category or date

I have created a free Quote of Day that can be incorporated into your website seamlessly. As a small favor, when people click the text, they will be brought to this page.

To add the QOTD anywhere in your page you can just add the following code:

Code
Explanation
To use the default font color
To specify the color to be used as background and foreground.

 

The example of below code is shown in the QOTD of this blog.

<script langugage="javascript" type="text/javascript">  
var qotd_style = "font-weight:normal;font-size:12px;color:#000000;background-color:#FFFFFF";  
</script> 
<script language="javascript" type="text/javascript" src="http://sodeve.net/qotd/qotd.js" >  </script>

 

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 always consider blogging as a mean to improve yourself. By sharing your knowledge, you actually become more knowledgable on that subject you are writing about. To create an article, usually it starts with what you know. Moving to the next paragraphs you realize that you forgot a detail about something, you then googled, read a book and find answer to your own question. Thus, now you know more about the subject you writing.

I was highly inspired by these advises so i decided to record them in a single post which we can refer again and again

OK, It’s time to relax and let the points sink down into our brain. Hopefully it will be useful and affect us in may good ways.

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.

JavaScript has become more and more important part of Web Application. Often, it does a crucial role such as doing the data verification check on the client side. Quite often also, we use JavaScript to limit the behavior of a field to suit our need. For example, making a textbox to only accept numbers.

But all this fancy ideas will not work if the JavaScript is disabled. To check wheter your user have their Javascript enabled in their environment, add the following snippets into your form:

<head>
<script type="text/javascript">

function checkJavascript()
{ 
    var obj = document.getElementById('javascriptCheck');
    obj.value ="1";
} 

</script>
</head>
<body onload="checkJavascript();">
   <form><input type="hidden" id="javascriptCheck" name="javascriptCheck" value="0" />
       ....
       <!-- put the remaining form in inputs here -->
      ....
   </form>
</body>

 

On the server you will need to check is the ‘javascriptCheck’ variable’s value is ‘1’. If it is, it means Javascript is enabled.

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: