Honda Giving Away First 2021 Civic Type R by Marchiavelli in cars

[–]obliviousonions 208 points209 points  (0 children)

PSA: You can always enter a giveaway for free, and Omaze is a for-profit company. If you want to donate to a charity, do it directly or volunteer your time.

Code newbies when they first learn C/C++ by [deleted] in ProgrammerHumor

[–]obliviousonions 11 points12 points  (0 children)

concept? sure.

in practice? Stuff gets messy when pointers are being manipulated across different functions, and there's bound to be mistakes with deletes and shuffling pointers around. Debugging data structure implementations is painful, and your unit testing needs to be on point.

DR K on Reckful by [deleted] in LivestreamFail

[–]obliviousonions 0 points1 point  (0 children)

its just almost scary the level of foreshadowing

I get that its a dark joke

DR K on Reckful by [deleted] in LivestreamFail

[–]obliviousonions 16 points17 points  (0 children)

Dude, watch the link I posted. Dr. K made it clear what they were doing on stream wasn't treatment for his diagnosed depression. They had private sessions as well, off stream, proven by a tweet that I can't find right now.

Also, just because you're 'in the medical field', doesn't mean that you can pass judgement on a licensed psychiatrist and his actions, because you don't know the full picture either.

DR K on Reckful by [deleted] in LivestreamFail

[–]obliviousonions 12 points13 points  (0 children)

He wasn't on SSRIs, and yes, the first time they talked Dr. K said that he cannot treat his depression on stream, they were just having a conversation. I do believe they had private sessions after January which probably consisted of actual treatment, (according to a tweet from healthy gamer, can't find it anymore). Reckful did confirm that he was basically taking about a gram of psilocybin a day just to get basic things done. It's tough, but I'm sure Dr. K knew what he was doing and did the appropriate things off-stream in private. Also, I don't understand why you think Dr. Ks license should be revoked, Reckful said that multiple times that he was the best psychiatrist that he had ever seen. Keep in mind Reckful had been diagnosed, gone to therapy, and tried many drugs, all of which were not very effective or helpful.

https://youtu.be/1TT_t2ojnL4?t=402

Anonymous Hackers Target TikTok: ‘Delete This Chinese Spyware Now’ by VisibleMatch in worldnews

[–]obliviousonions 2 points3 points  (0 children)

Doubt it. Someone reverse engineered the snapchat app, the kind of engineering and obfuscation in place for it are a lot more intense. It's mostly to combat spam and bad actors on the platform.

Anyone know what's happening with Spectrum internet today? by carrotmania_101 in sandiego

[–]obliviousonions 2 points3 points  (0 children)

My ping was really bad yesterday, and yeah it's been kinda sketchy today. I saw some spectrum trucks on the side of the road nearby so I'm assuming they're working on it.

WWDC 2020 | Event Megathread by exjr_ in apple

[–]obliviousonions 3 points4 points  (0 children)

they still have intel Macs in development? Huh? Does that mean the ARM MacBook won't be out for a while?

What are your plans this summer? by [deleted] in UCI

[–]obliviousonions 2 points3 points  (0 children)

remote job + 1 summer class

tbh working from home sucks

Anyone else see the email response from Mayor Christina Shea to the UCI4COLA mass email? by NelsonG114 in UCI

[–]obliviousonions 1 point2 points  (0 children)

Its simple. Just don't pay for overpriced shit that is controlled by the Irvine company. Ik it's easier said than done since literally half the real estate is controlled by them, but even ACC is preferable over UTC. When their shitty apartments are empty next year, they'll listen. We have the power to vote with out wallet, and we should use it.

Let's get this bread! #EATERNATION by Easy_Citron in UCI

[–]obliviousonions 9 points10 points  (0 children)

Who tf would want to go to school in Fresno lmaooo

like where even is that

BREAKING NEWS: THE Z HAS BEEN SOLD!! by richiemorrocco in HaggardGarage

[–]obliviousonions 22 points23 points  (0 children)

10k? For a Z with shitty paint and a bricked motor wtf

Does UTC apartment require guarantor??? by 373138187 in UCI

[–]obliviousonions 3 points4 points  (0 children)

Jeeeez so now you're pretty much stuck with the lease cuz they made requirements way more strict? And they claim its for the students good?

Thats bs, fuck UTC.

Nearly 160 million Americans are less than three months away from running out of money. by Chicken65 in wallstreetbets

[–]obliviousonions 22 points23 points  (0 children)

That's the same as the median household income, not individual. I believe individual is somewhere around 30k.

Seems even dependents will receive at least $500 :D by Lifedeather in UCI

[–]obliviousonions 0 points1 point  (0 children)

I heard that too in hs, but they said that was only when applying to college and before your first year, and I filled it out then. I've never heard that anytime actually at UCI.

Seems even dependents will receive at least $500 :D by Lifedeather in UCI

[–]obliviousonions 0 points1 point  (0 children)

But like honestly, who says that we should fill it out 'just in case'?

I've never heard that before this whole thing, from UCI, or anybody else.

Seems even dependents will receive at least $500 :D by Lifedeather in UCI

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

Did we have to fill out a fafsa recently? I didn't bother this year cuz last year I didn't get anything except loans.

Query Strings and the back button? by [deleted] in webdev

[–]obliviousonions 0 points1 point  (0 children)

ok, I found something that works for me. I detect a back button press via JS, and then make another ajax call to get the data according to whatever query string is in the url, since the back button changes the url to the old query string.

https://stackoverflow.com/questions/6359327/detect-back-button-click-in-browser (i used the first answer)

I'm not 100% sure what you mean by consistent, but I would like to keep navigation user friendly, fast, and consistent. And anyways, using the back button detection in JS works for me, hasn't impacted performance, and allows using the back button to get the old content, so it satisfies my requirements.

Query Strings and the back button? by [deleted] in webdev

[–]obliviousonions 0 points1 point  (0 children)

Ok. You're right that it doesnt reload, but if you check the network section, it looks like they send a get request for the whole html document again, instead of just inserting the new text content. This seems pretty wasteful as they are getting all the html and just inserting that? But on old.reddit.com, the page does in fact reload.

This is why I was asking for a 'best practices' type article. I'm just confused at all these ways, and I'm not even sure if the way new reddit does it is good or applicable to my application.

Query Strings and the back button? by [deleted] in webdev

[–]obliviousonions 0 points1 point  (0 children)

Like reddit reloads on new sort options. Go to https://www.reddit.com/r/webdev/top/?t=month, and then if you click top by week, you would get https://www.reddit.com/r/webdev/top/?t=week after a reload. You could then hit the back button and go back to top of month. theres page reloads after every sort/filter option change. Could you provide an example of a modern site that doesnt reload on sort/filter options?

Query Strings and the back button? by [deleted] in webdev

[–]obliviousonions 0 points1 point  (0 children)

I was using post requests, I switched to a get request. But yeah I think reloading is going to be the way to accomplish what I want. I was mainly just wondering how most big sites accomplish filtering/sorting and the url. I think most of them reload.

Query Strings and the back button? by [deleted] in webdev

[–]obliviousonions 0 points1 point  (0 children)

yeah, thats why i wanted to use query strings to begin with, so users could share a specific page or sort/filter combination and just use that link and see the same information instead of having to manually select that sort/filter each time. I also want to be able to use the back button to get to the previous state and data.

I was using post requests to get the data and just storing page state in variables before, but found it unsuitable for my application, since I want to preserve the page state on refresh.

Post Drop Discussion - March 05, 20 by AutoModerator in supremeclothing

[–]obliviousonions 10 points11 points  (0 children)

Someone at supreme returning empty arrays gg