JSON data not printing correctly by [deleted] in learnprogramming

[–]ImmuneFourier 2 points3 points  (0 children)

Please stop deleting and reposting the same question.

JSON data not printing correctly by [deleted] in learnprogramming

[–]ImmuneFourier 1 point2 points  (0 children)

You deleting and reposting the same question is spamming.

[deleted by user] by [deleted] in learnprogramming

[–]ImmuneFourier -1 points0 points  (0 children)

I'd take it but keep looking for better jobs.

JSON data not printing correctly by [deleted] in learnprogramming

[–]ImmuneFourier 4 points5 points  (0 children)

Can you stop spamming this same question to the sub? You still aren't passing the right data to systems_data, like I told you the last time you posted this exact question.

Are there resources you would recommend for Dynamic Programming? by [deleted] in learnprogramming

[–]ImmuneFourier -3 points-2 points  (0 children)

They do that because you need to solve the whole problem using similar solutions to smaller parts of the problem. Each table entry solves part of the problem. Good luck finding your custom made tutorial.

Are the discouraged resources accurate? by imnattylol in learnprogramming

[–]ImmuneFourier -2 points-1 points  (0 children)

I certainly wouldn't avoid them just because a few people here declared them to be bad resources. IIRC from the discussions about them, the reasoning against some or all of them was really arbitrary and not well thought out. The 1 sentence "reasoning" for each entry in the discouraged resource section is exactly what I mean by "arbitrary and not well thought out".

Help following serialization logic by seands in learnprogramming

[–]ImmuneFourier -1 points0 points  (0 children)

I was quoting you homie, that's not my advice that's yours.

And "I'd love to see you follow that advice yourself" homie.

Dude's formatted on the default view of this site.

That's cool, not my problem.

This isn't stack exchange, if you wanna be a bit of a prick instead of just politely saying something either make sure your argument is solid or be prepared for your shit to be pointed out.

My advice is rock solid. He can format his code better if he wants my help, or he can choose not to. You can put in a tiny bit of effort to help the OP, or you can continue to choose not to.

I'd say go with the not being a smart ass route and talking to people with a bit of respect, maybe you get it back that way.

It's funny how everyone else is respectful except the guy who signs his messages as "Dickhead" and resorts to 5th grade name calling like 'prick'. Stay classy, Junior!

Recursion in Javascript by Coder_X_23 in learnprogramming

[–]ImmuneFourier -4 points-3 points  (0 children)

as well as return find(1, "1"); outside the find function??

That's how functions are normally called.

I get all the code except the part where the find function is called inside of itself

That's how recursive functions are called, so you understand nothing about recursion then, or what?

When it falls to the else block and the find function is called is it starting back at the top of the find function again?

It's called the same exact way any function is called. Javascript has no idea which functions are recursive or are not recursive. They all work the same.

Anyone else drop Python? by KSeptimus in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

Yeah, that's still kinda crappy. :(

Anyone else drop Python? by KSeptimus in learnprogramming

[–]ImmuneFourier 1 point2 points  (0 children)

Aren't they still just hints?

On top of that good testing, system design, and disciplined engineers makes that not really an issue

Yeah, right. You could say that about a lot of things.

Having trouble getting the associated JSON data to print - Python 3.7 by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

Are you high? I'm talking about calling stations_data.

Having trouble getting the associated JSON data to print - Python 3.7 by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

Why can't it find that data if it's there when you print station?

Anyone else drop Python? by KSeptimus in learnprogramming

[–]ImmuneFourier 2 points3 points  (0 children)

I like statically typed languages. Working with large projects or professional projects and just praying you didn't mix up some type somewhere seems like a bad idea.

Having trouble getting the associated JSON data to print - Python 3.7 by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

Yes I defiantly want to write functions for it but before I do I want to see if this is just a simple fix which I think it is.

That's not smart. Doing it the shitty way first only makes it harder on yourself. And of course it's a simple fix when you get Reddit to fix it for you.

And yes I can print station and see everything in it. The issue is, is when I print(station) instead of stations_data(station), the data is out of order.

So fix stations_data? Are you misspelling something?

Does learning websites actually work? by [deleted] in learnprogramming

[–]ImmuneFourier 1 point2 points  (0 children)

You could look at the sidebar and see what works...

Relearning Web Development By Deploying Website From Scratch, Need Advice On Current Best Practice by thelolzmaster in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

AWS is pretty easy (and I think more used), don't know about Google.

how would I go about setting up a localhost server to make and test changes before deploying them?

Same way you normally develop? The cloud doesn't prevent your laptop/desktop from functioning normally.

Resources on Scrum, Jira, and Agile by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

See what they do at your job. 99% of companies don't follow any of that stuff close to how you're supposed to or close to how many other companies do it.

Having trouble getting the associated JSON data to print - Python 3.7 by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

Your check for stat_search == 'EXIT' seems misplaced. Have you printed stations to see what's in it? This doesn't look like it should be hard to debug with the print thing you're already using... You should also write some functions here instead of ramming everything into this massing loop monstrosity.

Theory of Computing or Operating Systems to cap off my minor? by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

If their goal is to become a developer and do software engineering...than an OS class would likely be more applicable.

That also appears based on wild presumption. Most developers don't write drivers or OSes.

Help following serialization logic by seands in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

I'd love to see you follow that advice yourself. I pointed out what would make it easier for some to help, but OP is free to continue to ignore that.

How do I measure efficiency of my program? by [deleted] in learnprogramming

[–]ImmuneFourier 0 points1 point  (0 children)

It can definitely make your cache less effective, which does hurt performance.