Click here to Skip to main content
15,891,033 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: RESTful API Designing guidelines — The best practices Pin
agolddog23-Dec-19 3:09
agolddog23-Dec-19 3:09 
GeneralRe: RESTful API Designing guidelines — The best practices Pin
Andrew Rissing23-Dec-19 6:10
Andrew Rissing23-Dec-19 6:10 
GeneralRe: RESTful API Designing guidelines — The best practices Pin
tjwise24-Dec-19 6:19
tjwise24-Dec-19 6:19 
GeneralWoohoo! Pin
honey the codewitch19-Dec-19 10:13
mvahoney the codewitch19-Dec-19 10:13 
GeneralRe: Woohoo! Pin
  Forogar  19-Dec-19 10:18
professional  Forogar  19-Dec-19 10:18 
GeneralOnce Again I'm Forced To Report Pin
W Balboos, GHB19-Dec-19 5:43
W Balboos, GHB19-Dec-19 5:43 
GeneralRe: Once Again I'm Forced To Report Pin
MarkTJohnson19-Dec-19 7:23
professionalMarkTJohnson19-Dec-19 7:23 
RantVB.NET is hateful Pin
honey the codewitch19-Dec-19 5:11
mvahoney the codewitch19-Dec-19 5:11 
I have to do so much processing to the codedom just to get VB to choke it down.

Why? The language is STUPID. That's why. There's no more succinct and accurate way to put it.

The grammar is stupid.
The runtime is stupid.
The language overall, is stupid.

You have two different equality operators you have to use depending on whether you're comparing reference types or value types. Because of that I have to visit every damned == and != in the tree, do type resolution on both sides of the expression (slow) and then based on that determine whether I should say "=" or "is"

Stupid.

You have to explicitly name your public implementation types for a method. So if i want to implement IEnumerator<t>.Current I have to also have Implements IEnumerable(of T)

This means for every public method you declare i have to go through all the base types of its declaring class, resolving each one (slow) to see if it matches the method signature (slow) of the declared method, so i can add Implements.

Stupid.

And don't get me started on the bugs in the VB codedom

It has taken me 2 hours just to fix all that crap

Mad | :mad: Angry honey. Mad | :mad:

/rant
When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

GeneralRe: VB.NET is hateful Pin
Richard Deeming19-Dec-19 5:26
mveRichard Deeming19-Dec-19 5:26 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 5:28
mvahoney the codewitch19-Dec-19 5:28 
GeneralRe: VB.NET is hateful Pin
Richard Deeming19-Dec-19 5:35
mveRichard Deeming19-Dec-19 5:35 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 5:46
mvahoney the codewitch19-Dec-19 5:46 
GeneralRe: VB.NET is hateful Pin
Richard Deeming19-Dec-19 5:54
mveRichard Deeming19-Dec-19 5:54 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 5:55
mvahoney the codewitch19-Dec-19 5:55 
GeneralRe: VB.NET is hateful Pin
User 1106097919-Dec-19 6:00
User 1106097919-Dec-19 6:00 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 6:03
mvahoney the codewitch19-Dec-19 6:03 
GeneralRe: VB.NET is hateful Pin
obermd26-Dec-19 9:51
obermd26-Dec-19 9:51 
GeneralRe: VB.NET is hateful Pin
Rick York19-Dec-19 7:26
mveRick York19-Dec-19 7:26 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 7:30
mvahoney the codewitch19-Dec-19 7:30 
GeneralRe: VB.NET is hateful Pin
Rick York19-Dec-19 8:37
mveRick York19-Dec-19 8:37 
GeneralRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 8:39
mvahoney the codewitch19-Dec-19 8:39 
GeneralRe: VB.NET is hateful Pin
Marc Clifton19-Dec-19 7:49
mvaMarc Clifton19-Dec-19 7:49 
GeneralRe: VB.NET is hateful Pin
Cp-Coder19-Dec-19 8:22
Cp-Coder19-Dec-19 8:22 
QuestionRe: VB.NET is hateful Pin
Eddy Vluggen19-Dec-19 16:26
professionalEddy Vluggen19-Dec-19 16:26 
AnswerRe: VB.NET is hateful Pin
honey the codewitch19-Dec-19 16:28
mvahoney the codewitch19-Dec-19 16:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.