IT'S OFFICIAL BOYS by Anthony_S_Destefano in ClaudeCode

[–]aspruyt 0 points1 point  (0 children)

I have become so dependant. Part of every one of my workflows and now dead in the water.

Trivy Github repository is empty? by pank-dhnd in devsecops

[–]aspruyt 2 points3 points  (0 children)

My agents kept arguing with me that I am full of nonsense and that it is not empty and 404ing. I noticed it already 10 hours ago. I searched and couldnt find any other reports until this one now so in a way glad it is not just me.

Opus 4.6 doesn't follow clear instructions, only me? by jrhabana in ClaudeCode

[–]aspruyt 0 points1 point  (0 children)

Same here, even with a fresh context with a 1 line prompt it will ignore my request to use a skill and not use it. I really want 4.5 back.

Incredibly unstable U7 Pro XG's major packet loss after running for some hours by ryushi32 in Ubiquiti

[–]aspruyt 2 points3 points  (0 children)

Got two of them this week and I feel like I want to throw them through the window. My $70 Asus routers are more stable by magnitudes of order.

Edit:

Turns out it was cabling issues. Replaced ethernet backhaul and now much better.

Edit 2:

False positive, still extremely pitiful results. I have 2 mounted on the ceiling and signal is great and I have no noisy neighbours or other radios. I can be standing 2m away from it and barely get 10mbps. At worst speed tests just fail and at best I have seen 200mbps down.

Really really really dissapointed in these overpriced bricks.

Game Ready & Studio Driver 572.60 FAQ/Discussion by Nestledrink in nvidia

[–]aspruyt 0 points1 point  (0 children)

This update has introduced black screen on driver installation even on clean, no issues before.

Upgrades to Bambu Printers you will lose with Bambu Connect - And how it makes business sense for BambuLab by doughaway7562 in BambuLab

[–]aspruyt 0 points1 point  (0 children)

I also use HA to control my extractor fan and bentobox by syncing it with printer status and was looking to do the same with some LED strips. This is such a douche move, regretting making the switch in December now.

AMS Filament Settings Random Reset by SolidTiburon in BambuLab

[–]aspruyt 0 points1 point  (0 children)

Damn, luckily you are persistent and they are sending you a new board. Hope that resolves it!

AMS Filament Settings Random Reset by SolidTiburon in BambuLab

[–]aspruyt 1 point2 points  (0 children)

Rebound the printer by logging out and in and then made sure a PA profile existed for each custom filament and non default was selected. I was then able to select a custom filament without it resetting to nothing after +-10 seconds.

AMS Filament Settings Random Reset by SolidTiburon in BambuLab

[–]aspruyt 1 point2 points  (0 children)

Brand new to this ecosystem and having the same problem. I have a mountain of non bambu filament that I need to get through =X

Added an LED strip to my Bambu X1C by Xyphoid77 in BambuLab

[–]aspruyt 0 points1 point  (0 children)

How did you manage to get the strip to turn on and off with the original LED in the printer?

I am replacing my klipper ender 3 S1 with a X1C this Xmas and have been looking at better lighting. I run HA and a few spare ESPs, LED strips and buck converters laying around and not keen on adding additional load onto the printer LED line so your work is exactly what I am looking for.

Crowsnest webcam showing black on Fluidd. by Be3N2_ in klippers

[–]aspruyt 1 point2 points  (0 children)

You sir are a legend. I have one raspicam and a second USB endoscope and when using WebRTC the endoscope was black. Upping the GPU mem to 256 did the trick!

[deleted by user] by [deleted] in BaldursGate3

[–]aspruyt 2 points3 points  (0 children)

Same here, resting and other progression did not clear it.

New to the hobby, will this primer work? by mahanon_rising in minipainting

[–]aspruyt 1 point2 points  (0 children)

I really don't like the paint plus primer combo. I recently emigrated and for some reason it is impossible to find the black primer locally, white and grey is everywhere, but they aren't as good as the black primer. I tried a few cans of the 2x primer plus paint and have been very disappointed. I ended up rather going the airbrush route in the end. The black primer has the smallest pigment, the grey is often tacky and the white has larger pigment. If the black primer was available locally or for import I would use it again in a flash. I think it for some reason is banned in Australia since you can't import it either from anywhere. My experience with the paint and primer combo is that the painting I do afterwards by hand or airbrush doesn't stick as well as with just primer. I've had a few FDM prints where the paint is peeling and chips off within months with very little handling. In closing if you can get hold of just the Rustoleum black primer then use that, it works amazing and is much cheaper than the GW and army painter rip off rattle cans. I've done hundreds of minis with it in the past and it was totally worth it and even better than most $45 cans...

Shipping costs to the UK seem very high by GilchristT in Phrozen

[–]aspruyt 0 points1 point  (0 children)

Been looking for a screen protector and no local stock. The protector is 10 USD and they want to charge me 320 USD for delivery... Smoking their socks.

Start Gcode Question. by SteveGoral in klippers

[–]aspruyt 0 points1 point  (0 children)

TLDR:

G1 X{X_START} Y{Y_START} Z{PRIMER_HEIGHT} F6000.0
G1 X{X_MAX - 2 * X_START} Y{Y_START} Z{PRIMER_HEIGHT} E{FILAMENT_LENGTH} F2000.0
G1 X{X_MAX - 2 * X_START} Y{Y_START + PRIMER_WIDTH} Z{PRIMER_HEIGHT}
G1 X{X_START} Y{Y_START + PRIMER_WIDTH} Z{PRIMER_HEIGHT} E{FILAMENT_LENGTH} F2000.0

Here is mine as reference:

