How to create special charecter literals , Java, C, C++ and many other C style languages support the following special character literals. The one that stands out the most is the \dd d the ddd stands for the encoding for the octal bit encoding, again that's only if … [Read more...] about How to create special character literals in C?
Whats a really good way to display arrays in PHP?
Good question, There is two good command in PHP which are <?php print_r($array2); ?> All this does it prints out what is in the array with formatting, but if you want a nicer cleaner way to display what really is being held in the array try adding the … [Read more...] about Whats a really good way to display arrays in PHP?
What in the world is E-Commerce?
Are you excited to start making some money online and start living in your beach house for the rest of you life? It sounds simple enough right, you have a commerce business make it happen with steady income and you retire at the age of 25, but wait just one second … [Read more...] about What in the world is E-Commerce?
What are your thoughts on the javadoc feature in java?
Common comments in java language help explain the details of the code. But in complete opposite the java language supports a special type of comment known as a doc comment that helps document the api of the code. You might be asking why is this a good a idea? I … [Read more...] about What are your thoughts on the javadoc feature in java?
Raw Writting Getting started as a freelancer?
Freelancing has its ups and down and here is a list of the good things that freelancing has to offer. Advantages: Create your own schedule Be your own boss Create your own work culture Project selection Write off expenses Create your own schedule: If your peek … [Read more...] about Raw Writting Getting started as a freelancer?
How to readfiles in java?
for this program i get an input from a file then i massage the data and write back out to a new file. IT worked good for having a file with data and changing it to represent something that is more usable. package teamleader; public class TeamLeader { public … [Read more...] about How to readfiles in java?
Creating a new friend, friend list(How to) In java
A small program that lets you 1) Add a Friend 2) Remove a Friend 3) Display all Friends 4) Exit I used some new cool things in java from creating custom classes to understanding encapsulation, data hiding, organizing parts of the program. have instances of … [Read more...] about Creating a new friend, friend list(How to) In java
Getting to know phpMyAdmin with MySQL building a address Book.
Testing out my development environment with XAMPP, I created a HolaMundo.php file to try out my new MySQL database and some echo commands from PHP it seemed simple enough although the dollar signs are a little awkward to type. The file starts with a stage that just … [Read more...] about Getting to know phpMyAdmin with MySQL building a address Book.
How to work with forms in HTML?
<html> <head> <style> body{text-align:center; } table{ margin-left:auto; margin-right:auto; } </style> <title> Pappa Botchalims </title> </head> <body> <h1> Pappa Botchalims </h1> <form … [Read more...] about How to work with forms in HTML?
How to work with pre defined array?
The only difference in this peace of code is that instead of an array that has a fixed size, its an array that is pre defined size. What i mean to say in simple terms is that I have created 10 shelf's to store my beautiful numbers, so shelf 0 stores 2 and shelf one … [Read more...] about How to work with pre defined array?