Results 593 comments of Stephen Haberman

I wonder if this could be done with something more like decoration: ``` scala val rdd = sc.textFile(...).setupPartitions(dbSetupLogic).mapPartitions(...).cleanupPartitions(dbCloseLogic) ``` So there would be two new RDDs, PartitionSetupRDD that first invoked...

FWIW I've wanted a quick & dirty "what's the cluster utilization like?" UI for a long time--agreed that other tools should be used for more extensive monitoring, but it would...

Hi @alistair; agreed that would be useful. I can't technically submit new releases to Maven central (the other maintainer, Larry, has been doing the uploads), but if you come up...

> configuration file is located Agreed; I would envision something like: - For the initial version, only look in current directory, for a hard-coded (per-app) file name, e.g. if my...

Step one in the prototype would be a Fela plugin that could do this: ``` // returns "black" with the rule cached/planned for injection const cn = renderer.renderRule({ color: black,...

Another idea for component-less usage: ```ts export function FooComponent() { const css = useTruss(); return ; } ``` * Pro: "Fine, fine" uses a hook to get `css`, which will...

Rationale for why we need to statically-denote writes: * We can watch writes at runtime, but if HookA writes `firstName` and HookB reads `firstName`, we don't know to have HookB...

Hello! Apologies from the really long delay in replying; your response made a lot of sense, but I was like "ah wow, 'graph of types'?! I'm going to really need...

:+1: ; I need a json schema for a configuration file that I want to have checked/auto-completed in vscode/IDEs, and don't want to write the json schema by hand. I'd...