Genetic Algorithm: Solving the Function Optimization Problem using Java

In this article you will find a description of basic steps of the genetic Algorithm and an example of function's optimization in Java. There is a variety of problems that can not be solved with a simple algorithms. This problems needs a lot of time and resources to find a solution. Often we don't have a to find an exact solution : we can find a solution that is enough good for the goal. An example of such a kind of algorithm is Genetic Algorithm. Genetic algorithm is inspired by the process of the evolution in nature.

Simple Notepad Application using C# - Part 2

This is the second part of the article about C# Notepad. In the first part of this tutorial we already created a simple Notepad with possibilities to open, save, save as and print file. Also, you can change now the font and it's size from the menu. The next step is to implement the basic operations in the text redactor: copy, paste and cut. This actions can be performed in a very simple way by using functions of the textBox class.

Flappy Fly - VB6 version of Flappy Bird

Flappy Fly - VB6 version of Flappy Bird I used butterfly instead of bird... Credits to the Original Author: Flappy Bird is a side-scrolling mobile game featuring 2D retro style graphics. The objective is to direct a flying bird, which moves continuously to the right, between each oncoming set of pipes without colliding with them, which otherwise ends the game. The bird briefly flaps upward each

Project Title for Your Thesis/Project!

Hopefully this may help you creating you project or thesis title. Project Help Desk Here... Credit to the link below: http://www.collegelib.com/t-499-project-topics-for-computer-science-and-engineering-cse-list-1.html?utm_campaign=top&utm_medium=collegelib&utm_source=popular A Flexible Privacy-Enhanced Location-Based Services System Framework and Practice A Modified Model for Private Data Security

Calculate Or Auto Sum the Value Using Checkbox with JavaScript and PHP/MySQL

In this tutorial I will teach you on how to calculate or auto sum the total value of the product's price using checkbox with javascript and PHP/MySQL. To understand this, follow the steps bellow.

Creating Our Database

First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2. Then create database and name it as "tutorial". 3.

Simple Notepad Application using C# - Part 1

In this article you fill find information about how to implement the basic functions of the Notepad using c# Visual Studio provides a good interface for creating different Windows Form Applications. One of the most popular application that is created during the studying is Notepad. In this article I will not pay a lot of attention on the process of building GUI, because it's a simple task. I just give you one important tip on this step: Always give proper names to your GUI elements.