August 5th, 2008 by admin
What programming category you used? A survey shows that object oriented programming language is still more preferable than procedural or functional language.
Here’s the table that shows programming language category ratings.
| Category |
Ratings July 2008 |
Delta July 2007 |
| Object-Oriented Languages |
56.6% |
+3.9% |
| Procedural Languages |
41.1% |
-2.3% |
| Functional Languages |
1.7% |
-0.3% |
| Logical Languages |
0.7% |
-1.2% |
Tags: programming, language, rating
The location was defined in /etc/fonts/fonts.conf file (an plain text file). So open it first by using gedit by executing gedit /etc/fonts/fonts.conf. The locations is /usr/share/fonts and /usr/local/share/fonts and /home/username/.fonts (a dot previous a folder’s name means that is a hidden folder).
If you use WIndows Explorer Nautilus, you could click Places > Home Folder > View > Show Hidden Files to shows the hidden folders and files on your Hard disk.
Tags: fonts in Ubuntu
There are many tutorials on this subject, but you can use the CLI (command line interface) that is easier and simpler. For Java 5, you jsut have to execute:
sudo apt-get install sun-java5-jdk
And for java6, you can execute
sudo apt-get install sun-java6-jdk
Simple isn’t it. You can also Update the JDK (java development kit) by executing.
sudo update-alternatives –config java
I did finding those command beneficial when i was installing OpenBravo. An open source Point of Sales software that is cross platform build with Java.
Tags: install java ubuntu, java, ubuntu, install
Ruby is a new platform for web development that offers many new features that is unique. Here’s steps to install Rails 21 on Ubuntu:
- First, install Ruby and it’s dependencies…
sudo apt-get install ruby irb rdoc ruby1.8-dev rubygems libopenssl-ruby
- Now update the gem, by executing:
sudo gem update --system
- Then remove rubygems, since there may not two ruby games in one installation
sudo apt-get remove rubygems
- create symbolic link to the latest version of gem manager by executing:
sudo ln -s /usr/bin/gem1.8 /usr/bin/gem
- Now you can install rails by executing
sudo gem install rails
Now, you can do rubying on your Ubuntu.
Tags: ruby on rails, ubuntu
If you want to increase the space on your hard disk, a viable option is by removing TEMPDB in SQL Server. Use this query to removing tempdb in your sql server.
USE master
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = tempdev, FILENAME = ‘D:\TEMPDB.MDF’)
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = templog, FILENAME = ‘D:\TEMPLOG.LDF’)
Just change the “D” with another drive you like to save the tempdb and templog files. After executing query above, stop and restart your sql server. After the query created a new file, you may delete the old files to enlarge free space in your hard disk.
Tags: sql server, tips n tricks
Sometimes, your printing is on pending because other printing job is blocking the printing. If you face this you can delete the printing spooler queue by doing steps below:
- First, you have to halt the printer spool service, go to Control Panel > Administrative Tools > Services; right click on Print Spooler service and click Stop
- Now, open Windows Explorer then go to C:\Windows\System32\spool\PRINTERS\ (note: you have to change the windows drive letter if you don’t install Windows on drive C)
- Delete all files inside the PRINTERS folder. Click CTRL + A to select all files and click Delete button on your keyboard to delete all the files.
- Now, open the Services window: right click on Print Spooler and click Start to activate the service again.
This technique also works even with network printers even on other platform (eg: Samba).
When i was using iTunes, i found an error ”applemobiledevicehelper has stopped working”. After browsing for a while, i found out the solution. The solution is by opening the Windows explorer and browse to “C:\Program Files\Common Files\Apple\Mobile Device Support\bin” and then you have to delete all the files there. except two of them; but it doesnt matter. Now reopen your iTunes and it will works normal again.
I hope this article can helps….
Albeit the spread of many rumours about the release date of the new Windows 7 (the name for next generation of windows operating system), Microsoft is not going to go back on their word.
A spokesman which is a senior vice president of Microsoft Bill Veghte finally confirmed that the next operating system will be released on schedule and will not be advanecd. The schedule must go approximately three years after the official launch date of OS Windows Vista in January 2007.
But there is an interesting part in the letter, it is something Bill Viht explained in its message about the date of release. He said “You have asked more regular and predictable timetable for withdrawal OS Windows”, - he then writes. “You need to just ask to get an answer. But one question remains: how Microsoft intends to implement all this?”
To see more about windows 7, check links below from wikipedia:
- http://en.wikipedia.org/wiki/Windows_7
- http://en.wikipedia.org/wiki/Windows_Server_7
- http://en.wikipedia.org/wiki/Windows_Mobile
You don’t have ms power point 2007 but you want to view some presentations made by power point 2007? don’t worry since microsoft has the viewer that can be downloaded for free.
Just click Power Point 2007 Viewer to download.
Tags: Powerpoint viewer, power point 2007
From my previous post, this is the second part. In the third window, there is an installation notes that informs you that you should install java run time environment (JRE), since the freemind was made using java. You might click Next to reach the next phase.

In the next phase, select the destination location. A place in your computer where the freemind’s files will reside. Click Next.

See my next tutorial…