🔗 Learn Ruby with the Neo Ruby Koans

Learn Ruby with the Neo Ruby Koans Great way to lean Ruby by fixing errors in set of well thought of unit tests.

May 13, 2015 · 1 min · 23 words

📜 Programs must be written for people to read, and only incidentally for

Programs must be written for people to read, and only incidentally for machines to execute. Hal Abelson and Gerald Jay Sussman in MIT Structure and Interpretation of Computer Programs course (via Brevity vs. Clarity · An A List Apart Blog Post )

March 8, 2015 · 1 min · 42 words

🔗 Learn X in Y Minutes: Scenic Programming Language Tours

Learn X in Y Minutes: Scenic Programming Language Tours Learn X in Y minutes : Take a whirlwind tour of your next favorite language. Community-driven!

October 24, 2014 · 1 min · 25 words

🏞 (image)

The Flipboard Explorer, or FLEX, is a component that you can easily drop into any iOS project. When presented, FLEX shows a debugging toolbar that lives in a window above your app. From this toolbar, you can view and modify nearly every piece of state in the application. Unlike many other debugging tools, FLEX works entirely inside your app, so you donʼt need to be connected to LLDB/Xcode or a different remote debugging server....

September 30, 2014 · 1 min · 91 words

🔗 The Wilderness

The Wilderness It’s a period of time where I’m pretty lost, and I don’t know what to do. I have feature lists, I have open bugs to fix, and I have an outline of where the app is going. But I feel mentally incapacitated, like I’m getting nothing done. I call this “The Wilderness”.

September 30, 2014 · 1 min · 54 words

🔗 Deployment, migration & change management tools

Comercial: Deploy — Deploy code from GitHub, Codebase & BitBucket in minutes! XebiaLabs — Software for Continuous Delivery & DevOps in the Real World Bamboo — Run builds and tests, connects issues, commits, test results, and deploys so the whole picture is available to your entire product team Open-souce: fabric8 — Integration platform for deep management of Java Containers (JVMs). Makes it really easy to provision, automate, configure, and manage from a central location....

September 11, 2014 · 1 min · 79 words

🏞 (image)

Not all technical debt is born the same, because A Mess is not a Technical Debt . (via TechnicalDebtQuadrant )

August 16, 2014 · 1 min · 20 words

📜 for each desired change, make the change easy (warning: this may be

for each desired change, make the change easy (warning: this may be hard), then make the easy change. Kent Beck

July 3, 2014 · 1 min · 20 words

🔗 Documenting in Xcode with HeaderDoc Tutorial | Ray Wenderlich

Documenting in Xcode with HeaderDoc Tutorial | Ray Wenderlich When Xcode 5 and iOS 7 were announced, a small addition was mentioned that most people might have missed: HeaderDoc. (…) In addition, Xcode parses HeaderDoc-style comments behind the scenes to automatically present your documentation in quick look panels.

June 18, 2014 · 1 min · 48 words

🔗 inessential: Error Messages

There is, however, old wisdom — perhaps from an earlier version of the Mac HIG — that says how to create error messages: they should be of the form “Can’t x because of y.” They may optionally include additional detail and/or recovery steps. “Can’t x because of y. Something is true. Try a thing.” A similar form is this: “Noun can’t x because y.” (As in “‘Downloaded.app’ can’t be opened because it is from an unidentified developer....

June 9, 2014 · 1 min · 116 words

🔗 Java 8 Tutorial

Java 8 Tutorial “Java is still not dead—and people are starting to figure that out.” Welcome to my introduction to Java 8 . (…) At the end of the article you’ll be familiar with the most recent API changes like streams, functional interfaces, map extensions and the new Date API. No walls of text – just a bunch of commented code snippets. Enjoy! Default Methods for Interfaces Lambda expressions Functional Interfaces Method and Constructor References Lambda Scopes Built-in Functional Interfaces Streams Parallel Streams Map Date API Annotations

March 19, 2014 · 1 min · 87 words

📋 Learn to Code

Online interactive resources to learn programming: Learn | Code.org — Beginners (concepts), HTML/CSS, JavaScript, Python, Codecademy — HTML/CSS, JavaScript, jQuery, PHP, Python, Ruby Learn Code The Hard Way — Python, Ruby, C, SQL, Regex, CLI Try Ruby: learn the basics of the Ruby language in your browser

January 16, 2014 · 1 min · 47 words

📺 Bret Victor – Inventing on Principle

Bret Victor – Inventing on Principle (by CUSEC ) Their principles Elizabeth Cady Stanton — “Women should vote” Larry Tesler — “No person should be trapped in a mode” Doug Engelbart — “Enable mankind to solve solve the world’s urgent problems” (a vision of “knowledge workers” using complex powerful information tools to harness our collective intelligence) Alan Kay — “Amplify human reach and bring new ways of thinking into a faltering civilisation that desperately need it”...

January 13, 2014 · 2 min · 339 words

🔗 Code Like a Chef: Work Clean | The Table XI Blog

Code Like a Chef: Work Clean | The Table XI Blog Interesting concept, specially the part gotten from the Ad Hoc at Home cooking book (by Thomas Keller ), which got me to dig out for the full text snippet ( emphasis added): Being organized – as we say in our kitchen, working clean – is a skill to develop. We call it mise-en-place , French for, literally, ‘put in place....

January 10, 2014 · 3 min · 532 words

📜 Creators need an immediate connection with what they’re making

Creators need an immediate connection with what they’re making Bret Victor ’s guiding principle (via his talk Inventing on Principle )

January 8, 2014 · 1 min · 21 words

🔗 TLDRLegal – Browse License Library

TLDRLegal – Browse License Library Lookup open source licenses summarized & explained in plain English.

January 8, 2014 · 1 min · 15 words

🔗 Lookback – See how people really use your apps!

Lookback – See how people really use your apps! See how people really use your app. Lookback makes user experience collecting a breeze. Record remotely with your iOS app — no equipment needed See the screen, gestures, face & voice of your test users. Install once. Lookback all the time.

January 6, 2014 · 1 min · 50 words

🏞 (image)

What OO Fails to Do What object oriented programming fails to do is express collaborations between objects. To show you exactly what I mean, let’s take a look at two system operations (two use cases) requiring the same group of objects collaborating with each other. (…) DCI to the Rescue DCI is a paradigm invented by Trygve Reenskaug (the inventor of the MVC pattern) to solve these problems. (via Data Context Interaction: The Evolution of the Object Oriented Paradigm – SitePoint )...

December 28, 2013 · 1 min · 92 words

📋 Template for interactive bash scripts

My template for when I need to do bash scripts with both a “human” and a “machine” interface: Template for interactive bash scripts: supports command line options with values prompts for any missing parameters/arguments https://gist.github.com/hugocf/8147608 Update 2016-06-02: Moved to repo @hugocf/scripts

December 27, 2013 · 1 min · 41 words

📜 First make it work (get tests to pass)

First make it work (get tests to pass). Then make it right (clean it). Then make it fast. (if it needs it). Uncle Bob (via How to convince ‘performance guys’ to Clean Code – Google Groups )

December 3, 2013 · 1 min · 37 words