Monthly Archives: October 2012

Hints: Compiling C++ source files using g++ compiler

Consider the source filename is main.cpp Compile and link in 1 step / -o specifies the output filename g++ main.cpp -o main compile first, then link (in 2 different steps) / -c : for compile command g++ -c main.cpp g++ … Continue reading

Posted in C/C++, Linux, programming, Ubuntu | Tagged , , , , , , , , | 1 Comment

Using Git – Basic Steps (Version Control System)

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. If you do not know about Git, first take a look at the link1 and link2 0- … Continue reading

Posted in Git | Tagged , , , | 1 Comment

Machine Learning Related Pages

Philippe Lucidarme – http://5lair.free.fr/ Stefan Schaal – http://www-clmc.usc.edu/~sschaal/ Csaba Szepesvári – http://www.ualberta.ca/~szepesva/index.html AI Bot challenges – http://www.dmoz.org/Computers/Artificial_Intelligence/Games/ A* pathfinding for beginners – http://www.policyalmanac.org/games/aStarTutorial.htm EXCALIBUR – Adaptive Constraint-Based Agents in Artificial Environments – http://www.ai-center.com/projects/excalibur/documentation/ AI challenge – ANTs – http://aichallenge.org/ants_tutorial.php MARIO AI championship – http://www.marioai.org/LevelGeneration/getting-started client side bots (Quake II)- http://ai-depot.com/GameAI/Bot-ClientSide.html … Continue reading

Posted in Machine Learning | Leave a comment

Random Search Algorithm

Random Search Algorithm (Pure RSA) This is the simplest optimization (minimization) algorithm, You can find many related subject on internet. Here, I am going to provide a MATLAB code for this algorithm. The problem here is  min f(x) : f(x)=Σ … Continue reading

Posted in Linux, Machine Learning, MATLAB, Neural Networks, Optimization, programming, Robotics, Software, Ubuntu | Tagged , , , , , , , , , , , , , , , , , | Leave a comment

Python Challenge

If you like python then you should try this challenge: http://www.pythonchallenge.com

Posted in Python | Tagged , , , , , | Leave a comment