ende42 | 4 years ago | on: Foot: A fast and minimalistic Wayland terminal emulator
ende42's comments
ende42 | 4 years ago | on: A police dog who cried drugs at every traffic stop
ende42 | 5 years ago | on: Learn Lua in 15 Minutes (2013)
The architecture has some nice properties. For example the buffer being not in-process means (besides an obvious performance hit) that the streaming server can be seamlessly redeployed without loosing the buffer.
The Openresty Lua implementation is amazing.
ende42 | 8 years ago | on: Ask HN: Are there any reasonable alternatives to MacBook Pro for developer?
The Precision is a good laptop but it's my first that isn't better in every way than the one I had before.
On Par:
* Fast (for a laptop) processor.
* Fast SSD. 900MB/sec on the MPB, 400MB/sec on the Precision. Anyway fast enough.
* 16GB RAM. Just enough for me.
Good:
* Linux support. Very important for me. Suspend to RAM on lidclose works reliably. WLAN works. (Display dimming just works (as with the MBP), no coil whining here).
* Display. Native HD (had to use Linux' crappy scaling on the MBP). Non-glare. (And the MBP had the display stain issue)
* 3 years on site guaranty, if on site isn't possible, I can keep the SSD.
* Can change RAM, SSH, battery without voiding guaranty.
Bad:
* Display. I'd prefer 16:10.
* Sound is slightly worse when laptop is used on a table. Sound is dismal when laptop is used... on the lap.
* Keyboard on the new Precision is worse than the one on the 3 years old MBP. Will use the UHK in the office anyway.
ende42 | 9 years ago | on: Show HN: Gitly.io – high performance Git service with a 10s installation time
I love the speed and the (repo internal) search. Looking forward to the announced missing features.
Note: the "Add Collaborators" link works for anonymous users. Sending the form then fails with a JS error.
Is there a plan for a global repo search?
ende42 | 9 years ago | on: Show HN: sdees – serverless decentralized editing of encrypted stuff
ende42 | 10 years ago | on: Nginx reverse proxies retries PUT/POST/DELETE on response timeout by default
ende42 | 10 years ago | on: Subuser turns Docker containers into normal Linux programs, limiting privileges
ende42 | 10 years ago | on: Show HN: Nchan – a pub/sub server as an Nginx module
The "Subscribers" section of "Push Module" should include websocket, I think.
ende42 | 10 years ago | on: Show HN: Nchan – a pub/sub server as an Nginx module
Actually we (laut.fm) are using the HTTP Push Module for our public API for a live stream of tracks which get played on our ~ 1500 icecast stations. We offer 3 formats: http://api.laut.fm/song_change.stream.json for a line separated JSON HTTP stream, ws://api.laut.fm/song_change.ws.json for the same as websocket endpoint and http://api.laut.fm/song_change.chunk.json for the last x songs. It's not really high volume, just 6 to 7 per second. But it runs basically unattended for years now and I'm pretty happy with it.
Is there any reason to update to the new one (other than new features; admittedly I haven't really looked into NCHAN)?
ende42 | 10 years ago | on: HAproxy in the era of Microservices
ende42 | 10 years ago | on: A Good Vimrc
ende42 | 10 years ago | on: Icecast in Production
ende42 | 11 years ago | on: Put.io doubled storage of all plans
ende42 | 11 years ago | on: Ask HN: What are the most useful Chrome extensions?
ende42 | 11 years ago | on: In-browser Redis
Using it as slave of a server side redis would be fun. :)
ende42 | 11 years ago | on: Introducing Consul Template
* reads config from a json file * GET requests with deep links into the json tree * POST request with template as body and deep links (using the go template engine, too) * long polling (response has to be triggered explicitly by a PUT request)
I also made a simple docker container running HAProxy - configured by goconfd - to orchestrate docker containers.
ende42 | 11 years ago | on: Introducing Carrot
I had a juice version in the pipe but I didn't like that I had to use yellow for that. It's hard to use yellow once you get used to green.
But I'm really interested in orange now so I might give carrot a try.
ende42 | 11 years ago | on: Command-line file sharing
ende42 | 11 years ago | on: Docker is the Heroku Killer
* Isolation: Docker enables us to pack any software and let it run with close to none side effects. Different versions of packages, libs and gems needed by apps don't interfere. It's like bundler but for all kind of dependencies not only gems.
* Separation of concerns: For our operations it doesn't matter what's inside a Docker container. We have mid sized Ruby web apps, small Go demons, NGINX with Lua support compiled in, legacy PHP apps neatly packed in Docker containers. They have a well defined interface:
The build script which consistently sums up dependencies and the build process. `docker run` wrappers which clearly state the interface of the running container like exposed ports and mounted volumes.
* Reproducability: We are able to run the same containers in development, staging and production. A dozen containers will easily run on a developers laptop.
As a side effect the Docker architecture makes us think harder about app architecture like which services are stateless and which are not and for what reason.
The fact that containers share a kernel and thus are not 100% isolated or reproducable as with virtualization hasn't been an issue for us (so far).
There are still issues and features we're missing. For example private Docker repos are PITA and building instead of pulling from a repo means you might get fooled by the build cache. And we'd love to have build in support (or at least a common standard or best practices) for orchestration. But all together for our needs it's already pretty useful.