I'm having 75Mb fiber that costs $38/month with the current Real/Dollar rate and I live in a state capital, Curitiba. That's very expensive for Brazil standard's, but it's the best internet provider by far. (We have cases of providers offering 50mb, but less then 20mb actually arrives.
gjp1311
Posts
-
How much do you pay for your internet? -
Developers are always the problem. Or are they?That's going to be my new MO :laugh:
-
Developers are always the problem. Or are they?Yeah, basically all my co-workers are on another country, including the scrum master and pm. My boss here just deal with things like contracts, hiring and etc.
-
Developers are always the problem. Or are they?I recently had a problem at my job. We work for a company abroad as contractor, so all our communication is done by Slack and our tasks are on TFS. The task I want to talk about, was basically to hardcode some items in a list that came from a database. I warned them all that this would break some other modules in our application, because it used that same data. They just told me to finish that task and go on. It didn't work out and it broke the application, as I have told them many times before. But my main complaint is that, they sent an email to my manager saying that the RC was broken because of me. I did have all chat history, so it was easy to prove to my boss that I just did what I was told and even warned them many times about that. Was I really guilt in all of this? Should I have just ignored thier orders and didn't finish the task?
-
If it fails, try againBesides the problem of repeating the same thing inside a catch, the other big problem is that the second time also throws an error sometimes. The "easy" fix was to put another try and catch block inside that catch, until I could understand what the hell was happening in that code :laugh:
-
If it fails, try againWhat about a recursive method that runs until it works? That should "fix it" :laugh:
-
If it fails, try againBeacause it will surely work a 100% the second time :-\
SqlCommand cmd = new SqlCommand(query,conn);
SqlDataReader reader = null;
try
{
reader = cmd.ExecuteReader();
}
catch(InvalidOperationException e)
{
cmd = new SqlCommand(query,conn);
reader = cmd.ExecuteReader();
}