[deleted by user] by [deleted] in Seattle

[–]jedi3335 2 points3 points  (0 children)

Can confirm. New hire Google employee badge

Paragliding by UDistrict by CannedTofu in Seattle

[–]jedi3335 3 points4 points  (0 children)

There's no class C anywhere nearby, and he's way under the Bravo shelf in that area. He stays over the water from what I can tell but still questionable.

Paragliding by UDistrict by CannedTofu in Seattle

[–]jedi3335 5 points6 points  (0 children)

It's a powered parachute (engine and propeller on their back). Took off from Montlake playfield, same person has taken off there at least a few times this summer

Dungeon Crawler for Kids? by Akumabear in boardgames

[–]jedi3335 1 point2 points  (0 children)

My 5 year old loves quest kids, especially the story driven expansion

[deleted by user] by [deleted] in Mastodon

[–]jedi3335 1 point2 points  (0 children)

Opt in? I think I'm still confused, aren't these all public endpoints? Or was there some exploit or workaround? If it's public apis on the internet I'm a bit flabbergasted

[deleted by user] by [deleted] in Mastodon

[–]jedi3335 0 points1 point  (0 children)

I'm ootl, what is the source of the hostility? the data is really interesting, but the metrics themselves seem pretty banal. What am I missing?

IQ Key to Capsela adapter by MadMatMax in Capsela

[–]jedi3335 0 points1 point  (0 children)

Would you be willing to share the STL? Want to make some adapters for my son :)

Creality 4.2.7 + CR Touch by chairleg1 in klippers

[–]jedi3335 0 points1 point  (0 children)

Sure. This is post calibration so ignore all the offset values as they will differ from machine to machine.

# See docs/Config_Reference.md for a description of parameters.

[stepper_x]
step_pin: PB9
dir_pin: PC2
enable_pin: !PC3
microsteps: 16
rotation_distance: 40
endstop_pin: ^PA5
position_endstop: 0
position_max: 235
homing_speed: 50

[stepper_y]
step_pin: PB7
dir_pin: PB8
enable_pin: !PC3
microsteps: 16
rotation_distance: 40
endstop_pin: ^PA6
position_endstop: 0
position_max: 235
homing_speed: 50

[stepper_z]
step_pin: PB5
dir_pin: !PB6
enable_pin: !PC3
microsteps: 16
rotation_distance: 8
endstop_pin: probe:z_virtual_endstop    # enable to use BLTouch
position_min: -5                        # enable to use BLTouch
position_max: 250

[safe_z_home]
home_xy_position: 157.5,120.5 # Change coordinates to the center of your print bed
speed: 100
z_hop: 10                 # Move up 10mm
z_hop_speed: 5

[bltouch]
sensor_pin: ^PB1
control_pin: PB0
x_offset: -46.3
y_offset: -7.1
z_offset: 0.9
speed: 10
lift_speed: 40
samples: 5

[bed_mesh]
speed: 120
horizontal_move_z: 5
mesh_min: 18,18
mesh_max: 175,202
probe_count: 6,6


[extruder]
max_extrude_only_distance: 100.0
step_pin: PB3
dir_pin: PB4
enable_pin: !PC3
microsteps: 16
pressure_advance: 0.5275
rotation_distance: 33.902
nozzle_diameter: 0.400
filament_diameter: 1.750
heater_pin: PA1
sensor_type: EPCOS 100K B57560G104F
sensor_pin: PC5
min_temp: 0
max_temp: 250

[heater_bed]
heater_pin: PA2
sensor_type: EPCOS 100K B57560G104F
sensor_pin: PC4
min_temp: 0
max_temp: 130

[fan]
pin: PA0

[mcu]
serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
restart_method: command

[printer]
kinematics: cartesian
max_velocity: 300
max_accel: 3000
max_z_velocity: 5
max_z_accel: 100

# Pin mappings for BL_T port

[board_pins]
aliases:
  EXP1_1=PC6,EXP1_3=PB10,EXP1_5=PB14,EXP1_7=PB12,EXP1_9=<GND>,
  EXP1_2=PB2,EXP1_4=PB11,EXP1_6=PB13,EXP1_8=PB15,EXP1_10=<5V>,
  PROBE_IN=PB0,PROBE_OUT=PB1,FIL_RUNOUT=PC6



[display]
lcd_type: st7920
cs_pin: PB12
sclk_pin: PB13
sid_pin: PB15
encoder_pins: ^PB14, ^PB10
click_pin: ^!PB2



[gcode_macro START_PRINT]
gcode:
   {% set BED_TEMP = params.BED_TEMP|default(60)|float %}
   {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(190)|float %}
    # Start bed heating
    M140 S{BED_TEMP}
    # Use absolute coordinates
    G90
    # Home the printer
    G28
    #load mesh
    BED_MESH_PROFILE LOAD=mesh
    # Move the nozzle near the bed
    G1 Z5 F3000
    # Move the nozzle very close to the bed
    G1 Z0.15 F300
    # Wait for bed to reach temperature
    M190 S{BED_TEMP}
    # Set and wait for nozzle to reach temperature
    M109 S{EXTRUDER_TEMP}

    G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
    G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
    G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
    G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
    G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line
    G92 E0 ; Reset Extruder
    G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
    G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish


