#linuxcnc Logs

May 16 2024

#linuxcnc Calendar

01:13 AM Deejay: moin
03:11 AM -!- #linuxcnc mode set to +v by ChanServ
03:47 AM -!- #linuxcnc mode set to +v by ChanServ
03:48 AM -!- #linuxcnc mode set to +v by ChanServ
04:02 AM -!- #linuxcnc mode set to +v by ChanServ
04:43 AM Tom_L: morning
04:46 AM Tom_L: touchoff_system_cb doesn't update G5x_index_lb, should it? i didn't find it in the docs either
04:52 AM JT-Cave: morning
06:29 AM JT-Cave: touchoff_system_cb does not change the coordinate system, it's only used by touchoff_pb_ to specify which coordinate system to touch off to
06:48 AM JT-Cave: Tom_L, https://pasteboard.co/lgdDxzf1DaQh.png
06:54 AM Tom_L: same number i got i think
06:56 AM JT-Cave: https://pasteboard.co/roiaQhTsAbtT.png
06:57 AM JT-Cave: what a pia lol
06:58 AM Tom_L: touchoff_system_cb behaves the same as axis..
07:00 AM JT-Cave: which is?
07:01 AM Tom_L: for setting the fixture offsets only
07:01 AM Tom_L: not switching to
07:04 AM JT-Cave: I don't follow
07:06 AM Tom_L: axis touchoff coordinate dropdown doesn't do a mdi G55 etc it only sets the fixture offset in the .var file
07:06 AM Tom_L: same as yours
07:06 AM Tom_L: G54 remains active
07:09 AM JT-Cave: ah in Axis
07:09 AM Tom_L: right. they behave the same
07:09 AM JT-Cave: ok, just fixed another double spin box value
07:10 AM JT-Cave: and the issue was the double spin box floating point error common to C
07:10 AM JT-Cave: precision = parent.touchoff_dsb.decimals()
07:10 AM JT-Cave: offset = f'{parent.touchoff_dsb.value():.{precision}f}'
07:11 AM Tom_L: that presets them all?
07:11 AM JT-Cave: so the fix is to use a f format to limit the decimals
07:11 AM Tom_L: or jujst the touchoff_dsb
07:11 AM JT-Cave: no each one has to be done
07:11 AM JT-Cave: afaik there is only 2 double spin boxes in flex
07:12 AM Tom_L: you might make a note of the but in your docs for those trying to set their own
07:12 AM JT-Cave: set their own what?
07:12 AM Tom_L: precision value
07:13 AM Tom_L: singleStep
07:13 AM JT-Cave: precision is obtained from the widget decimals setting
07:13 AM JT-Cave: singlestep can be anything now
07:15 AM Tom_L: ahh you set it to .001
07:16 AM JT-Cave: singlestep can be any value you want now, I've fixed the floating point error with the f format
07:17 AM Tom_L: ok i see now.. i forgot to update before testing
07:17 AM * JT-Cave goes to ride up and down Shelby Road as Wolf Creek is too muddy today
07:18 AM lcnc-relay: <satiowadahc#0> Does pagestep make a difference?
07:28 AM Tom_L: we're not using sliders for this
07:37 AM Tom_L: pagestep is also affected by the system mouse scroll setting
07:51 AM Tom_L: maybe add tool_table_comment_n_lb
07:54 AM Tom_L: if for no other reason than completeness
08:40 AM Tom_L: #28 up
10:00 AM JT-Cave: s.tool_table[0]
10:00 AM JT-Cave: tool_result(id=-1, xoffset=0.0, yoffset=0.0, zoffset=0.0, aoffset=0.0, boffset=0.0, coffset=0.0, uoffset=0.0, voffset=0.0, woffset=0.0, diameter=0.0, frontangle=0.0, backangle=0.0, orientation=0)
10:01 AM JT-Cave: comment is not brought out in the python interface
10:04 AM JT-Cave: which makes me think a combo box with each tool number in it and when you change it that tool is displayed
10:06 AM JT-Cave: rode 6 miles today on a 10' wide sidewalk
10:15 AM Tom_L: hmm
10:19 AM Tom_L: that's actually kinda odd since you no longer specify that column to be displayed. its one of the default ones
10:19 AM Tom_L: it's not a cricital one
10:20 AM JT-Cave: it's just not brought out
10:20 AM JT-Cave: that's in the tool editor not the python interface
10:20 AM Tom_L: yeah
10:27 AM Tom_L: i just thought it would add a little 'bling' to flex
10:27 AM Tom_L: certainly not necessary
10:53 AM JT-Shop__ is now known as JT-Shop
10:53 AM JT-Shop: I just noticed that pocket number and tool number are not brought out in the python interface...
11:39 AM JT-Shop: I assume the id is the tool number
11:40 AM Tom_L: seems to be
11:41 AM JT-Shop: the first id is -1 which seems odd
11:43 AM Tom_L: can a tuple have float int str all together?
11:45 AM Tom_L: i wonder (which doesn't make sense) if the -1 is a placeholder to add a new tool
11:46 AM Tom_L: it's becoming obvious to me linuxcnc is patches of 'i need this' code
11:47 AM JT-Shop: and lots of FIXME comments
11:47 AM Tom_L: haha yeah that
11:48 AM JT-Shop: >>> t = (0.123, 'some string', 8)
11:48 AM JT-Shop: >>> t
11:48 AM JT-Shop: (0.123, 'some string', 8)
11:49 AM Tom_L: just trying to reason why they left out comments. it's the only string entry afik
11:49 AM JT-Shop: they left out pocket as well
11:50 AM Tom_L: they didn't need that one at the time
11:50 AM Tom_L: is the python interface written in python or c or c++?
11:51 AM JT-Shop: https://youtu.be/RTR9Y9DZNJ4?list=PLB00JHoTw1TeX82Qw8hoFLRJI89Us_jMw&t=1532
11:51 AM Tom_L: i'm guessing python since it has tuples
11:51 AM JT-Shop: interesting she only taped off the straight parts of the letters
11:51 AM JT-Shop: I've never figured out where in the repo it is
11:52 AM Tom_L: she penciled off the arcs
11:52 AM JT-Shop: yup
11:53 AM bjorkintosh: https://hub.jhu.edu/2024/05/14/quieter-leaf-blower/
12:11 PM Tom_L: man some of these files are dated... talking about borland c
12:12 PM Tom_L: i think some of it is in src/libnml
12:34 PM CaptHindsight: bj: The team reduced the overall leaf blower noise by about two decibels,
12:35 PM CaptHindsight: cuts the most shrill and annoying frequencies by about 12 decibels
12:40 PM CaptHindsight: what we could really use is a leaf blower that blocks the idiot operator from aiming it at your car
12:40 PM Rab: ...Or your bike
12:43 PM Rab: Having said that, I've found most landscaping dudes to be very conscientious and considerate when I pass.
12:49 PM solarwind: https://www.youtube.com/watch?v=BoJ1ZDAA4IU
12:49 PM solarwind: I LOVE these and appreciate them so much
12:50 PM solarwind: where else can you find actual in depth scientific information and people to share it passionately
12:50 PM solarwind: for free
12:54 PM solarwind: It appears that calcium sulfonate as a thickener plays a huge part in lubrication itself, not just acting as a "sponge" like other thickeners
12:54 PM CaptHindsight: no tik tok with just the high points?
12:54 PM solarwind: the sulfonate anions form an amorphous mycelle around the calcium carbonate core
12:55 PM solarwind: CaptHindsight LOL this tik tok generation makes me want to throw up
12:55 PM solarwind: fuckin hell don't get me started
12:55 PM solarwind: I just don't get along with kids, I fuckin hate them so much
12:56 PM solarwind: older people are so much easier to get along with in my experience for so many reasons
12:57 PM CaptHindsight: until we have to wear diapers again, then we just fuss
12:59 PM bjorkintosh: at least, diapers exist.
12:59 PM solarwind: but anyway, they then convert the mycelle structure into a < 100nm calcite crystalline dispersion
12:59 PM solarwind: that is neutral charge
01:00 PM CaptHindsight: in the late 80's and early 90's I was working on the equivalent of a smartphone for physicians, a handheld portable computer with a packet radio....
01:00 PM CaptHindsight: I recall thinking about how great it will be when we have high speed data for a low cost that you can access anywhere in your hands
01:01 PM solarwind: it ends up being a nano dispersion of mycelle structure of nano calcite particles
01:02 PM CaptHindsight: now that we have it, look how the average person uses it
01:02 PM solarwind: Yeah makes me want to puke
01:03 PM solarwind: human nature, most people are just retards
01:03 PM solarwind: nothing we can do about it
01:05 PM CaptHindsight: https://www.reddit.com/media?url=https%3A%2F%2Fpreview.redd.it%2Fc9ocjr39ek0d1.png%3Fauto%3Dwebp%26s%3D234767f30037d37af047e35eb360d31aaeb9d944
01:05 PM CaptHindsight: https://www.reddit.com/media?url=https%3A%2F%2Fpreview.redd.it%2Fc9ocjr39ek0d1.png%3Fauto%3Dwebp%26s%3D234767f30037d37af047e35eb360d31aaeb9d944
01:05 PM solarwind: Yeah, the movie Idiocracy is exactly where we're headed
01:06 PM solarwind: I got banned from 99% of twitch/discord channels last night for asking people their favourite dinosaurs
01:06 PM CaptHindsight: hmm , I wonder why?
01:07 PM solarwind: The one discord group I didn't get banned on is for a dinosaur video game LOL
01:07 PM solarwind: because those geeks actually know that nigersaurus is just a genus of dinosaur
01:08 PM solarwind: When you can successfully control a population to the point that they just have mob mentality and respond with knee jerk reactions, we're doomeed
01:08 PM CaptHindsight: are you unaware of how trolling you come across choosing that genus?
01:09 PM solarwind: no, that's the whole point
01:10 PM CaptHindsight: I would expect to be assaulted by trumpsters if I sat in a room full of them and made fun of him
01:10 PM solarwind: people do that all the time
01:10 PM solarwind: the problem is you're doing it around MAGA people aka the retards
01:11 PM CaptHindsight: Mrs Daniels even wore a flak vest to a from court last week for what are obvious reasons
01:11 PM solarwind: just as I was doing this around different kind of retards
01:11 PM solarwind: the point is, most people are retards, that's the sad thing about it all
01:11 PM CaptHindsight: so this should not be news to you
01:12 PM solarwind: it's not, it's just sad to be reassured
01:12 PM solarwind: that's why I'm saying we're headed towards Idiocracy
01:12 PM solarwind: and I genuinely hope an asteroid kills us all
01:14 PM solarwind: on another note, cane sugar coke with maple syrup is quite nice
01:14 PM solarwind: I think you can only get it in Canada
01:16 PM lcnc-relay: <skunkworks8841> I do prefer the can sugar coke.. (when I drink it - which isn't very often)
01:16 PM lcnc-relay: <skunkworks8841> cane
01:23 PM CaptHindsight: +1 for cane sugar as well as drier versions of sodas, I'm not 5 anymore i don't need the sweetness overload
01:25 PM CaptHindsight: solarwind: what terms is used for sodas up there? fizzy drink, pop?
01:25 PM CaptHindsight: is/are
01:25 PM solarwind: soda/pop
01:27 PM CaptHindsight: the more yah know https://imgur.com/gallery/load-bearing-pasta-jJHnuFd
01:48 PM lcnc-relay: <skunkworks8841> (plus - around here it is in a glass bottle)
01:51 PM solarwind: HG15 (16)? rails arrived
01:51 PM solarwind: very impressed with the quality
01:51 PM solarwind: I'm not seeing any stickiness or slop issues I've heard others complain about
01:53 PM CaptHindsight: Taiwan or China versions? heh now I'm in trouble
01:54 PM CaptHindsight: https://www.automation-overstock.com/index.asp
01:58 PM CaptHindsight: https://linuxgizmos.com/introducing-the-raspberry-pi-m-2-hat-enhanced-connectivity-for-raspberry-pi-5/
02:02 PM CaptHindsight: https://linuxgizmos.com/updated-pimoronis-nvme-base-duo-brings-new-storage-options-to-raspberry-pi-5/
02:03 PM CaptHindsight: https://linuxgizmos.com/w01-u2500-by-52pi-high-speed-networking-and-nvme-expansion-for-raspberry-pi-5/
02:03 PM XXCoder: I wonder if that is better way. I ran into bus hammering problem when I used rpi4 as main oc for couple months
02:03 PM CaptHindsight: these were all released about 2 days apart
02:04 PM lcnc-relay: <travis_farmer> found a old laptop... installed debian 12... linuxcnc... Flex... and discovered something infuriating...
02:04 PM lcnc-relay: i found a crap laptop with 1.3Ghz AMD CPU, and only 4GB RAM... everything runs sloooow. oh well, maybe i can at least play with Flex on it, as long as i don't run anything else at the same time, LOL
02:05 PM solarwind: https://www.youtube.com/watch?v=oQ5OWCQyVzw
02:05 PM solarwind: so much excellent information
02:05 PM CaptHindsight: yeah I found an old netbook with similar specs that would even run >40mb/s over Ethernet
02:05 PM JT-Shop: the pc in the other shop is so slow it barely plays music
02:05 PM solarwind: AvE keeps (incorrectly) stating that they use solid molybdenum disulfide in angle grinder gearboxes
02:05 PM CaptHindsight: would not even
02:05 PM solarwind: they don't and they shouldn't
02:05 PM solarwind: it's not a low speed or high shock load application and actually increases wear
02:06 PM solarwind: just because the grease is dark doesn't mean it contains solid molybdenum disulfide
02:06 PM solarwind: it should only be used for very low speed applications where you can't form a fluid film like excavator bucket pins
02:07 PM solarwind: or where shock loads can overwhelm the thickener and the base oil fluid film
02:07 PM solarwind: then the solid sheets of molybdenum disulfide protect the metal from metal-metal shock contact
02:08 PM solarwind: fuckin hell tradespeople are ignorant as fuck
02:08 PM * JT-Shop wonders what happened to our nice little PG chat place
02:09 PM solarwind: well hence the PG - parental guidance
02:10 PM solarwind: cover your child's eyes and tell them the real world is shitty
02:11 PM solarwind: but anyway greases with solid molybdenum disulfide are almost always the wrong choice for most applications
02:12 PM solarwind: I wonder why some "CV joint grease" have it and are known for having it
02:12 PM solarwind: perhaps CV joint sliding contact speed is pretty slow?
02:17 PM solarwind: Anyway if anyone is looking for pretty damn good linear rails, I can vouch for these: https://www.amazon.ca/dp/B0BF9G63CK
02:18 PM solarwind: They're as flat as my lathe bed, came with non disgusting anti rust oil that was easy to remove and clean, and slide freely
02:36 PM Loetmichel: Hmm, did a pic how i park at the company. Why am i surprised that my righ rear fender gets more and more scratches over time?!? http://www.cyrom.org/palbum/main.php?g2_itemId=18176&g2_imageViewsIndex=1
02:37 PM JT-Shop: couldn't get any closer?
02:37 PM CaptHindsight: just need a bit more practice
02:38 PM Loetmichel: maybe half an inch or so :)
02:38 PM JT-Shop: get a smaller car...
02:38 PM Loetmichel: (more like a quarter to be honest)
02:38 PM XXCoder: get electric bicycle
02:39 PM Loetmichel: STILL smaller? that car is already an "Elefantenrollschuh" (Elephant roller skates) a.k.a: Mercedes A-class
02:40 PM JT-Shop: https://electrek.co/2022/07/25/nimbus-one-50-mph-electric-vehicle/
02:40 PM JT-Shop: that would be a hit on the autobahn
02:40 PM XXCoder: thats cool
02:40 PM XXCoder: you will probably ruin more trucks that way, what with them coal rolling at you
02:41 PM XXCoder: cost isnt bad, 10k
02:41 PM XXCoder: usd
02:41 PM Loetmichel: JT-Shop: 50mph in that death trap? NO THANKS!
02:42 PM JT-Shop: I would have a used oil cannon mounted to take care of trucks
02:42 PM Loetmichel: Hmm, oil? what are those tetraeder nails are called in english? german is "Krähenfüsse" (crow feet)
02:43 PM Loetmichel: thats probably more "fun"
02:43 PM XXCoder: I have been coal rolled at couple times. I guess if you close one eye and squint other eye, you might think my ford focus is a prius
02:44 PM Loetmichel: XXCoder: coal runners are idiots. That smoke is wasted fuel. Get a bigger turbocharger and make torque from it! :D
02:44 PM XXCoder: both was so lame attempts that smopke didnt even reach my car
02:47 PM XXCoder: honestly dumbest drivers I have seen was one that stubbornly stayed behind me in 2 am in morning. guy kept flashing lights at me to go faster. I was at legal speed max
02:47 PM XXCoder: so each minute the driver flashed headlights at me, I lost 1 mph
02:47 PM XXCoder: at 50 mph guy finally gave up and sped away from me
02:47 PM XXCoder: down from 60 mph
02:48 PM XXCoder: there was nobody else whole time, on 3 line freeway
02:48 PM XXCoder: and I was at rightmost and slowest line
02:48 PM JT-Shop: what a jerk
02:48 PM XXCoder: yeah
02:48 PM Tom_L: JT-Shop, single rear wheel tend to tip over more
02:48 PM JT-Shop: glad I don't have to deal with people like that here
02:49 PM JT-Shop: it tips when you turn :)
02:49 PM Tom_L: a friend of mine was designing one similar years back
02:49 PM JT-Shop: my spyder had a single rear wheel
02:49 PM XXCoder: other was lol someone happened to follow me on off ramp. guy constantly flashed lights whole time
02:49 PM JT-Shop: so does the slingshot
02:49 PM Tom_L: then he moved to chicago and i've not heard from him since
02:49 PM XXCoder: so I pretended guy was a cop and stopped on regular road
02:50 PM Tom_L: err maybe i'm thinking the other way around
02:50 PM XXCoder: guy left ater couple minutes
02:50 PM JT-Shop: the honda big red three wheeler was bad for flipping over
02:50 PM Loetmichel: XXCoder: yeah. Still better than getting overtaken on a single lane curvy street back in the woods on a 50kph bike. By a dodge ram going at least 150kph. With less than 10cm distance. At night. Nearly needed new pants.
02:50 PM Tom_L: that one leans when you turn i see
02:51 PM XXCoder: loet lol biker probably needed new pants after he was pushed off acciently by my brother
02:51 PM XXCoder: he has a old large truck (when large meant something not puffy truck)
02:51 PM XXCoder: we was taking a off ramp when bikers passed by and one got off and got into grass area
02:52 PM XXCoder: other 2 bikers harassed us for a bit but we just kept going
02:52 PM JT-Shop: bike passed him on the inside?
02:52 PM XXCoder: they left because they know they did illegal turn
02:52 PM XXCoder: outside
02:52 PM XXCoder: which is extra idiotic
02:53 PM XXCoder: it was freeway to highway transfer so they had no safe way to get out of this
02:54 PM XXCoder: man I miss that old blue truck. 1977 ford
02:54 PM XXCoder: supercab and long bed. big
02:56 PM XXCoder: its one of benefits of being deaf
02:57 PM XXCoder: they can taunt or insult all they want, nothing will happen
03:01 PM XXCoder: man jackman used to be awesome channel
03:01 PM XXCoder: its so full of inplace ads now
03:02 PM Loetmichel: hehe: "ah, you tried to insult me for hours? sorry, didnt notice at all!" :)
03:02 PM Loetmichel: (being deaf)
03:02 PM XXCoder: its one step below "I know that about you but what about me?"
03:03 PM Loetmichel: ... no better way to infuriate those types of idiots than to ignore them completely.
03:10 PM XXCoder: sometimes yeah
03:13 PM * Loetmichel did an ooopsie a while ago when someone mocked me for forgetting a fact. Told him that "I have forgotten more things in my life than you will ever learn in yours!" ... took him a few seconds to comprehend that then he got angry :)
03:13 PM XXCoder: lol
03:54 PM solarwind: dumbass thread of the day: 15/16-14 UNS often mislabelled as 7/8" ballcock
03:55 PM Tom_L: good for your soul
04:05 PM Tom_L: JT-Shop, you added tool_table_comment_lb?
04:06 PM Tom_L: i thought it wasn't there
04:06 PM * JT-Shop almost wonders what ignored people say... almost
04:06 PM Loetmichel_ is now known as Loetmichel
04:06 PM JT-Shop: I tried to add it but it's not an option
04:06 PM JT-Shop: so it must be removed
04:06 PM Tom_L: ahh it's in labels.rst
04:06 PM JT-Shop: ahh I forgot to remove that
04:07 PM Tom_L: just checking the 'green' lines :)
04:08 PM Tom_L: one county here has a 10% tax which just screwed up my program.. it kept track of fine but didn't display but X.XX digits
04:08 PM Tom_L: so now it shows XX.XX
04:09 PM Tom_L: took longer to find it than to fix it
04:09 PM JT-Shop: I hate trying to find stuff like that
04:10 PM Tom_L: i pretty much knew where it was but forgot what the filename was
04:11 PM JT-Shop: grep is your friend
04:13 PM Tom_L: i need a refresher on it every now and then anyway
04:13 PM Tom_L: i usually go in at least once a year to update the withholding rates
04:15 PM Tom_L: oh that one _cb.. was it in the docs or did you add it?
04:15 PM Tom_L: for the work offset setting
04:15 PM Tom_L: touchoff_system_cb
04:16 PM Tom_L: i didn't find it there
04:17 PM JT-Shop: touchoff_system_cb has been in use for quite some time... is it not in the docs?
04:17 PM Tom_L: if it is i couldn't find it
04:19 PM JT-Shop: hmm I need a touch off section in the docs
04:22 PM Tom_L: wasn't there?
04:22 PM JT-Shop: let me grep for it
04:24 PM JT-Shop: nope
04:25 PM * Tom_L feels he did his job for the day
04:25 PM JT-Shop: check's in the mail
04:26 PM Tom_L: uh huh
04:26 PM XXCoder: its on jt shelf stack of checks in mails
04:28 PM Tom_L: time for a nice fat steak
04:29 PM JT-Shop: rabbit food tonight for me
04:29 PM Tom_L: well, gotta wait for the kid to get home..
04:29 PM lcnc-relay: <travis_farmer> taco salad for me
04:30 PM XXCoder: think ill just go for hot dog queleas today
04:31 PM JT-Shop: what is that?
04:31 PM lcnc-relay: <travis_farmer> ..trying to lean up a bit so i can fit on my mtn bike without breaking spokes 😉
04:31 PM JT-Shop: what is queleas
04:31 PM XXCoder: mangled spelling lol usually its just 2 tortellas and cheese but I also add couple hot dogs
04:31 PM JT-Shop: my first mountain bike the spokes broke often until I replaced them all with better spokes
04:31 PM Tom_L: scotch & sirloin is a bit too fancy for me so tx roadhouse it is
04:32 PM lcnc-relay: <travis_farmer> i weigh 300#, better spokes will break 😉
04:32 PM Tom_L: https://www.scotchandsirloin.net/dinner-menu/
04:32 PM JT-Shop: I usually just use toast with pepper jack cheese and hot dog for dinner
04:33 PM JT-Shop: steak tartare yum
04:33 PM JT-Shop: no prices... fancy
04:33 PM Tom_L: $50 and up
04:34 PM lcnc-relay: <travis_farmer> looks too fancy for the likes of me, Tom_L
04:34 PM XXCoder: priceless is too priceless for me
04:37 PM Tom_L: if you're ever in savannah try the pink house
04:38 PM lcnc-relay: <travis_farmer> if your ever in New Harbor, Maine, try Shaw's Warf 🙂
04:38 PM Tom_L: https://www.theoldepinkhouserestaurant.com/menus
04:38 PM Tom_L: yes, it's pink
04:39 PM lcnc-relay: <travis_farmer> https://www.shaws-wharf.com/
04:45 PM JT-Shop: https://www.woodsmithplans.com/plan/saw-blade-storage/
06:18 PM roycroft: i made saw blade storage trays similar those years ago
06:19 PM roycroft: i like them a lot
06:19 PM XXCoder: just got heat camera. fun thing lol
06:19 PM XXCoder: it works on pc too
06:20 PM Tom_L: flir?
06:20 PM XXCoder: not that rich
06:20 PM XXCoder: infiray p2 pro
06:25 PM lcnc-relay: <xxcodery> https://jauriarts.org/_matrix/media/v3/download/jauriarts.org/PdpsSLKBHNMAAwjMNdmvqDBo/image.png
06:25 PM lcnc-relay: <xxcodery> I can see how well isulated roof is
06:25 PM lcnc-relay: <xxcodery> which is to say, not at all
06:33 PM rdtsc_away is now known as rdtsc
06:33 PM Tom_L: :)
06:35 PM XXCoder: i find it funny that montiors act as kinda hot mirrors. so I could take a selfie using montiors as mirrors
06:38 PM rdtsc: Take two lamps, cover one bulb with aluminum foil, turn them on, then look at them with IR cam. :)
06:39 PM XXCoder: lol
07:42 PM rdtsc is now known as rdtsc_away
07:43 PM rdtsc_away is now known as rdtsc
07:53 PM rdtsc is now known as rdtsc_away
10:26 PM solarwind: https://youtu.be/XK9XdrGCbaQ?si=Tn8OTNWuyS7tWvfg&t=550 LOOOLLL milk and beer performed the same or better than certain base oils in the 4 ball weld test
10:27 PM solarwind: Completely agree - that test should not be used in the selection of a lubricant
10:28 PM solarwind: 4 ball weld test type of load never occurs anywhere in the real world
10:28 PM solarwind: he's spot on
11:31 PM -!- #linuxcnc mode set to +v by ChanServ
11:31 PM XXCoder: pretty cool https://youtu.be/qNIevGqsJrQ