TECH GUIDE BLOG

Tech Guide Programming Tutorial Tips Tricks

Conditional in PL/SQL* Oracle 10g

In PL/SQL* Oracle, we can use conditional statement like other programming language, such as CASE and IF statement. How to do it in PL/SQL? Here’s the syntax for IF statement.
IF condition THEN
statements;
[ELSIF condition THEN
statements;]
[ELSE
statements;]
END IF;
Just remember, I write ELSIF,  it’s on purpose and it’s not mistyping, in this case [...]

Make Sequence in PL/SQL Oracle

After a long sleep, I’m back and I want to start with a new topic, database. Okay, the database I’m talking about is Oracle, with using PL/SQL commands. The first time of this topic, I will talk about making sequence in Oracle. What is sequence? We can imagine sequence as a table that keep, of [...]

Validate XHTML YouTube Embed Video

What can I get by validating XHTML in my blog? Well, some people say it can help Uncle Google to read and crawl your site, because Uncle is older and older and more hard to do reading. Before I use this code, my blog home page is always not valid due to a reason, after [...]

Recursion in Programming

What exactly recursion is in programming? Recursion is a function that calls the function itself. Thus, in the body of function there is a command that called the function itself. If you use it well, it can solve a problem much more simple and easy. Recursion itself uses a large amount of memory, so be [...]

Circular Queue C++

Let’s get to the point, what’s the different beetwen Circular and Linear? Just like previous post, the different is the head is always move around or you can say dynamic. The first and the last data is likely become linked to another one. If we do enqueue, the tail will be point to the new [...]

Boyer Moore String Searching Algorithm

This time, we will talk about Boyer Moore string searching. It’s not like brute-force, it will search a substring from the back and go forward till the first char of string. For example, we search a substring EXAMPLE within HERE IS A SIMPLE EXAMPLE string. I can’t explain it well, so this below maybe rather [...]

How to Set Up Listener Oracle 10g

This post is the second part of how to install Oracle Database 10g. After you finished installing the database, you can start by installing the listener. Just open Net Consfiguration Assistant in start menu -> all programs, usually found at Oracle - OraDb10g_home1 (default name in start menu) -> Configuration and Migration Tools -> Net [...]

How to Install Oracle Database 10g part 1

These days, who don’t know Oracle? Many firms and DBA use this software to keep them earn money and keep their database that contains many sensitive information. But unfortunately, installing Oracle is a bit difficult, because for the beginner, they don’t know many words, words that they never hear before, and moreover Oracle gave many [...]

Linear Single Linked List C++ part II

This part of Linear Single Linked List will tell you how to delete a node at any index. It’s simple like adding a data, you just have to change the node pointer to other that next to the node that you want to delete. If you want to delete the most front data, you have [...]

Linear Single Linked List C++

Hey, back to programming again in data structure. It’s now about Linked List, a linear single linked list it’s about to be explained in this post. We can imagine this like a chain, every data has a link to another data. Single Linked List is different from array. In array, we can only insert a [...]

Fast Recovery Windows without Formatting

Posted by Admin On July - 26 - 20091 COMMENT

Does Windows XP or Vista not running as usual? Some missing shortcut and Windows wallpapers could make people feel uneasy and annoying. Maybe you’ve installed some programs but not successfully installed on your computer. After you’ve installed it, Windows can’t get itself run normally. Can’t run Task Manager, Windows always displaying error messages, you don’t have to format Windows. Windows has the built-in System Scan to check the current system files with the original... more

Circular Queue C++

Posted by Admin On July - 16 - 2009ADD COMMENTS

Let’s get to the point, what’s the different beetwen Circular and Linear? Just like previous post, the different is the head is always move around or you can say dynamic. The first and the last data is likely become linked to another one. If we do enqueue, the tail will be point to the new data. If you can see the picture below, you will know that the data are never move like linear queue, but the head node. This head node always move when you do dequeue and enqueue new data. Circular... more

LG W1953S-PF

Posted by Admin On July - 9 - 20091 COMMENT

w1953s-pf Yes, it is an LCD monitor that has reasonable price with low consumption energy and also for me has an elegant design. It has some differents with 1953T, such as connection port, W1953S-PF only with analog-RGB connection that I think LG can cut the price just for only est. USD 125 now. For response time, W1953S-PF is set to 5 ms, while w1953T has 2 ms, this is the main factor that can drop the price of W1953S below W1953T. For W1953S, it is 18.5″ and W1953T is 19″. This LCD... more

About Me

Hello, world! I am Feby Purnama Tanzil. I live in Indonesia and still do college in Petra Christian University. With this blog I want to share my life and experience and want to help to solve your problem or find what you’re looking for. Oh, and I want to try to build a good blog. With this blog, I want to try something new, something that I’ve never done before. I want to improve my English with this blog, learn to write and learn to manage something that I have. And actually, I want to learn about PHP and other things related to it, it’s very interesting to me. I hope your comments soon can help me to improve this blog, the contents and appearance. And something I must tell you, I’m not so good with English, so if you find something weird, just tell me, give me comment about that and I will fix it. I’m looking for your comments. Thank you.