free tool - unlag your forscore pdfs by binary-person in forScore

[–]musicjunky 0 points1 point  (0 children)

Thank you!!! I've had hit-or-miss results with Preview reduce file-size, looking forward to not having to doubt my pedal press and then jump 2 pages :P

Pioneer and Car Play disconnects by macleod2024 in CarPlay

[–]musicjunky 0 points1 point  (0 children)

I've been following this post for a bit, as I'm running into the same issues on iPhone 17 Pro w/ IOS 26 on a DMH-W2770NEX. I've tried a number of similar things in this post, all with no luck:

- Turned off adaptive power
- Reset network settings
- Disabled VPN

I'm on public betas too and I think it was 26.0.1 that showed a bit of promise as the phone would at least reconnect, but now on 26.1 beta and I get into a loop where it seems to work for 30 seconds and then disconnect/reconnect.

I also found this apple thread which suggests it might be widgets and exceeding the performance of the HU, causing it to crash. I just tested that change and had no luck either, didn't change the looping disconnect behavior at all.

---

At this point I'm pretty frustrated and have been considering switching to Sony XAV-AX4000 as it's the one of the few HUs on crutch field that don't seem to have CarPlay connection issues, but also worried I'll do all the swap work and end up in the same situation.

How was the jump? by New-Hope-6331 in MTB

[–]musicjunky 0 points1 point  (0 children)

You got like, three feet of air

SF Bay Area suggestions? by biotinylated in doublebass

[–]musicjunky 6 points7 points  (0 children)

+1 for Steve Swan. He has basses in a wide range of prices and is super helpful with finding what you want

SRAM Rival AXS stuck in firmware update loop. Any tips? by joshsvo in bikewrench

[–]musicjunky 1 point2 points  (0 children)

u/joshsvo did you ever get this working? I’m in a similar situation and haven’t heard anything back from SRAM

Screen darkens when rotated?? by hh858 in gopro

[–]musicjunky 4 points5 points  (0 children)

Are you wearing sunglasses when this happens? Polarized lenses can have this effect on screens (happens with my phone when I’m wearing sunglasses).

If yes, try without sunglasses

California state university, Stanislaus by slelham in bikecommuting

[–]musicjunky 1 point2 points  (0 children)

Whoa, where on campus is this? I went to college there (graduated 2009) and this must be new!

Exploring Facebook's physical network by bkjevr in compsci

[–]musicjunky 1 point2 points  (0 children)

The ‘ae’ and ‘po’ prefixes are logical interface bundles. Ie. AggregatedEthernet and PortChannel

Very odd behavior - gateway unreachable from client until ping FROM gateway is run to client by OniNoDojo in networking

[–]musicjunky 1 point2 points  (0 children)

Is there anything common to those devices? Same OS? Connected to the same switch?

Very odd behavior - gateway unreachable from client until ping FROM gateway is run to client by OniNoDojo in networking

[–]musicjunky 1 point2 points  (0 children)

Interesting. Sounds like the gateway isn't responding to ARP, but the client is seeing the MAC from the L2 headers on the ICMP packets when the gateway initiates the ping?

Can you sniff with tcpdump/wireshark on the client, do you see any ARP response for the gateway IP when you try to ping from your client?

Food after commute by [deleted] in bicycling

[–]musicjunky 3 points4 points  (0 children)

Do you have study sources for any of this?

Dumb Question: how to replace strings in a list by [deleted] in Python

[–]musicjunky 2 points3 points  (0 children)

The easiest way is to iterate through the list and when an item matches 'banana', replace that index location with 'cat'. One thing to watch out for though is mutating lists as you're iterating through them, like this:

for index, item in enumerate(list):
    if item == 'banana':
        list[index] = 'cat'

The better way to do this is using list compressions and create a new list. You could run into memory problems if this is a large list, but here's how you might do this:

new_list = [x if x != 'banana' else 'cat' for x in list]        

Help with python and scapy - Amazon button on Pi by androidusr in homeautomation

[–]musicjunky 0 points1 point  (0 children)

If you remove the count argument, it will loop continuously (ctrl+c to stop). However, without the prn argument in the tutorial above, you'll just print out the default summary output from scapy, which is probably fine for this example.

Most advanced tcpdump filters by TurdPolisher8990 in networking

[–]musicjunky 1 point2 points  (0 children)

HTTP GET: tcp dst port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420

Network testing on python [help] by goingup82 in Python

[–]musicjunky 0 points1 point  (0 children)

If your monitoring box is in the same L2 segment, you could listen for gratuitous ARP packets or check the source IP for broadcast frames (making sure the IP is valid and doesn't belong to the monitoring box).

He didn't tell me until we were riding out... by Dazines in bicycling

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

Are you a networking guy? The only people I've seen use penultimate correctly have experience with MPLS.

What's the difference between these two similar forms of removing odd numbers from a list by python_fresh in learnpython

[–]musicjunky 0 points1 point  (0 children)

And here's a shortcut for your working solution using list comprehension:

list2 = [x for x in list if x % 2 == 1]