Monday, January 5, 2009

Computer Keypad Calculator































Instead of going for yet another one of those attempts of putting a calculator inside a computer mouse, like Ezkey, Sanwa, and others have tried, the Japanese company Takumi decided to try something different by designing a calculator like a keypad.



The result is a geeky cool looking calculator which can be connected to the USB port of your Windows based computer. It measures W84×H140×D23 mm and is available in white, black, red and beige.

The Takumi Keypad Calculator costs ¥5250 (about $46 USD) at caina.jp.




Sunday, January 4, 2009

Fijian Swear Words

Phrase Meaning
Caita Fuck
Kubu Suck
Magai Chinana Mother Fucker
Sona Asshole
Veicai Sexual intercourse
Vutu Sona Anal Sex
Vutulaki Wanker


If u ever come to Fiji these words might become handy...lol

Monday, May 12, 2008

Programmer's Notepad














Programmer’s Notepad 2.0.8 Stable Released

Finally a new stable build! Programmer’s Notepad 2.0.8 has been just over a year in the making. Some of the highlights of this release:

  • Extensions interface, allows extension of PN using C++ add-ins
  • Python extension (PyPN), allows scripting of PN using Python
  • Tag browsing
  • Keyboard customisation
  • Comment insertion/removal
  • Autocomplete (based on keywords and tags)
  • Code templates

Downloads

Saturday, March 15, 2008

Earn Quick Cash Online thru PTC sites

Here I will list my top 5 Choices of PTC sites where you can earn quick cash by just clicking on ads.

But before you start signing up, you will need to have an Alertpay acount where all you money will be transferred to. To create an Alertpay account: Click Here

Now here is the top 5 PTC's to sign up::

1. Bux.to

Standard Members : Earn $0.01/ad & 8-12 ads daily..
Premium Members : Earn $0.0125/ad & 20-50 ads daily...
Referral Earnings : 100%
Min. Payout : $10
Rating : 5/5

Click Here To Sign Up Now

2. Bux3.com

Standard Members: Earn $0.01/ad & 10-16 ads daily + Offers

Premium Members : Earn $0.0125/ad & 20-50 ads daily + Offers
Referral Earnings : 100%
Min. Payout : $10
Rating : 4.9/5

Click Here To Sign Up

3. Buxit.info

Standard Members : Earn $0.01/ad & 8-12 ads daily..
Premium Members : Earn $0.025/ad & 20-50 ads daily...
Referral Earnings : 100%
Min. Payout : $5
Rating : 4.9/5

Click Here To Sign Up

4. Xclix.net

Standard Members : Earn $0.01/ad & 8-12 ads daily..
Premium Members : Earn $0.015/ad & 20-50 ads daily...
Referral Earnings : 50%
Min. Payout : $5
Rating : 4.6/5

Click Here To Sign Up

5. Boostbux.info

Standard Members : Earn $0.01/ad & 8-12 ads daily + Offers
Premium Members : Earn $0.01/ad & 20-50 ads daily + Offers + Referral: 100%
Referral Earnings : 50%
Min. Payout : $3
Rating : 4.5/5

Click Here To Sign Up


Saturday, February 23, 2008

War Over !!!


The final shots have been fired in the high definition format war, and as the battlefield falls silent Blu-Ray emerges victorious, leaving HD DVD battered, broken and defunct.




In a high-def rerun of the VHS/Betamax conflict of the 70s and 80s, the two rival formats have sluged it out over the last two years in a battle for our hearts, minds and wallets.

Japanese manufacturer Toshiba launched HD DVD confident that the format, which was based on existing DVD technology, would be perfectly placed to take advantage of the rise in sales of high-def TVs.

After all, they reasoned, even though HD DVD weren't able to store quite as much data as a Blu-ray disc, the discs and players were cheaper to produce than Sony's format, and the pictures and sounds were just as good.

HD-DVD was also, just, first out the traps and initially had strong support from Hollywood. But the expected sales never materialised, just one million in total, as consumer indifference and confusion set in.

PS3And of course, there was Sony's trump card.The Blu-Ray playing Playstation3 may have underperformed commercially as a gaming console, but in the past 18 months they have managed to get six million of them into our living rooms.

More and more movie studios got behind Sony's format, and Warner Brothers' announcement at the beginning of the year that it would exclusively support Blu-Ray effectively signalled HD DVD's demise.

