Category: Programming

23
Jun
2016

Swap in C

Swap in C #include<stdio.h> int main() { int x,y,z; x=5; y=7; printf(“Before x=%d y=%d\n”,x,y); z=x; x=y; y=z;…

30
May
2016

OpenGL Graphics Code: Build a house with GLUT

#include <windows.h> #include <GL\glut.h> void myInit (void) { glClearColor(0.0,0.0,0.0,0.0); // sets background color to white // sets…

28
May
2016

Data Mining:Intros and Weka With Java

https://www.ibm.com/developerworks/library/os-weka1/ http://www.programcreek.com/2013/01/a-simple-machine-learning-example-in-java/ http://www.cs.umb.edu/~ding/history/480_697_spring_2013/homework/WekaJavaAPITutorial.pdf

25
May
2016

Advanced string manipulation

Actually we use this method to split string from a big sentence using regex. https://howtoprogramwithjava.com/string-manipulation/

15
May
2016

Java OOP Examples

https://www.ntu.edu.sg/home/ehchua/programming/java/J3a_OOPBasics.html

15
May
2016

OpenGL GLUT Tutorials – C Graphics

Lectures: About OpenGL colors: http://www.cs.brandeis.edu/~cs155/OpenGL%20Lecture_02.pdf https://en.wikibooks.org/wiki/OpenGL_Programming/Basics/Color Setup: https://openglprojects.com/setting-up-opengl-in-windows-linux-mac/ Tut: http://www.lighthouse3d.com/tutorials/glut-tutorial/ http://ogldev.atspace.co.uk/www/tutorial03/tutorial03.html https://www3.ntu.edu.sg/home/ehchua/programming/opengl/CG_Introduction.html Vid:   https://www.youtube.com/watch?v=xCRzpNd5k3Y Projects: http://www.openglprojects.in/2015/08/bubble-shooter-game-computer-graphics-programs-in-c.html#gsc.tab=0…