Very Basic Java Game programming - Part 1

Submitted by mjcabalar on
I don’t know how exactly to start or make an introduction for this post. I just made in to the concept of designing a simple fighting game tutorial - from doing the character animation to its overall functionality. This tutorial is intended for beginners who really enjoy experimenting with JAVA. No, I’m not an expert game programmer. I can’t promise to owe you a good working game engine. But this

Android Developers: Flappy Bird App Garnered $50k Per Day

Submitted by anthea on
As it was launched last May 2013, it's truly amazing that independent game developer Dong Nguyen from Hanoi, Vietnam, developed a fabulous game that will surely capture the hearts and minds of Android and iOS users with his "Flappy Bird App." With Flappy Bird App, whether players find it quite annoying and frustrating still it also offers advancement to mobile users to where they could practice

Additional fraud protection layer for Stripe payment

Submitted by chrislim2888 on
You have a great website doing great business using a payment gateway, e.g Stripe. But, hey, have you consider adding a free fraud check to all orders running through prior to the submission to the payment gateway? Why not, after all, it costs you nothing with added security. I don't see any reason to resist it! Perhaps, you may some concerns on the technical site, that I hope this article can

How to Read and Write Text Files in VB.NET

Submitted by donbermoy on
Hi! this is my other tutorial in VB.Net in how to read and write a file. In this tutorial, we will learn how to manage data that is stored as a text file. Using text file is an easy way to manage data, although it is not as sophisticated as full fledged database management software such as SQL, Microsoft Access, and Oracle. VB.NET allows the user to create a text file, save the text file as well as read the text file. Reading and writing to a text file in VB.Net required the use of the StreamReader class and the StreamWriter class respectively.

Work with Files in C++

Submitted by pavel7_7_7 on
In this article you'll read about how to work with files in c++. Files allow users to read a huge amount of data directly from the disc without entering the data from keyboard. There are two main types of files : text files and binary files. Text files are files that consist of the sequences of any symbols. This sequence is organized in rows that are separated by the newline character "\n".

Satya Nadella Hailed as New CEO of Microsoft

Submitted by anthea on
On February 4, 2014, after Steve Ballmer was hailed as the Chief Executive Officer (CEO) of the leading software-Microsoft, Satya Nadella from Hyderabad, India was named as the newest CEO of the software. Indian National Satya Nadella took his Masters in Computer Science Degree from the University of Wisconsin–Milwaukee and he also worked as a member of Sun Microsystems’ technology as staff. As 46

Sending E-mail using VB.NET

Submitted by donbermoy on
Hi! In this tutorial, i will introduce some kind advanced VB.NET Tutorial which is Sending an E-mail. VB.Net allows sending e-mails from your application. The System.Net.Mail namespace contains classes used for sending e-mails to a Simple Mail Transfer Protocol (SMTP) server for delivery. In this tutorial, let us create a simple application that would send an e-mail.

Introduction to javax.swing Library. A Simple Notepad Application. Part 2

Submitted by pavel7_7_7 on
This is the second part of the A Simple Notepad Application tutorial. In this article you will see, how all the functions of the text editor are implemented. So, we continue our work on the text editor. We have the graphical user interface. First step to implement the functionality is to add shortcut keys to every menu item. We will ise for this KeyAdapter.

Introduction to javax.swing Library. A Simple Notepad Application. Part 1

Submitted by pavel7_7_7 on
In this article I'll describe how to create a simple Notepad application using javax.swing library. Now, you know how to create java projects in Eclipse. So, we will create a new project, called coolReader. First of all, I'll show you the structure of the project: structure So, the project consists of 3 classes and a set of images, used to create some buttons. Now,we wil speak about coolReader class. This class is the class, that has the full implementation of the GUI and event handling.