The Way to Programming
The Way to Programming
The difference is with express editions and ultimate (paid though, not student stuff and all).
If you ever want to sell software and you use microsoft’s libraries (seeing you using visual studio, you probably will).
You’re not allowed to sell it closed source.
Other than that… As hobbyist developer or freelance you will not notice a difference at all.
I think that the game/project doesn’t need to be too interesting,
you might be able to enhance your functions inside the game.
For example, a normal Snake/Tetris game but with impressive function such as:
Online Highscore, Multiplayer, Skin Editor, Level Builder…
But if you need a very interesting project,
then I think of making a game that use normal “Controls” like Button, Scrollbar, Radio Button, Checkbox etc…
For example the game Pong,
you can use Radio Button as Ball and Scrollbar as Paddle.
It will looks interesting and it wouldn’t be hard to code as no graphics jobs need to be done.
Just a suggestion on how to select a project you want,
those game I listed here might not be interesting enough.
I agree that PHP is a great language to start with because of its Object Oriented and Procedural abilities. You’re the programmer, so you can decide how you want to write your programs. Your not forced to go one way or another. Plus it is an interpreted language so you will see your results quick without compiling anything. PHP runs on a large majority of websites including Warez-BB.
DBA is better and its also harder If you are not careful, you can make serious mistakes Since data is critical.
its my first time I’m writing on how I start programming.
I was 14 years old, playing Lineage2.At the christmas period I made a query on google for ‘L2 server’ and I found a team named L2Jserver, it was an Emulator for Lineage2 Servers .
I was so happy that I began to understand how the ‘thing’ with L2 works, I downloaded the code, I was studying them and after 7 days ( &7 nights) I created my first L2 server. I bought books for Java and VB.NET and I wasn’t care about the school. I was taken my books into classroom and I read them every second, I was so excited and happy ! From that time I was learning much languages like C#(one of my favourites), SQL,HTML,CSS,Javascript,ASPNET(C#),VB.NET,PHP… , I’m 21 years old now.
After many many tests on what I really love to do, this year (2013) I started again programming and developing at JAVA (my biggest love) .
It was difficult to choose between WEB and SOFTWARE developing, I choose the second and now I am Core Manager at L2 Server team Smile
Tips from me…
Grew up in family owned business’s. When old enough was managing other people. No matter what fail safe, backups you had in place constantly being thrown a curve because of factors outside of your control. Father saw the frustration and introduced me to another world. Still in the family business. Now all curves, failures, success are on my terms. Ones & Zeros management better than people for me.
BASIC / C / Assembly / C++ / PHP / Ruby / NodeJS / Python has been the progression with a few in between. I make no claim to be an expert at any, can hold my own in a couple.
Yes you can. it’s very simple to do it. try search “Timer vb .net” and it may run on “tick” event
I want to understand exactly what you are doing. I will explain what I am thinking and you tell me if I am correct.
1. You want a listing with a checkbox by each row.
2. The user checks box for every file he/she wants?
3. when they hit download, the script will zip all the files into a single zip file and serve it for download?
If this is what you are wanting, try this. What the below code does is take your files that are sitting on your server and takes the files listed in the variables and creates a single zip file containing all the files that were submitted to it on your server. it will then email the download link to the email address entered by the user as well as a second email to you saying they were sent.
This is just a quick throw together so you might need to do a bit of tweaking on it to make it work for you but this is my impression of what you are wanting.
$todelete = time(); $nfile = './dfiles/' . $todelete . '.zip'; $zip = new ZipArchive; foreach ($files as $file) {$zip->open($nfile, ZipArchive::CREATE); $zip->addFile('files/' . $file) ; } $zip->close(); mail("$email", "Your download links from hiho.com", "Thank you for your purchase from hiho.com. The link to download your file is below (If you ordered any downloads). Please remember that you have approximately 48 hours before the link becomes invalid. If this happens and you need to redownload the file you may send an email to admin@hiho.com to reactivate the link. Please include the items purchased as well as the items purchased. Your Download Link: http://hiho.com/dfiles/" . $todelete . ".zip", "FROM: admin@hiho.com"); if($row['notify_sale'] == 1){ //mail("woohoo@txt.att.net", "Online sale.", "You just made //an online sale. The following items were sold. $list", "FROM: //adminb@hiho.com"); }
Friends i have tried it …. but i think its wrong plz post the write code
import java.lang.*; class Box{ int s; // s = side Box(int x){s=x;} void vol() { System.out.println("The Volume of Box is :"+s*s*s); } }//End Of class Box class Box49{ public static void main(String args[]){ int i,s; int arr[]=new int[10]; int vol(s) { return(s*s*s); } for(i=1;i<=10;i++) { arr[i].vol(i*5+10); } boolean swapped = true; int j = 0; int tmp; while (swapped) { swapped = false; j++; for ( i = 0; i < arr.length - j; i++) { if (arr[i] > arr[i + 1]) { tmp = arr[i]; arr[i] = arr[i + 1]; arr[i + 1] = tmp; swapped = true; } } } System.out.println("Smallest Box"+arr[0]); }//End OF main }//End Of class Box49
Sign in to your account