100 km dodentocht Bornem 2010

Het is exact een maand voor de volgende dodentocht en ik ben nog maar net klaar met mijn verslag van de dodentocht 2009 (vergezeld van een paar foto’s).

Dit jaar heb ik geen voorinschrijving, maar de drang is groot om toch weer deel te nemen, al was het maar om mijn medaille van vorig jaar in ontvangst te nemen. Als ik hen met de grote mond mag geloven, zijn er mogelijks toch weer een paar hoogmoedigen die de tocht mee gaan aanvatten ;-). To be continued or not?

Succes aan zij die al aan het trainen zijn, ook succes aan zij die niet trainen (incl. mezelf…). Het wandelparcours van 2010 staat trouwens al online.

Update: ondertussen heb ik een nieuwe stappenteller (Omron Walking Style II) en nieuwe schoenen gekocht en is bijna geen excuus meer goed genoeg om te verzaken aan een volgende dodentocht-deelname. Ik ben 10 km gaan wandelen om de nieuwe schoenen in te lopen, maar dat is me vrij slecht bekomen: 2 blaren. Deze kunnen ook het resultaat geweest zijn van nog niet helemaal genezen hielen van een ongelukkig voorval met geklede schoenen die nog niet waren ingelopen een aantal weken terug. Gelukkig kan ik nog steeds terugvallen op mijn schoenen van vorig jaar. Vanaf volgende week beginnen we weer aan de Kampferspirituskuur om zo de voetzolen aan te sterken. Baat het niet, dan schaadt het niet.

Ondertussen heb ik een hele reeks sportwinkels afgeschuimd in de hoop een goeie heuptas te vinden. Maar wat dacht je: nergens iets kunnen vinden. Sports Direct, Decathlon, A.S. Adventure, … Blijkbaar kan je deze dingen alleen online bestellen en ik had het toch graag even uitgeprobeerd voor ik een definitieve keuze maakte.

CSS shorthand

Margin & padding

/* top, right, bottom, left */
.ex1 { margin: 0 0 0 0; }
/* top, right & left, bottom */
.ex2 { margin: 0 10px 0; }
/* top bottom, left right */
.ex3 { margin: 0px 10px }
/* top left right bottom */
.ex4 { margin: 0; }

Font

Opgelet: als je shorthand gerbuikt, worden alle ‘niet gebruikte’ paramters op ‘normal’ gezet

/* font-style, font-variant, font-weight, font-size, line-height, font-family [sans serif, serif] */
/* font-family uses "" when font-name is more than one word */
body{ font: italic, small-caps, normal, 12px/14px "Times New Roman", serif; }
/* in onderstaand voorbeeld verliest h1, ... 'bold' font-weight */
body{ font: 1.4em Verdana;}

Border

Minimum style & color definiëren. Bij shorthand is 3px de ‘normal’ value

/* volledige shorthand */
.border{ border: 1px solid red;}
/* ok */
.border { border: solid red;}
/* fout */
.border { border: red;}

Lists

/* list-style-image, list-style-position, list-style-type */
.list { lists: disc outside none; }

Background

/*
  background-color: color || #hex || (rgb / % || 0-255);
  background-image:url(URI);
  background-repeat: repeat || repeat-x || repeat-y || no-repeat;
  background-position: X Y || (top||bottom||center) (left||right||center);
  background-attachment: scroll || fixed;
*/
background: #fff url(image.jpg) no-repeat 10px 100px fixed;

Logitech Quickcam 4000 on Windows 7 64bit?

Having troubles installing your Logitech Quickcam on Windows 7?

When you went looking for the driver on the logitech support webpage, you’ve probably noticed only Vista 64 bit support. You can choose this file and try to install it from there. Sometimes it will work, if not … Continue reading “Logitech Quickcam 4000 on Windows 7 64bit?”

WordPress: installatie, beveiliging, upgrades

(update augustus 2013)

WordPress installeren en beveiligen

WordPress gehacked?

WordPress plugins manueel upgraden?

  • Plugin deactiveren in beheer
  • Plugin map verwijderen van de server
  • Nieuwe Plugin uploaden
  • Plugin terug activeren: plugin detecteert zelf of database-aanpassingen nodig zijn

Nuttige plugins

WordPress hacked…

The past three weeks my WordPress blog got hacked two times. As a regular visitor nothing seemed out of the ordinary, but if you searched Google my blog seemed as a the best drugstore in town (Generic cialis – We Always Have The Cheapest Offers In Our Online-Drugstore). Each and everyone of my blog-pages had corrupted html-title tags or title-id’s (only when viewed through search engines!). Thanks to Google Alerts I found out there was something strange going on.

After a lot of searching (nothing mentioned on the web), finally found the problem. Seemed like my WordPress plugins got edited without my knowledge into base64_encoded hidden code which was then parsed with the php eval() function.

This is what it looks like…

@eval(base64_decode("JGFjdD0iaW1nIjsgZ2xvYmFsICRhcnJfdG...")); ?>

I found different entries in the following plugins: wp-spamfree / rss-import / syntaxhighlighter and so on. I changed all passwords to my site (webspace and databases) and deleted the infected files. Many of those files had changed permissions! I found unknown references to *.bak.php files inside the wp_options database table autoloading various scripts.

Fingers crossed that this won’t happen again. I will keep my eyes on Google / Bing and other search engines to see if my site keeps attracting unwanted visitors.

Google Labs was the only place giving me on the fly information of my cleanup-progress. Unfortunately Google Labs has a request limit on a week to week basis. I haven’t found a similar functionality in BING. So if you reach the request limit, you’re out for the next 7 days…

To give your wordpress some additional security you can password protect the wp-admin directory with .htaccess and .passwd.

If your WordPress gets hacked too, leave me a message if you encounter similar problems. I still don’t know how these files got changed in the first place.