14 pages about "Tools 🛠"
Interactive (& Collaborative) Layered Map
The idea
Create a tool that allows to stack multiple map layers and use filters to discover your next home’s area.
Example
Take multiple maps of the same area:
Sources: Various results from Google Images (do not hesitate to contact me in case of copyright issue)
Then, imagine a tool that allows you to:
- toggle each layer
- use filters or slidebars to create heatmaps
Bonuses
- make the tool collaborative
- share specific filters
- export an image with your filters
Automate ArchiveBox with Google Spreadsheet to Backup your internet
Introduction
I just discovered ArchiveBox on my GitHub feed.
ArchiveBox allows you to store copies of webpages at a specific time.
It is still new for me, but from what I see, my workflow will be something like this:
- to store copies of interesting webpages that I may want to read again later, i.e., my bookmarks; and then, use these archives:
- as a backup link when the main page is outdated
- as a way of comparing how the webpage would have changed with time (diff)
- to list my interesting links
- to periodically monitor changes of webpages I want to follow over time, i.e., my public social profiles, or this site web
To make it easier for me to maintain, I want to update a Google Spreadsheet and never touch a shell anymore.
My setup
First, write some links on a Google Spreadsheet document.
Then, publish the document in CSV format.
And finally create a script that will fetch the links in CSV and run the archiver against those URLs.
Here is my custom Makefile
:
And my adapted docker-compose.yml
file:
Run make loop
in a tmux
or another process-backgrounding method.
Result
I now only need to add new links to a Google Spreadsheet and let my script do the rest.
Windows 10 Setup 🖥
Introduction
I recently ordered a Microsoft Surface Book 2 with Windows 10. The last time I used a Windows for something else than playing games was in 2006.
About the “why”, here are some reasons:
- to give a new trial, especially after seeing Microsoft becoming more and more “cool” company, in the Open-Source and Linux world,
- to get out of my routine/comfort zone,
- to be able to see how my different projects are running and are easily usable by a developer under Windows,
- to put the same shoes that people I will try to help with my apps and projects,
- for the challenge of having a very secure Windows configuration,
- that’s also why I chose this specific laptop model (Microsoft Surface Book 2), which is one with the worst repairability score on iFixit, and thus, one that is very resistant to physical attacks, such as cold-boot attacks,
- to have arguments if I need again to say that I don’t fit with Windows :)
I wrote this blog post while installing to try to be exhaustive. I hope this article can be useful for someone else trying to switch from Mac OS X to Windows, or for people interested in running Windows from a Security/Developer/Musician guy’s point-of-view.
(At least, it will be helpful for me for the next time I need to install a Windows machine.)
Windows Install
- Disable anti-privacy options
- Disable Cortona
- Enable FaceID
- Use a strong password for the pin, not a short number
- Device encryption is now the default, well done Microsoft 👍
- When the install is done, reboot, log in, and let Windows download and install all the updates (multiple reboots)
Apps & Settings
- Install Chrome using Edge, then change Chrome to the default browser
- Install Magic Trackpad if you want to use an Apple Trackpad
- I will probably remove it soon and use a standard mouse
- Install Microsoft Authenticator
- Install Slack
- Install Windows Subsystem for Linux
- Install Ubuntu 18.04 LTS
- Install Trello
- Install 1password
- Install Icloud for Windows
- I will probably remove it soon as it only syncs what I don’t care
- Install iTunes
- Install Spotify
- Install Visual Studio Code
- Install BitDefender Antivirus
- I’m not sure if it’s the best one yet
- Install OpenVPN
- Install Docker
- Install Cmder (iTerm alternative)
- Install Aquasnap (Windows Tiling Software)
- Install Microsoft Phone Companion
- Install Google Drive File Stream
- Install Firefox
- Install VLC
- Install Reason
- Install Whatsapp
- Install Kali Linux
- Install Telegram
- Install Facebook messenger
- Install RescueTime
- Install Netflix
- Install Microsoft Wireless Display Adapter
- Uninstall Games & other useless apps: xbox, microsoft useless
- Install Docker within WSL
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker moul
sudo apt-get install -y python python-pip
pip install --user docker-compose
- Update WSL mount-path for docker volume, see instructions.
- Install GO within WSL
mkdir -p /c/go
echo "export GO_PATH=/c/go" >> ~/.bashrc && source ~/.bashrc
sudo ln -s /c/go /go
ln -s /c/go ~/go
sudo add-apt-repository ppa:gophers/archive && sudo apt update && sudo apt install golang-1.11
- Install GO within Windows to be able to develop with VSCode
- Install Sonos
- Install Pomodone
- Configure SSH
- Generate a new keypair
- I generated thousands ones using patfind so I can choose one with a cool pattern (totally useless)
seq 0 1000 | parallel --nice 19 'echo {}; ssh-keygen -o -a 100 -t ed25519 -P changeme -q -f ./id_ed25519_{} -C "m@42.am"'
- I generated thousands ones using patfind so I can choose one with a cool pattern (totally useless)
- Generate a new keypair
- Install FluentTerminal
- Install Keybase
- Install Signal
- Install Termius
- Nothing to install for Yubikey support
Not yet installed/tried
- Affinity Designer or equivalent
- Something that synchronizes screenshots in a Cloud Folder
- Cinema 4D
- Traktor
- Lantern
- Luxafor
- OpenVPN / Shimo alternative
- A good weather app, with rain notifications
- FullContact
- Airplay client
- Steam
- Mailplane
- Notes.app
- Encfs
- Brain FM
- Reason
- Pixelmator
- Inet
- Kaleidoscope
- Webex
Problems & Missing stuffs
- Keyboard binding is hardcore
- The default Trackpad is bad
- Using an Apple Trackpad in Bluetooth is worst
- even with custom driver
- The Update system is annoying
- The Driver system is complicated
- I miss Quick Look
- I miss Alfred.app
- I miss the tree view mode of the Finder
- I miss iTerm (I tried multiple alternatives, the best fit for now is the terminal built-in Visual Studio Code)
- I miss Mailplane.app
- I miss iMessages and other synchronicity applications with my iPhone
- I miss the Screenshots keyboard shortcuts
- I miss Notes.app
Good surprises
- WSL is wonderful
- but slow, with strange linking between the Windows filesystem and Linux
- Paint 3D is fun (and sometimes useful)
- Microsoft SongSmith is brilliant
Further Readings
- https://medium.com/short-stories-on-software/surprisingly-software-development- on-windows-is-awesome-now-82251d66991a
- https://gingter.org/2016/11/16/running-windows-10-ubuntu-bash-in-cmder/
- https://github.com/felixrieseberg/windows-development-environment
- https://medium.com/short-stories-on-software/fixing-docker-to-run-smooth-on-windows-9e71dcc7c128
- https://qz.com/1350832/theres-never-been-a-better-time-to-switch-from-macs-to-windows/
- https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly
- https://www.brianketelsen.com/my-cross-platform-dev-setup-on-surface-laptop/
- https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly#ensure-volume-mounts-work
13 Ideas of Productivity Tools I Would Love to Use (Wishlist)
The ideas
- The perfect mix between Airtable & Neo4j - An Airtable-like solution to quickly manage from my mobile some dependency/relationships (graoh/RDF) small databases
- The perfect mix between Trello, GitHub & Jira - A tool that can be both used with few constraints (Trello, GitHub) and do powerful features (Jira) while having as few different entities as possible that are linked to existing stuff like repos, commits, issues, and that works offline (Trello)
- The perfect mix between GitHub and Google Docs - Having Google Docs review/comment feature linked with GitHub, for instance by automatically creating pull-request
- The perfect mix between Bankin, Qonto, Revolut, Google Spreadsheet and an AI - a tool that aggregates everything you own (money, loan&debt, salary, patrimony, etc.), allows you to have history and projections, suggestions, but also to simulate what would be the impact of buying, selling a building, having a salary raise, quitting job, etc
- A smart screen that always displays my calendar schedule, todolist, today’s achievements etc - I would put one in my bathroom to inject my today’s program and one on my offices desk
- The perfect mix between Franz, Google Inbox, Facebook Feed, etc. - A tool that aggregates every source of inputs I need to follow: emails, slack boards, text messages, monitoring, GitHub events; so you are sure to never miss anything important while being able to stop checking those services every 5 minutes; bonus: transform all those streams in threads in this tool with an “unread” state, so even Slack becomes usable tool for people mostly working asynchronously
- A tool that allows finding developers based on code instead of their CV (RIP. Sourced Legacy)
- A tool that makes remote working at least as effective as a local working – bonus: to make it work in hybrid organizations
- The perfect mix between Git, Perforce, and Subversion: something that allows me to have one big monorepos, that fits well with GitHub (where Perforce fails), that fits well with CI/CD (where monorepos fail), that allows cloning only a subpart of a repo
- The perfect mix between Neo4J and a self-hosted Wikipedia/Wikidata: A tool that allows to collaboratively define, view and analyze an unstructured, complex, evolutive, and living system (more)
- A tool that can transform my phone into a comfortable working station – So I can forget my laptop forever
- An anti-hater/anti-troll filter – Like the Gmail’s antispam for Internet browsing, maybe just by graying-out potential bad messages instead of deleting them completely
- A tool that anticipates proactively the bad behaviors while using your digital devices – detects unfocus & procrastination waves, when you look too tired, stressed, angry to reply to a mail, maybe not something that actually blocks you, but a visual indicator that motivated to go back “green”