I was standing on the street corner with Domino and a group of schoolkids came up. “Hey, can I show you a magic trick?” one of them asked.
“Uh…”
“Think of a number,” he said.
“Ok.”
“Now add 4 to it.”
“Ok.”
“Now add 5 to it.”
“Ok.”
“Now add 1 to it.”
“Ok.”
“Now subtract your original number from it.”
“Ok.”
“Did you get 10?”
“Nope!”
“What? What number did you choose?”
“I was using a different base. If you’re using base 16, then 4, 5, and 1 don’t add up to 10. Don’t kid a kidder, kid.” Then I flipped him a nickel and his head exploded with the power of math.
Well, not really. I wish I had the presence of mind to do that. But next time an elementary school kid tries that, I’m so ready.
Andrew and I just took a month off to relax in a cabin in the woods. We are extremely fortunate to have jobs and lives that allow us to take off this kind of time, because boy did I need it. At the beginning of our trip, I was hoping to get so much done: programming, writing, art, and probably 42 other things. However, once we were settled it, my brain said:
And so we relaxed. We cooked at home:
Breakfast on our porch. Looks like a mess, but let me interpret: that’s homemade buttermilk biscuits topped with a poached egg smothered in bacon gravy topped with a homemade salsa. It was so good.Slightly more picturesque spaghetti carbonara.
We hiked almost every day:
This was an incredible scenic lookout at the top of a mountain where the rock just fell away and you got an incredible view of the valley. We took turns dangling our feet off the edge of the abyss.Andrew and Domino sharing an apple on a Mohonk Preserve trail.
We went apple picking:
Domino carrying an groundfall apple. He loved chasing them.
Went spelunking, which I had never done before:
Andrew in a Tyvek suit, ready to crawl through “Fat Man’s Misery,” a 3-foot-high tunnel with a stream at the bottom. We were entirely covered in mud when we were done. It was a blast.Another part of the cave. I’d never seen anything like it before.
At the beginning of the month, I felt broken and depressed and it took a few weeks before I felt normal. The day I started feeling like, “Yeah, I’m myself again,” Andrew actually noticed (I hadn’t said anything) and pointed out at dinner that I had started talking about the future for the first time. The third week, I started feeling energetic again. I suddenly wanted to take a pastry class (we’ve been watching a lot of The Great British Baking Show), learn woodworking, pick up sewing again to make a Halloween costume, do a hackathon, and write a cookbook.
It also renewed my appreciation of NYC. As I had gotten burned out, the city had stopped being the “magical city on a hill” that I’ve always seen it as. I missed seeing our friends, but until week #3, I didn’t miss anything about the city itself. However, once my groove started to come back, so did my love for NYC. I couldn’t wait to get back, there’s a bubble tea festival and a documentary at the Film Forum about the NYC library system. And where else could I take classes on French pastry from some of the best chefs in the world, and turn around and have the world’s most extensive collection of fabric stores and access to a real-estate-related hackathon two weeks after I get back? (And, most importantly, nachos delivered to my door in 10 minutes.)
Sitting on the porch, sipping my coffee, and looking out into the woods is very peaceful. I’ll miss that feeling, and Andrew and I agreed that we should do something like this every 3-5 years from now on. But I can’t wait to get back to the city. I need my own kitchen where I’m going to try making some Genoise sponge cake…
I’ve been reading P.T. Barnum’s autobiography and came across an interesting passage about when he was employed at Mr. Taylor’s (maybe of Lord & Taylor’s? Not sure) shop:
My employer manifested great interest in me, and treated me with the upmost kindness, but the situation did not suit me. The fact is, there are some persons so constituted that they can never be satisfied with labor for a fixed salary, let it be never so great. I am one of that sort. My disposition is, and ever was, of a speculative character, and I am never content to engage in any business unless it is of such a nature that my profits may be greatly enhanced by an increase of energy, perseverance, attention to business, tact, etc.
He also sounds like quite an ass and a racist, but it’s an interesting read.
Google is famous for its perks, but the ones that ended up being my favorite were not the free food:
Peer bonuses
Anyone at Google can nominate a coworker for a peer bonus. They write a couple sentences about what the person did and send it to their manager for approval. It’s a really nice way of getting quick recognition for going above and beyond for someone. I feel bad that I didn’t give more of these out, but it was a terrifically nice feeling to get them.
Anonymous mailing list for woman engineers
During my tenure, someone started an anonymous mailing list for woman engineers, where people discussed everything from robotics to travel to birth control. There was also, of course, lots of discussions about how to deal with the unpleasant situations women in tech invariably find themselves in. Having this platform was like having a place you could breathe free.
I am also proud of my contributions: when I was having a rough week a while ago, I started a thread about “tell me about a cool thing you’re doing” (I gave the example of having just regrouted my bathroom tile) and it became one of the most popular threads on the list. During the recent issues with The Document That Shall Not Be Named, someone revived this thread and people decided to make it a monthly topic, so I’m happy to have that as my (unattributable) legacy.
As part of regrouting: I was so proud of getting the caulk out from the bathtub in one long strip that I took a “I caught a fish”-style selfie with it.
Mail room
I hate going to the post office and I always feel like I’m doing it “wrong” (I’ll stand in the wrong line, use the wrong box, something). Google’s mail room had all sorts of envelopes and boxes and, most importantly, would let you drop off any envelope or package and they’d put on the right stamps on for free. They also had a hilarious wall of portraits of “famous postal workers” (Newman of Seinfeld, the guy from Cheers, and so on).
Many years ago, I was speaking at a PHP meetup and got talking to a guy who worked at Microsoft. He told me about Microsoft’s BizSpark program, which lets startups use Microsoft’s software for free. As MongoDB was about a dozen people at the time, I filled out the application and started using PowerPoint for my presentations (which was a vast improvement over Open Office).
One of my friends just asked on Facebook how they could get a cheap license for Microsoft Word, so I looked up the BizSpark program page and saw:
MongoDB went from being one of the startups that BizSpark was aimed at to being one of the features of BizSpark. Pretty cool.
I’ve been messing around with Keras, a ML library that makes it pretty easy to do AI experiments. I decided to try out image recognition, so I found a picture of Domino in a fez:
Then I wrote the following Python program which uses the existing ResNet50 image recognition library.
import numpy as np
from keras.preprocessing import image
from keras.applications import resnet50
# Load the image
img = image.load_img('fez.jpg', target_size=(224, 224))
input = image.img_to_array(img)
# Keras can process an array of images, but we're only passing one, so turn it into an array with one element.
input = np.expand_dims(input, axis=0)
# Normalize the RGB values into a 0-1 range, since ML algorithms get thrown off by big ranges.
input = resnet50.preprocess_input(input)
# Predict what's in the photo.
model = resnet50.ResNet50()
predictions = model.predict(input)
predicted_classes = resnet50.decode_predictions(predictions, top=10)
for _, name, liklihood in predicted_classes[0]:
print("this is an image of {} {}".format(name, liklihood))
In addition to the obvious prereqs, you have to sudo apt-get install libhdf5-dev; pip install pillow certifi h5py.
This prints:
this is an image of Bouvier_des_Flandres 0.4082675576210022
this is an image of briard 0.3710797429084778
this is an image of Newfoundland 0.10781265050172806
this is an image of giant_schnauzer 0.04042242094874382
this is an image of Scotch_terrier 0.038422249257564545
this is an image of komondor 0.012891216203570366
this is an image of Tibetan_terrier 0.0026010528672486544
this is an image of affenpinscher 0.0024157813750207424
this is an image of standard_poodle 0.0021669857669621706
this is an image of Kerry_blue_terrier 0.002110496861860156
It’s pretty solid on “it’s a dog.” I’m disappointed in the lack of fez-related IDs. However, I like some of these as possible breeds for Domino:
Tibetan terrier is pretty close, they are relatives.Newfies are adorable, but the size is a little off.I have no idea where Komondor came from. They’re amazing looking, but pretty distinct.
So, still needs some work. But not bad for less than 30 lines of code.
My coworker Carmi just published a blog post on the Bazel blog about how Java tracks dependencies. Bazel has some nice facilities built in to let you know when you need to add dependencies:
ERROR: /home/kchodorow/test/a/BUILD:24:1: Building libA.jar (1 source file) failed: Worker process sent response with exit code: 1.
A.java:6: error: [strict] Using type C from an indirect dependency (TOOL_INFO: "//:C"). See command below **
C getC() {
^
** Please add the following dependencies:
//:C to //:A
He mentioned unused_deps, a great tool to go the other way: what if your BUILD file declares dependencies you’re not using? unused_deps lets you quickly clean up your BUILD files.
To get unused_deps, clone the buildtools repository and build it:
$ cd ~/my-project
$ ~/gitroot/buildtools/bazel-bin/unused_deps/unused_deps //... > buildozer-cmds.sh
This will print a bunch of info to stderr as it runs but, when it’s done, you should have a list of buildozer commands in buildozer-cmds.sh. For example, running this on the Bazel codebase yields:
This is a list of shell commands, so now you need to execute this file. The buildozer tool also lives in the buildtools repository, so you just have to build that and then add it to your path:
$ cd ~/gitroot/buildtools
$ bazel build //buildozer
$ cd ~/my-project
$ chmod +x buildozer-cmds.sh
$ PATH=$HOME/gitroot/buildtools/bazel-bin/buildozer:$PATH ./buildozer-cmds.sh
This will run all of the buildozer commands and then you can commit the changes, e.g.,
It’s a good idea to run unused_deps regularly to keep things tidy. For example, the Bazel project does not run it automatically and has nearly 1000 unneeded deps (oops). You might want to add a git hook or something to your CI to run for every change.
All those pink-tagged messages are emails from GitHub. Gmail cannot figure out which ones are important and GitHub’s notification stream, in my experience, is useless. It’s noisy and doesn’t clear the way I’d expect. The problem is, people actually do mention me on bugs. And I often have no idea.
So, I made my own notification system. It’s a Chrome extension that is a little ear that sits next to your location bar. If you have an unread GitHub notification, it turns red. If you’re all caught up, it’s green.
If this would be useful to you, please give it a try!
I was thinking about a couple of little things that have made my life a lot better in the last year and I figured I’d share:
Buying cheese powder
I love mac & cheese, particularly Annie’s sharp cheddar. However, 1) they always give too many noodles and not enough cheese and 2) Annie’s switched over to only selling either gluten free (which has a glue-like consistency) or organic (and I’m philosophically, or at least stubbornly, against organic food). However, it turns out that you can get cheese powder on Amazon. I can use as much as I want (I discovered that there is such a thing as “too much cheese powder”) and on any pasta I want.
Hemming my jeans
I took a jeans-making class last year and, although I doubt I’ll ever make another full pair of jeans (it was a lot of work), I am now pretty comfortable with modifying existing pairs. I recently got a pile of $10-a-pop jeans from Goodwill and spent 20 minutes hemming up the bottoms and now have jeans that fit me much better than the $80-a-pair jeans I used to get.
To hem jeans you need a sewing machine, iron, and the ability to sew a straight line, but other than that, it’s pretty straight-forward. Put them on, pin where you want the hem to fall, measure. Say it’s 5″ from the existing hem (shut up, I’m short). Draw a line with a Sharpie (or tailor’s chalk, but I’m assuming most people reading this don’t have a well-stocked sewing room), giving yourself 1.5″ for the new hem (so a line 3.5″ from the existing hem). Cut off just within that line. Fold over the hem .5″ Sew it down. Iron the shit out of it. No one likes to switch modes and iron, but it’ll look super jenky and handmade if you don’t. Then fold over the hem again, which shaves off the last .5″, and sew it down ~7/16″ from the edge (as far away from the edge as possible, while still catching your folded-over part).
If you want the overstitching to be visible, use some sort of triple stitch, but I usually just use the normal stitch and it looks fine. You will probably have to hand-crank the machine across the seams, since it’ll be trying to stitch through 12 layers of denim at that point. Then iron again and you’re done.
Cooking breakfast on weekends
I have discovered that scones and dutch babies are very easy to make. It’s very luxurious having hot pastries and good coffee while the Google Home plays jazz.
Scones are great because they need cold, even frozen, butter (pro tip: get a 4-pack and stick it in your freezer, it’ll last forever) and don’t even require eggs. Just throw together flour, sugar, baking powder, butter, and salt, then add cranberries, chocolate chips, maple syrup and walnuts, or sprinkle with cinnamon and sugar. Always put a little extra sugar on top before baking, because it’ll form a delicious crust.
Dutch babies are great because, again, it doesn’t matter what temperature the butter is: you put it in a pan to start with and stick it in the oven anyway. Also, the taste reminds me of something from my childhood, but I haven’t figured out what, yet. I’ll have to keep eating them until I figure it out.
I’ve heard a lot of users say they want a more comprehensive introduction to writing build extensions for Bazel (aka, Skylark). One of my friends has been working on Google Classroom and they just launched, so I created a build extensions crash course. I haven’t written much content yet (and I don’t understand exactly how Classroom works), but we can learn together! If you’re interested:
It’s free and you can get in on the ground floor of… whatever this is. If you’ve enjoyed/found useful my posts on Skylark, this should be a more serious business and well-structured look at the subject.
I’ll try to release content at least once a week until we’ve gotten through all the material that seems sensible, I get bored, or people stop “attending.”