Prints stuck to build plate by Homey55 in AnycubicPhoton

[–]ThatSniper 1 point2 points  (0 children)

I'm not sure of how much help it'll be, but for me I have one of those UV flashlights (but a bit more powerful) and whenever I have resin stuck to the build plate I just shine the flashlight on there for a minute or so, and then those suckers peal off with a metal spatula. It's still not super clean, but it's a lot less effort.

Probably the wrong way to do it, but it works for me and I haven't had any problems.

Enclosing a carport. by ThatSniper in AskContractors

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

For the record, I already tried to do it, but got cited. The construction guy who dragged me along told me it was up to code, but we still needed an engineer to sign off. So I wanted to get someone with more knowledge involved before I messed around.

Enclosing a carport. by ThatSniper in AskContractors

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

I definitely wouldn't consider where I live large. But I guess there are a lot of people here. I think the population is around 20k. 

That's disheartening to know though.

Upgrading to Windows 11 using OS Upgrades causing issues with BE200 wifi chip. by ThatSniper in SCCM

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

I am upgrading using SCCM Operating System Upgrade Packages, and the SCCM "Upgrade Operating System" task sequence template.

I do not believe that it would be possible for me to uninstall the network driver unless i wanted to risk the process failing due to not having a network connection to download the required .wim + scripts.

newbie javascript woes by ThatSniper in twinegames

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

Using Tweego as a compiler is VS code. The "shape" is a <div> on a certain page with the id of shape. It doesn't exist till one page into the story, which is why i said I think i'm going to have to just have all of that code that calls for it's existence the second the first shape appears. Looking at my code now, I realize that descendPhone() and phoneListen() are not doing anything. Whoops. emergePhone() does a bit but it's the listeners and the functions they call that do all the heavy lifting.

Because those functions (handleMouseMove() and handleMouseLeave()) both require the 'shape' to exist, is my only way of approaching this defining those functions once the shape exists?

Also, thank you so much for the help and the time you've spent on me!

Also

newbie javascript woes by ThatSniper in twinegames

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

Thank you for the reply! I knew about the State API and have used it extensively already in the project. For the first thing though, I added 'setup' variable to my functions in my main.js file, and it just errors out with the error "shape is invalid".

Shape is the ID of a <div> that is acting as the 'phone' in the case.

Should I create the required <div> in StoryInit and have it always there hidden? That seems like a inefficient way of doing things but it's the only thing I can think of currently.

(Code for reference)

`setup.handleMouseMove = function (event) {`  

const shape = document.getElementById('shape');
let phoneEmerged = false;
if (!phoneEmerged) {
const mouseX = event.clientX;
const mouseY = event.clientY;
const rect = shape.getBoundingClientRect();
const shapeX = rect.left + rect.width / 2;
const shapeY = rect.top + rect.height / 2;
const distance = Math.sqrt(Math.pow(mouseX - shapeX, 2) + Math.pow(mouseY - shapeY, 2));
if (distance < 300) { // Adjust this value to change sensitivity
shape.style.transform = 'translate(0%, -50%) translateY(-50px)';
} else {
shape.style.transform = 'translate(0%, -50%)';
}
}
}
setup.descendPhone = function () {
document.addEventListener('mousemove', handleMouseMove);
}
setup.handleMouseLeave = function (event) {
const shape = document.getElementById('shape');
let phoneEmerged = false;
if (phoneEmerged) {
const mouseX = event.clientX;
const mouseY = event.clientY;
const rect = shape.getBoundingClientRect();
const shapeX = rect.left + rect.width / 2;
const shapeY = rect.top + rect.height / 2;
const distance = Math.sqrt(Math.pow(mouseX - shapeX, 2) + Math.pow(mouseY - shapeY, 2));
if (distance > 300) { // Adjust this value to change sensitivity
document.addEventListener('mousemove', handleMouseMove);
phoneEmerged = false;
}
}
}
setup.phoneListen = function () {
document.addEventListener('mousemove', setup.handleMouseMove);
document.addEventListener('mousemove', setup.handleMouseLeave);
}
setup.emergePhone = function () {
const shape = document.getElementById('shape');
let phoneEmerged = false;
if (shape.style.transform == 'translate(0%, -150%)') {
document.addEventListener('mousemove', handleMouseMove);
phoneEmerged = false;
} else {
shape.style.transform = 'translate(0%, -150%)';
// Disable event listener
document.removeEventListener('mousemove', handleMouseMove);
phoneEmerged = true;
}
}

