Viewing profile — dogada
dogada
HN member- Joined
- Wed, Mar 21, 2012, 5:40 PM UTC
- HN karma
- 82
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About dogada
My projects: MetaJS - logos-oriented lisp compiled to Javascript, universal communication protocol Coect.net.
I use Javascript and Python.
Recent public activity
- story
- story
- story
- story
- story
-
comment
Comment #6689370
http://www.coect.net uses own Lisp dialect MetaJS http://metajs.coect.net
- story
- story
-
comment
Comment #6298186
From my experience MetaJS allows to write much cleaner code eliminating a lot of typical boilerplate. Many frameworks assume that some functions always have some parameters (for ex…
- story
-
comment
Comment #5379491
A year ago near last Google Reader redesign I made my own online RSS-reader http://www.cliws.com/ and now don't care. We should less depend on the large corporations. The idea abou…
-
story
Ask HN: Does CNAME alias for domain hosted on GAE cost 50$/year
$50/year for the right to use my domain for app hosted on App Engine seems to much, isn't it? Before December 6, 2012 Appengine users used Google Apps Standard for mapping custom d…
-
comment
Comment #4882350
I understand you but DSLs allows to reduce number of used languages/tools in a web-projects. For example NodeJs allows to use same JavaScript for both client and server and if we w…
- story
-
story
Show HN: Attach a poll to a tweet with PollAll.me
http://www.pollall.me/ Often we receive tweets with which we don't agree and we want to poll our followers about their opinions. Ideally we should be able to attach a poll to a twe…
- story
-
comment
Comment #4600927
IMO Microsoft looks for web-developer loyalty because recent stupid policy of big monopoly drive them to zero share on web-browser market. The only remaining question: will IE10 su…
-
comment
Comment #4600909
One of the key TypeScript features is not only the fact that JavaScript program is TypeScript programs but also ability to add type annotations to existing javascript libraries wit…
-
comment
Comment #4069548
On algorithmic level compression is mainly identical to JSONH. I didn't do performance tests yet, I still have ideas how to improve RJSON.
-
comment
Comment #4069532
I agree that identification is important issue, but IMO it's protocol level issue. RJSON is not protocol, it's algorithm. Someone will prefer to wrap all in {"rjson": ...}, someone…
-
comment
Comment #4069484
Thanks, jerf, done: https://github.com/dogada/RJSON/commit/0a7fc5dd9e142477ebda9...
-
comment
Comment #4069363
It doesn't matter. Even if order of keys will be changed somewhere in the middle during JSON.strigify, as schema id will be always used keys sorted alphabetically and object values…
-
comment
Comment #4069333
RJSON not only compresses data of any structure but keeps it in JSON format that is huge advantage over gzip/7z and other binary compression algorithms. You can compress 1M of JSON…
-
comment
Comment #4069229
Thanks ZenPsycho, I added sorting of object schema keys to fix this issue: https://github.com/dogada/RJSON/commit/a27c8927cd0c2d7d151e2...
-
comment
Comment #4068785
Yeah, for arrays with first numeric value is reserved schema with index 0. You can see more examples in the unit tests: https://github.com/dogada/RJSON/blob/master/test/tests.js