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 […]