Kategori: Programlama

Macs instantly maximize windows

Posted on 05 Ekim 2015 in İnternet, Programlama by

To speed up execute following command: defaults write -g NSWindowResizeTime -float 0.003 Quit and relaunch all apps for the change

DTD tutorial for xml

Posted on 02 Ekim 2015 in Programlama by

You can find a good dtd tutorial at following page: http://edutechwiki.unige.ch/en/DTD_tutorial

Loading libraries with LD_LIBRARY_PATH

Posted on 26 Ağustos 2015 in Programlama by

You can create any config file under following path: /etc/ld.so.conf.d then run: ldconfig -v With those steps no need to

Basic multiprocess server design in c

Posted on 24 Ağustos 2015 in Programlama by

Following code creates a new subprocess per connection from the port 1005. You can show them all by ps command.

Recursive Makefile Example

Posted on 20 Ağustos 2015 in Programlama by

I wanted to come up with generic way using only make (no autoconf/automake/etc) to solve the following problem: Given a

Posix thread notes

Posted on 19 Ağustos 2015 in Programlama by

pthread_once example   (https://computing.llnl.gov/tutorials/pthreads/man/pthread_once.txt) Save following code as main.c and compile with the given command. compile as gcc main.c -o

NM command and symbol meanings

Posted on 14 Ağustos 2015 in Programlama by

If the previous code is compiled with the gcc C compiler, the output of the nm command is the following:

Launching application with keyboard shortcut in linux (centos, fedora, redhat)

Posted on 04 Temmuz 2015 in Programlama by

Goto: Settings > Keyboard > Shortcuts > Custom Shortcuts Click the + button. Name: Terminal Command: gnome-terminal Click the Add button. Now click on

Heap sort

Posted on 27 Haziran 2015 in Programlama by

Wikipedia has a good tutorial for heap tree. https://en.wikipedia.org/wiki/Binary_heap Following implementation is copied from the page: http://robin-thomas.github.io/max-heap/   What is

Ldap apache directory studio tutorial

Posted on 18 Mayıs 2015 in Programlama by

You can find a good tutorial here and content is copied from the following page: http://krams915.blogspot.com.tr/2011/01/ldap-apache-directory-studio-basic.html