I always picked Raoโ€™s based on the container lol I never even considered the sugar content!
๐Ÿ‘︎ 774
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/diggeo
๐Ÿ“…︎ Jan 06 2022
๐Ÿšจ︎ report
Milk and plant-based beverage containers will soon be refundable at B.C. Return-It collections sites cheknews.ca/milk-and-planโ€ฆ
๐Ÿ‘︎ 24
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/VicLocalYokel
๐Ÿ“…︎ Jan 18 2022
๐Ÿšจ︎ report
[no spoilers] I made a survival knife, small power cell, and a container to hold them (based on the containers in game) for my little brother for Christmas (ignore the mess lol my crafting area is terribly disorganized) reddit.com/gallery/ro1csv
๐Ÿ‘︎ 312
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Fluffiest_RedPanda
๐Ÿ“…︎ Dec 25 2021
๐Ÿšจ︎ report
LPT: If you are going to throw away sharp objects like broken glass, put it in a container or cardboard box and label it. It is safer for the sanitation workers that are otherwise being cut by sharp corners slicing through bags.
๐Ÿ‘︎ 395
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/MotherofDingDongs
๐Ÿ“…︎ Nov 23 2019
๐Ÿšจ︎ report
Anyone have a good alternative container for freezer dishes/casseroles which are acidic? (i.e. tomato based sauces because they react with aluminum foil pans and I need to make LOTS of freezer meal stuff to prepare for postpartum)

I tried searching before posting, but didn't find an answer... kind of hard to word something like this in a search. (Edit to clarify before someone suggests throwing everything in bags-- Yes, I can use ziplocs/silicone equivalents to ziplocs, but I need pans of stuff I can just throw in the oven too)

๐Ÿ‘︎ 25
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/escapish
๐Ÿ“…︎ Jan 03 2022
๐Ÿšจ︎ report
A brief and incomplete guide for selecting the appropriate container from inside/outside the C++ standard library, based on performance characteristics, functionality and benchmark results

This guide was written as an appendix to the std::hive (nee: colony) standards proposal - but mainly for my own amusement. If anyone has any critique or questions, please comment! Otherwise, hope it helps someone. I realise the exact format I've given is not absolutely perfect, but I tried a few layouts and it was the best.

Note, this guide does not cover:

  • All known C++ containers
  • Multithreaded usage/access patterns in any depth
  • All scenarios
  • The vast variety of map variants and their use-cases
  • Examinations of technical nuance (eg. at which sizeof threadhold on a given processor does a type qualify as large enough to consider not using it in a vector if there is non-back erasure?). For that reason I'm not going to qualify 'Very large' or 'large' descriptors in this guide.

These are broad strokes and can be treated as such. Specific situations with specific processors and specific access patterns may yield different results.There may be bugs or missing information. The strong insistence on arrays/vectors where-possible is to do with code simplicity, ease of debugging, and performance via cache locality. The relevance of all assumptions is subject to architecture.The benchmarks this guide is based upon are available here and here.

Start!

a = yes, b = no

  1. Is all you're doing just inserting to the back of the container and iterating?

0a. Do you know the largest possible maximum capacity you will ever have for this container, and is the lowest possible maximum capacity not too far away from that?

0aa. If so, use an array.

0ab. if not, use a vector.

0b. Can you change your data layout or your processing strategy so that back insertion and iterating would be all you're doing?

0ba. If so, do that and goto 0a.

0bb. If not, Goto 1.

0b. Goto 1.

  1. Is the use of the container stack-like, queue-like or ring-like?

1a. If stack-like, use plf::stack, if queue-like, use plf::queue (both are faster than the std:: equivalent adaptors, have stable pointers to elements and are configurable in terms of memory block sizes). If ring-like, use "ring_span lite".

1b. If not, goto 2.

  1. Does each element need to be accessible via an identifier ie. key? ie. is the data associative.

2a. If so, is the number of elements small and the type sizeof not large?

2aa. If so, is the value of an element also the key?

2aaa. If so, just make an arr

... keep reading on reddit โžก

๐Ÿ‘︎ 69
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/soulstudios
๐Ÿ“…︎ Dec 11 2021
๐Ÿšจ︎ report
Using Container Technology to Run Debian Application on EL-based Distributions?

Hi all,

In our environment, we deploy a Debian application to client-facing terminals. That said, we and our devs are using EL-based laptops to do work.

Occasionally, we have to run the application (which normally runs on Debian 8-10) on our laptops. The current solution is a hack at best. I know we can do this better.

I've quickly read about Flatpak, Snap, and Appimage. I'm not positive any of these solve the problem. I effectively want a minimal Debian 10 runtime in a container and then I can layer the application on top. We have over 20 environments for the application, so I need over 20 of these different containers.

