Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
You have arrived at the "Go to bed, u're high, more coding just make it worse" checkpoint
-
ajfmo1227yTake a good rest! Tomorrow is another day, full with New oportunities, so don't worry to much, solution Will come, eventually...
-
Been there done that. My reaction has always been, why am I so fucking stupid.
Related Rants
-
kurtr12I just walked passed 2 technologically impaired ladies in my office (the kind who think google is on their act...
-
nachocode3Apparently after 14 hours of coding, my sleepy version is happy with !>= instead of <=
-
QueenMorgana14I've been working since 0700. It is now 2343 and we may have 90 more minutes. I'm going to be unpleasant tomor...
I have an array of 1037 records. The soap service only accepts 100 at a time. So, I write code to send an array of 100 records at a time to the soap service in a loop and get a response back of, "The maximum number (100) of records allowed for this operation has been exceeded." Well, I'll try 99 records then. Nope same error. I'll try 50 records, nope I'll just bang my head on the desk now since the documentation and error say it is a record limit of 100. 😠
Look at my code again. I was grabbing 100 records out of the array of 1037 records and storing it in a new array, but I was sending the original array with 1037 records instead of the temporary array in the loop. 😢 I'm going to bed.
rant
soap
need sleep