nwalton
-
What are you listening to while you code?
I'm really partial to El Ten Eleven and Tycho when I need something chill. Lately I've also found that opera music kind of puts me in a groove, especially Mozart and Rossini. I love you, Spotify.
-
Any fancy trickery to fix a background colour on SVG
If the icon is transparent (which I'm assuming), you should be able to use generated content to add a white background behind it. Something like this: .myImage { position:relative; z-index:2; } .myImage:before { content: " "; …
-
Question: Technology used to make a to-do list web app
Here's a site that has a to do list built in a bunch of different javascript frameworks. Lately, a lot of people have been building sites based more on javascript than on PHP (or whatever other server-side language you're using). It may be…