I've used Podman/Docker before, but only for server applications. It kinda sounds like it need Podman/Docker but for my desktop application.

Cheers

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/ABotelho23
๐Ÿ“…︎ Jan 16 2022
๐Ÿšจ︎ report
Is cows milk in returnable glass containers worse than plant-based imlks in plastic packaging?

Trying to be zero waste but I can't tell if using cows milk in reuseable bottles I can bring back is worse than plant milks in plastic packing (tetrapacks, big plastic jugs). I' am trying to put a bit more thought into my strategies to help minimize carbon emissions as well as zero waste but I can't find zero waste plant milks very easily that are not a million dollars.

I also cannot make my own as I could not, with all the different recipes I tried, make good oatmilk. I also read that nut milks, which I could make, are also not great environmentally so I should stay away from those aw well.

So stuck in between a rock and a hard place and would appreciate any thoughts on the matter :)

๐Ÿ‘︎ 16
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Aurora1282
๐Ÿ“…︎ Dec 08 2021
๐Ÿšจ︎ report
Lazy loading LXC container based on network traffic, Wake on Lan?

I'm looking for a tool like Container Nursery but then for Proxmox LXC containers instead of Docker containers.

My server makes a lot of noise, even when services are not being accessed. By only enabling containers when needed I will be able to reduce noise and energy consumption.

Do TurnKey LXC containers support wake on lan functionality? Some information was found in this blogpost.

๐Ÿ‘︎ 17
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/FunDeckHermit
๐Ÿ“…︎ Dec 13 2021
๐Ÿšจ︎ report
Waydroid - A container-based approach to boot a full Android system on a regular GNU/Linux system waydro.id/
๐Ÿ‘︎ 1k
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/nixcraft
๐Ÿ“…︎ Sep 22 2021
๐Ÿšจ︎ report
Has anyone managed to combine Xilinx's new "Block Design Containers" with a script based BD flow?

Chapter 5 of ug994 is all about "Modular Design with Block Design Containers" but from what I can tell you can only use bottom up flow if you save BDs as .bd design sources rather than as TCL scripts (๐Ÿคฎ).

Top down flow doesn't seem any better since I have to pre-make all the sub blocks, which doesn't really work either.

Anyone had any success with this flow?

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/thecapitalc
๐Ÿ“…︎ Jan 05 2022
๐Ÿšจ︎ report
Does the UK not have any sanitation laws? Like this UK based MUA is using concealer, highlighter, contour and lip gloss all straight on their clientsโ€™ faces.
๐Ÿ‘︎ 108
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/r-achrogers
๐Ÿ“…︎ Jan 16 2021
๐Ÿšจ︎ report
Victoria Bateman: A big constraint to urban growth is managing waste and sanitation. Manchester during the Industrial Revolution enjoyed robust growth based on individual entrepreneurship but slow government involvement in bolstering public health hobbled development (Legatum Institute, April 2016) youtu.be/h2ORSzKMKe4
๐Ÿ‘︎ 54
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/yonkon
๐Ÿ“…︎ Jun 03 2021
๐Ÿšจ︎ report
Ojbk tea shop $3.99. Brought my own containers. Good but maybe not around the $15 value based on their menu.
๐Ÿ‘︎ 7
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/cherry2sherry
๐Ÿ“…︎ Jan 01 2022
๐Ÿšจ︎ report
This Hand Sanitizer that Came in an Oil Container
๐Ÿ‘︎ 18
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/westwardnomad
๐Ÿ“…︎ Dec 24 2021
๐Ÿšจ︎ report
This Hand Sanitizer that Came in an Oil Container
๐Ÿ‘︎ 34
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/westwardnomad
๐Ÿ“…︎ Dec 26 2021
๐Ÿšจ︎ report
Last Friday, masons and seamstresses across Anosy completed a week-long course in entrepreneurship with our partners CARA. This is the next exciting step in building a sanitation based market, where people living in rural areas will have access to safe toilets and washable menstrual hygiene products
๐Ÿ‘︎ 4
๐Ÿ’ฌ︎
๐Ÿ“…︎ Jun 21 2021
๐Ÿšจ︎ report
Cold raw tofu with a soy based sauce, eaten out of a plastic container on the kitchen counter
๐Ÿ‘︎ 136
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Bostonlobsters
๐Ÿ“…︎ Oct 28 2021
๐Ÿšจ︎ report
Container City - Recycled shipping container architecture based in London
๐Ÿ‘︎ 37
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/scatter-graph
๐Ÿ“…︎ Nov 24 2021
๐Ÿšจ︎ report
Golang container-based package manager github.com/mudler/luet
๐Ÿ‘︎ 30
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/mudler_it
๐Ÿ“…︎ Dec 05 2021
๐Ÿšจ︎ report
Is there a URL-bar highliter that changes the color based on the used container?

