Nokia Put a 4G Cellular Network on the Moon but Couldn’t Make a Phone Call https://www.wired.com/story/nokia-4g-network-on-the-moon/
Today is my last day at Shopify. I joined in 2016 and had the time of my life, great engineering and people, they brought me to Canada and for that I’ll be eternally grateful. But they’re also proudly hosting swastikas for sale, taking the idea of “make commerce better for everyone” a little too literal, at any cost. It pains me to leave this way but I can’t let my name be associated with this in good conscience.
If you want to sell Swastikas online, Shopify will be happy to facilitate that.
⭐ Kokeilussa Logitech G Pro 2 Lightspeed – pelihiiri myös vassareille https://www.mikrobitti.fi/uutiset/mb/97d5cad5-adf5-4698-af6c-0b2400a9f68b?ref=aggregaatit%3A0f19&utm_source=dlvr.it&utm_medium=mastodon
The full scope of what I do have encapsulated to wrappers:
git-fetch-tag() {
git fetch --no-tags "$1" "refs/tags/$2:refs/tags/$2"
}
git-fixes() {
git --no-pager log --format='Fixes: %h ("%s")' --abbrev=12 -1 $1;
}
git-tip() {
git --no-pager log -1;
}
git-tail() {
git rev-list --max-parents=0 HEAD
}
My usual style to refactor symbol names is somewhat ad-hoc but usually does the job:
$ BEFORE=VIDEO_LOOP_CTL_ADD
$ AFTER=VIDIOC_LOOP_ADD
$ git grep -l $BEFORE | \
xargs sed -i "s/$BEFORE/$AFTER/g"
I don’t have a script for this because writing down manually helps to keep mind focused.