Posts by

Content Marketing

Content Marketing

From advanced guide to content marketing[1] Chapter 1: Build a strong foundation New marketing is about the relationships, not the medium Ben Grossman What is it? A Strategy Production

Start Small Stay Small by Rob Walling

A software developer explains why doing marketing before writing your first line of code will improve your next startup chances of success. Finished: Mar 2017 Rating: ⭐⭐⭐⭐ Get the book 👈 César

Django

Django

Activate an environmentPre-install django in this env conda create -n tutorial django=1.8 activate tutorial mkdir tutorial cd tutorial Create requirements.txtAnd install via pip (if needed): touch requirements.

Career Planning

Career Planning

Some of my notes from Marc Andreessen (@pmarca) Guide to Career Planning Personal productivity Don't keep a schedule Work on whatever is more important or more interesting Want to spend

Python

Python

Quick start #!/usr/bin/env python print "Hello World" Listsa = [1,2,3,4,5,6] a[0:1] # first element a[2:4] # slice mid elements, second parameter is

Vagrant

Vagrant

IntroA cross-platform tool created by Hashicorp to make configuring and sharing VMs easy by automating VM management with an end-to-end lifecycle management utility. Core benefits of VMs are reproducible environment,

Quick and dirty ReactiveX example

Quick and dirty ReactiveX example

Event-driven architectures have been around for a while and lately its use has become popular in environments such as Node.js. One of the most expressive and graceful implementations of

The Art of Learning by Josh Waitzin

Whizkid / chess master / martial artist gives some pointers on how to learn anything you want Finished: Jun 2014 Rating: ⭐⭐⭐⭐ Get the book 👈 César D. Velandia’s review of The Art

Prefer Myopic Feedback

Prefer Myopic Feedback

This week, James Clear posted an interesting idea on How to effectively measure improvements. His main point was that it might be better approach to use short-term feedback to calibrate

60 seconds to TDD

60 seconds to TDD

This quick tutorial presents a minimal setup with Python to start coding using TDD. It only requires two lightweight dependencies nose and when-changed available through pip . Install and run sudo