25 January, 2021

MS Powerpoint - if you cannot copy paste a link try this

 I tried and tried to insert a hyperlink in MS PowerPoint. Such a thing ought to be a no-brainer. But no. As usual either Mac or Microsoft or both in a sinister conspiration decided that this simple task shoul seem impossible.

But there is a stupid wordaround:

  • SHIFT + CMD + V
  • Insert unformatted text
  • Now you can paste the link string
  • Copy the #€%&/& link again
  • Now you can paste the link in the link insert thing
Don't tell me that the window based programs are more easy to use than a terminal. What a silly waste of time. 

PS: Please, don't tell Mac or Microsoft about this hack ...

[Solved] Mac: Finder - shortcuts to the left disapperared

 Whaaat ... after a restart all shortcuts are gone. Access to the Desktop, Documents etc are all gone. How can we get them back again?

Solution
Here's a solution:

  • In the bar to the left click on the > next to Favorites
  • Badaboom!

Based on: this post

22 January, 2021

How to "Page Up" and similar on a Mac

 On a Mac you need to know the hidden secrets of the art. Here are some of the practical keys you'll miss from other OS's keyboards:

  • Home: Cmd + ↑
  • End: Cmd + ↓
  • PageUp: Fn + ↑
  • PageDown: Fn + ↓
  • End: Fn + Cmd + 🠒
Q.E.D

10 January, 2021

Ubuntu: How to open a browser window in a URL via Bash

"I want a fast way to open a browser in a specific URL from a folder.

Here is a solution in Bash. Create a file like this:

#!/bin/bash
# open url in chrome
xdg-open https://whateverURL.whot

Now save the file, as myURL.sh or similar. Remember to make the file executable:

# chmod a+x myURL.sh

Now you can run the file from your favorite terminal:

# ./myURL.sh

Works on: Linux / Ubuntu.