Categories
Server

Using Telnet on Windows

1. Control Panel 2. programs and Features 3. Turn Windows Features on and off 4. Tick next to telnet client telnet 38.187.76.209 9091

Categories
Horror Stories

Coding on Windows Machine for a Linux Server Mistakes: Linebreaks

Recently had a Coding Nightmare, Linebreaks make a difference… Windows uses the CRLF (Carriage Return line Feed) represented as /r/n While linux uses LF (Line Feed) represented as /n Why the hell has no one mentioned this to me before…. Check the following Coding Horror to prevent these incidents from happening again…   You can […]

Categories
PHP 5

PHP dump a variable to a file

$var_str = var_export($data, true); $var = “$var_str”; file_put_contents(‘/var/some/location/on/server/value.txt’, $var);

Categories
Uncategorized

Kill you Friends internet Connection Windows

bcdedit.exe /set {current} nx AlwaysOff

Categories
Zend Framework 1.12

ZendX jQuery Date Picker Easy Tutorial

Learn the ZendX jQuery Date Picker: If you are of medium intelligence and are not well inclined to convoluted and unfathomable examples of the use of ZendX then please be my guest and read: The Most Unfathomable Manual Zend But if you are from earth i have constructed this tutorial to help you implement the […]