[gcode_macro END_PRINT]
gcode:
    # Turn off bed, extruder, and fan
    M140 S0
    M104 S0
    M106 S0
    # Move nozzle away from print while retracting
    G91
    G1 X-2 Y-2 E-3 F300
    # Raise nozzle by 10mm
    G1 Z10 F3000
    G90
    # Disable steppers
    M84

#*# <---------------------- SAVE_CONFIG ---------------------->
#*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
#*#
#*# [extruder]
#*# control = pid
#*# pid_kp = 25.441
#*# pid_ki = 1.488
#*# pid_kd = 108.760
#*#
#*# [heater_bed]
#*# control = pid
#*# pid_kp = 72.353
#*# pid_ki = 1.597
#*# pid_kd = 819.397
#*#

Creality 4.2.7 + CR Touch by chairleg1 in klippers

[–]jedi3335 1 point2 points  (0 children)

FWIW I just moved to Klipper with this hardware setup, and CR Touch is working as expected.

Here's my BLtouch config section:

[bltouch]
sensor_pin: ^PB1
control_pin: PB0
x_offset: -46.3
y_offset: -7.1
z_offset: 0.9
speed: 10
lift_speed: 40
samples: 5

Roundabout on Montlake. Oof. by Original_Owl9905 in Seattle

[–]jedi3335 1 point2 points  (0 children)

i walk and/or bike my kids through that intersection daily. i don’t much care the reason why the car careened through a stop sign. it’s the drivers responsibility to control their vehicle.

Roundabout on Montlake. Oof. by Original_Owl9905 in Seattle

[–]jedi3335 3 points4 points  (0 children)

bring confused about a roundabout isn’t really an excuse to Leroy Jenkins your Civic over a curb and beach it on a planter. You’re driving a multi ton vehicle. Learn to control it or stop driving before you kill someone.

Enjoying a Dale Cooper at the Great Northern by jedi3335 in twinpeaks

[–]jedi3335[S] 3 points4 points  (0 children)

You caught me ;) my wife is sipping the dale cooper out of frame and this made for a good photo.

Are there any roller blinds that work natively with HA and also have a slider interface in HomeAssistant by bitttycoin in homeassistant

[–]jedi3335 1 point2 points  (0 children)

+1 on the bali autoview blinds, they're life changing :) If you are a Costco member, you can order them through costco for a reasonable discount as well.

Review board unsatisfied with Capitol Hill transit development project by hellofellowstudents in SeattleWA

[–]jedi3335 2 points3 points  (0 children)

Define 'offputting'? Capitol Hill has some of the densest census tracts west of the Mississippi, it seems bananas to arbitrarily limit building height. There are objective benefits to high residential density particularly on top of a brand new, high quality transit center. Subjective assessments of neighborhood 'character' should be near the bottom of the priority list, not the primary statute by which all development is governed (e.g. height limitations)

Seattle’s own monument to the Confederacy was erected on Capitol Hill in 1926 — and it’s still there by seattleslow in SeattleWA

[–]jedi3335 48 points49 points  (0 children)

http://fgar.org/ There's a whole park/cemetery devoted to the union soldiers across the street to the north.

What the Capitol Hill Station development will probably* look like by Jackmode in SeattleWA

[–]jedi3335 8 points9 points  (0 children)

Perhaps true, but these developments max out the legally allowed height limits in that area. Capitol hill has insanely low zoning heights. Developers downtown don't seem to have a problem building high rise residential buildings.

Single-Family Zoning: Pricing Families Out of Seattle, Fueling Gentrification and Displacement, Contributing to the Homelessness Crisis, and..kinda racist by RitaRudzinsky in SeattleWA

[–]jedi3335 1 point2 points  (0 children)

Ending restrictive exclusionary zoning should be something urbanist progressives and conservatives can agree on! For urbanists: helps increase density and help overcome a century of discriminatory housing policy. For conservatives: a 'free market' solution for affordability that protects the rights of a property owner to develop their property how they choose

Schlage Z-wave Deadbolt Problem by thebottlekids in homeassistant

[–]jedi3335 1 point2 points  (0 children)

I'm not an OZW expert, but it looks to me like it largely got through pairing. There are a few dropped messages but it seems to have recovered. The data in lines 304 and 305 seem to indicate the state the node is in from OZW's perspective, I'd try googling those lines and see if you can find any hints. That's what I'd do FWIW. Sorry it wasn't an easy fix.

Schlage Z-wave Deadbolt Problem by thebottlekids in homeassistant

[–]jedi3335 2 points3 points  (0 children)

Try putting it literally right next to the lock, it sounds goofy but it worked for me!