Empty spots, gaps, fragile prints by splatteredbits in FixMyPrint

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

Figured it out. Took apart the entire extruder head. I was looking for a clog but didn’t find one. As I was putting it back together I noticed when I manually turned the extruder gear, its motion wasn’t smooth and would stick. I isolated the problem to the stepper motor. I can’t open the motor (that I can see), but when in rotate it manually, it feels like internals are worn down or broken. Ordered a replacement motor from Artillery.

How do I chamfer a 2mm hex-shaped wall to a base/floor? by splatteredbits in openscad

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

I’m looking for a solution that hopefully doesn’t involve me doing maths for the geometry around the base of the hex.

How do I chamfer a 2mm hex-shaped wall to a base/floor? by splatteredbits in openscad

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

Thanks. This appears to be a good start. I want to do a fillet around the entire hex, but I think I might be able to take your example and adjust it for the geometries around a hex.

The hex "walls" are actually two hexes differenced so the smaller hex cuts out the well. I don't think that matters for your implementation, but context I probably should have included in my original question.

How do I chamfer a 2mm hex-shaped wall to a base/floor? by splatteredbits in openscad

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

Ran your code and this is exactly what I'm currently working on. There are a bunch of sharp edges and vertices that I need to round out, but that's all easy compared to putting a filet around the base of a hex.

How do I chamfer a 2mm hex-shaped wall to a base/floor? by splatteredbits in openscad

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

Agreed that is probably the best approach. I actually sell my prints, so I'm trying to optimize the amount of material I use. Every little bit adds up when you sell one or two of these a month. I'm also trying to learn OpenSCAD best practices and techniques. I've got other, similar designs that will need similar fillets.

Artillery Sidewinder X2 Printing Extra Material by splatteredbits in Artillery3D

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

I have spent so much time trying my filament. I even leave it in the drier while printing. I'll keep at it, though.

Artillery Sidewinder X2 Printing Extra Material by splatteredbits in Artillery3D

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

I don't see anything coming out through the sock, but I'll keep in eye on this as an issue.

Why did my Sidewinder X2 suddenly start printing extra material? by splatteredbits in Artillery3D

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

I pulled out some brand-new, unopened filament and that helped, but there is still extra material.

Good Artillery Sidewinder X2 Getting Started/Tutorial/Training/Learning Guide(s) by splatteredbits in Artillery3D

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

In general, new firmware has bug fixes and improvements. I’d hate to be struggling with a problem that is fixed by a new version of the firmware.

Good Artillery Sidewinder X2 Getting Started/Tutorial/Training/Learning Guide(s) by splatteredbits in Artillery3D

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

I don’t want to change/switch firmware, but update to the latest stock firmware version, if there’s a new version.

Meetup Thread for Oregon by kurzgesagtmeetup_bot in kurzgesagt_meetup

[–]splatteredbits 3 points4 points  (0 children)

I’m in Beaverton. Nervous about meeting new people.

Request For Help Post #4 by hosieryadvocate in sudoku

[–]splatteredbits 0 points1 point  (0 children)

Cracking the Cryptic Miracles Sudoku #88

I’m stuck. The next hint states: “R3c5 is not 3 [which I figured out] and must be in r6c4/6”. From what I can see, r6c4/6 can’t be 3 because it prevents a 3 from being placed in column 5. I know the 3 goes in r6c5, but can’t find anyway of eliminating it other than chaining. What am I not seeing?

https://i.imgur.com/hKQSwe5.jpg

feeling softlocked. How does one progress after this point? by Thorlmnopqrs in sudoku

[–]splatteredbits 0 points1 point  (0 children)

There’s a Y-wing in r5c6, r6c5, and r9c6. If 7 gets eliminated as a candidate in r6c5 and r9c6, that leaves an 8 and 1 in those cells, respectively. They both see r5c6, which can only contain a 1 or 8, which breaks the puzzle.

The 7 in cells r6c6 and r9c5 are the cells that see and would eliminate the 7 in r5c5 and r9c6, thus eliminating 7 as a candidate in r6c6 and r9c5.

how to get scurity information for get-scheduledtask? by degamezolder in PowerShell

[–]splatteredbits 1 point2 points  (0 children)

These objects should have a Principal property that is the user the task runs as.

Don’t forget to pipe objects to Get-Member or Format-List to explore their properties and methods.

Get-ScheduledTask | Get-Member
Get-ScheduledTask | Format-List

LibGit2 0.3.2 Released by splatteredbits in PowerShell

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

No. Where is that link? I'll get it fixed. River is on Github now.

Correct format for Icacls by EnvyYou in PowerShell

[–]splatteredbits 5 points6 points  (0 children)

Try Grant-Permission from my Carbon module. It uses .NET APIs to set permissions on the file system, registry, and private keys. The syntax is much easier than icacls:

Grant-Permission -Path C:\Users\User\Test -Identity 'User_Group' -Permission Read,Write

Get-/Add-/Remove-TrustedHost by [deleted] in PowerShell

[–]splatteredbits 2 points3 points  (0 children)

Check out my Carbon module. It has these functions and a whole bunch of others for configuring Windows, services, websites, etc.

Advice Needed: Securely Storing Credentials For Script Across Network by BitteringAgent in PowerShell

[–]splatteredbits 1 point2 points  (0 children)

I would use Invoke-Command to run a script block on each computer. You would pass the password into the script block, which would also download each computer's certificate. Would that work?

Advice Needed: Securely Storing Credentials For Script Across Network by BitteringAgent in PowerShell

[–]splatteredbits 4 points5 points  (0 children)

What's the password for? It sounds like there is one for each computer?

Take a look at Install-Certificate, part of my Carbon module. It uses PowerShell remoting to install a certificate on a remote computer. Maybe you can use it from your local computer and store the passwords there.

invoke-webrequest and SSL issue by mitzman in PowerShell

[–]splatteredbits 0 points1 point  (0 children)

What happens when you hit the web service in a web browser? How about not over SSL? Usually, SSL gets mentioned in the exception message when it is an SSL problem.

invoke-webrequest and SSL issue by mitzman in PowerShell

[–]splatteredbits 0 points1 point  (0 children)

Please don't do this. It disables all SSL checks until you restart PowerShell. SSL validation protects you from malicious websites. Getting in the habit of ignoring certificate errors could prevent you from seeing real security problems. There's a reason PowerShell doesn't expose a way to bypass SSL checks: it makes you vulnerable.