pkieltyka | 7 years ago | on: gRPC-Web is going GA
pkieltyka's comments
pkieltyka | 9 years ago | on: Sup: Simple Ansible-like deployment tool for multiple SSH hosts
Interestingly, we only looked at Ansible, or later heard of salt, after we already wrote the first version of sup. Later our friends told us it reminded them of Ansible. We believe sup is much simpler, because its more DIY from the perspective of the user.
It's written in Go and currently the master cloc's in at 890 lines of code. Sup is just a small utility and personally I view it as complete, other than any refinements that come through its life. Thanks to Go, it's also pretty nice that the sup binary doesn't require the install of any external runtime.
When designing it, our high-level goals were to have a very fast and simple deployment tool that anyone on our development team (including frontend devs), could deploy their applications to our network. It's been working really well for us for over a year now.
To be honest, I've still never tried Ansible or salt, and I'm sure there is a lot of capabilities they have, but, whatever they are, we've been fine without them. For example, sup doesn't have 1000s of community playbooks, but you can reference local programs/scripts that are piped and executed remotely on a network - we use this often for deploying docker containers.
Finally here's something I love, and maybe possible with Ansible (I don't see why not):
https://gist.github.com/pkieltyka/4ab679a692db47e0b410f66b3a...
then run.. `sup staging tail-logs` to tail live server output. Or even filter it with, `sup staging tail-logs | grep WARN`.
pkieltyka | 11 years ago | on: The present/future of AngularJS
pkieltyka | 12 years ago | on: Symas Lightning Memory-Mapped Database (LMDB)
pkieltyka | 12 years ago | on: Vagrant Share
pkieltyka | 13 years ago | on: Google's Go Programming Language Grows Up: Now What?
pkieltyka | 14 years ago | on: Show HN: OpenS3, a simple storage server
Could be useful for testing or home-grown S3 network. Ie. put that in front of a bunch of Riak-backed servers.
pkieltyka | 14 years ago | on: Puma: A Ruby Web Server Built For Concurrency
I hear you guys in the comments saying events is the way to go for concurrency in Ruby, especially with MRI. As many also know, GIL-less threads are available in modern Ruby VMs like Rubinius and JRuby.
I haven't tried puma yet, but I do believe in evanphx's work.
Also, for those interested in concurrency with Ruby, also check out: https://github.com/tarcieri/celluloid and https://github.com/tarcieri/nio4r .. looks like Tony even has a fork of puma in there too.
pkieltyka | 14 years ago | on: MongoDB 2.0.0-rc0 Released
I do think twirp code could be refactored and made a lot better though.