buffyoda | 9 years ago | on: Standardized Ladder of Functional Programming [pdf]
buffyoda's comments
buffyoda | 9 years ago | on: Modern Functional Programming: The Onion Architecture
https://www.youtube.com/watch?v=H28QqxO7Ihc
The point is that free monads allow introspection up to the information-theoretic limit (obviously you can't inspect a program whose structure depend on a runtime value), while transformers do not allow any introspection at all.
buffyoda | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
buffyoda | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
I'd like to be able to say the end angle has to be less than the start angle, that the unit has to be radians (AKA unit-less :), the unit of radius & that negative values are sensical, and so forth; and have all these properties checked by a compiler.
Which I can do in some modern languages, surprisingly. :)
buffyoda | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
But I know what you're getting at! Personally, I'm a fan of programming with units and dimensions, and safely representing the distinction between absolute quantities and relative quantities.
That doesn't mean I'd want an infinite number of "float" values for all possible units and dimensions, however; just a powerful enough type system I can give myself some help at compile-time for properly threading sensical values through my programs.
buffyoda | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
buffyoda | 9 years ago | on: Destroy All Ifs – A Perspective from Functional Programming
Let's take the following function invocation, which can be expressed with Boolean literals or Church encoded booleans, I don't care:
match true false
If you want to determine the significance of the boolean values passed to this function, it does not suffice to go to the definition of 'true' or the definition of 'false'.Now take something like this:
match caseInsensitive contains
Even though I have used descriptive names here, it's almost beside the point; I could just have easily have used nonsense names: match foobar quux
If you want to know what 'foobar' means, you can go to its definition, and see how it preprocesses a string and a pattern. You don't have to guess about the meaning of a bit.As a result, the semantics of 'match' and its parameters are all communicated more clearly, with less room for error, and much more generality.
There need not be any syntactic overhead: it is merely the replacement of some flag with a lambda which cleanly encapsulates the effect that would otherwise be encoded in the flag. The way you invoke the function is the same, but instead of twiddling bits to get what you want, you pass functions whose meaning does not require (as much) subjective and possibly error-prone interpretation.
Note this also objectively simplifies the functions themselves, because they formerly contained conditional logic, but once you rip that out and give them no choice (invert the control!), they have less room to err, which makes them easier to get right, easier to maintain, and easier to test.
There is also another way to view the issue: with booleans, we first encode our intentions into a data structure (at the caller site), and then we decode the data structure into intentions (at the callee site).
Well, why are we packing and unpacking our intentions into data structures? Why not just pass them through?
Indeed, we do that by pulling out the code and propagating it to the caller site (possibly with names so you don't need significantly different syntax and can benefit from reuse). Then our code more directly reflects our intentions, because we're not serializing them into and out of bits.
I think the general principle applies to more than booleans, but it's easiest to see with booleans.
buffyoda | 9 years ago | on: MongoDB to announce scalable cloud offering at MongoWorld 2016
buffyoda | 10 years ago | on: MongoDB: The Frankenstein Monster of NoSQL Databases
http://www.aptuz.com/blog/is-postgres-nosql-database-better-...
buffyoda | 10 years ago | on: MongoDB: The Frankenstein Monster of NoSQL Databases
buffyoda | 10 years ago | on: MongoDB 3.2: Now powered by Postgres
What that means is virtually any query will end up executing (via PostgreSQL via FDW via Multicorn via MongoDB) by first pulling out all (!) the data from all (!) source collections, relocating it to MongoDB, and then executing the query. Possibly, in fact, these full collection scans might be repeated multiple times, especially for nested data, crosses, and other types of operations.
And then you'd decide that "solid engineering decision" wasn't so solid after all. Then hopefully you'd quit MongoDB and go work on PostgreSQL full time. ;-)
buffyoda | 10 years ago | on: MongoDB 3.2: Now powered by Postgres
That said, PostgreSQL FDW is NOT a great option for MongoDB analytics. Not only is the data model so different that you lose the ability to answer many types of questions, but Multicorn supports only basic pushdown (conjunctions of simple relational operators on original columns).
What this means is that analytics via PostgreSQL via FDW via Multicorn via MongoDB suffers from (a) very poor expressive power, and (b) ridiculously slow performance, since nearly any type of query will require at least one full table scan on all the source tables (in some cases, especially with arrays, many more full table scans may be required for a single query!).
Better off just using ToroDB. Am I right? :)
buffyoda | 10 years ago | on: MongoDB 3.2: Now powered by Postgres
http://slamdata.com/blog/2015/12/08/nosql-analytics-for-mong...
Warning: It's not pretty.
buffyoda | 11 years ago | on: Ask HN: Do you use MongoDB for analytics?
The 2.0 version will have data visualization baked in, but the current one doesn't have that just yet. :(
buffyoda | 11 years ago | on: Lessons I Learned from Starting Precog
As these things often do, it led to many more user signups and a massive spike in web traffic, but ultimately I don't think it had much effect on the business one way or the other.
buffyoda | 14 years ago | on: Hot charts with new html5 visualization engine (free)
The Reddits for the different functional programming languages are a good place to hangout (and a frequent source of blogs and videos on these topics), and for FP in non-FP languages, there are good Github communities (e.g. http://github.com/fantasyland/, no association with FIOL).
I'd also humbly suggest that LambdaConf 2017 (May 25-27) is a great place to learn more about functional programming. There will be a special two-day LambdaConf workshop prior to the conference that introduces the basics of functional programming (no background knowledge), another that is aimed at a slightly more experience audience, and then at the subsequent conference, plenty of workshops and sessions to learn many of these topics (and others).
It's a journey, but everyone can get there if they have the interest. Most of the resources out there (blogs, videos, even e-books) are free, and the remainder are low-cost if you are already working in tech.
Good luck and please just let any of us lurker functional programmers know if you need a hand. :)