Click here to Skip to main content
15,888,968 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: WSO CCC OTD 2020-12-09 Pin
5teveH8-Dec-20 21:39
5teveH8-Dec-20 21:39 
GeneralRe: WSO CCC OTD 2020-12-09 - Winner Pin
yacCarsten8-Dec-20 21:47
yacCarsten8-Dec-20 21:47 
GeneralRe: WSO CCC OTD 2020-12-09 - Winner Pin
5teveH9-Dec-20 0:32
5teveH9-Dec-20 0:32 
QuestionMaybe my least favorite programming task other than CRUD creation Pin
honey the codewitch8-Dec-20 16:44
mvahoney the codewitch8-Dec-20 16:44 
AnswerRe: Maybe my least favorite programming task other than CRUD creation Pin
Daniel Pfeffer8-Dec-20 19:32
professionalDaniel Pfeffer8-Dec-20 19:32 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
CodeWraith8-Dec-20 20:11
CodeWraith8-Dec-20 20:11 
AnswerRe: Maybe my least favorite programming task other than CRUD creation Pin
Fueled By Decaff9-Dec-20 1:09
Fueled By Decaff9-Dec-20 1:09 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
honey the codewitch9-Dec-20 1:25
mvahoney the codewitch9-Dec-20 1:25 
1. I'm not sure in the specific since this is a json reader and it depends on what kind of data they're using it for. It would mean practically at least in the abstract that it would accept invalid documents. The way they're invalid is so contrived though that I can't think of what that would even look like for the reader. It basically means it works kind of like overlapping tags do in old HTML except this overlaps your "array" data with your "object" data

2. It's a very finite memory issue. The problem is this JSON reader is designed to parse data of any length and any degree of nesting. That works when you have gobs of RAM like in .NET on a modern laptop but it's much different when you're doing everything on the stack and that stack is small on a 520kB ram TOTAL machine. Worse, I have no idea how much memory I'd need. And the icing on that fail cake is you get no warning when you're out of stack. Your machine reboots. Unsure | :~ This to me seems like a worse problem than accepting potentially invalid documents, now that I think about it. What do you think?
Real programmers use butterflies

GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
Fueled By Decaff9-Dec-20 3:19
Fueled By Decaff9-Dec-20 3:19 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
jsc429-Dec-20 2:51
professionaljsc429-Dec-20 2:51 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
PIEBALDconsult9-Dec-20 3:19
mvePIEBALDconsult9-Dec-20 3:19 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
honey the codewitch9-Dec-20 3:22
mvahoney the codewitch9-Dec-20 3:22 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
PIEBALDconsult9-Dec-20 3:49
mvePIEBALDconsult9-Dec-20 3:49 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
honey the codewitch9-Dec-20 3:54
mvahoney the codewitch9-Dec-20 3:54 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
PIEBALDconsult9-Dec-20 6:47
mvePIEBALDconsult9-Dec-20 6:47 
GeneralRe: Maybe my least favorite programming task other than CRUD creation Pin
honey the codewitch9-Dec-20 6:52
mvahoney the codewitch9-Dec-20 6:52 
General/dev/null as a service PinPopular
Brisingr Aerowing8-Dec-20 15:19
professionalBrisingr Aerowing8-Dec-20 15:19 
PraiseRe: /dev/null as a service Pin
Daniel Pfeffer8-Dec-20 19:31
professionalDaniel Pfeffer8-Dec-20 19:31 
GeneralRe: /dev/null as a service Pin
Johnny J.8-Dec-20 21:03
professionalJohnny J.8-Dec-20 21:03 
GeneralRe: /dev/null as a service Pin
5teveH8-Dec-20 21:30
5teveH8-Dec-20 21:30 
GeneralRe: /dev/null as a service Pin
k50549-Dec-20 3:51
mvek50549-Dec-20 3:51 
GeneralRe: /dev/null as a service Pin
5teveH9-Dec-20 4:05
5teveH9-Dec-20 4:05 
GeneralRe: /dev/null as a service Pin
BabyYoda9-Dec-20 2:57
BabyYoda9-Dec-20 2:57 
GeneralRe: /dev/null as a service Pin
Jörgen Andersson9-Dec-20 5:51
professionalJörgen Andersson9-Dec-20 5:51 
GeneralI did not realize... Pin
David O'Neil8-Dec-20 13:44
professionalDavid O'Neil8-Dec-20 13:44 

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.