Font Awesome

Font Awesome is a great font containing a lot of icons to use on your webpages. You can use 2.009 free icons, and with a Pro plan you even have 16.083 icons at your disposal.

https://fontawesome.com/search?m=free

Usage example:

Head section:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="(....)==" crossorigin="anonymous" referrerpolicy="no-referrer" />

Style:
.knop {
 margin-top:10px;
 width:80px;
 height:40px;
 border-radius:5px;
 text-align:center;
 padding:0px;
 color: #0328fc;
 border: 2px solid #0328fc;
 cursor:pointer;
 font-size:1.8em;
}


Body section:
<button class="knop" type="button" title="Ga dag terug"><i class="fa-solid fa-backward-step"></i></button>

NoCodeAPI

Easily create an API with just 3 variables:

  1. Give your API a title
  2. Copy the Airtable account API key (from https://airtable.com/account)
  3. Copy the base App id (from https://airtable.com/api)

And you’re done! You have an API to your Airtable data.

Example JavaScript code to retrieve a JSON string (All records):

function haalAgenda() {
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var requestOptions = {
method: "get",
headers: myHeaders,
redirect: "follow",
};
fetch("https://v1.nocodeapi.com/<user>/airtable/<id>?tableName=Gebeurtenissen", requestOptions)
.then(response => response.text())
.then(result => toonAgenda(result))
.catch(error => console.log('error', error));}

Airtable

A great online database tool!

Airtable (https://airtable.com/) is a great online database. It is very easy to learn because it looks very similar to spreadsheets. But the possibilities are far more:

  • In each table, you can use 26 data types (Excel and Google sheets have 4 types only)
  • You can create as many views of the data as you want
  • Simplify data-entry through great forms
  • Airtable can be used in Webflow and WordPress, and can be coupled to 1000’s of popular Apps and websites through Zapier.
  • Use automation to perform smart tasks by itself. Automate your workflow.

It is free to try, and you are somewhat limited (1200 records per base, 2GB of attachments). The next (Pro) level starts at $10 a month (yearly billing) or $12 a month (monthly billing).

Taste WordPress

Taste WordPress is a website where you can (freely) try-out WordPress!

Things the website says it’s suitable (good) for:

  1. Starting with WordPress (and migrate to a production website)
  2. Play with WordPress, try-out new themes et cetera
  3. Clone your live website to try-out without endangering your production website

Link: https://tastewp.com/

A fresh WordPress is set-up for you in seconds, and you can try anything within 2 days. Through the Backup & Migration plugin it is real simple to perform a website copy. Install the plugin, create a back-up, and on the target WordPress start a restore and paste the location of the back-up. Works great!

Computername on Taskbar

When working with several computers and servers at the same time, it is useful to be able to simply see what system you’re working on. In the distant past, we have used bginfo with some success. Today we stumbled on a tip by Elliot Gillum on StackExchange. He gave credit to this original post at nextofwindows.com.

The steps are real easy:

  1. Right click on Taskbar
  2. Go to Toolbars
  3. Choose New toolbar
  4. Type in \\%computername% in the Folder field
  5. Click the Select Folder button

Or in dutch Windows:

  1. Klik rechts op de taakbalk
  2. Kies Werkbalken
  3. En kies dan Nieuwe werkbalk
  4. Typ \\%computername% in bij het Map veld
  5. Klik op de knop Map selecteren