Productivity Killer of the Day
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
Luckily we have "There's Wally" as an alternative over here: Daar is Wally[^] ;)
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
-
If it does I can't find it. Plus I'm too lazy to look. So I'll just keep staring at that screen. Staring...
cheers Chris Maunder
-
If it does I can't find it. Plus I'm too lazy to look. So I'll just keep staring at that screen. Staring...
cheers Chris Maunder
No problem! Simply write a parser to go over your code and trim trailing white spaces. What's wrong with an entire application to find a trailing space? Hmmmm?
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
-
No problem! Simply write a parser to go over your code and trim trailing white spaces. What's wrong with an entire application to find a trailing space? Hmmmm?
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
Of course! Why didn't I think of that. It should probably be a VS extension, and should work with all current and future versions in all cultures. This could take weeks of procrastination productive time saving work.
cheers Chris Maunder
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
If you're using Visual Studio, Mads Kristensen has you covered. :) Trailing Whitespace Visualizer - Visual Studio Marketplace[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
I recently took a morning debugging an application that for some reason didn't work. After hours I found a non printable character in an encrypted password in the web.config X| It's nothing short of a miracle that I found it at all :laugh:
Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
-
If it does I can't find it. Plus I'm too lazy to look. So I'll just keep staring at that screen. Staring...
cheers Chris Maunder
Solution - toss Style Cop where it belongs.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013 -
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
Productivity killer of the day: The Lounge?
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
Notepad++ - search for " \n" in extended character search mode. Or, if you want it a little more challenging, you can do the same thing in Microsoft Word, but that probably isn't the correct instruction for that program (and I'm not going to figure it out)! :laugh:
-
I recently took a morning debugging an application that for some reason didn't work. After hours I found a non printable character in an encrypted password in the web.config X| It's nothing short of a miracle that I found it at all :laugh:
Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
Sander Rossel wrote:
After hours I found a non printable character
Non-printable occasionally end up in my php files from (I don't know where) - and when I try to start a session it gets rather cross with me. Three unprintable characters to start the file. Once I discovered the problem I only have the annoyance of opening it in HexEdit, replacing the characters with printable ones, saving, and then deleting them on the other side. Still, at least I know the cure, if not the cause.
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
-
I recently took a morning debugging an application that for some reason didn't work. After hours I found a non printable character in an encrypted password in the web.config X| It's nothing short of a miracle that I found it at all :laugh:
Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
For some reason solving those types of issues give me the greatest satisfaction. I dunno why.
cheers Chris Maunder
-
If you're using Visual Studio, Mads Kristensen has you covered. :) Trailing Whitespace Visualizer - Visual Studio Marketplace[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Nice!
cheers Chris Maunder
-
Sander Rossel wrote:
After hours I found a non printable character
Non-printable occasionally end up in my php files from (I don't know where) - and when I try to start a session it gets rather cross with me. Three unprintable characters to start the file. Once I discovered the problem I only have the annoyance of opening it in HexEdit, replacing the characters with printable ones, saving, and then deleting them on the other side. Still, at least I know the cure, if not the cause.
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
W∴ Balboos wrote:
Three unprintable characters to start the file.
Let me guess - are they: 0xEF, 0xBB, and 0xBF? If so, that would be the UTF8 Byte Order Mark: Byte order mark - Wikipedia[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
My editor trims trailing whitespace. Trailing whitespace is about the only kind I don't like. :D
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder
-
For some reason solving those types of issues give me the greatest satisfaction. I dunno why.
cheers Chris Maunder
Chris Maunder wrote:
For some reason solving those types of issues give me the greatest satisfaction. I dunno why.
Cause they come with a free soy, decaf, almond milk latte?
Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible." - Mr.Prakash One Fine Saturday. 24/04/2004
-
Chris Maunder wrote:
For some reason solving those types of issues give me the greatest satisfaction. I dunno why.
Cause they come with a free soy, decaf, almond milk latte?
Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible." - Mr.Prakash One Fine Saturday. 24/04/2004
One can dream...
cheers Chris Maunder
-
Looking for the line of code that has a tiny squiggle at the end because StyleCop analysers found a trailing whitespace and your code won't compile until you fix it. It's like a 12hr game of Where's Wally (or Where's Waldo for the North Americans)
cheers Chris Maunder