The final nail was hammered into the format's coffin earlier this month, when the worlds largest retailer, Wal-mart, threw its considerable weight behind Blu-ray.

So, Toshiba and its partners will now cease producing HD DVD hardware and Blu-ray is left with a clear run at the high- def market.

UNIX Introduction

What is UNIX?

UNIX is an operating system which was first developed in the 1960s, and has been under constant development ever since. By operating system, we mean the suite of programs which make the computer work. It is a stable, multi-user, multi-tasking system for servers, desktops and laptops.

UNIX systems also have a graphical user interface (GUI) similar to Microsoft Windows which provides an easy to use environment. However, knowledge of UNIX is required for operations which aren't covered by a graphical program, or for when there is no windows interface available, for example, in a telnet session.


Types of UNIX

There are many different versions of UNIX, although they share common similarities. The most popular varieties of UNIX are Sun Solaris, GNU/Linux, and MacOS X.

At shools and colleges, people use Solaris on servers and workstations, and Fedora Linux on the servers and desktop PCs.


The UNIX operating system


The UNIX operating system is made up of three parts; the kernel, the shell and the programs.

The kernel

The kernel of UNIX is the hub of the operating system: it allocates time and memory to programs and handles the filestore and communications in response to system calls.

As an illustration of the way that the shell and the kernel work together, suppose a user types rm myfile (which has the effect of removing the file myfile). The shell searches the filestore for the file containing the program rm, and then requests the kernel, through system calls, to execute the program rm on myfile. When the process rm myfile has finished running, the shell then returns the UNIX prompt % to the user, indicating that it is waiting for further commands.

The shell

The shell acts as an interface between the user and the kernel. When a user logs in, the login program checks the username and password, and then starts another program called the shell. The shell is a command line interpreter (CLI). It interprets the commands the user types in and arranges for them to be carried out. The commands are themselves programs: when they terminate, the shell gives the user another prompt (% on our systems).

The adept user can customise his/her own shell, and users can use different shells on the same machine. Staff and students in the school have the tcsh shell by default.

The tcsh shell has certain features to help the user inputting commands.

Filename Completion - By typing part of the name of a command, filename or directory and pressing the [Tab] key, the tcsh shell will complete the rest of the name automatically. If the shell finds more than one name beginning with those letters you have typed, it will beep, prompting you to type a few more letters before pressing the tab key again.

History - The shell keeps a list of the commands you have typed in. If you need to repeat a command, use the cursor keys to scroll up and down the list or type history for a list of previous commands.


Files and processes

Everything in UNIX is either a file or a process.

A process is an executing program identified by a unique PID (process identifier).

A file is a collection of data. They are created by users using text editors, running compilers etc.

Examples of files:

  • a document (report, essay etc.)
  • the text of a program written in some high-level programming language
  • instructions comprehensible directly to the machine and incomprehensible to a casual user, for example, a collection of binary digits (an executable or binary file);
  • a directory, containing information about its contents, which may be a mixture of other directories (subdirectories) and ordinary files.

The Directory Structure

All the files are grouped together in the directory structure. The file-system is arranged in a hierarchical structure, like an inverted tree. The top of the hierarchy is traditionally called root (written as a slash / )




In the diagram above, we see that the home directory of the undergraduate student "ee51vn" contains two sub-directories (docs and pics) and a file called report.doc.

The full path to the file report.doc is "/home/its/ug1/ee51vn/report.doc"


Starting an UNIX terminal

To open an UNIX terminal window, click on the "Terminal" icon from the drop-down menus.


An UNIX Terminal window will then appear with a % prompt, waiting for you to start entering commands.

Cleaning a virus manually

To get rid of a virus manually you will need a little knowledge on command line instructions/cmd..

  1. Get a hijackthis program from download.com
  2. select "Do a system scan only". Here you will see those processes that run on startup and those that were added to the registry.
  3. Next, know those annoying filenames of .exe that triggers the virus' actions. These are considered or often found at the startup. Viruses evolve but their filenames are all the same.
  4. if you can access the task manager, end task all processes that are connected to the virus. If not, use the process manager in the hijackthis.Do the same,kill those processes that are connected to the virus.
  5. Open the cmd.exe. Here manually delete the executable files that will run on startup. To find it easier to delet, try searching all filenames that you wish to delete. Those files that should not be on that path will be deleted.
  6. Restart and repeat step 4 if not resolved.
Just don't worry as computers can still be repaired. Just don't delete the system files...