A famous talk by Charlie Munger at USC Business School in 1994 entitled A Lesson on Elementary Worldly Wisdom. I’m going to play a minor trick on you today because the subject of my talk is the art of stock picking as a subdivision of the art of worldly wisdom. That enables me to start […]
Category: Uncategorized
Three keys to building a successful product
1) Your application must save your users significantly more money than any of your competitors 2) Your application must save your users significantly more time in their day-to-day lives than any of your competitors 3) Your application must be significantly more entertaining than any of your competitors Source: https://medium.com/startup-grind/the-three-keys-to-building-a-successful-app-66dbaf9fcd56#.8g9ta1ik9
Different ways of rendering a variable using EJS
The simplest way of rendering a variable is using the scriptlets, similar to the ones used in JSPs <%= variable %> But if you want your code to be rendered or executed but not printed then render it like this: <% variable %> If you want your code to be evaluated as well as rendered (ex: variables containing […]
How to install the latest nodejs version in ubuntu
As of writing this article the latest node version was 4.2.4, you can install this one using the distribution from NodeSource repository: sudo apt-get install curl curl –silent –location https://deb.nodesource.com/setup_4.x | sudo bash – sudo apt-get install nodejs You can find all the sources here, https://github.com/nodesource/distributions/tree/master/deb Then, you have the latest version of node.js installed.
Eisenhower matrix
Managing our day to day activities to make best use of our time is not an easy task and not many are skilled at managing it well. These days, time seems to be at a premium. We have devices that keep us constantly connected with work, with friends and family, and sometimes even with complete strangers. […]