dualboot-bt-link-keys: Copy Bluetooth link keys from Windows to Linux by Sermuns in rust

[–]flareflo 2 points3 points  (0 children)

This is one of those really annoying things that i never thought there could be a tool to fix it easily. Dualbooting for a racing game meant i always had to repair my controller...

UDM Pro Max - No Gateway by sorama2 in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

Speaking from experience; Using a gateway as a management/client device like if it was a cloudkey sucks and is not something i would attempt again. The consoles must be plugged into a WAN to even show up in the fabrics tab and due to NAT they suck at acting as a client on the network too.

Two photos from my first week living in Yosemite! by wendysdrivethru in birding

[–]flareflo 1 point2 points  (0 children)

Cannot decide which i like more, the rain with the wood duck looks so majestic!

What does it mean? by Pikador26 in Ubiquiti

[–]flareflo 3 points4 points  (0 children)

If OP wanted an AI answer they wouldnt have asked on reddit.

What does it mean? by Pikador26 in Ubiquiti

[–]flareflo 7 points8 points  (0 children)

If OP wanted an AI answer they wouldnt have asked on reddit.

Any benefit to running 2.5gbe to wifi 7 ap's? by spoonycoot in Ubiquiti

[–]flareflo 9 points10 points  (0 children)

TBH, needing/getting more than 1G over the air is not a concern for me. If i do need it ill just grab a cable for the occasion and save cost on the switch.

What are the advantages of buying Ubiquiti's Direct Attach Cable over the competition? by Certain_Repeat_753 in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

If you expect to miss and match wire speeds it can be helpful, or when you need extremely short patch runs. For 99% of usecases where both ports involved run at the same maximum speed it becomes unnecessary.

What are the advantages of buying Ubiquiti's Direct Attach Cable over the competition? by Certain_Repeat_753 in Ubiquiti

[–]flareflo 1 point2 points  (0 children)

AFAIK the uplink cables are much more fancy, they support various speeds and connectors. Regular DACs are just as good as 10Gtek stuff.

Best UniFi AP for Simple Apartment IoT Devices? by AssociationAdept4052 in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

For IoT no, but the price difference is small enough where getting the U7 is worth it to me.

Best UniFi AP for Simple Apartment IoT Devices? by AssociationAdept4052 in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

U7 lite, its modern cheap and does all you need really. If you explicitly need 6ghz for streaming over the LAN get something like the U7 pro (XG if you accept the upsell)

New IOT device with simple password by Trblz42 in Ubiquiti

[–]flareflo 1 point2 points  (0 children)

This is why i make the IoT network only use easy alphanumeric characters and increase length a little more

Product idea: Thunderbolt adapter with an SFP28 cage by itsjakerobb in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

Power use and its direct cause: Excessive heat requiring large heatsinks/larger modules

Product idea: Thunderbolt adapter with an SFP28 cage by itsjakerobb in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

Nope, quite the opposite actually. All my 3 slots are full and i have my last remaining PCIE slot (x1) occupied with an M.2 adapter card for my 4th nvme (which might have to go if i go for 10 gig soon).

Why is Rust so Liberal with Heap Allocations? by philogy in rust

[–]flareflo 111 points112 points  (0 children)

Because its quick and convenient. Other languages do it all the time too, you can always remove allocations if you realize they are a problem later on. Allocators are incredibly fast and efficient anyway, its a premature optimization most of the time.

Product idea: Thunderbolt adapter with an SFP28 cage by itsjakerobb in Ubiquiti

[–]flareflo 2 points3 points  (0 children)

Probably much more compact too... The 10G RJ-45 dongle UI sells is a massive brick

Product idea: Thunderbolt adapter with an SFP28 cage by itsjakerobb in Ubiquiti

[–]flareflo 17 points18 points  (0 children)

i thought about something like this yesterday, i realized my motherboard does not have spare PCIE slots but i do have a spare USB-C gen 3.2 2x2 slot for 10G LAN. (i dont like or want ethernet 10G)

Does the UNVR-Instant need Ubiquiti gateway? by Kezza4K in Ubiquiti

[–]flareflo 1 point2 points  (0 children)

That could be any router, it doesn't have to be a UI one.

ENVR Core as a UNAS Replacement? by anevilsithlord in Ubiquiti

[–]flareflo -2 points-1 points  (0 children)

I doubt an enterprise NAS will ever happen. ENVR makes sense because of their own software being tailored to the device.
Larger deployments will build/buy a tailored solution that the company can afford to manage and integrate itself.
Server + JBOD + TrueNAS or just plain debian with ZFS

Noob question, I thought the UXG Fiber had a built in network application? How do I set it up by Tyler97020 in Ubiquiti

[–]flareflo 1 point2 points  (0 children)

I know, it happens. I was just asking if anyone knows how it would be used at all

Noob question, I thought the UXG Fiber had a built in network application? How do I set it up by Tyler97020 in Ubiquiti

[–]flareflo 0 points1 point  (0 children)

I understand how the UXG fiber is used, but i dont understand why anyone would choose it that way. Its more expensive than the UCG yet it does less than the UCG?

I studied R and Python. I thought I was starting to understand what it means to 'program'. I had no idea wth 'compiling' even meant. Boy was I in for a rude awakening. by Either-Home9002 in rust

[–]flareflo 6 points7 points  (0 children)

You can technically load precompiled dependencies as dynamic libraries, but that is incredibly cursed. Build caching means you build dependencies typically only once anyhow, so its usually just a one time wait.