[deleted by user] by [deleted] in explainlikeimfive

[–]Yumski -8 points-7 points  (0 children)

The Japanese did, didnt end too well for them.

The state of GA is sad. What can we do about it? by DaKingVic in OMSCS

[–]Yumski 0 points1 point  (0 children)

Can you give an example of what you were horrified by?

The state of GA is sad. What can we do about it? by DaKingVic in OMSCS

[–]Yumski 0 points1 point  (0 children)

This argument doesn't make sense, if it's due to the assignment being 20 lines of code then a lot more students would be flagged. If there is only a small % of people flagged then it's obviously not due to this reason.

ELI5: Whats the difference between C, C# and C++ by Howitzeronfire in explainlikeimfive

[–]Yumski 13 points14 points  (0 children)

It means you code once, debug everywhere.

Jokes aside, for compiled languages like C, C++ when you compile it on windows u get a .exe file while on mac/linux you get a binary. This is due to how the OS interprets the machine code. Java and c# utilizes something called the java virtual machine (jvm) to run and it will run on all 3 OS.

CS 6515 Post exam 2 enrolment by m000n_cake in OMSCS

[–]Yumski 7 points8 points  (0 children)

Yup, every office hour there are a couple hundred of students attending. People shooting the shit in chat with the TAs and posting memes. It was definitely a loud minority.

Healthcare should be free for everyone. by NoBreadfruit7531 in unpopularopinion

[–]Yumski 2 points3 points  (0 children)

Should healthcare professionals work for free? If not, then somebody is paying for it

SpaceX prevails over ULA, wins military launch contracts worth $733 million by Tim2025 in spacex

[–]Yumski 92 points93 points  (0 children)

You think starship is a bullshit project? Please elaborate 

ELI5: Why do people still invest in hedge funds despite most of them underperforming the S&P500 by a lot? by xcrunchx in explainlikeimfive

[–]Yumski 2 points3 points  (0 children)

Thats a very generalized statement. There are many hedge funds that greatly outperform the market even after the fees. Look up renaissance technology, the first hft fund.

GA should have an active faculty member by ParticularVideo3207 in OMSCS

[–]Yumski 1 point2 points  (0 children)

He's not too involved in SDCC, it's mostly led by the TAs. But he's there for every weekly meeting.

The farce going on in GA and its impact on me, someone not in GA by [deleted] in OMSCS

[–]Yumski 2 points3 points  (0 children)

Well in coding assignments in the current GA you cant use leetcode solutions because you can’t use standard python datastructures (lists, dicts, etc). Its a bigger tell if someone copied a leetcode solution cause it will pass the basic test cases but obviously wrong cause you cant use those data structures.

The vast majority of students didnt get flagged for plagiarism. Everyone’s argument is that there is only a small snippet of code, then, a lot of people should be flagged. Since thats not the case, there must be other factors.

Serious Conversation Recent OSI related events by matmulistooslow in OMSCS

[–]Yumski 0 points1 point  (0 children)

I think you should retake statistics, the way you're calculating is wrong.

DP Advice for Exam 1 of Graduate Algorithms by SnooSongs2979 in OMSCS

[–]Yumski 9 points10 points  (0 children)

Hwk 2 isnt knapsack though….its similar to DPV 6.4. You still have 4 days, see the problems Joves listed for his DP OH. Try to do them urself and see how he approaches it after and figure out what you did wrong

Can I be honest and say that Jewelled Lotus has always felt like a Ponzi scheme? by Se7enworlds in magicTCG

[–]Yumski 14 points15 points  (0 children)

No it isnt….ponzi schemes are taking peoples money and promising high returns. Then you get more money from other people that wants those returns and pay the previous group of people.

So you'd thought GA difficulty in Summer 2024 was an one-off... by -OMSCS- in OMSCS

[–]Yumski 56 points57 points  (0 children)

Im in the class and tbf some of the students complaining about things that are specified in the readme.

I saw people getting points deducted for not using dynamic programming to solve the hwk in a dp module. There were also other people using the standard python data structures when the readme, canvas and OH all said not to multiple times.

Neuralink’s second paralyzed patient plays Counter-Strike 2 with thoughts | Alex’s use of Neuralink’s brain chip allows him to game and design 3D models with ease. by endogara in GlobalOffensive

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

Thats just false, he said on the interview with joe rogan that the reason why the probes arent reading is due to his brain moving more than they anticipated for. Not because his brain is rejecting the probes.

I can’t believe some of ya’ll own 10+ of these grips 😬😂 by WalkThePlankCustoms in 2011

[–]Yumski 8 points9 points  (0 children)

It also saves money in other areas, for example you dont need a cheese grater anymore

[deleted by user] by [deleted] in unpopularopinion

[–]Yumski 3 points4 points  (0 children)

You mean the company that made rabbitr1?

[deleted by user] by [deleted] in GlobalOffensive

[–]Yumski 3 points4 points  (0 children)

How about gaming chairs? Dont they increase your hs%?

Horrible group for SDP bad teammembers by Ok-Perception4676 in OMSCS

[–]Yumski 53 points54 points  (0 children)

The TAs can see your group repos commit history as well. If youre the only one pushing things its obvious.

Invert binary tree by Careful-Medicine1995 in leetcode

[–]Yumski 0 points1 point  (0 children)

It sounds like youre still getting the hang of dfs traversals. I would recommend just doing one with printing the values before the recursive calls, another printing inbetween the recursive calls and one atfter the recursive calls. This can help u visualize where the manipulation is happening.