79 private links
William Fetter was a graphic designer and artist recognized for being a pioneer in the field of computer graphics. Fetter’s well-known 1964 “First Man” or “Boeing Man”, a short animation of a pilot, meant to be used in films, was the earliest example of a human figure generated by computer. He is widely credited with coining the term “computer graphics“.
Have you ever wondered how your smartwatch or sleep watch measures your sleep? And whether it's a reliable tool for sleep monitor? Find out now.
How to play flash games after 2020
All the best Open Source, Software as a Service (SaaS), and Developer Tools in one place, ranked by developers and companies using them. Compare and browse tech stacks from thousands of companies and software developers from around the world.
Create a local npm directory where the npm packages will be installed:
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
Edit bashrc
or zshrc
and add:
export PATH=~/.npm-global/bin:$PATH
Restart the shell.
Test it:
npm i -g http-serve
http-serve
I was stupid enough to commit a lot of stuff without changing the git configuration, so I needed to change the author of ALL commits in the repository:
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Newname'; GIT_AUTHOR_EMAIL='new@email'; GIT_COMMITTER_NAME='Newname'; GIT_COMMITTER_EMAIL='new@email';" HEAD
After that, sign all commits, change the [ref] to from where you want to start, in my case, it was the first commit hash:
git rebase --exec 'git commit --amend --no-edit -n -S' -i [ref]