|
Whatever is the root cause of this it sounds like it will be fascinating.
|
|
|
|
|
The gravity pull is stronger on the 2nd floor. The bits are slowing down through the ethernet.
http://dilbert.com/strips/comic/1996-05-02/[^]
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Maybe it's a very tall building, and he's experiencing gravitational time dilation.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
"When you don't know what you're doing it's best to do it quickly"- SoMad
|
|
|
|
|
Epic.
We should be building great things that don't exist-Lary Page
|
|
|
|
|
Bad cabling most certainly. Any switches plugged into themselves?
You'll never get very far if all you do is follow instructions.
|
|
|
|
|
PIEBALDconsult wrote: Bad cabling most certainly
Nope. They need amplifier on terrace...
"When you don't know what you're doing it's best to do it quickly"- SoMad
|
|
|
|
|
Wouldn't that only amplify the problem?
You'll never get very far if all you do is follow instructions.
|
|
|
|
|
Easy to find out: offices of high ranking people are farther upstairs, they get computers with highest specs and the most modern network etc. Let me guess: developers are in the 2nd floor.
|
|
|
|
|
Bernhard Hiller wrote: developers are in the 2nd floor.
They're probably in the basement.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Bah, off-shored.
Bernhard Hiller wrote:
developers are in the 2nd floor world
FTFY
You'll never get very far if all you do is follow instructions.
|
|
|
|
|
I am assuming that the server is deployed on the 4th floor.
What is happening is that the bytes are being nibbled away by each floor so that by the time they reach the 2nd floor only nibbles are left - hence causing problems on the second floor.
“That which can be asserted without evidence, can be dismissed without evidence.”
― Christopher Hitchens
|
|
|
|
|
Easy! Just do a text search in the code for something like
if (floor == 2)
{ }
and you'll locate the problem in a second! 
|
|
|
|
|
Five or six times longer...
[Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public IEnumerable<int> SelectedIndexes
{
get { return dgvData.SelectedRows.Cast<DataGridViewRow>().Select(r => _DataSource.Rows.IndexOf(((DataRowView)r.DataBoundItem).Row)); }
set { ... }
}
I almost wish I'd written it longhand instead of using Linq methods...
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
|
Fantastic! I thought I was the only one who wrote comments like that. I feel so much relief! Thanks Griff.
|
|
|
|
|
I just know that in a years time I'm going to look at that line of code and go "What? Why?"
Perhaps I can head myself off at the pass!
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
Sometimes it is easy to understand by looking at the code rather than the comment. There are such programmers.
|
|
|
|
|
I write comments like that too, especially if I have to do something that isn't obvious as to WHY I'm doing it. (Usually because the client is asking for something that's just the opposite of what they wanted six months ago.)
It also lets other people know to think twice before changing that code willy-nilly.
|
|
|
|
|
That's fine. Documentations are always longer than codes.
Don't mind those people who say you're not HOT. At least you know you're COOL.
I'm not afraid of falling, I'm afraid of the sudden stop at the end of the fall! - Richard Andrew x64
|
|
|
|
|
foreach (var thisObjective in objectivesLst)
{
if (thisObjective.EndDate != null)
{
}
else
{
}
}
And this beauty lies inside one of the wonderful projects i came across.
I have not removed any code from the above snippet. This is part of the code which i found in completed project. This developer should really be awarded...
"When you don't know what you're doing it's best to do it quickly"- SoMad
modified 25-Jul-14 10:09am.
|
|
|
|
|
Is EndDate defined as a "DateTime? " (aka "Nullable<DateTime> ")?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Richard Deeming wrote: Is EndDate defined as a "DateTime? "
Whether it is or not, i loved the way this code was written...
"When you don't know what you're doing it's best to do it quickly"- SoMad
|
|
|
|
|
Are you saying that you didn't let out the code inside the if?
|
|
|
|
|
I have just copy pasted what was there and thats the reason this is in weird and wonderful...
"When you don't know what you're doing it's best to do it quickly"- SoMad
|
|
|
|