|
Taken from http://www.ocf.berkeley.edu/~wwu/riddles/cs.shtml
It looks very compiler specific to me. Don't know where to look for?
Started by Xolve on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's the program.
Edit: Added method 6, and added a note that method 5 isn't strictly legal .
|
|
What did you program as a child? What programs you think can be cool for kids nowadays?
Started by flybywire on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Print "I am cool" 20 Goto 10 > Run
What did you program as a child? Logo with turtle: A powerful idea about teaching ideas (TED)
What did you program as a child?
I programmed in Basic a bit.
|
|
Is it better to learn Clojure programming or Perl programming?
Started by ashebano on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Why can we only choose between these two languages....
If you want to just get stuff done and you want a large community you can go to, Perl might be better for you .
Clojure??
If you want to learn a very cool modern language then Clojure is the way to go .
Erm....
|
Ask your Facebook Friends
|
If my program just sometimes calls to GPL program (or if we talk about flash my swf sometimes sends parameters to other GPL'd swf) should all my program be Open Source GPL?
Started by Ole Jak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Anyway if you are using those code.
There is also the library exception , like your program use a GPL library (linking in C), your program can be still be a closed source.
Source don't have to be GPL.
|
|
In my second year of University we were "taught" Haskell, I know almost nothing about it and even less about functional programming.
What is functional programming, why and/xor where would I want to use it instead of non-functional programming and am ...
Started by Teifion on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I hope you find ....
Also, Dustin Campbell has a great blog where he has posted many articles on his adventures on getting up to speed with F#. .
May be worth checking out this article on F# "101" on CoDe Mag recently posted .
Try the stuff surrounding F#.
|
|
Possible Duplicates:
What is the best programming language for web development and why?
Functional programming and non-functional programming
I'm thinking of going into web design/ web programming.
Any suggestions as to languages/ programs to learn? Any...
Started by draice on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You....
UPDATE: @Parappa points out a very huge oversight on my part: SQL .
After that, you can go any number of directions: Flash on the client, and Ruby, Python, or Java for the server are very common choices .
These are the bedrock.
HTML, JavaScript, CSS.
|
|
I want to teach my kid to learn programming. I remember that I started with FoxPro for DOS, TurboBASIC and then Borland Pascal. What do you think of what is a good programming language to initiate into programming?
Started by Remus Rigo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I'll put ....
Some may not appreciate its indenting style but it is, in my opinion, the best one to teach newcomers to the craft .
Python, plain and simple.
Really anything that's object oriented (.NET, Java, ActionScript) -- it doesn't matter the flavor .
|
|
Hi
if my C# Windows mobile program crashed, How to make reset to this program ?
(automatic - without any user interference)
thank's in advance
Started by Gold on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You would have to have another application that monitors your program and as soon as it finds out limited resources and spawining a program that does nothing but check if another is running seems like.
|
|
How do I run another program from within my C program, I need to be able to write data into STDIN of the programed launched (and maybe read from it's STDOUT)
Not sure if this is likley to be a standard C function, but I need the solution to work under...
Started by Simon on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Popen is standard on modern unix and unix-like OS, of which Linux is one :-)
Type .
Of the program.
|
|
How can I write a program in Java that will execute another program? Also, the input of that program should be given from our program and the output of that program should be written into a file.
This is my small set of code to get its output:
Process...
Started by Arun on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You interact with the input/output of the process using getInputStream/getOutputStream... .
What platform are you in?
If you are on *nix you can type:
java MyProgram | myexternalprogram > myfilename.txt
You can use java.lang.Process and java.lang.ProcessBuilder .
|