2,384 reputation
1031
bio website
location
age
visits member for 1 year, 6 months
seen 2 hours ago
stats profile views 355

13h
accepted How to tell Three.js not to use interpolation when zooming an object's texture?
13h
comment How to tell Three.js not to use interpolation when zooming an object's texture?
Do you ever sleep? Thanks!
13h
asked How to tell Three.js not to use interpolation when zooming an object's texture?
14h
comment JavaScript Operator Precedence logic confuses me
Wow, you're not stupid, the highest precedence is the lowest value. That makes no sense at all. Some people really just wanna watch the world burn...
18h
awarded  Nice Question
18h
comment Is it possible to enumerate computer programs?
So, any words on the idea of developing a grammar that is optimal for this, instead of hacking on top of existing grammars?
21h
comment Is it possible to enumerate computer programs?
luqui that sounds too great not to exist, are you sure you're not reinventing the well somewhere there?
22h
comment Is it possible to enumerate computer programs?
I also have a feeling that if we find an algorithm that pass certain tests, it is very likely that we found the right algorithm to do what we want. That is, look how shortly a functional quicksort can be described: qsort = (x)->(h=head(x); concat(qsort(filter(<h,x)),h,filter(>h,x))). Now, how many as short strings would provide a program that sorted 100 tests correctly but were not generic?
22h
comment Is it possible to enumerate computer programs?
Awesome answer. I took some time to read it as you provided great links that I had to read too. Some considerations: if we are finding an algorithm to compute certain function (for example, QuickSort), the best solutions certainly run fast. So long-running functions can be discarded to no damage at all - in fact, we don't care wether it will actually provide the correct result after some time. So I consider the whole halting problem irrelevant here. Then... (continues)
23h
comment Is it possible to enumerate computer programs?
So, this becomes: 1. How do you enumerate trees? 2. TBH I'm not happy with this - even if I could enumerate Lisp ASTs I'd be generating a lot of non-working programs in the process. The idea was to enumerate programs that did something, whatever it was.
23h
comment Is it possible to enumerate computer programs?
@voithos ok that's interesting but not exactly what I'm looking for.
23h
comment Is it possible to enumerate computer programs?
Okay this is all valid and good but we're not getting to the point: I'm looking for a low-entropy way to enumerate computer programs. To make it more clear, imagine we wanted to enumerate phrases. We could use my method, testing every possible string, or we could test only for combination of dictionary words, because phrases are made by words, not letters. That would be much better. Now, what's the equivalent for computer programs?
23h
comment Is it possible to enumerate computer programs?
It could be easily corrected with a "halt if N seconds has passed" guard, though.
23h
comment Is it possible to enumerate computer programs?
@voithos :D :D :D
23h
comment Is it possible to enumerate computer programs?
Probably, but the idea is to make it work in the least amount of time possible - even if it is still a few thousand years. (The goal is not to actually performing this, but to learn how programs could be enumerated in a low entropy way - that should be really interesting).
23h
comment Is it possible to enumerate computer programs?
It would be closer, but what are the actual research and relevant works regarding that idea? As in, not reinvent the well.
23h
asked Is it possible to enumerate computer programs?
1d
asked Is there any public benchmark of web frameworks by scalability?
1d
asked How is PHP so high on this benchmark if it's said not to be as scalable as other frameworks?
2d
asked Is there a list of JavaScript operations by performance?