Live data from Hacker News

Show HN: Booleans as a Service (BaaS)

booleans.io

81–90 of 132 posts

Re: Show HN: Booleans as a Service (BaaS)

#81
post #23

Ironically, the idea is more useful than intended. One could, for example, store on/off user's preferences in the cloud without the hassle of local storage, survey responses, or even control IoT devices remotely with just the switch of a boolean.

Sure saving the 128 bit (even longer when encoded) UUID for one value is so much better then saving 1 bit!

Now seriously how is this any good since you can only save one bit. MongoDB as a service is probably what you're looking for...

Re: Show HN: Booleans as a Service (BaaS)

#83
post #68

How long is it before someone makes a FUSE filesystem that uses this for saving the data and just stores the IDs? Completely free Dropbox alternative!

As a starting point, I've written a library for storing strings: https://gist.github.com/andreparames/c19f87fbe48ee8819f9ef09...

Usage:

  >>> ids = storestr('Hello, world!')
  >>> print getstr(ids)
  'Hello, world!'
In my tests, the compression rate is approximately -36x.

Re: Show HN: Booleans as a Service (BaaS)

#86
post #23

Ironically, the idea is more useful than intended. One could, for example, store on/off user's preferences in the cloud without the hassle of local storage, survey responses, or even control IoT devices remotely with just the switch of a boolean.

To be real for a second...yeah there might be something there.

Re: Show HN: Booleans as a Service (BaaS)

#90
This API seems woefully incomplete. It really should include operations on booleans, not just storage and retrieval. I'd much rather use a tested, well written, and efficient AND operation on your server than risk writing my own and potentially screw it up.
Post reply on HN