|
The "budding new developer" will be out of luck when his new employer wants him to develop a Windows forms application
|
|
|
|
|
Even Microsoft is moving away from Windows apps to PWAs!
"Dreams really do come true."
|
|
|
|
|
|
I am not sure how learning JavaScript would prepare you for learning C#.
|
|
|
|
|
I didn't say JavaScript would prepare you for C#, but using an easy language like HTML/CSS/JavaScript would introduce you to design as well as programming.
"Dreams really do come true."
|
|
|
|
|
Abraham Andres Luna wrote: HTML/CSS/JavaScript would introduce you to bad design
Abraham Andres Luna wrote: as well as bad programming.
FTFY
GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
|
|
|
|
|
Sounds like someone doesn't appreciate all the hard work that goes into JavaScript
"Dreams really do come true."
|
|
|
|
|
Well, good luck with pointers.
|
|
|
|
|
I am not sure, javascript can help learning anything (including programming)...
|
|
|
|
|
|
I did learn FORTRAN using punch cards during my first year of university...
|
|
|
|
|
So did I - but only after they forced COBOL on us ...
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
In college, I learned PL/1 using punch cards and batch processing. In fact, my senior project was written in PL/1.
After college, I never used that language again.
__________________
Lord, grant me the serenity to accept that there are some things I just can’t keep up with, the determination to keep up with the things I must keep up with, and the wisdom to find a good RSS feed from someone who keeps up with what I’d like to, but just don’t have the damn bandwidth to handle right now.
© 2009, Rex Hammock
|
|
|
|
|
It's no joke, youngster. The programming classes in my first two years of college were run on a mainframe. Input was via punch cards and output a line printer.
Software Zen: delete this;
|
|
|
|
|
Worked for me, back in '66.
|
|
|
|
|
To learn what is behind the scenes on all other languages.
- I would love to change the world, but they won’t give me the source code.
|
|
|
|
|
And a great way to make someone bored and frustrated way before they get a chance to see the beauty they can create.
For me: scripting first so you get addicted early, then go deeper if necessary.
cheers
Chris Maunder
|
|
|
|
|
No, no, no! If you can't cope with the boring and frustrating stuff then you need to get into market or sales instead of programming. We only want hard-core, OCD programmers moving forward - not script kiddies!
- I would love to change the world, but they won’t give me the source code.
|
|
|
|
|
My next major project is going to be written in Turtle Graphics[^]
cheers
Chris Maunder
|
|
|
|
|
So cool!
- I would love to change the world, but they won’t give me the source code.
|
|
|
|
|
we all start somewhere, to do do something!!!!
|
|
|
|
|
I would recommend something statically typed, but with a nice syntax (so no C-style languages, sorry). Perhaps Nim[^].
|
|
|
|
|
Does this really count as nice syntax?
import tables, strutils, algorithm
proc main() =
var
count = 0
anagrams = initTable<a href="">string, seq[string]</a>
for word in "unixdict.txt".lines():
var key = word
key.sort(cmp[char])
anagrams.mgetOrPut(key, newSeq<a href="">string</a>).add(word)
count = max(count, anagrams[key].len)
for _, v in anagrams:
if v.len == count:
v.join(" ").echo
main()
Whenever you find yourself on the side of the majority, it is time to pause and reflect. - Mark Twain
|
|
|
|
|
I know, I know. I'll take the hit, but I actually think BASIC is a great language to start off with. It's very verbose, yes. However that can be a boon to a new developer. I got started by breaking GORILLAS.BAS 1001 different ways but every break got me a little closer to understanding what I was reading. Instead of a mix of symbols and brackets to the untrained eye, it's just words. As an added benefit, VB cracks open the .NET ecosystem.
...never send to know for whom the code faults; if faults for thee.
|
|
|
|
|
I will agree with you. It is very easy to learn and understand. As one of my bosses used to say: "It's so easy to understand, even an auditor can understand it."
In its current invocation, it can do anything the other languages can do and, in some cases, even more. Yes, it is wordy - but for someone learning, words begin and end make more sense than { and }. The different uses for parenthesis, braces and curly braces is often confusing. The syntax for the for command is somewhat cryptic.
It is my opinion that it is better to start with simple and clear, then add the shortcuts later.
__________________
Lord, grant me the serenity to accept that there are some things I just can’t keep up with, the determination to keep up with the things I must keep up with, and the wisdom to find a good RSS feed from someone who keeps up with what I’d like to, but just don’t have the damn bandwidth to handle right now.
© 2009, Rex Hammock
|
|
|
|