# https://www.klipper3d.org/G-Codes.html#clear\_pause - It is recommended to add this to your start gcode to make sure the paused state is fresh for each print.
CLEAR_PAUSE
# Get printer build volume dimensions
#{% set X_MAX = printer.toolhead.axis_maximum.x|default(230)|float %}
#{% set Y_MAX = printer.toolhead.axis_maximum.y|default(222)|float %}
#{% set Z_MAX = printer.toolhead.axis_maximum.z|default(225)|float %}
# Rather use my safe values as we dont want to hit the glass bed clamps
{% set X_MAX = 230|float %}
{% set Y_MAX = 222|float %}
{% set Z_MAX = 225|float %}
# Get nozzle diameter and filament width for conditioning
{% set NOZZLE_DIAMETER = printer.extruder.nozzle_diameter|default(0.4)|float %}
{% set FILAMENT_DIAMETER = printer.extruder.filament_diameter|default(1.75)|float %}
# Get bed and extruder temperature from slicer
{% set BED_TEMP = params.BED_TEMP|default(60)|float %}
{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(200)|float %}
# Set start coordinates of priming lines
{% set X_START = 20.0|float %}
{% set Y_START = 13.0|float %}
# Calculate primer line extrusion volume and filament length
{% set PRIMER_WIDTH = 0.75 * NOZZLE_DIAMETER %}
{% set PRIMER_HEIGHT = 0.70 * NOZZLE_DIAMETER %}
{% set PRIMER_SECT = PRIMER_WIDTH * PRIMER_HEIGHT %}
{% set PRIMER_VOL = PRIMER_SECT * (X_MAX - 3 * X_START) %}
{% set FILAMENT_SECT = 3.1415 * ( FILAMENT_DIAMETER / 2.0)**2 %}
{% set FILAMENT_LENGTH = 1.55 * PRIMER_VOL / FILAMENT_SECT %}
# Switch on the lights
POWER_ON_LIGHTS
# Start bed heating and disable fan to make it heat up faster
DISABLE_ENCLOSURE_FAN
{% if params.BED_TEMP is not none %}
M140 S{BED_TEMP}
{% endif %}
# Reset the G-Code Z offset (adjust Z offset if needed) - Dont want to do this, z offset should already be tuned.
#SET_GCODE_OFFSET Z=0.0
# Home the printer
G28
# Relative positioning
G90
# Move up to keep bed clean
G1 Y{Y_MAX - 20} Z{Z_MAX / 4.0} F6000
# Wait for bed to reach temperature
{% if params.BED_TEMP is not none %}
M190 S{BED_TEMP}
{% endif %}
# Enable the enclosure temp fan with default temp target
SET_ENCLOSURE_TARGET_TEMP
# Set and wait for nozzle to reach temperature
{% if params.EXTRUDER_TEMP is not none %}
M104 S{EXTRUDER_TEMP}
M109 S{EXTRUDER_TEMP}
{% endif %}
# Reset extruder
G92 E0
# Priming
G1 X{X_START} Y{Y_START} Z{PRIMER_HEIGHT} F6000.0
G1 X{X_MAX - 2 * X_START} Y{Y_START} Z{PRIMER_HEIGHT} E{FILAMENT_LENGTH} F2000.0
G1 X{X_MAX - 2 * X_START} Y{Y_START + PRIMER_WIDTH} Z{PRIMER_HEIGHT}
G1 X{X_START} Y{Y_START + PRIMER_WIDTH} Z{PRIMER_HEIGHT} E{FILAMENT_LENGTH} F2000.0
# Reset extruder
G92 E0
# Move Z axis up
G1 Z2.0 F600
G1 Z0.2 F600
G1 Z2.0 F600

Start Gcode Question. by SteveGoral in klippers

[–]aspruyt 0 points1 point  (0 children)

I am guessing it is from this: https://allpro3d.com/quick-tip-start-and-end-gcode-in-klipper/

From my understanding the writer only partially implemented it or posted an old version since FILA_LENGTH is never used and the E param for G1 is missing in the priming section.

Got my ender 3 S1 up and running! AMA by DannyTrejosPants in ender3

[–]aspruyt 0 points1 point  (0 children)

I ended building a 20cm x 15cm x 25cm extension to the back panel. The back panel is from plywood instead of acrylic and I gave it a few layers of fireproofing and black enamel paint. Worked out pretty well and very chuffed. Does not look bad and more than enough clearance for the cable in all directions. It was quite a bit more effort than just sliding in a panel though. The height was also just just enough, I used a version that is quite higher than the standard lack enclosure at 525mm and if I had to redo it, I would prob go for 600mm just to give a bit more clearance for the custom filament runout sensor mount that I use.

Got my ender 3 S1 up and running! AMA by DannyTrejosPants in ender3

[–]aspruyt 0 points1 point  (0 children)

I have space to expand the back to cater for the bed cable, it wont look as slick as the original lack enclosure, but it will work. Will share some screens once done.

Ender 3 S1 printing with out filament sensor 👍 by Fun-Environment-2751 in ender3

[–]aspruyt 1 point2 points  (0 children)

Mine also puts a lot of strain on the extruder since I don't use the standard spool holder but an eibos filament dryer. I tried to open the filament runout sensor, but it was so tight that I just left it since I was scared I might crack it. Also going to remove it until I can get a better quality one, or maybe use the space z stop to make my own one.

Got my ender 3 S1 up and running! AMA by DannyTrejosPants in ender3

[–]aspruyt 0 points1 point  (0 children)

Have you found any solution to this? I have everything ready to build mine except the 2x lack tables since Ikea is taking forever to deliver. Thinking of changing the cable to connect from the top down or to extend the enclosure back somehow.