Animal | |
Funny little website for a design company. |
hack.guides() | |
Promising community-maintained collection of guides. | |
Kestrels, Quirky Birds, and Hopeless Egocentricity | |
(free book) applications of Combinatory Logic to my Ruby programming. | |
overv.io | |
An alternative to trello, coupled to github. | |
Resin | |
Modern development and deployment workflow for the Internet of Things. | |
Docker Datacenter | |
Docker launches its hosting service. |
Lazy_static | |
Lazy static type checking for ruby. | |
Benchmark-ips | |
Provides iteration per second benchmarking for Ruby. | |
dentaku | |
Math and logic formula parser and evaluator. | |
Draft-js | |
A React framework for building text editors. | |
Mojs | |
Motion graphics library for the web. | |
QuickMockup | |
HTML based interface mockups | |
How2 | |
stackoverflow from the terminal | |
Swifton | |
A Ruby on Rails inspired Web Framework for Swift that runs on Linux and OS X. |
Server-side APIs for Client-Side Rendering and XSS | feb 22 |
Rails is pretty safe, but here is an example of why you still need to pay some attention. | |
Speeding up Sprockets | feb 22 |
How to get a 12x performance improvement on some apps with Sprockets version 3.3+. | |
Quickly create a self Referential Versioning System for Rails | feb 22 |
The Need: Less Tables, More Functionality. | |
The New Web Typography | feb 22 |
How should we go about making typographic laws, rules and guidelines for the web? | |
How and why should you use JSON API in your Rails API | feb 23 |
JSON API is a great solution to not waste hours on reinventing the wheel. | |
Prepare for Frozen String Literals and not lose performance | feb 23 |
It's easy to lose performance when making your code work with frozen string literals feature. | |
Brace Yourselves, Rails Upgrade is Coming | feb 23 |
it’s a good time to start preparing your Rails applications for an upgrade. | |
Good Ruby Idiom: and/or operators | feb 23 |
Give a second chance to the and/or operators by knowing precisely what they can be useful for. | |
Support plans for Ruby 2.0.0 and Ruby 2.1 | feb 24 |
Better start planning to upgrade to Ruby 2.3 or 2.2. | |
How to Create and Manipulate Arrays in JavaScript | feb 24 |
The length property of Array objects is one that many who are relatively new to JavaScript do not understand. | |
Highest Query per Second Service Using Go | feb 24 |
How the Go programming language helped Uber Engineering build and scale our highest queries per second microservice, for geofence lookups. | |
How Elixir’s Ecto differs from Ruby’s ActiveRecord | feb 24 |
Ecto from a rails point of view. | |
How to Use Code Snippets in Atom | feb 24 |
Atom packages and language grammars are often supplied with pre-defined snippets. | |
Easily Allow File Uploads with Rails and Refile | feb 25 |
Refile is a modern file upload library for Ruby applications. | |
Making GitLab Faster | feb 25 |
In GitLab 8.5 is shipped with numerous performance improvements. Here was the process. | |
Introduction to Functional Reactive Programming with RxJS | feb 25 |
Working through several examples using the RxJS library. | |
Should you have defaults styles for table? | feb 25 |
Default style vs. requiring a class. | |
API Building and Testing Made Easier with Postman | feb 26 |
Postman, a Chrome app, is an API development suite with powerful features that make the process of API development quick and painless. |
David Heinemeier Hansson on hack.summit() (1h) | feb 24 |
Among plenty of other videos-presentations recorded during the hack.summit last week. |
This aspect of development, called Documentation, is the source of various frustrations. It's hard to get do it, but why? My feeling is that it's like testing. When you begin your craft as a coder, all what matters is the code. It's only after some iterations that some non-code aspects come back bite you in the neck. Like, huho, now that I need to refactor, I really should use something that tells me if all still works. Tests become an early necessity to anyone who knows that kind of truth. If you wait until the end of a coding cycle to write those, the task is huge and it cuts you from your productivity cycle. Write them early, along the flow, is way easier.
So I think documentation follows the same pattern. So many software projects are badly documented because this aspect is postponed until it's needed. Means at release stage. In early stages, you work on a prototype and you don't need to explain how things work or are supposed to work. And when it's released, there is usually some other task waiting and it's hard to stop everything to get back and document things properly. It may be a flaw in the agile process, but it may also be a feature: if you don't document along the way, you won't document much.
Personally I try to consider the documentation of any of the source code I write as one of the first tasks. There are various tricks that can help in that perspective, like readme-driven development, or including the doc inside the code with yarddoc or apipie, or coupling documentation with tests with rspec or RSpec API Doc Generator. But honestly I prefer edited documentation that can follow a structure that is thought as documentation rather than merely an automated output of some code.
There are various tools to organize edited documentation, like ReadTheDoc which is in python. Another project appeared last week from the guys at Pluralsight named hack.guide(). That's a community project but actually being totally open sourced, I was thinking the documentation building CMS they made could pretty much fill the gap of a light-weight RTD, with the benefits of having a UI for editors. Too bad we don't have anything like this in ruby (or do we?).