• 0 Posts
  • 29 Comments
Joined 7 months ago
cake
Cake day: December 14th, 2023

help-circle




  • I just discovered how easy ollama and open webui are to set up so I’ve been using llama3 locally too, it was like 20 lines in docker compose, and although I’ve been using gpt3.5 on and off for a long time I’m much more comfortable using models run locally so I’ve been playing with it a lot more. It’s also cool being able to easily switch models at any point during a conversation. I have like 15 models downloaded, mostly 7b and a few 13b models and they all run fast enough on CPU and generate slightly slower than reading speed and only take ~15-30 seconds to start spitting out a response.

    Next I want to set up a vscode plugin so I can use my own locally run codegen models from within vscode.



  • Did you make sure to stop network manager too? I think disabling it tells it not to start it automatically but I think if it was already running it may have stayed up and maybe it brought the interface back up.

    That’s my only guess, if ip link shows it as down still then idk. NetworkManager also has its own Mac spoofing thing so you might have better success editing the properties of the network connection in NetworkManager and putting a new Mac in the cloned Mac address field. I’ve only used macchanger with netctl.







  • I only do web development, but my networking knowledge mostly comes from being the designated person to call the ISP for tech support and being in charge of setting up the WiFi in every place that I’ve lived, in addition to participating and running community scale mesh wifi tech meetups for many years (think NYCMesh except just 4 guys who never accomplished much aside from buying and flashing lots of routers with openwrt lmao)

    I also ran 12Us of homelab for a few years in my basement, which was powered by an overkill fiber to the home setup (courtesy of tricking Comcast into undercharging me for gigabit pro) that necessitated a 10G switch and firewall.


  • Your ISP knows the Mac address of your router since it requests a public IP from them using DHCP. That’s why if you contact support they usually can confirm the brand of your router by doing an oui lookup.

    In theory the FBI could have collected a list of MACs and optionally used an ASN lookup on the public IP and then handed each ISP their list of MACs, which the ISP could associate back to customers to contact. It would only not work for customers who spoof their router WANs ethernet mac.

    But I think just patching it is a normal and fine solution imo.


  • Isn’t Miracast for sending video data? The thing I like about Chromecast is that the phone or remote app just tells the Chromecast where to load the media directly from, and then only sends playback control commands. That makes it a lot lighter resource wise because you don’t need to proxy the stream through a device like a phone that wants to go to sleep to save battery.




  • I’m more excited about reducing congestion when more of my neighbors upgrade to 6, so that BSS coloring and other wifi 6/7 features can enable more efficient use of the spectrum. Before wifi 6 most of the upgrades were just increasing data rates, but really lacking in improvements to spectral use efficiency (like the resource unit allocation in OFDMA which splits channels into sub carriers and centrally plans assignment to multiple client devices for simultaneous use which results in much less wasted airtime compared to each device yelling and listening while waiting to see if they can have exclusive access to the whole channel which wastes time) and interference management (like preamble puncturing which allows partial use of a channel when only a portion has interference). In a crowded environment like an apartment building wifi 6 should help a lot in reducing channel utilization.


  • It feels like the rollout of client modules and APs/routers was better synchronized this time. Back with wifi 6 I ordered the Intel modules within a week of them being available on AliExpress and then waited for what felt like months for APs to be available (it looks like unifi’s wifi 6 ap finally came out in November 2021 based on when I bought it). Unifi’s U7 pro dropped a few days ago so I nabbed one as soon as I saw the email and that arrived today so that’s already set up, and the wifi 7 modules have already been out for a bit, i just didn’t order them since I was anticipating a wait for APs. So now I just gotta wait a bit for shipping and I’ll have all my laptops upgraded too.


  • If it’s just videos you want, you can try using network inspector to see if you can catch the url of the file - assuming giving the url of the video’s webpage to youtube-dl along with a snapshot of your browsers logged in cookies doesn’t work. You might also see an m3u8 in the network inspector, which you can also give the url of to youtube-dl and it’ll download all the segments and merge them into a video file (you might also need auth cookies or headers unless it’s a temporary url which can work anywhere, just check the network request to see what’s sent). Some sites do separate m3u8 for video and audio or multiple ones for different video qualities, so you might need to change the quality to maximum for the browser to request the high quality stream url. You might also see a file requested that just lists the urls for m3u8s of each quality. If you see a vtt file then you can also grab that, convert to an srt, and remux with mkvtoolnix to embed it into the file as an optional subtitle.

    This should all work as long as they don’t use drm / widevine type stuff and as long as they don’t have some supremely annoying security measures (like using authenticated urls that are one time use so by the time your browser shows it in the network inspector the url is expired or something). Otherwise for widevine you’ll need to do some kind of screen / HDMI capture type setup.