k0b13r's Contributions
Below are the tutorials, code snippets, and resources k0b13r has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Setting up NTFS for user in Linux/Unix Tutorials (Last Comment: k0b13r, Views: 5,091)
Code Snippets
Bubble Sort in C++ by k0b13r
Submitted: April 12, 2007        Views: 55745
Implementation of bubble sorting algorithm.
Submitted: March 26, 2009        Views: 5344
This snippet will return cartesian product of two sets (sets are represented as arrays). Provides both AxB and BxA products.
Submitted: August 19, 2007        Views: 1878
This code will counts hits on your page. Cookie will prevent from counter "cheating" with every refresh.
Submitted: August 15, 2007        Views: 1745
This code will count lines in each file in folder
Submitted: June 16, 2009        Views: 3011
This code will calculate value of function's definite integral in specified range using Monte Carlo method ;)
Submitted: June 16, 2009        Views: 3197
This code will calculate value of function's definite integral in specified range using Simpson method ;)
Submitted: May 7, 2007        Views: 35862
This code use Euclides algorithm to find GCD (Greatest Common Divisior) of two numbers.
Submitted: August 24, 2007        Views: 20125
This code generate image, with random generated number (weak and user-annoying anti-bot security :P)
Submitted: March 30, 2009        Views: 1590
This litte code will check if word is palindrome. It's proof to LowerCase and UpperCase, so both "Kayak" and "kayak" will return true
Submitted: August 27, 2007        Views: 2592
Function used to generate random 8 chars length passwords
Submitted: April 18, 2009        Views: 8813
This little code will calculate mathematic expression written with RPN (Reverse Polish Notation)
Submitted: March 25, 2009        Views: 3664
This code will return intersection of two sets (sets are represented as arrays)
Submitted: February 5, 2008        Views: 2461
This code will show/hide content wrapped within div/span/p tag
Submitted: March 25, 2009        Views: 2070
It's a very simple singleton design pattern example