Sam DeSota

Results 16 comments of Sam DeSota

We could fork https://github.com/floydpink/atom-compare-files and add the merge functionality.

@terraqout This. Perserving undo when files are reopened, trees, time based undo. All things I have yet to get used to not having. This should probably be a separate repo...

Yesterday I succeeded in getting the datahike namespaces to at least compile, your comment gives me a good roadmap, thanks. Also disabled my autoformatter and fixed the whitespace issues, should...

That's a good point, would eliminate the need for setting up replication consensus if I wanted cluster-wide acid semantics. Curious what the latency hit would be vs. embedded level db,...

Some additional info, was running in a Calva Repl, there was an error I didn't see in another buffer: ``` Exception in thread "async-dispatch-2" java.lang.NoSuchMethodError: com.cognitect.transit.TransitFactory.writer(Lcom/cognitect/transit/TransitFactory$Format;Ljava/io/OutputStream;Ljava/util/Map;Lcom/cognitect/transit/WriteHandler;Ljava/util/function/Function;)Lcom/cognitect/transit/Writer; at cognitect.transit$writer.invokeStatic(transit.clj:157) at cognitect.transit$writer.invoke(transit.clj:139)...

Okay, I was able to fix by adding a dependency on the latest version of transit to my project: ``` [com.cognitect/transit-clj "1.0.324"] ```` Not sure if there's anything actionable for...

Hey, I also use jest with electron,` facebook-atom/jest-electron-runner` works quite well, but I haven't been able to get wallaby to work with this, it would be very useful if this...

Awesome, going to work on this next few days. I did an initial attempt but couldn't reproduce when running the library myself, so will have to debug further.

Hey, I ended up assembling something myself. I'm using experimental decorators though, so you can merge it as an optional if you want. my fork: https://github.com/mrapogee/resource-router-middleware To make a resource...

I moved away from inheritance due to needing a getMiddleware() method, but I didn't think of extending express Router. I wasn't to keen on the `class UserResource` then `UserResource` returning...