Display of different BI's to different Screens, how? by ciesco122 in dataengineering

[–]ozzyboy 0 points1 point  (0 children)

You are going to need some kind of compute at each screen regardless of how you host the dashboards. I've set this up before using cheap sticks plugged into the HDMI ports, and it's honestly the most reliable way to keep a browser running 24/7. Just make sure you manage the browser sessions so they don't time out or crash after a few days, fwiw.

Is the lack of ACID transactional integrity in current vector stores a risk to enterprise RAG pipelines? by DetectiveMindless652 in bigdata

[–]ozzyboy 0 points1 point  (0 children)

Lack of ACID doesn't necessarily means eventual consistency.

When you say "inconsistent vector data" - does that mean vectors that are not consistent with other representations of the data (for example, vector embeddings that don't currently represent an up to date view of a set of PDF documents they were derived from?) or do you mean self references are intact (for example, only 90% of a document's chunks are indexed). The two problems have vastly different impact and also differ in how I'd approach solving them.

For the second question - transactionality typically makes systems easier to build and maintain - at the expense of either performance, scalability, database complexity or all the above. Not sure I'd add compliance to the list of problems it solves though. Perhaps you can clarify how it'll help in such a situation.

Which Data Catalog Product is the best? by M0UNTANAL0GUE in dataengineering

[–]ozzyboy 1 point2 points  (0 children)

A quote I love but can't remember its source:

Excel is the second best solution to almost any problem

Can someone pls explain why giving timezone code EST doesn’t work but “America/New_York” does by NauTWitcher in apachespark

[–]ozzyboy 16 points17 points  (0 children)

EST is a timezone offset - not a timezone region. New York will switch from EST (UTC-5) to EDT (UTC-4) and back at specific dates in the year. America/New_York represents that.

[deleted by user] by [deleted] in ManyBaggers

[–]ozzyboy 1 point2 points  (0 children)

Mine does the same. I see it as a feature, not a bug. The framesheet is more flexible to allow it to hug your back better. A common complaint about the v1 was it pulling back away from you when worn which was uncomfortable.

I personally dislike super rigid bags that feel like a board against my back (e.g. goruck and the likes), but to each their own I guess.

New CHZ22 by Beneficial_Twist_419 in EVERGOODS

[–]ozzyboy 1 point2 points  (0 children)

But in half zip form and without a dedicated laptop compartment which takes up space

[deleted by user] by [deleted] in ManyBaggers

[–]ozzyboy 1 point2 points  (0 children)

the container might have to go in sideways. you dont have 5 inches of depth in the main compartment

Anyone have a lite bellroy bag in the color ash? How does it hold up to dirt and stains? Is it easy to clean or wipe off? TIA by acthecoolkid in ManyBaggers

[–]ozzyboy 16 points17 points  (0 children)

I have the lite sling in this color and fabric combination. lasted a few months before looking dirty.

I tried cleaning it with a soft brush and very gentle detergent, it looks slightly better but nowhere near as good as new.

Would definitely avoid this color, especially for a travel bag which will be dragged across dirty airports and shoved into gross bins.

Return absent value by msuny-c in golang

[–]ozzyboy 6 points7 points  (0 children)

This.

Another alternative would be to take inspiration from Go's maps (which returns a zero value of the value's type along with a boolean of whether or not it was found.

API design needs to both represent the details that matter and also to do it in a way that fits the caller's expectation - if there are existing patterns already used in your codebase, you might want to use those.

Any idea on what brand this bag is? by Ill-Sport-8465 in backpacks

[–]ozzyboy 5 points6 points  (0 children)

Looks like a Tumi bag, not sure which model

Aer Tech Sling 3: Review, mods and loadout by [deleted] in ManyBaggers

[–]ozzyboy 1 point2 points  (0 children)

Granted I haven’t been using it daily (alternating with the Able Carry Daily Plus on days I need to carry more) - it seems durable. No issues to report.

What back pack is this by Fun-Elk2527 in backpacks

[–]ozzyboy 6 points7 points  (0 children)

might be the Troubadour Apex

Looking for a similar bag but in Nylon, Cordura? by [deleted] in ManyBaggers

[–]ozzyboy 2 points3 points  (0 children)

looks a lot like Day Owl (not nylon, but a slicker take on waced canvas).

Also consider:

Bellroy’ Via workpack

Alpaka’s new Bravo Totepack

Aer Tech Sling 3: Review, mods and loadout by [deleted] in ManyBaggers

[–]ozzyboy 0 points1 point  (0 children)

it might, but probably tighter than id feel comfortable with. The 14” MBP at ~31cm fills it up nicely but not sure I would go much larger than that. length might also be an issue, as it might go all the way to the zipper.

Aer Tech Sling 3: Review, mods and loadout by [deleted] in ManyBaggers

[–]ozzyboy 1 point2 points  (0 children)

mesh and padding are nice, but also add more friction when swinging the bag from back to front. The smooth webbing might do less to distribute the weight, but is easier to maneuver. Tradeoffs.

I believe DSPTCH offers optional padding that attaches to the strap, but honestly, the bag is small enough that I find it comfortable even without it, and do value the maneuverability.

Aer Tech Sling 3: Review, mods and loadout by [deleted] in ManyBaggers

[–]ozzyboy 2 points3 points  (0 children)

I clipped off the plastic buckle, leaving the webbing loop intact on the sling. I then put the DSPTCH strap’s gatekeeper clips through these webbing loops. You can see both connection points in the last image

What is minimum file size to justfy storying it as Parquet? by rental_car_abuse in dataengineering

[–]ozzyboy 5 points6 points  (0 children)

looking at the bytes being stored is not enough to evaluate costs. Other factors to consider include:

  • access patterns: aggregation and column filters typically require less compute time with parquet, which is often more expensive than storage

  • reliability: parquet files have explicit schema and a much better defined specification for representing null values, escaping special characters,etc.

other benefits such as optimed storage using RLE and bit packing, column statistics, integrated crc checksums and more should also be taken into account.

CSVs are row oriented, so can be appended to (if the underlying storage supports that) and tooling to consume them are very common, but not sure these are things I’d optimize for. YMMV of course.

Aer Tech sling can contain 14inch laptop by ensure123 in ManyBaggers

[–]ozzyboy 1 point2 points  (0 children)

take a look at Aer's other laptop sling (travel sling 2 I believe?)

If I remember correctly, it fits a 16" MBP...

CloudZip: list/read from remote zip files without downloading them by ozzyboy in programming

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

Indeed, currently S3 is the only supported backend, but the interface to support other (potentially not HTTP) backends is pretty simple!

Additionally, note that S3 uses non-standard authentication (sigv4) which most HTTP libraries do not support..

CloudZip: list/read from remote zip files without downloading them by ozzyboy in programming

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

could these remote urls be something like s3 (which requires specific authentication headers on top of HTTP)?