Getting rid of this annoying bright red ugly icon is “simple” ….
Use regedit and add:
[HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Options\webext]
“StoreButtonInRibbonHomeTabAllowed”=dword:00000000
Getting rid of this annoying bright red ugly icon is “simple” ….
Use regedit and add:
[HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Options\webext]
“StoreButtonInRibbonHomeTabAllowed”=dword:00000000
bron: click here.
Have you ever heard of SEMA? It’s a fairly esoteric system for measuring how good a software team is. No, wait! Don’t follow that link! It will take you about six years just to understand that stuff. So I’ve come up with my own, highly irresponsible, sloppy test to rate the quality of a software team. The great part about it is that it takes about 3 minutes. With all the time you save, you can go to medical school.
The Joel Test
iOS apps now need to be 64-bit, so 1 old app, created in 2014 and never updated since, needs to be updated… latest version will be Phonegap 7.0.1
So:
change the config.xml to the new compiler-version
upload to Phonegap Build to compile and ERROR Continue reading Phonegap again

The following guide will walk you through flushing your DNS Cache. Every time you venture onto the Internet, DNS resolutions are being made and your computer stores many of them. Caching these resolutions can speed up your web activities because your computer no longer has to ask another computer where something is located.
Eventually, there will come a time when a bad entry is stored. There are generally two ways to remove these entries. First is to allow 24 hours to pass. During this time your computer will seek out and make the necessary DNS updates. Second is to flush your DNS cache.
Flushing the cache removes all the information stored within the cache, forcing the computer to find new DNS information.
bron: https://webstick.nl/seo-blog18-120-punten-waarop-google-sites-beoordeelt
Dit artikel is dus een voorbeeld van “hoe moet het niet” … een rechtstreekse knip-plak actie van een andere website. Gewoon gedaan voor mijn eigen archief, voor het geval de orginele tekst weer eens wordt verwijderd. Continue reading Google uw website
Don’t forget the basics:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Continue reading web.config rules for everything