Palyndrome in Java

Submitted by tutgeeks on
This code will show you if the word is Palyndrome or not. import java.util.Scanner; public class Palyndrome { public static void main(String[] args) { Scanner read = new Scanner(System.in); int ctr = 0; System.out.print("Enter any string: "); String str = read.next(); if(str.length()+1>3) { for(int x=0,y=str.length()-1;x

Khalil Shreateh: Facebook Bug Finder Receives Bounty from Internet Users

Submitted by navajocodetalker on
Khalil Shreateh, the newest internet sensation, after he successfully breached Facebook security by posting a message on Mark Zuckerberg's personal page receives a bounty not from Facebook but from internet users worldwide after the social network company refused to pay him. A campaign started online by Marc Maiffret in an Indiegogo funding site GoFundMe.com has already exceeded it's target of $10

Hello World Application

Submitted by admin on

Hello World Application

The first thing you need to do if you want to learn certain programming language like Visual Basic is to familiarize the IDE. The most popular source code that is being run is the "Hello World".

Any programming language has its own version of "Hello World" Application. To learn more about the list of Hello World Program, visit Wikipedia’s example.

Visual Basic Tutorial

Submitted by admin on

This section will teach you on how to begin programming with Visual Basic 2008 and above. Please take note that Microsoft has already changed the name from Visual Basic .NET to Visual Basic – that is, by eliminating the word “.NET”. The purpose of changing this is to avoid confusion to the language. So, if you refer to version 2008 or 2012, you would say “Visual Basic 2008” or “Visual Basic 2012”.

Registration Simulator

Submitted by blackwoods on
I'm not pro, I'm still a beginner so if you find somethin' that is wrong in my code, please don't hesitate to correct it. Just tell me so that I'll know what should i do. Here's a code, that resembles a registration simulator. It organizes the name, that you enter in the proper case as well as the location.

How to Display Error Message in CodeIgniter

Submitted by admin on
In this tutorial, I will explain on how to you can display error messages using CodeIgniter into your View from a Controller. There are two kinds of approach of doing this. First, passing the data directly from Controller to View. Second, using flashdata. This code is useful, for example, if you have a shopping cart application.