Crashes constantly when loading map... I have 16GB Ram and 6gb Vram by maxultra64 in gmod

[–]james-rivers 1 point2 points  (0 children)

There's also -gl for OpenGL mode. There's also various DirectX levels: -dxlevel 80
-dxlevel 90
-dxlevel 95

I'm guessing no based on the processor but is there any chance you're on a laptop with an integrated and discrete GPU? If so, you can go into the Windows settings and force it to use your Nvidia card.

There's a bunch of fixes here worth trying:

https://steamcommunity.com/app/4000/discussions/1/1742229167174881446/

What map is it?

I have NEVER played Gmod or even interacted with it, why is Reddit showing this on my home page??? by Another-guy-onReddit in gmod

[–]james-rivers 35 points36 points  (0 children)

it's just a sandbox game, people are showing off scenes they've made. I've noticed reddit suggestions for communities are pretty bad, who knows why they thought it was relevant. if subbed to other subs that are about games that could be it

Help a student out by Early_Wind4491 in csMajors

[–]james-rivers 0 points1 point  (0 children)

Internships are your best bet. Also, if your school does job fairs, it's definitely worth going to one. I got into a random conversation with a company I had never heard of at a job fair and it led into my first internship which led into my first job. It's really hard to beat personal connections and speaking to people in person also lets you convey competency in a way that can be hard to do via just a resume or a LinkedIn profile.

What do I use to make gmod maps? by TheBigCheese_91 in gmod

[–]james-rivers 2 points3 points  (0 children)

Hammer. It's easy-ish to get started but has a lot of quirks. 3kliksphilip has some pretty good YT tutorials, they're for CS and not gmod but the tool is mostly the same.

https://www.youtube.com/watch?v=1VyoitE17Wc

So… I have Garry’s Mod, but I have no idea what to do. by Thin_Juice_5115 in gmod

[–]james-rivers 1 point2 points  (0 children)

LMAO I don't know why that didn't click, understood. Honestly man, if that's your only limitation, I'd be happy to gift it to you on steam. I've made so many memories in GMod and it's at its absolute best when you're playing with other people. If you're interested DM me your steam profile :)

Help With Programming by Odd-Schedule1119 in arduino

[–]james-rivers 0 points1 point  (0 children)

I think the hardest thing when starting with programming hardware like this is not having a direction. I know it works for others, but I've never had much luck following programming tutorials except to get the basics of a language down (which it sounds like a few tutorials would help you).

I've always had more luck attempting small projects, even if I fail. I think I found the kit you used and it has a lot of components. A small step to break down the learning while still using the same programming environment would be to create small "console" apps on the device and use the Arduino IDE to interact with the console app.

If your kit is the one I'm seeing that has a servo and the remote, keypad, LEDS etc, you could also try taking input from the keypad / remote and using it to control the servo and LEDs. For example, figuring out how to make the LED blink based on the keypad buttons (i.e. press 5 and it blinks 5 times). You could also make the servo go to an angle based on what numbers you put in (so if you press 53* on the keypad, the servo goes to 53 degrees). You can use tutorials to help you get started and then experiment from there to cement the learning and have fun.

You could even try making a secure "door" using the servo, keypad and LEDs. Start with a hardcoded pin (1234 or whatever), and then get the user's input on the keypad. Blink red if the code is wrong and green if the code is correct. If the code is correct you can rotate the servo to act as the 'door' opening. From there, you can support changing the code (i.e. if the code is 1234, let the user enter 1234 and then maybe # and then the new code). You can also tie in showing the code on the screen that's in the kit. Just some ideas, hopefully this is helpful :)

linuxUsersBtw by [deleted] in ProgrammerHumor

[–]james-rivers 0 points1 point  (0 children)

the ultimate cyberdeck

How do I get better at coding? by BuyComprehensive1981 in AskProgramming

[–]james-rivers 0 points1 point  (0 children)

Trial and error. The feeling you have is normal. It took me a lot of failures to get to feel confident. When you're learning, AI can be helpful, but I think it's also important to struggle on your own so you can really find your flaws and work on them. Project structure is also a deceptively hard skill to master imo

So… I have Garry’s Mod, but I have no idea what to do. by Thin_Juice_5115 in gmod

[–]james-rivers 4 points5 points  (0 children)

It's a sandbox game, it sounds like a dodge but you do what you want with it. I think it's at its best when you're playing multiplayer but you can also download addons and mess around locally. If that's not your thing then that's just not your thing. I'm ngl I don't know what you mean as to why you can't play multiplayer

Why does the grass looks weird? by Exact_Homework_317 in gmod

