Live data from Hacker News

Ideas I would like to build / see built

arandomurl.com

11–20 of 36 posts

Re: Ideas I would like to build / see built

#11

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.

heh looking back I should probably change the title, some of these I would like to see built because there isnt something available that satisfies me, others are just things I want to build because they would be fun.

Re: Ideas I would like to build / see built

#14

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.

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 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

#17
post #15

WYSIWYG HTML Editor == Dreamweaver

To be fair it has been a long long time since I have used dreamweaver. But I have a sneaking suspicion that it wont have improved a whole lot (as the rest of the CS Suite havent either).

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

#18
> Canvas/WebGL/JavaScript Game

I 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

#19
post #3

Not to hate, but these are vague ideas overall. Those are the kind that are a dime a dozen. ;)

"... 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

#20

Earlier 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…

Disagree C has classes. No "class" and no inheritance or polymorphism

C has perfectly good inheritance:

    struct child {
        struct parent p;
        // new variables go here
    }
    struct child foo;
    struct parent * bar = &foo;  // perfectly valid C
Post reply on HN