The Joel Test

bron: click here.

The Joel Test: 12 Steps to Better Code

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

  1. Do you use source control?
  2. Can you make a build in one step?
  3. Do you make daily builds?
  4. Do you have a bug database?
  5. Do you fix bugs before writing new code?
  6. Do you have an up-to-date schedule?
  7. Do you have a spec?
  8. Do programmers have quiet working conditions?
  9. Do you use the best tools money can buy?
  10. Do you have testers?
  11. Do new candidates write code during their interview?
  12. Do you do hallway usability testing?

Continue reading The Joel Test

How Do I Flush My DNS Cache on Windows?


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.

  1. The first step to flushing your DNS is to open your “Windows Command” prompt.
  2. Click “Start” and type the word “Command” in the Start search field.
  3. Right-click the command prompt icon and select the option to “Run as Administrator”.
  4. In the open prompt, type “ipconfig /flushdns” (without the quotes).
    You should receive a message of your success as confirmation when the cache is cleared.

Flushing the cache removes all the information stored within the cache, forcing the computer to find new DNS information.

Google uw website

Complete 120 punten waarop Google uw website beoordeelt in 2017

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

web.config rules for everything

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

Onderhandelen

Onderhandelen: “We can be fast, good and cheap. Choose any two.”

Onderhandelen. We houden er niet van, maar doen het dagelijks. Wij vinden het moeilijk als onderhandelen onszelf betreft, als wij onszelf waarde moeten toekennen.

Onderhandelen is niets meer dan een transactie tussen twee partijen waarbij elk op voordeel uit is. Daar hoeft geen vijandschap aan te pas te komen. Redelijkheid en een ontspannen houding zijn genoeg. Zie de ander niet als tegenstander. Probeer elkaars doelen te doorgronden. In wezen zijn die hetzelfde: het beste product voor de beste prijs. Continue reading Onderhandelen