Bulkan Evcimen

Javascript....



var myArray = new Array();
myArray[0] = "hello";
myArray[1] = "merhaba";
myArray[2] = "ciao";

for (var i=0;i
alert(myArray[i]);

var myOtherArray = [];
myOtherArray[0] = "hello";
myOtherArray[1] = "merhaba";
myOtherArray[2] = "ciao";

for (var i=0;i
alert(myOtherArray[i]);


Can someone tell me the difference in these Vectors....i mean Arrays that are dynamic in size but you can't delete a single element at index X.

EDIT:

After all this pain and Googling, i found how to remove elements from an array in javascript.
A big fvcking round of applause for the splice method.

splice(index,length): starting from index remove elements until length.

C, Low Level Development



Here is URL for a search on seek.com.au for Analyst/Programmer in Melbourne.

removed
Top three development positions are as of today (Tuesday 15th) are

• Senior Java - J2EE Developers
• Senior Analyst Programmer - .NET
• PHP Web Developer

So the question is why doesn't universities, well RMIT, change its teaching style. Instead of starting off with Java for two semesters, introduction then advanced topics like Linked Lists etc. Then second year two semesters of C, again basics, pointers and then next semester with advanced topics, Splay Trees, Red-Black trees.

Any PHP developers out there implement a Splay Tree for a web app? No?
Any Firmware/Embedded programmers out there implement a Patricia Trie? Yes?

Look at the results again, i don't see any Embedded programmer....

Follow the industry trends, i understand that change is a bit hard it takes long, so much beurocracy, blah blah blah. We all graduate and don't have the knowledge the industry wants. Software Engineering undergrads are even more disadvantaged, we have only four (?) electives. So what can i choose? .NET ?

Release Early, Release Often?



Just wondering if the same motto for Open Source software works with Blogs?

Post Early, Post Often? Just don't worry about quality (bugs?) of the material?

CSS Layout by Rambling Soul