Personal Blog where I share my professional learnings. Oriented towards productivity tricks including AutoHotkey, Microsoft Office 365 (Microsoft Teams, Microsoft Outlook, Excel, Word, SharePoint, OneDrive), VBA, books, Blogger, Jira, Confluence, Power BI,...
December 15, 2020
How to open Teams link directly in the client desktop app?
December 11, 2020
Send to Kindle
Blogger: Analytics issue because of mobile views
December 10, 2020
Microsoft Teams: New Breakout Rooms feature
Open multiple Microsoft Teams instances
December 8, 2020
Video Tools
December 7, 2020
Monitor web content
Common use cases for example: get a notification when a software is updated (watch the changelog), be notified when a question (I haven't asked myself but I'm interested in its answer) in StackOverflow is updated, dedicatedly watch a page in HCL Connections (out of my overcluttered notifications feed), subscribe to a github commit feed etc.
James Clear: sharing, writing, recording, networking
Chromy: Chrome Launcher Plugin
December 3, 2020
Read faster
Mindfulness recommendations
Get Microsoft Teams Team name and link from file url
How to get the file link from a SharePoint/OneDrive Sync location
December 2, 2020
Sharing nice links from SharePoint/ OneDrive Sync location
This page is currently a draft/ WIP. Reach out to me if you want it to be finished soon.
November 23, 2020
Teams Shortcuts: Smart Reply
November 18, 2020
Outlook Shortcuts: Personalize Mentions
November 17, 2020
Teams Shortcuts: Personalize Mentions
November 13, 2020
Teams Shortcuts: Send Mentions
November 12, 2020
RegEx Greedy Trap
November 10, 2020
CamGif: Great small free tool to create gifs
October 31, 2020
Cursor Highlighter
October 27, 2020
Global Hotkey Launcher
October 14, 2020
Jira Export Excel Tool
Blogger: share to twitter including post preview with pictures
I was looking for a way while sharing one of my Blogger blog post to twitter to embed some nice blog preview including images.
I have this solution here: https://www.kimsixbloggersupport.com/2016/04/how-to-add-twitter-cards-to-your.html
Blogger: Hide Post Footer from Home
Blogger: Add Last Updated / Modified Date
I was looking for a way how to display the Last modified date besides the first published date in my Blogger blog.
I have found the solution here: https://www.twistblogg.com/blog/last-updated-date-in-blogger
October 13, 2020
How to hide Blog description from Blogger Template
It is recommended for SEO to add a Blog description.
But the default blogger Template will then display it below the Home page title.
This clutters a lot the page and it isn't very useful/ a bit annoying. Specially if you already have an About page. I present here how to hide the blog description from you Blogger theme.
AutoHotkey: Gui to list and select a window
October 12, 2020
Outlook: Move Email to secondary Tasks Calendar
October 8, 2020
Excel Trick: Average/Formula for visible range only TLDR; SUBTOTAL(10x,
Chrome Extension: View source
This is a recurring question I always have to look out: How to view the source code of a Chrome Extension?
October 6, 2020
Blogger: Embed GitHub file
Microsoft Teams: Better New conversation
Jira to Power BI (Recursive approach)
October 1, 2020
How to get Microsoft Teams main or meeting window? (Empower Teams Shortcuts with AutoHotkey)
September 18, 2020
Quick Share a link to Microsoft Teams
September 16, 2020
Outlook VBA: How to get Appointment Organizer or Email Sender Email
How to create a shortcut to/ start an office 365 Standalone Web Application?
Open Teams Meeting Chat in a Separate Big Window
September 11, 2020
Outlook to Teams Group Chat (VBA)
Open Teams Links directly in the App
September 10, 2020
Universal Date Picker/Calendar with week numbers/ Quick insert current date
(AutoHotkey is really great!)
With AutoHotkey you can very easily get a date picker + small calendar utility displaying also the week numbers.
(This might avoid you implementing forms in vba.)
Microsoft Teams: Multiple Windows
Outlook: Flag for recipients
September 7, 2020
Teams link to 1-1 chat or call
How to synchronize playlists between services (Spotify, Google Play Music...)?
How to synchronize MiFit workouts to Strava?
August 4, 2020
AutoHotkey: Adaptive ListBox
Executor: My preferred App Launcher
August 3, 2020
Microsoft Teams: Export Team Members to Excel
Outlook Google Calendar Sync

Blogger: How to remove date from url
Teams PowerShell Setup
Blogger: How to add a Table of Contents
Blogger: How to add Excerpts
How to create a shortcut to an app from the Microsoft App Store?
July 28, 2020
Teamsy: Launcher Plugin and Commander for Microsoft Teams
July 27, 2020
AutoHotkey: Read a CSV Table
July 14, 2020
MS Outlook: Edit Received Emails
I want to be able to edit received emails to better search them later.
I receive a lot of emails with unclear subjects for example. (who doesn't?).
I don't want to have to forward it to me to be able to edit the subject of the email because the sender is then changed to myself and it duplicates the email.
Outlook: Duplicate event, Organize Meeting Follow-up
It is a common use case to want to duplicate an existing meeting/ appointment especially for example if you want to organize a meeting follow-up.
Contrary to Google Calendar, for example, the Outlook client does not offer this option in a very intuitive way e.g. directly from a calendar item context menu or the item ribbon.
Such a menu is available in Outlook Web access/ in the browser (https://outlook.office.com/calendar/ ).
I present in this post how to duplicate an event in the Outlook client.
July 3, 2020
Bookmarklet: Open Amazon book in Goodreads
Good solution in Github
See https://gist.github.com/lightningdb/cfee260c3b7af7e65fceMy solution
Installation
Chrome Extension: Close Current Tab
Standard answer
The drawback of this solution is that it won't close the Chrome window if it is the last tab to be closed.chrome.tabs.query({"active": true, "lastFocusedWindow": true}, function (tabs) {
chrome.tabs.remove(tabs[0]);
});
My solution (close window if last tab)
AutoHotkey: Customize Button Message Box
June 15, 2020
AutoHotkey: TrayTipAutoHide
(The 3rd input parameter 'Time' in the active TrayTip function has no effect on Windows Vista and later.)
March 9, 2020
Text Expander supporting links / rich text format
Now you can also use AutoHotkey for this using the so-called Hotstrings.
I present here a way to use Hotstrings that support links i.e. rich-text formatting.
It is based on the AutoHotkey utility I have highlighted in a previous post: WinClip
March 5, 2020
Add list of users to a Microsoft Teams Team e.g. from Outlook, Excel using the PowerTools
The currently most practical way is using a PowerShell script but still it might be some work to get it running. (Edit: see alternative using Power Automate)
I present here a solution implemented in AutoHotkey that can seamlessly add a list of users you already have in Outlook or Excel or a list of Emails in your clipboard to a Team.
It is implemented in the People Connector PowerTool.
February 20, 2020
AutoHotkey: Copy content of MsgBox
I've used also to copying to the clipboard (clipboard:= sVar)
to search and have a look in a variable content
Because I could not find a wait to copy the content of the MsgBox.
You can not select the content of the MsgBox.
The point is: you can ; just by pressing Ctrl+C: it will copy the whole content of the MsgBox. (plus the window title)
See here where I've found this answer in the AutoHotkey forum.
February 13, 2020
AutoHotkey: Add option to launch on startup
I share here a standard approach to provide this to the user.
February 12, 2020
AutoHotkey: Clipboard handling
February 10, 2020
AutoHotkey: Undocumented Hotkeys for Gui Menus
https://jacksautohotkeyblog.wordpress.com/2019/12/30/use-autohotkey-gui-menu-bar-for-instant-hotkeys/
When appended to the end of a MenuItemName, the tab character (`t) followed by one or more standard Hotkey modifiers (Ctrl, Alt, or Shift) plus another key “indicates a keyboard shortcut that the user may press instead of selecting the menu item. If the shortcut uses only the standard modifier key names Ctrl, Alt and Shift, it is automatically registered as a keyboard accelerator for the GUI.”I use this for example in a simple ListView Gui with checkboxes to be able to select all with Ctrl+A.
January 20, 2020
PowerPoint: Change Language in whole Presentation (VBA Macro)
Working in an international environment, I need a lot of time to fix the language in a whole PowerPoint presentation. There is no built-in feature for this available. I share here my VBA based solution.
January 13, 2020
Gmail Disposable Email Addresses
You can use custom email addresses postponing a +text to your standard gmail adress before the @.
Example: I can use thierry.dalon+spam@gmail.com