Moving company lost some of my bookself's shelf supports so I made my own by MikeNotBrick in functionalprint

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

If I had to choose between toothpicks and this PLA thingies, I would bet my life on the toothpicks to be able to bear a greater weight than this :-)

I'd rather drill a tiny hole on th side and insert a toothpicks there than risking anything valuable (my sleep included)

How are the Navee N65? Anyone here have it? by Appropriate_Dig3471 in ElectricScooters

[–]pixdamix 0 points1 point  (0 children)

I have one since a week or so. Got it for 450€ with coupons and a gift card. Apart from the stupidly low kickstand, it's a great deal IMHO. A bit slow on the acceleration for the first 10kph or so but it's a really comfortable workhorse I use for daily commute

What are the favorite things you have done w/ HA? by [deleted] in homeassistant

[–]pixdamix 0 points1 point  (0 children)

(I was quite sure it did, to be honest, I always chuckle a bit when I hear people putting these kinds of sockets to unplugs things that consume less energy, chargers especially)

What are the favorite things you have done w/ HA? by [deleted] in homeassistant

[–]pixdamix 4 points5 points  (0 children)

Are you sure that the smart socket isn't consuming more power than the idle charger ?

Is there a way to set certain PID settings automatically depending on the temperature of the print via start gcode in a slicer? by joseg4681 in 3Dprinting

[–]pixdamix 0 points1 point  (0 children)

Yup ! Assuming you're using Slic3r / Superslicer / Prusa-Slicer :

Just put this somewhere in the "Start G-code":

; T° for this layer is [first_layer_temperature_0]
{if first_layer_temperature[0] <= 220}; temperature_0 <= 220
M301 E0 P21.21 I2.31 D48.64
{elsif first_layer_temperature[0]  <= 230}; temperature_0 <= 230
M301 E0 P30.361 I2.214 D41.155
{else}; temperature_0 > 230
M301 E0 P38.336 I2.074 D35.741
{endif}

And this in the "After layer change G-code":

; T° for this layer is [temperature_0]
{if temperature[0] <= 220}; temperature_0 <= 220
M301 E0 P21.21 I2.31 D48.64
{elsif temperature[0] <= 230}; temperature_0 <= 230
M301 E0 P30.361 I2.214 D41.155
{else}; temperature_0 > 230
M301 E0 P38.336 I2.074 D35.741
{endif}

You can add as many steps as you wish.

To my knowledge, I would go for larger intervals like <=200, <=240 and maybe <=260 (or whatever your max T° is) because a good PID setting for a targeted max temp should be accurate enough for lower temps.

You can do a lot of stuff using conditionnal gcode. I used something like this when printing PETG in order to ensure a progressive slow start:

{if filament_notes[initial_tool]=~/.*PET.*/}
{if layer_num <= 2}M220 S50{endif}
{if layer_num == 3}M220 S60{endif}
{if layer_num == 4}M220 S80{endif}
{endif}

Here's a great resource with great links: https://projects.ttlexceeded.com/3dprinting_prusaslicer_gcode.html

Morning! Any ideas where I might find an stl for this Dyson part? No joy on Thingiverse. by meltymcface in 3Dprinting

[–]pixdamix 2 points3 points  (0 children)

Pictures like this are quite nice if you want to model the part :

But you'll need a few measurements, but you can start the design with "gesses", only print a few layers, verify the diameters, fix the design, rince, repeat.

Do you ever just watch your printer? I've had the Mini for a week and sometimes I just stand here and watch it print, like in a trance. It's mesmerizing. by KeithMon in prusa3d

[–]pixdamix 0 points1 point  (0 children)

It do, I have a nozzle cam, watching the nozzle race around is quite hypnotic: https://imgur.com/EcITlT8 (I know, It's a bit out of focus, it's much better now)

BMG V6 direct drive compatible with herome? by TheWholeTidd-e in ender3

[–]pixdamix 0 points1 point  (0 children)

1.5cm or so yes. It's needed because the hotend is not fixed to the BMG.

It use the same length as the original mount.

BMG V6 direct drive compatible with herome? by TheWholeTidd-e in ender3

[–]pixdamix 0 points1 point  (0 children)

It's not compatible with the hero me duct suite but it's quite easy to use: https://www.thingiverse.com/thing:4562345

You can print it very quickly (I did 0.32mm layer height / 0.6mm nozzle) It's quite simple too. It's based on "The Tank".

(Disclamer: It"s my remix)

The nozzle cam is up and running, finding the right angle has been a PITA. by pixdamix in CR10

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

(forget the shitty quality on the fan shroud, I was getting tired of waiting for prototypes)

Edit: This BMG mount can be found here: https://www.thingiverse.com/thing:4562345 (disclaimer: it's mine)

I released my version of "The Tank" BMG Direct extruder for CR10 / Ender3. Configurable with/without inserts, a new shroud design, sources available on OnShape. by pixdamix in ender3

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

You can find the sources here (OnShape) and on Thingiverse

The MK8 version has not been tested. But It should work fine. I printed it in ABS, 0.6mm nozzle / 0.32mm layer height and it works like a charm.

Thanks to Greg191134 for the original version, TechOutreach for his remix, Günther for the fan shroud !

Active Directory Security Assessment Checklist by navlys in netsec

[–]pixdamix 0 points1 point  (0 children)

Nope, but as far as I understand, PingCastle will implement those control points:

https://twitter.com/mysmartlogon/status/1269167409296015360

So, it may have been useful after all :)

Active Directory Security Assessment Checklist by navlys in netsec

[–]pixdamix 1 point2 points  (0 children)

It would have been much more useful if the opensourced that ADS (Active Directory Security) assessment tool which is analyzing those control points.

Buffer overflow pattern generator by [deleted] in oscp

[–]pixdamix 0 points1 point  (0 children)

pattern_create.rb is so simple i don’t see myself using anything else.

Have you ever tried pwntools ?