Friday, April 4, 2008

Some Computer Science Concepts :)

1. Little Endian & Big Indian :
Click

2. Macros vs Inline functions :
Click

3. Stack & Heap Allocation :
Click

4. Semaphore Implementation :
Click1
Click2

5. What is a heap? :
Click

6. square root of 2 is irrational, proof :
Click

7. summation of infinite harmonic series - 1 + 1/2 + 1/3 + 1/4 + 1/5 + ........
Click

8. Interrupt - hardware & software interrupts

9. Parsing - Click

10. Symbol Table - Click

11. Hash Table - Click

12. Intermediate Language - Click

13. Context Free Grammar - Click

Tuesday, April 1, 2008

Difference between UK, England, Scotland....

Hi,
Most of us wrongly refer England as UK. But there is difference between two.
Following link explains it very well.
http://www.woodlands-junior.kent.sch.uk/customs/questions/britain.html

Deepak

Sunday, March 30, 2008

Software list for Windows

1. Adobe Acrobat
2. Adobe Flash Player
3. Adobe Fotoshop
4. Alarm clock by Dave Hudson
5. Alcohol 120%
6. AVA find
7. Cambridge Advanced Learner's Dictionary
8. Canon Camera
9. dc++
10. Feed reader
11. flv player
12. fritz 10
13. google talk
14. gtk 2.10.13 run time environment
15. Imdb-grab
16. Itranslator
17. Itunes
18. J2se : java 2 run time environment
19. Jcreator pro 3.5
20. K-lite Mega codec 1.52
21. Microsoft .NET framework
22. Microsoft office enterprise 2007
23. Microsoft visual studio 6.0
24. Motorola fone tools
25. Mozilla firefox
26. MyODBC
27. MySQL query browser 1.1
28. MySQL server 5.0
29. MySQL servers and clients 4.0.21
30. Nero 7 permium
31. NetBeans IDE 5.0
32. NOD32 Antivirus system
33. Perl express 2.5
34. Picasa 2
35. Python 2.5.1
36. SSh secure shell
37. Sudoku
38. GIMP 2.2.17
39. VideoLAN VLC media player 0.8.4a
40. WAMP 5.1.7.2
41. Web Content Extractor 3.0
42. Web Stripper
43. Weka
44. Winrar
45. Xampp 1.6.3a
46. Yahoo Messenger
47. ZZEE PHP GUI 2.1.1

mounting windows directory in Ubuntu :)

This link has all the commands and information for doing this :
http://www.psychocats.net/ubuntu/mountwindows

deepak

Thursday, March 27, 2008

Monday, January 28, 2008

odbc connection via C program in windows

install gcc compiler
install MyODBC-3.51.11-2-win

paste sql.h, sqlext.h, sqltypes.h in the include folder
paste libodbccp32.a, libodbc32.a in lib folder

configure windows settings as per:: configuration link

compiler your c program with:
gcc testprogram.c -lodbc32

and u r done
cheers!!

Wednesday, January 23, 2008

jdbc + MySql

one good link for installation of mysql server, mysql-connector/java, some configuration details and simple java program illustrating use of jdbc ::

http://www.developer.com/java/data/article.php/3417381

bye