>1.2K subscribers
From Crypto-Native to Crypto-Enabled
I’m not one to make big annual predictions, but one thing that seems likely to me is that 2024 will mark the emergence of mainstream apps powered by ...

Bitcoin as Battery
One of my favorite things about crypto is that, every so often, your conception of what it is changes.Bitcoin at first was "weird internet money...

The Internet's Next Business Model: A Conversation with Cloudflare's Matthew Prince
I just released a new episode of The Slow Hunch with Matthew Prince, CEO and co-founder of Cloudflare. Since we invested in their Series C back in 2013, I've watched Matthew and his team build one of the most critical pieces of internet infrastructure—protecting and accelerating vast portions of global web traffic. Our conversation traces Matthew's journey from his early "slow hunch" that the internet was fundamentally broken and needed fixing. We start with his law school days in 2000, when ...
From Crypto-Native to Crypto-Enabled
I’m not one to make big annual predictions, but one thing that seems likely to me is that 2024 will mark the emergence of mainstream apps powered by ...

Bitcoin as Battery
One of my favorite things about crypto is that, every so often, your conception of what it is changes.Bitcoin at first was "weird internet money...

The Internet's Next Business Model: A Conversation with Cloudflare's Matthew Prince
I just released a new episode of The Slow Hunch with Matthew Prince, CEO and co-founder of Cloudflare. Since we invested in their Series C back in 2013, I've watched Matthew and his team build one of the most critical pieces of internet infrastructure—protecting and accelerating vast portions of global web traffic. Our conversation traces Matthew's journey from his early "slow hunch" that the internet was fundamentally broken and needed fixing. We start with his law school days in 2000, when ...
Share Dialog
Share Dialog
I’ve been working on an internal web app for the past few weeks.
I’m not a “real” programmer, so as usual I just figure things out as I go along and make lots of mistakes, but I always learn new stuff. This is how I learned programming in the first place, got my first gigs building websites, then ended up at OpenPlans, Code for America and now USV. My favorite thing about the web is how it makes it possible to just pick a direction and learn as you go. It’s amazing, really.
My background is that I’m good with front-end development (html/css/js) and decent with PHP (have built a ton of wordpress websites, plugins, themes), but I quickly trail off from there. So I’m very comfortable in some places, and not so much in others (linux admin, deploying python apps, etc).
But for this project, I decided to try something new. I’m using tornado (a python web framework), paired with mongodb. The app is hosted at Heroku and my mongo database is running in the cloud at Mongolab. I’m using twitter auth for log-ins, and I’m also using the hackpad API to embed editable documents in the app.
What’s so cool about this is that pretty much everything is a cloud-hosted service, wired together in a really light way to make the app. There is a tiny amount of application-specific code. If we had used Brubeck instead of Tornado, there’d be even less.
It’s been a joy to develop in this environment. I like programming in python, and mongodb is a breath of fresh air. And being able to simply wire in things like hackpad (with some really great help from Igor) has been amazing. Deploying updates is as simple as git push heroku master and heroku does all the heavy lifting.
Much of the starter code for this came from Zach, our hacker-in-residence at USV, who’s been working on an update for USV.com. I don’t think I’d have been able to do it without his starting point — but looking at the Brubeck docs, which are quite good (kudos, James), perhaps that’s not true.
All of this reminds me of a post my friend Ian Bicking wrote a few years ago about What PHP Deployment Gets Right. For those who don’t know Ian, he is a rockstar python developer who understands the low level stuff better than anyone I’ve been around — among other things he wrote pip and virtualenv, which are primary tools for anyone developing in python. Anyway, the point of Ian’s post is that PHP deployment is, and always has been, so easy that it’s possible for people (like me, until recently) who are afraid of going deeper than the file system, to program and deploy apps.
Ian’s post is 5 years old now, and a lot has changed. It’s pretty sweet how the hurdles for developing web apps keep getting lower and lower.
I’ve been working on an internal web app for the past few weeks.
I’m not a “real” programmer, so as usual I just figure things out as I go along and make lots of mistakes, but I always learn new stuff. This is how I learned programming in the first place, got my first gigs building websites, then ended up at OpenPlans, Code for America and now USV. My favorite thing about the web is how it makes it possible to just pick a direction and learn as you go. It’s amazing, really.
My background is that I’m good with front-end development (html/css/js) and decent with PHP (have built a ton of wordpress websites, plugins, themes), but I quickly trail off from there. So I’m very comfortable in some places, and not so much in others (linux admin, deploying python apps, etc).
But for this project, I decided to try something new. I’m using tornado (a python web framework), paired with mongodb. The app is hosted at Heroku and my mongo database is running in the cloud at Mongolab. I’m using twitter auth for log-ins, and I’m also using the hackpad API to embed editable documents in the app.
What’s so cool about this is that pretty much everything is a cloud-hosted service, wired together in a really light way to make the app. There is a tiny amount of application-specific code. If we had used Brubeck instead of Tornado, there’d be even less.
It’s been a joy to develop in this environment. I like programming in python, and mongodb is a breath of fresh air. And being able to simply wire in things like hackpad (with some really great help from Igor) has been amazing. Deploying updates is as simple as git push heroku master and heroku does all the heavy lifting.
Much of the starter code for this came from Zach, our hacker-in-residence at USV, who’s been working on an update for USV.com. I don’t think I’d have been able to do it without his starting point — but looking at the Brubeck docs, which are quite good (kudos, James), perhaps that’s not true.
All of this reminds me of a post my friend Ian Bicking wrote a few years ago about What PHP Deployment Gets Right. For those who don’t know Ian, he is a rockstar python developer who understands the low level stuff better than anyone I’ve been around — among other things he wrote pip and virtualenv, which are primary tools for anyone developing in python. Anyway, the point of Ian’s post is that PHP deployment is, and always has been, so easy that it’s possible for people (like me, until recently) who are afraid of going deeper than the file system, to program and deploy apps.
Ian’s post is 5 years old now, and a lot has changed. It’s pretty sweet how the hurdles for developing web apps keep getting lower and lower.
No comments yet