I'd like to see also: a web browser, an OS, a "spreadsheet" (term I've coined, I'll explain in a follow-up post), also some sort of FPS, also some sort of markup format that's like HTML but not presentation-specific...also, I'd like a language like C but with classes. And, a pony. Thank you.
Ideas I would like to build / see built
11–20 of 36 posts
Re: Ideas I would like to build / see built
#12Re: Ideas I would like to build / see built
#13Re: Ideas I would like to build / see built
#14I'd like to see also: a web browser, an OS, a "spreadsheet" (term I've coined, I'll explain in a follow-up post), also some sort of FPS, also some sort of markup format that's like HTML but not presentation-specific...also, I'd like a language like C but with classes. And, a pony. Thank you.
I'd like a language like C but with classes C already has classes. They're called structs. And methods are called function pointers.
My post was meant to be funny yet true. I read the OA and thought all of the ideas he listed already exist, and was surprised it made the front page on Hacker News. Then I thought to myself, "Oh, it must be because it's a joke, the OA was trying to be funny." Perhaps I was mistaken.
Re: Ideas I would like to build / see built
#15Re: Ideas I would like to build / see built
#16Re: Ideas I would like to build / see built
#17WYSIWYG HTML Editor == Dreamweaver
It used to generate terrible html, and in the case when you wrote your own html it munged it badly, its css and javascript editing were mediocre, I remember it not even handling css definitions properly.
even a live preview window in emacs would cover quite a lot of what I want, remember project to embed firefox into emacs a while ago, probably time to go search it out.
Re: Ideas I would like to build / see built
#18I made a bunch of small JS games/puzzles using Processing.js (which uses Canvas/VML). The exact rules are slightly cryptic by design. I definitely loved making them and intend to make a bunch more this year:
http://chir.ag/projects/prc/?nored
http://chir.ag/projects/prc/?gold
http://chir.ag/projects/prc/?piggy
http://chir.ag/projects/prc/?vanish
I hope you enjoy them.
Re: Ideas I would like to build / see built
#19Not to hate, but these are vague ideas overall. Those are the kind that are a dime a dozen. ;)
Vague & dime a dozen maybe, but don't discount them all without trying or thinking about some. For example: Having a "timed-task" function could be applied to solve a lot of time wasting in many areas.
Re: Ideas I would like to build / see built
#20Earlier quoted context omitted.
I'd like a language like C but with classes C already has classes. They're called structs. And methods are called function pointers.
Disagree C has classes. No "class" and no inheritance or polymorphism. C++ and Objective-C have these things. But I understand what you're saying. There is the very well-known structs+functions technique which gives a partial stand-in for full OO. My post was meant to be funny yet true. I read the OA and thought all of the ideas he listed already exist, and was surprised it made the front page on Hacker News. Then I…
C has perfectly good inheritance:
struct child {
struct parent p;
// new variables go here
}
struct child foo;
struct parent * bar = &foo; // perfectly valid C