Home Forum Info Programming GNU/Linux etc. Codes, Publications, etc. Emulation Manga and Anime Everything else Contact
linija

Home

Forum

Info

Programming

GNU/Linux etc.

Codes, Publications, etc.

Emulation

Manga and Anime

Everything else

Contact

Blog and news and changes in site
Reference Cards - 28.01.2010.

College of mine came across this great site where you can find a lot of reference cards about programming etc. The link is http://refcards.com/. Take a look you will definitely find something that I like. I know I did :D
C++ and Object Orientation Tips - 27.01.2010.

I looked something on the Internet about C++, and I came across this great site http://ootips.org/. If you are not familiar with smart pointers in C++, I suggest that you take a look at this link http://ootips.org/yonat/4dev/smart-pointers.html.
New code site thanks to FLOSS Weekly - 06.01.2010.

I was listening one of the older podcast of FLOSS Weekly when I heard about good site with lot of open source projects. I googled for it and found it http://www.sourcecodesworld.com/. I haven't looked very carefully about every thing on it, but it looks very interesting. Btw if you haven't listened to FLOSS Weekly give it a try, you will be pleasantly surprised. Their site is http://www.twit.tv/floss
Happy New Year 2010 - 31.12.2009.

I wish you Happy New Year 2010, and all the best things in new 2010
Lot of articles about programming - 26.12.2009.

I came across this site http://www.devarticles.com/, and as far as I saw there are lot of interesting articles about programming. So I thought to share this with any one interested :)
Gnu/Linux/Unix for Beginners - 21.12.2009.

I was in a very strange situation, I was asked about some tutorial or similar for beginner in Gnu/Linux/Unix about some basic commands (move, copy, make dir etc.) I didn't know any book or on-line tutorial of that sort. After some searching on net I think that I found some good on-line tutorials :) They are http://www.ee.surrey.ac.uk/Teaching/Unix/ and http://linuxcommand.org/learning_the_shell.php.
Some useful tutorials and similar - 19.12.2009.

On this links

http://devmanual.gentoo.org/tools-reference/index.html

http://devmanual.gentoo.org/index.html

you can find a lot of useful tutorials , hints , etc about programming and such. It worth checking in out.
Some good read for C, GCC, etc. - 19.12.2009.

If you write C code using gcc, cc or some other compiler, you might find interesting read on this link http://gcc.gnu.org/onlinedocs/ just like I did. Like I always say the more you know, the better it will be for you :)
How to list fonts on unix/solaris/gnu/li - 19.12.2009.

One very usefull comand which is doing this job is

xlsfonts
GCJ + Java simple example - 18.12.2009.

You might have heard that you can use gcj in order to compile java code and start app on Gnu/Linux. Few moments ago I tried to google out how this can be done and to my surprise there was no simple example showing how to do this. So I decided to write one :) First of all here is java code

% cat Test.java

import java.io.*;

class Test
{

public static void main(String args[])
{
System.out.println("Hello World!!");
}
}

After this you need to compile this code. This is done in this way

% gcj -C Test.java

now you have Test.class, so you need to link this file and you tell gcj where main method is

% gcj -o test --main=Test Test.class

and now you can start app test

% ./test

Hello World!!
Newer postsOlder posts
linija
Visitor number : 44820
Last modification done on: 03.09.2010.
Webmaster
On Net Since 1999
Created by Puppet Master
©Vladimir Dejanoviæ