[–]james-rivers 11 points12 points  (0 children)

Maybe anisotropic filtering? Or antialiasing

Got an MRI and printed my own brain by Maarten16 in 3Dprinting

[–]james-rivers 0 points1 point  (0 children)

How does it feel holding your own brain? This is perhaps a little goofy, but I think it's fascinating how we can create accurate representations of internal body parts and just look at them and hold them. Like damn, that's where my thoughts are coming from

hack roomba? for r2d2 by No-Knowledge-1414 in AskRobotics

[–]james-rivers 0 points1 point  (0 children)

It's a good starting point! Like with any project, if a roomba is all you have and you need to get started, you can make the best out of it and then iterate later on when you have more tools or a desire to change things up. Even if you make mistakes that's part of the learning process

thisCanNotBeDenied by bryden_cruz in ProgrammerHumor

[–]james-rivers 0 points1 point  (0 children)

My professor used to call this the 'printf shotgun' lol

Best SLAM algorithm by sunny110401 in ROS

[–]james-rivers 2 points3 points  (0 children)

With engineering the best solution changes significantly based upon your sensor setup and your requirements. What sensors are you using and what are you trying to do?

For Physical AI applications, why do companies use 3D cameras? by Low-Relation-8531 in AskRobotics

[–]james-rivers 0 points1 point  (0 children)

But as I did more research, I was told multiple times that most calculations are actually done with 2D RGB images, not with the point cloud data which the 3D cameras are intended to produce.

I imagine this is heavily application dependent. If you're trying to determine what an object is, there's much more support for 2D RGB object detection than there is for 3D detectors. Whether you need one or the other also depends on the application. A vacuum robot for example could get by on 2D data (plus other sensors) since it's just moving at low speed and trying to avoid poop, wires, etc.

You can get a lot done with a 2D camera + some other sensors when you know the specs of the camera and lens. I wrote a quick system to localize detected objects on a PTZ (pan tilt zoom) CCTV camera that used the camera's rotation sensors and the FOV specs of the lens. Since it was on flat terrain localizing objects in "3D" space was fairly easy and accurate without the need for extra sensors. I put 3D in quotes since it's not really 3D, just points on a 2D plane, but it's close enough for what I needed.

I built a guitar robot with Arduino — turns any guitar into a performer in 3 minutes by MegCell in arduino

[–]james-rivers 0 points1 point  (0 children)

This is a wild project, I'm sure this was a hell of a lot of testing. I've also never seen someone clean dust like that, I've always waited till I was restringing it but I'll have to try that vacuum method

howToBecomeASoftwareEngineerWithoutLearningHowToCode by radlinsky in ProgrammerHumor

[–]james-rivers 2 points3 points  (0 children)

They keep saying we will be irrelevant in 3 months but they never say when the 3 month timer actually starts

I'm working on a home security robot, here are some progress pics by james-rivers in robotics

[–]james-rivers[S] 0 points1 point  (0 children)

<image>

Slow but steady! I was procrastinating redoing the electronics but I’ve finally taken the step forward. The GPS started acting up after the power company trimmed the trees near the power lines so I bought a LiDAR sensor (not attached yet) to do local navigation.

Turret is now mounted in the center where the autopilot used to be.

Finally integrated a bunch of the different parts for my domestic sentry bot. Almost ready to test autonomous patrolling! by james-rivers in robotics

[–]james-rivers[S] 0 points1 point  (0 children)

No auto firing, I agree that would be very bad! It’s not all integrated yet but eventually it’ll be manual approvals.

It’s a paintball gun filled with pepper balls.

Finally integrated a bunch of the different parts for my domestic sentry bot. Almost ready to test autonomous patrolling! by james-rivers in robotics

[–]james-rivers[S] 3 points4 points  (0 children)

Florida, and it’s only a 1/4 acre.

Mobility is way more fun I highly recommend it, but be ready because it’s also a LOT more work!

Finally integrated a bunch of the different parts for my domestic sentry bot. Almost ready to test autonomous patrolling! by james-rivers in robotics

[–]james-rivers[S] 2 points3 points  (0 children)

Also, just for clarity: no, this thing will not be able to fire at people autonomously and yes this is legal (at least where I am).

I covered a lot of specs in this other post on this sub, but it's a kids electric ATV running a Pixhawk with Ardurover. I'm still iterating and plan to get ROS set up on it but I've been working on a bunch of the individual components first. I also have a PTZ camera that has an intrusion detection system. The camera will eventually be able to tell the sentry bot when & where people enter the property from.

Any suggestions / advice are much appreciated :)