could be in the form of background color or just a simple colored box around the url bar

๐Ÿ‘︎ 22
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/reddi45678
๐Ÿ“…︎ Nov 14 2021
๐Ÿšจ︎ report
[LifeProTips] LPT: If you are going to throw away sharp objects like broken glass, put it in a container or cardboard box and label it. It is safer for the sanitation workers that are otherwise being cut by sharp corners slicing through bags. reddit.com/r/LifeProTips/โ€ฆ
๐Ÿ‘︎ 15
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Know_Your_Shit_v2
๐Ÿ“…︎ Nov 23 2019
๐Ÿšจ︎ report
TIL that the chemical toilet is probably the most well-known type of portable toilet, but other types also exist, such as urine-diversion dehydration toilets, composting toilets, container-based toilets, bucket toilets, freezing toilets and incineration toilets. en.wikipedia.org/wiki/Porโ€ฆ
๐Ÿ‘︎ 84
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Plus-Staff
๐Ÿ“…︎ Oct 13 2021
๐Ÿšจ︎ report
From that one time someone exploded a hand sanitizer container with a lighter
๐Ÿ‘︎ 41
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Space__Gecko
๐Ÿ“…︎ Dec 20 2021
๐Ÿšจ︎ report
Oil company based in the Middle East use migrant worker as a mobile sanitation unit. Slavery repackaged.
๐Ÿ‘︎ 848
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/CJ2324
๐Ÿ“…︎ Mar 13 2020
๐Ÿšจ︎ report
This unique project delivered by Photoneo to Dedoles required the development of a unique, specially designed automation solution for the sorting of parcels prepared for shipment and their placement into different containers based on the delivery company. v.redd.it/0fev6jmuy7681
๐Ÿ‘︎ 7
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Jay-Wevolver
๐Ÿ“…︎ Dec 18 2021
๐Ÿšจ︎ report
How doable is it to incorporate sanitation in an underwater container apartment in a river?
๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/GreatUmpire1
๐Ÿ“…︎ Apr 23 2019
๐Ÿšจ︎ report
Broth from a bowl is considered a meal, but broth from a thermos is considered a drink. Soup changes what it is based on its container.
๐Ÿ‘︎ 20
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/SpacialNinja
๐Ÿ“…︎ Oct 01 2021
๐Ÿšจ︎ report
Maybe everybody already does this and Iโ€™m just stupidโ€ฆ but if youโ€™re struggling to store/chill fragile cake without a proper cake box - flip over a regular Tupperware container and use the lid as the base. Seriously why did I never think of this before ! reddit.com/gallery/rxomms
๐Ÿ‘︎ 3k
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Joelbotics
๐Ÿ“…︎ Jan 06 2022
๐Ÿšจ︎ report
Waydroid - A container-based approach to boot a full Android system on a regular GNU/Linux system waydro.id/
๐Ÿ‘︎ 49
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/lgsp
๐Ÿ“…︎ Sep 23 2021
๐Ÿšจ︎ report
For my fellow US-based Demelsa Haughton fans: Happy Halloween and Enchanted Christmas are delayed by months due to shipping container delays. Yes I called Ravensburger to get the scoop, lol #nerd
๐Ÿ‘︎ 17
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/solace173
๐Ÿ“…︎ Sep 29 2021
๐Ÿšจ︎ report
My Lid for my Oil based Poly is destroyed. any good alternatice containers to store oil based poly? reddit.com/gallery/pmcrcd
๐Ÿ‘︎ 8
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Builds_By_Alexis
๐Ÿ“…︎ Sep 11 2021
๐Ÿšจ︎ report
I got the opportunity to create an Adventure Lab and this is the Bonus Cache container. The lab is a long walk along the beach "with the cow on vacations" and you've to gather the stage answers based on the photos with the cow-container (ex. it covers a sign on the photo, what's the number on it).
๐Ÿ‘︎ 40
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/mr_ari
๐Ÿ“…︎ Oct 06 2021
๐Ÿšจ︎ report
Can you transfer water based stain to a different container?

I recently bought a water based stain that comes in a regular metal paint can. And it wood take me a long to time to finish it since I mostly build small things like knife handles and so on. I hate working with that metal can because every time I need to take a little for a coat, I have to have something to pry it open with, and doing that multiple times, the lid bents around the edges and gets stuck and when I pry it open it sometimes snags and spills and itโ€™s just terrible because I do everything in my house and want to avoid spills at all costs. My question is if I can just pour that stain into a mason jar per say and keep it there without it drying out? Is it safe to do that?

๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/david47s
๐Ÿ“…︎ Oct 24 2021
๐Ÿšจ︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.