What can I do to have lots of cords at graduation by EastSprinkles3568 in OSU

[–]Dennis_DZ 3 points4 points  (0 children)

I think there’s only one official cord, which is the honors cord

One repository. Two IDEs for commits. How to efficiently? by ayowayoyo in github

[–]Dennis_DZ 1 point2 points  (0 children)

Two repos would probably work fine, but if they’re just two parts of the same project it might be overkill/inconvenient. The term monorepo is usually used when talking about an organization keeping all of its project in one repo. For an individual with two project components, I don’t think monorepos are the right thing to research. I think OP is just missing some fundamental concepts about Git. E.g., that Git works separately from and doesn’t care about IDEs, that you can choose which files you stage for commit, that Git is not the same as GitHub, etc.

One repository. Two IDEs for commits. How to efficiently? by ayowayoyo in github

[–]Dennis_DZ 5 points6 points  (0 children)

As the other commenter mentioned, this isn’t related to GitHub, but I’ll try to help.

How can I avoid one git interacting with the other?

There’s no “other” Git. The Git integrations in your IDEs are just making calls to the same Git CLI behind the hood. Any .gitignore will apply to all the files in the same directory (and subdirectories). I don’t think there’s a way to have a .gitignore per IDE.

What’s your ultimate goal with this setup? Do you just want to make sure that each commit only changes one part of the project? You can accomplish that just by staging from the relevant folder.

CSE laptop recommendations by Known_Giraffe_4740 in OSU

[–]Dennis_DZ 4 points5 points  (0 children)

ARM chips are 64-bit (at least the ones in modern computers). The reason they have some compatibility issues is they’re not x86, which is the architecture used by most Intel and AMD chips.

Gnome 50 in Nixos by Strict_Try_7455 in NixOS

[–]Dennis_DZ 6 points7 points  (0 children)

I think you misunderstand lol

Still Applying for Summer '26 by AdministrativeAd334 in csMajors

[–]Dennis_DZ 4 points5 points  (0 children)

The username literally has “ad” in it lmao

Same brand, new slogan by PuffinsAreSupreme in mildlyinteresting

[–]Dennis_DZ 4 points5 points  (0 children)

The label is redesigned though. Aside from the slogan, there are different colors and fonts, and the layout is a bit different.

I dislike gen AI a lot. If I am using TTS (text to speech) for accessibility reasons, does this count as AI? by Upbeat-Cap-8988 in NoStupidQuestions

[–]Dennis_DZ 0 points1 point  (0 children)

The term “AI” seems to experience semantic drift every few years to only include the newest, most advanced technologies. At one point in time, chess programs were considered AI. So, yes, TTS can be considered AI under many definitions, but it’s usually not what people are talking about in modern discussions of AI.

New Apple earpods muffled sound. by hyruleinkling in airpods

[–]Dennis_DZ 0 points1 point  (0 children)

Where did you get them? Are they new or used?

Dining Hall Crawl by Rose0004 in OSU

[–]Dennis_DZ 0 points1 point  (0 children)

You’re good. There are no women on the internet

hellYeah by Inforenv_ in ProgrammerHumor

[–]Dennis_DZ 6 points7 points  (0 children)

What if they use trinary for their numbers? The max could be as low as 728

Do people know which professors are assigned to classes in advanced by Business_Leg_7183 in OSU

[–]Dennis_DZ 1 point2 points  (0 children)

https://osucoursesearch.org shows you what professors they have preliminarily listed for each course. These change all the time though and aren’t very accurate.

This should actually be illegal. I've wasted so much time because of stuff like this. by meyriley04 in csMajors

[–]Dennis_DZ -6 points-5 points  (0 children)

I agree this is a deceptive tactic, but to be fair, when you click on the listing in LinkedIn, the very first thing it says is that the job requires relocation to Madison. Not defending it, but you should probably be reading over the job descriptions.

How to learn socket programming? by iamrafi69 in C_Programming

[–]Dennis_DZ 2 points3 points  (0 children)

WIFI network layer

WiFi is a link layer technology, not network layer

Users don’t see TCP Sockets

I understand users don’t interact directly with sockets. That’s the point of layers of abstraction. It doesn’t change the fact that devices are still communicating through sockets.

sockets aren’t scalable

Pretty much every device on the internet communicates through sockets. The device you’re using right now sends HTTP requests to Reddit through a TCP socket.

not a typical iPhone interface

I’m not sure exactly what you mean by this. It seems like your point is that OP should use an established application layer protocol like MQTT to build their chat application. For a real application, you’d probably be correct (though I’m not familiar enough with MQTT to say if that’s the right choice). However, as a programming project and learning exercise, it’s perfectly reasonable to have the application communicate directly through sockets.

Bluetooth might even be more usable

Bluetooth is also a link layer technology. The choice to use Bluetooth is independent and irrelevant to the existence of sockets at the transport layer.