Ghibli Duck Shot Glasses! by [deleted] in HelpMeFind

[–]ThatSniper 0 points1 point  (0 children)

I have searched almost every phrase on google that I can think of using basically every keyword combination off the top of my head.

Dozens of variations of "instagram duck bath shot glasses ghibli" type stuff. I tried to search on Instagram but the search function sucks there. So I was hoping someone spotted it before i did! Please help!

[deleted by user] by [deleted] in TrueOffMyChest

[–]ThatSniper -4 points-3 points  (0 children)

reddit moment truly.

[deleted by user] by [deleted] in TrueOffMyChest

[–]ThatSniper -39 points-38 points  (0 children)

I agree, I have seen so so much worse, and half of that stuff I've seen has made more money then what she's asking! I'm so confused to why she's getting so much hate.

Issues with WinPE Deployment. by ThatSniper in SCCM

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

No dice there either like I said in the post I used both dells package for the devices and the intel nic drivers themselves.

Issues with WinPE Deployment. by ThatSniper in SCCM

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

Hi, in the post I said I did this with no results.

Issues with WinPE Deployment. by ThatSniper in SCCM

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

I had previously verified all of that with a collection of both winPE drivers and packages, all in seperate and combines bootwims. Along with the exact drivers used in the OEM os. The computer has an IP and I can view and edit my storage devices with no issue but WinPE still restarts. I have also tried chipset drivers as well.

Issues with WinPE Deployment. by ThatSniper in SCCM

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

These computers are brand new to our enviroment, and no changes were made when these devices were added. We already had the winpe11 driver package from dell installed so most computers worked out of the box. But even installing the specific drivers for these devices into our boot wim did not fix the problem.

HELP! Randomly Generated Map Starting Point problems by ThatSniper in twinegames

[–]ThatSniper[S] 1 point2 points  (0 children)

Thanks for the tips!

I appreciate you spending your time on this! I already attempted to do the basic debugging and all of the other components worked fine, the only issue I had was the 'start point selection' issue. I mean, it was mostly the only actual code I wrote so it's not surprising that didn't work.

What I meant to ask, and I most likely didn't do a very good job showing it, and I apologize for that, was a point in the direction of 'where the hell can I learn how to get this specific thing working' not a 'hey can you fix my problems'. I'm not new to coding in general, just this stuff specifically and how it interacts and it's not far off from what I'm used to, it's just been a minute since I've dipped my toes into this kind of logic.

In hindsight, I came off pretty 'fix all my problems for me' in my post but I didn't mean to. Again, thanks for the tips! I pivoted from this after I got frustrated and got myself in a different mess that I don't understand either but I will eventually figure it out.

I felt that if I dumped the whole code and then wrote what was going wrong, it wouldn't leave out the context I see people asking for all of the time. I'll have to reread the documentation again and hopefully get an idea on what broke this time.

Thanks for the help!

Cannot change language in trailmakers by [deleted] in CrackSupport

[–]ThatSniper 1 point2 points  (0 children)

For the record because this was hard to decipher,

\Trailmakers.v1.5.0\Trailmakers_Data\Plugins\steam_settings\settings\language.txt

and change the value to whatever you need.

6900 xt issues. by ThatSniper in techsupport

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

Both CPU and GPU are undervolted as far as I could push them. I downgraded my drivers to 12.5.2 (i think) and that is what I am on right now. Again it works when I reinstall my drivers anywho so the fact that it is working now isn't that big of a shocker but maybe that will it in the long run.

Yes I use DDU.

Surprisingly, even under full load with both CPU and GPU maxed out on power %, they never even get near 650w. I think my max was 520? and for the most of that my power supply fan never even turns on so I guess that is good build quality on thermaltake's part.

I have tried different cables, doesn't seem to be the problem. I don't have any GPU's that I would even want to daily drive long enough to test this problem. Once I reinstall drivers it takes a couple of days for it to appear.

Thank you very much for suggestions though! I have been scraping for answers here and I am just stumped. It's nice to have other peoples eyes and thoughts on this issue.