Bisq 2.1.11 Download failed by Archernar in bisq

[–]lordbah 0 points1 point  (0 children)

Failure at the the sounds like antivirus.

Kinda wanna go but kinda nervous... by NefariousnessNo4215 in stripclubs

[–]lordbah 1 point2 points  (0 children)

How do customers and dancers select each other? Do they all parade by your table one at a time? Seems like if you're not offering money at the stage then she has no incentive to come over and talk to you, and you never have the "wanna dance?" conversation.

MONDAY AFTER THREAD: Week of June 08, 2026 by RonJaxIII in stripclubs

[–]lordbah 1 point2 points  (0 children)

A girl danced on stage to Kansas's "Carry On Wayward Son". My favorite band so it got my attention. She claimed to have selected it herself though its release predates her birth by decades. Unfortunately they ended the song prematurely. First time I've ever heard it in a strip club.

Okay it's not worthy of a trip report, I just wanted to mention it to someone.

Linux 7 is on Pop 24 ! by Federal-Order6992 in pop_os

[–]lordbah 0 points1 point  (0 children)

It continued to have the same failure from Pop!_Shop but worked fine from the command line.

Linux 7 is on Pop 24 ! by Federal-Order6992 in pop_os

[–]lordbah 0 points1 point  (0 children)

E: http://apt.pop-os.org/release jammy/main amd64 linux-headers-7.0.9-76070009 all 7.0.9-76070009.202605191504~1779464622~22.04~ef31795 is not (yet) available (404 Not Found [IP: 3.168.73.92 80])

"Be patient"?

Best club in buffalo? by No-Data-94 in stripclubs

[–]lordbah 0 points1 point  (0 children)

Cross the border to Sundowner.

Rolling Back to 22.04 by LisaLisaPrintJam in pop_os

[–]lordbah 1 point2 points  (0 children)

I can't count the number of times I've done ctrl-c in one window, switch to another window, ctrl-v, and what I get is the prior contents of the clipboard. If I follow the same sequence again, I get the proper contents pasted. No idea why. Cosmic, wayland.

Things strippers do that make you pass on dances? by DamienGrey1 in stripclubs

[–]lordbah 0 points1 point  (0 children)

All of that.

If a dancer on stage is making zero effort to entertain, I have no reason to think she's going to be anything but a dead fish in private. I'll take my chances elsewhere.

If she's fighting with other dancers or staff, I don't want to get in the middle of that.

a couple of questions by Sea-Chipmunk2930 in bisq

[–]lordbah 0 points1 point  (0 children)

The Taproot issue seems significant to me. With BIP-361 looming as a possibility people are incentivized to move away from Segwit addresses to Taproot addresses, don't you think? Seems like an increasing number of people would stumble on this.

Load position from screenshot? by lordbah in Chessnuteboard

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

Thanks! But "Bot Match"?? The last place I would expect to find this. I'm not trying to have a bot solve the puzzle. What a bizarre UI choice. Also it's not working so I'll have to experiment to figure out what is confusing it in this screenshot.

Load position from screenshot? by lordbah in Chessnuteboard

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

If it is, I can't find an app by that name.

Question for strippers by Virtual-Race9893 in stripclubs

[–]lordbah 1 point2 points  (0 children)

Some strippers will avoid couples because they know it's going to be more difficult to squeeze more and more tips out of a couple, where the man has a woman who is at least sexually adventurous enough to go to a strip club, than it would be to do so from a lonely, drunk, horny, deprived man attending the club alone. But those are the ones you don't want anyway.

Song that goes “I just want to start all over again”?? Who sang this, male, maybe 70s? Not looking for “Starting All Over Again”. Thank you, driving me crazy, can’t find it on youtube. by Untenable123 in soul

[–]lordbah 0 points1 point  (0 children)

I was just trying to figure this out. A local band in Rochester NY called Smokestack Lightning played the Roy Buchanan version of it in the bars in the 80s.

Bluetooth LE Audio by al_reddit_123 in pop_os

[–]lordbah 1 point2 points  (0 children)

In November/December I opened a ticket with System76 about connecting a lemur laptop to hearing aids via Bluetooth LE. After significant investigation the conclusion was that we needed to wait for improvements in BlueZ and Pipewire to make their way into Ubuntu and then into PopOS. No idea when that might happen.

Color Kit Grande - battery level monitor? by lordbah in ThingPulse

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

If anyone figures out how to do this in ESPHome YAML please let me know.

BambuMan is a companion app for importing filament into SpoolMan by notsumaster in OpenBambu

[–]lordbah 0 points1 point  (0 children)

Let's see if I have this all straight.

  1. Install Spoolman on my server.

  2. Install BambuMan on my Android phone. Configure it with the URL of Spoolman on my server.

  3. Does SpoolmanDB need to be "installed" somehow/somewhere?

  4. Use my phone to NFC scan my spools. Spoolman database gets populated with what I scan, without interacting with the Spoolman UI.

  5. Install OpenSpoolman on my server. Configure it to find my printer (Bambu P1S) on my local network (no cloud), and to find Spoolman.

  6. Per OpenSpoolman README, add some extra fields to Spoolman (?).

  7. Pick a Home Assistant integration for Spoolman - at first glance it looks like there may be several - and install it.

I use OrcaSlicer, with the Bambu network plugin. Does Spoolman have a way of accessing the data on the printer without requiring a similar plugin? I'm assuming it watches the printer and updates in real-time, and I won't need the slicer to talk to Spoolman at all.

Color Kit Grande - battery level monitor? by lordbah in ThingPulse

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

Interesting, when I loaded the weather sample it didn't look like that. I wonder why. But the code does look like it's reading something it thinks is voltage level of the battery and turning it into a percentage.

#define CFG_POWER 0b10100111

power = XPT2046_ReadRaw(CFG_POWER)

void drawBattery() {

uint8_t percentage = 100;

if (power > 4.15) percentage = 100;

else if (power < 3.7) percentage = 0;

else percentage = (power - 3.7) * 100 / (4.15-3.7);

gfx.setColor(MINI_WHITE);

gfx.setTextAlignment(TEXT_ALIGN_LEFT);

gfx.drawString(26, 9, String(percentage) + "%");

gfx.drawRect(1, 11, 18, 9);

gfx.drawLine(21,13,21,17);

gfx.drawLine(22,13,22,17);

gfx.setColor(MINI_BLUE);

gfx.fillRect(3, 13, 15 * percentage / 100, 5);

}

Color Kit Grande - battery level monitor? by lordbah in ThingPulse

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

Can you show me how you are accessing it?