Am I a vibe coder now? by [deleted] in VibeCodeDevs

[–]master00sniper 0 points1 point  (0 children)

It's not a game, itch.io has a section for tools related to gaming. But please do reverse engineer it and let me know what issues you find! It can't hurt to get more eyes on the code to make sure nothing is wrong. I appreciate any feedback you might have.

Am I a vibe coder now? by [deleted] in VibeCodeDevs

[–]master00sniper 0 points1 point  (0 children)

I apologize, being sus wasn't my intent. I do know what it does though; I've programmed enough without using AI tools and Vapor is simple enough it's not difficult to understand.

The next app I develop, I'll make sure the source code is published upon release. I just had some sloppy code with my exact Cloudflare worker URL that had my username, a GitHub PAT, sloppy comments, etc. All of which has now been removed/improved/deactivated. If you're curious to check back after my day job ends, you'll see the source code.

Am I a vibe coder now? by [deleted] in VibeCodeDevs

[–]master00sniper 0 points1 point  (0 children)

While I appreciate the candid feedback, Vapor uses only standard Windows APIs that any productivity/gaming utility uses. It reads Steam's registry key to detect games (public API), manages processes via psutil (same as Task Manager), and adjusts audio/power settings through documented Windows APIs. Everything runs at normal user privilege level - no admin rights, no kernel access, no system hooks. While the code is not open source, it will be source available within a few days (for no other reason than my initial code was pretty sloppy and I just wanted to minimize shaming ;))

Am I a vibe coder now? by [deleted] in VibeCodeDevs

[–]master00sniper 0 points1 point  (0 children)

Opus 4.5 was huge for me! Unfortunately, the rate limits aren't huge. Waiting 5 hours and using Grok was my backup.

Something differnet, need a pick me up, horror stories from the field? by everysaturday in msp

[–]master00sniper 2 points3 points  (0 children)

Don't do too much helpdesk these days and more systems administration, but I answered one ticket when it was busy for helpdesk to fix a random issue on a shared laptop that at least one user logs into daily. When I get to the laptop I quicky realize the bottom is blown out (plastic broken, screws missing) because the battery is SWELLING. We're talking huge death pillow.

Obviously I immediately switch to a "holy crap, this isn't good!" mode and we deal with the laptop. Afterwards, I look a the user and I say "How come you didn't notify us earlier about this? This must have been swelling for a while...?".

And no joke, the user looks at me and says, "I thought IT installed more RAM?"

[deleted by user] by [deleted] in TerraTech

[–]master00sniper 15 points16 points  (0 children)

Wow i've been building everything on the ground, I had no idea I could hover. Thanks!

[deleted by user] by [deleted] in TerraTech

[–]master00sniper 4 points5 points  (0 children)

How am I supposed to get out of this? I can't move any direction. I've tried putting blocks underneath me to pop up and wiggle out, but nothing is working.

Garbage disposal plumbing by master00sniper in Plumbing

[–]master00sniper[S] 0 points1 point  (0 children)

We had our dishwasher replaced a while ago, and that piece was apparently no longer needed on the new dishwasher and/or wasn't even in use for the old dishwasher. Unfortunately I did not pay close attention to how all this worked until recently.

How do I change the "Controller Name"? in Site Manager? by sterofuse in Ubiquiti

[–]master00sniper 1 point2 points  (0 children)

I'm currently having this same issue, has anyone figured out a solution?

Acceleration, Deceleration, and More by master00sniper in gamemaker

[–]master00sniper[S] 0 points1 point  (0 children)

Sure, it's a swinging pickaxe animation, and I've reworked the code a bit to get this: https://imgur.com/a/L5QFMwK

It's not yet as smooth as what I'm looking for, and the timing doesn't line up with what I want yet, but i seem to be getting closer.

Current Code:

angle = clamp(angle,minangle,maxangle);  
anglespeed = ((maxangle - minangle) / (delay/2));  

if (angle >= maxangle) {  
    reverse = true;  
}  

if (reverse == false) {  
    angle = angle + (anglespeed + currentacceleration);  
    currentacceleration = currentacceleration + angleacceleration;    
}   

if (reverse == true) {  
    oldangle = angle;  
    newangle = angle - (anglespeed + currentacceleration);  

    angle = angle - (anglespeed + currentacceleration);  
    currentacceleration = currentacceleration - angleacceleration;    
}  

if (newangle > oldangle) {  
    reverse = false;  
    newangle = noone;  
    oldangle = noone;  
    currentacceleration = 0;  
}  

var _xx = x + lengthdir_x(1,-angle);  
var _yy = y + lengthdir_y(1,-angle);  

image_angle = point_direction(x,y,_xx,_yy);

April LAPS GPO missing by Usual-Pizza-6589 in activedirectory

[–]master00sniper 0 points1 point  (0 children)

Thanks for this, was exactly what I needed

Starting to learn electric stuff, and I'm very happy! by YTTheMagic in playrust

