Sunday, October 19, 2008

Lanate (Lannate)and Nudrin are the brand name for Methomyl, a carbamate pesticide
Wearing a muzzle could save your dogs life
The first signs an owner should look out for are salivating and shaking or staggering. The animal should be taken to a vet immediately for treatment. Owners must also be very vigilant in ensuring that their pets do not pick up any poisoned objects, which are usually fish or meat.
Lanate is the brand name of an organophosphate pesticide.

BANNED IN ALMOST EVERY OTHER COUNTRY IN EU
READILY AVAILABLE IN CYPRUS...

Cyprus law forbids “any person to inject, water or feed an animal with any product which contains a poison”. The punishment is a maximum of 12 months in prison, a £1,000 fine or both.


travelling your pet with CY airways? BEWARE of these incompetent heartless dorks:

http://www.cyprus-mail.com/news/main.php?id=21260&archive=1

http://www.cyprusairways.com/main/default.aspx?it=1&tabid=53&itemid=208


AND THE GOOD SIDE (Thanks to these -mainly not-Cypriot- people, some dogs still stand a chance):

http://www.dogscyprus.org/PAWS/index.php

http://www.dogshelter.org.cy/index.htm

PET TRAVEL BOX CALCULATOR FROM BA:
http://cyuat.baplc.com/biztools/pcst.shtml

Saturday, October 4, 2008

DelFolder [RoboCopy.exe] Fix (PATH TOO LONG XP ISSUE)

http://windowsitpro.com/article/articleid/84207/jsi-tip-9651-how-can-i-delete-a-folder-that-returns-path-too-long.html

The syntax for using DelFolder.bat is:

DelFolder FolderPath

Where FolderPath is the path to the folder you wish to delete.

NOTE: DelFolder.bat uses RoboCopy.exe, which must be located in a folder that is in your PATH.

DelFolder.bat contains:
@echo off
if {%1}=={} @echo Syntax: DelFolder FolderPath&goto :EOF
if not exist %1 @echo Syntax: DelFolder FolderPath - %1 NOT found.&goto :EOF
setlocal
set folder=%1
set MT="%TEMP%\DelFolder_%RANDOM%"
MD %MT%
RoboCopy %MT% %folder% /MIR
RD /S /Q %MT%
RD /S /Q %folder%
endlocal