Ask HN: What are you working on?
111–120 of 252 posts
Re: Ask HN: What are you working on?
#112and continually working on what pays the bills, http://paulstamatiou.com
Re: Ask HN: What are you working on?
#113I'm trying to build a openly defined price index for residential sales across the city.
Re: Ask HN: What are you working on?
#114Re: Ask HN: What are you working on?
#115Making our e-commerce platform http://www.enstore.com available to everyone. With a nice frontend built in Cappuccino/Atlas.
Re: Ask HN: What are you working on?
#116Making our e-commerce platform http://www.enstore.com available to everyone. With a nice frontend built in Cappuccino/Atlas.
Wow looks great! I really need to checkout Cappuccino...
Re: Ask HN: What are you working on?
#117At $15/month for unlimited invoicing, it's currently one of the cheapest on the market.
Re: Ask HN: What are you working on?
#118Earlier quoted context omitted.
I said reference voltage, but I meant the voltage for the summing amp would need to be 9V if that's the step up range he's going for. I totally agree about eliminating the batteries if possible; I just wasn't sure how to get adequate voltage available to the amp without the 9V batteries. But again, it's been many years since I've even looked at a schematic. The floating ground idea looks extremely cool though.
Reading the post again he might be able to completely get rid of the whole circuit by placing two Ge diodes in series with the 0 terminal of the LM35, that will raise the 0 by 0.4 V, just enough to get over the threshold.
Re: Ask HN: What are you working on?
#119Earlier quoted context omitted.
Try LAPACK. Incredibly fast, and a minimal license. You'll have to deal with FORTRAN, though.
I don't want to write my own binary dataformats, and I don't want to deal with FORTRAN.
Re: Ask HN: What are you working on?
#120I did cheat a bit and steal pieces from PyScheme and Lython as well as someone else's S-expression parser, but it's capable of evaling ((fn (a) a) 1) as well as Arc's "if" currently. I'm not certain whether it's Turing complete right now, but I suspect that it is because I can create and call functions, branch, and bind values to names. (IIRC, just being able to create and call lambdas is enough because you can count, branch, etc. Is that right? I haven't taken PL.)
Big problems right now are:
1) Proper lexical scoping. The current model is broken (it might be dynamic scoping), and Python 2.x's closures are broken so I can't just use Python functions to punt the problem to Python.
2) The shortcuts for quote, quasiquote, complement, compose, etc. The S-expression parser I stole doesn't have them. I don't want to use a parser generator because that seems to defeat the point of Lisp's lack of syntax (i.e., being easy to parse).
This is a toy that has nothing to do with my research interests (security), so it's not going to be actively maintained or developed. pg will probably make some breaking changes to Arc and kill the project.