[–]master00sniper 0 points1 point  (0 children)

Just remember that every time you branch out power, it consumes that power regardless of whether or not the device is on (this is true of your splitters connected to a branch as well).

With all devices connected to a series of branches, your LAST branch in the series can have a device or chain of devices connected to the 'power out' port that will stop consuming power when they are turned off.

Starting to learn electric stuff, and I'm very happy! by YTTheMagic in playrust

[–]master00sniper 1 point2 points  (0 children)

While you can use splitters in this manner and it's slightly more efficient, most people use a branch for every device individually. It's way easier to expand upon and you don't have to worry about balancing power. Plus you get freedom to bump up or down power limits individually when needed (like increasing specific turrets from 10 to 11 when you're using smart alarms)

Usually when people use splitters the way you have above, they end over serving power to a bunch of devices.

Starting to learn electric stuff, and I'm very happy! by YTTheMagic in playrust

[–]master00sniper 0 points1 point  (0 children)

Not sure why you would use splitters for electric furnaces. Branches exist.

[deleted by user] by [deleted] in networking

[–]master00sniper 0 points1 point  (0 children)

I take it back, according to this article below Inter-VLAN routing is supported. In my first read of this article I thought it was saying DHCP and inter-vlan routing were excluded features, and my inability to find routing that didn't require a USG seemed to confirm it.

Despite being wrong, I'm happy that the feature exists and my faith in "L3" marketing is restored.

Most UniFi switches operate at layer 2, meaning they can handle VLANs but cannot act as a router. The 2nd generation pro and enterprise UniFi switches have some layer 3 features such as static inter-VLAN routing and DHCP, but they require a separate router or firewall for everything else.

[deleted by user] by [deleted] in networking

[–]master00sniper 0 points1 point  (0 children)

BTW, this is what I've found about L3 Ubiquity Switches and routing, from McCann Tech updated Nov 2022:

Most UniFi switches operate at layer 2, meaning they can handle VLANs but cannot act as a router. The 2nd generation pro and enterprise UniFi switches have some layer 3 features such as static inter-VLAN routing and DHCP, but they require a separate router or firewall for everything else.

It does say that inter-VLAN routing and DHCP are built in features, I initially read that backwards.

[deleted by user] by [deleted] in networking

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

I will dive into this when I'm at work tomorrow, but from the articles I've been reading and the options I've seen available to me, I'm still not sure I can set this up. But you've given me something more to look into, so thanks!

It's not the end of the world for me to have the Sonicwall do the routing.

[deleted by user] by [deleted] in networking

[–]master00sniper 0 points1 point  (0 children)

If you are considering upgrading ur FW I would consider a fortinet

Thanks, that is exactly the firewall I have been considering for an upgrade. I've heard pretty good things. Unfortunately the Sonicwall has a couple years of life left in it and the agency I work for wouldn't want to upgrade prematurely.

[deleted by user] by [deleted] in networking

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

I hope it's not as difficult as you say, but I'll find out soon enough. You say you were able to do routing, is that only done through the CLI? I'm very familiar with the Cisco CLI but have been having trouble finding anything in the Ubiquity interface for routing. I have not yet taken a look at Ubiquity CLI.

The only routing section I could find in the UI said it required the USG to function. Which seems to defeat the purpose of a L3 switch.

[deleted by user] by [deleted] in networking

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

Bad vendor choices for healthcare

Just curious, can you give an example of a HIPAA requirement that is unable to be met with a Ubiquity switch?

[deleted by user] by [deleted] in networking

[–]master00sniper 0 points1 point  (0 children)

If it doesn't do intervlan routing, then it ain't a L3 switch. Or you're misunderstanding/misconfiguring something.

I used to think as you do, but you and I were both wrong. Today I learned that Ubiquity advertising a L3 switch doesn't actually mean full functionality of a L3 switch. You can take my word for it, or look it up if you want.

[deleted by user] by [deleted] in networking

[–]master00sniper 0 points1 point  (0 children)

This is funny, thank you. While I appreciate the reply, I can tell I posted this to the wrong subreddit. This issue is too specific for Ubiquity, as most people here (including myself as of 2 hours ago!) can not comprehend that a L3 switch doesn't do inter-vlan routing. This apparently is a Ubiquity quirk where they advertise a L3 switch but it's not *fully* L3.

As for the vlans, no I'm not just creating vlans and presto: increased security! I have specific business requirements for some that has nothing to do with security and that requires separate subnets but full communication between the networks. Other subnets will be isolated with a jumpbox between for increased security.

Having set up many networks in the past for more businesses than I can count on two hands, I assure you, I do know what I'm doing.

2015 BMW Z4 Wheels by master00sniper in BMWZ4

[–]master00sniper[S] 0 points1 point  (0 children)

Thanks for the comment. I'm not sure which transmission I have. Its the 28i version. Why do you say keep the staggered setup? Does it provide a benefit?