sam fisher
Well-Known Member
Are there any places at all that have programming courses or computing courses basically anything but a GCE in Applied ICT. Prefereably around wiltshir/somerset/where ever
sam: do you want fries with that?No there aren't.
got a list of colleges/areas on the leftI briefly looked at that site but they have no sciences and i did not even attemptto look for maths...
Fucking tell me about it.Side note: Don't just be content what the college will teach you at their pace (as it can be dreadfuly slow), read books, tutorials etc on the side.
And here I am learning Lamdba calculus, predicate logic, Godel's fucking incompleteness theorem and about six other languages from PHP to C# - all part of the course. Not sure if this is better or worse for me in the long run.Fucking tell me about it.
My university took 6 months before we even touched moderately complicated Java programs - they did not even tell me about the main function until 1 month ago. Thank god for home learning. [/rant]
haha nice - I better get started early then, I was wondering whether the pace would ever increase as right now I can't imagine what sort of company they expect me to work in on my year out?And here I am learning Lamdba calculus, predicate logic, Godel's fucking incompleteness theorem and about six other languages from PHP to C# - all part of the course. Not sure if this is better or worse for me in the long run.Fucking tell me about it.
My university took 6 months before we even touched moderately complicated Java programs - they did not even tell me about the main function until 1 month ago. Thank god for home learning. [/rant]
Welcome to second year CS!
Well to be honest I think one of the main reasons for byte code is that a java program can be run on a server and then the clients can download the program from it (and they can all download the same bytecode even if they are all very different).What is it about Java that make you think it more suited towards 'internet' programs?
.NET as well as Java have so-called managed code (garbage collection, no bad pointers, memory leaks etc). And both compile to bytecode. Java's usage as a web applet it just one of its small uses, it's used in places as strange as air-traffic control due to its exception handling and type-safety.Well to be honest I think one of the main reasons for byte code is that a java program can be run on a server and then the clients can download the program from it (and they can all download the same bytecode even if they are all very different).
I think that this makes Java suited to the internet.
I also think that due to not having pointers, it is also more secure than C. Which is also a benefit on the internet.