This is a bit of a silly post: it's relatively trivial, but someone asked me if this was possible the other day and I realized that it's perhaps not so trivial if you're unfamiliar with the various bits of necessary tooling.
Creating new apps has never been easier! Or so I've been told. What I have noticed is that customers expect a certain baseline of functionality. Features that they have grown accustomed to. Features and functionality that exists in other, more mature applications. Applications and services with teams and teams of engineers and managers behind them. You know, easy stuff.
Have you ever been frustrated by the amount of noise you have to wade through with git log -p -- <filepath> ? What if there was a way to narrow down the diff output so that you could see how a single function or method evolved over time, and ignore all the other cruft that you don't care about? As with most things git , there's an obscure and underutilized option in the docs that can do…
Date and time handling in software has always been a pain point — because date-time math and timezones are hard! — and Python has has historically made some ill-advised choices in the past that catch even the most seasoned developers off-guard.
I can't believe it took me years to figure this out, but you can very easily set the pprint.pprint function as the default implementation to use when calling print() during the invocation of a shell or when running a program under the python interpreter.
Sometimes the logic in your application get a bit out of hand, and ends up an unreadable, tangled mess of negated conjunctions and disjunctions. A judicious application of De Morgan's Laws can help you translate confusing expressions or sub-expressions to something a bit more readable, while maintaining the same logical truths and falsehoods that you originally intended.
Slack has recently begun phasing out their IRC and XMPP gateways, indicating that: [We] can make no guarantee about the security of any IRC/XMPP client (including transport encryption or data security). along with the statement that it is not possible for them to maintain feature compatibility of their application across these various protocols and transports.
Containers are everywhere: it's hard to go a day without hearing about the latest Docker feature, the newest post about how Kubernetes has revolutionized devops, or wondering how you'll ever get employed if you don't live and breath and blog daily about containers.
A coworker of mine, Andreas Birkebæk, received an email the other day, and sent it to me thinking that it was some variation of a unicode failure that plagues me regularly . While it was an encoding failure of sorts, this one was more interesting than your garden-variety UTF-8/ISO8859-1 problem.
I ran into a situation today that was particularly frustrating, but for an interesting reason. PostgreSQL tables are hard-limited to a maximum of 1600 columns. The limit, as I found out after a bit of digging, is specified in the PostgreSQL source and accompanied by a short explanation:
Well, Not really. My name is, in fact, Joël. You'd never guess that, however, from the consistent and diverse ways in which my non-ASCII given name is butchered by web applications, email servers, databases, and overzealous baristas that seem to believe I am the father of Superman.
Amazon Web Services has the ability to serve objects contained within an S3 bucket as a static website. Upload some files to a bucket via their web-based console or via their API (as implemented in boto ), flip a switch that indicates the bucket in question is to be used for this purpose:
I often find myself working out of a café. Nearly all of my work requires an internet connection at some point or another, which means that most of the cafés I frequent have some sort of WiFi that I take advantage of. While I'm not generally one to complain about the quality of free WiFi in the small, locally run establishments in my neighbourhood, it does frustrate me that they are often…
I don't know exactly why, but installing science/math/statistics oriented Python packages on OS X has historically been a complete pain in the ass. It seems as though things have improved over the past few years with the development of custom disk images, meta-package installers and other fanciful things, but most of these solutions sacrifice the ability to upgrade the given…
My favourite days are the ones where I get to solve a seemingly difficult everyday problem with mathematics. A few weeks ago, my friend Andrei came to me via IRC with a question, which I have heavily paraphrased: I've got a list of the beers in my cellar, and each beer has a price associated with it. I'd like to figure out how to generate a list of fair trades between myself and another…
If you're anything like me, you probably log in and out of a half dozen remote servers (or these days, local virtual machines) on a daily basis. And if you're even more like me, you have trouble remembering all of the various usernames, remote addresses and command line options for things like specifying a non-standard connection port or forwarding local ports to the remote machine.
Four years ago when I started using a micro-blogging service, I revelled in the sheer simplicity and low barrier to communicating my thoughts. Blogging, in that era, seemed like a historical vestige on the verge of being consumed and overtaken by the rapid fire, real-time tweets of my peers. I jumped on that bandwagon, and never looked back. Until now.
Ever since I had the pleasure of keynoting at Make Web Not War: For The Web in 2010, I've been eagerly awaiting the announcement of the 2011 edition, which was announced just a few days ago.
Last time , we looked at how one could maintain a persistent session in IRC through the use of a terminal multiplexer (such as screen or tmux ) and SSH. While this has the advantage of being very easy to setup, there are a few very obvious disadvantages and trade-offs:
As is the case with most people involved in Open Source, I'm on IRC all day long. I can help people from around the world use some of the projects I've helped create, as well as some of the software that I use on a daily basis. One of the major advantages that IRC has over your ‘traditional’ instant messenger clients is that, with a minimum amount of effort and hardware, you can create a…
One of my favourite plugins for Vim is command-t : An extremely fast, intuitive mechanism for opening files with a minimal number of keystrokes. It's named "Command-T" because it is inspired by the "Go to File" window bound to Command-T in TextMate. Sadly, the default installation of Vim on Snow Leopard does not have support for the ruby interpreter compiled in, which is a pre-requisite for…
I'm quite happy to announce that I will be giving the keynote address at this year's WebNotWar/For The Web conference, taking place on May 27th, 2010.
If you were to apply a bijective function to each letter in each word of a language (e.g. English), how many pre-existing words would you obtain in the resulting image?
A few hours ago, Salvatore Sanfilippo (the lead developer of Redis ), tweeted a little Ruby script to interactively estimate the memory usage of a running redis-server instance: