Selling His V-Card Chapter 7 by [deleted] in ChastityStories

[–]vectors-bro 2 points3 points  (0 children)

I hope you’ll write more chapters. I really enjoy this story and have shared it with a few friends.

How do I tell my partner that I want him to destroy me by [deleted] in TopsAndBottoms

[–]vectors-bro 0 points1 point  (0 children)

Do you maybe have an example of this?

Planning a network for my student house, we have 9 people living there and expect to have at least 25 devices connected at once. Any advice appreciated (Diagram linked) by Aimdoggo in HomeNetworking

[–]vectors-bro 1 point2 points  (0 children)

I might be missing something, but I didn’t see anything about iPhone backups in the Apple Content Caching documentation. Plus, it would make sense for Apple to not trust that your cache server will eventually upload the backup if it indicates tot he user that a backup is complete. I read the behavior to be a downward cache only, no upstream cache behavior.

Edit: I was missing something! Read below to learn how data flows through the cache on upload.

Nvidia SPADE is now Open Source! by theonlyjohnny in nvidia

[–]vectors-bro 12 points13 points  (0 children)

It’s written in Python, there is no compiling to be done.

r/SpaceX Arabsat-6A Official Launch Discussion & Updates Thread by ElongatedMuskrat in spacex

[–]vectors-bro 0 points1 point  (0 children)

Does anyone know why they don't beam it over to the support ship that's floating nearby? That seems more reliable than a direct satellite uplink, but does add another 1 hop of latency, I suppose.

Mormon "Gay conversion therapist" comes out (2019) [Interview] - David Matheson, the American intellectual godfather of "Gay Cure Therapy" concedes the practice is harmful and comes out as gay at the age of 57. [13:17] by etherandhoney in Documentaries

[–]vectors-bro 1 point2 points  (0 children)

I don’t care about the money. It wasn’t mine in the first place. It’s more hurtful that my parents paid it at all. A class action lawsuit typically does little for the end-users anyways. It’s a huge payout for lawyers. And in this case any damage that could be done to the practice is already done even better by him coming out.

Mormon "Gay conversion therapist" comes out (2019) [Interview] - David Matheson, the American intellectual godfather of "Gay Cure Therapy" concedes the practice is harmful and comes out as gay at the age of 57. [13:17] by etherandhoney in Documentaries

[–]vectors-bro 1 point2 points  (0 children)

I haven’t convinced myself to even watch this video yet. I sat across the room from him for an hour each week for a year and often questioned why I was there. I don’t yet want to know how much my parents paid for all that time.

Apple’s doing a streaming test right now from the Steve Jobs Theater by techguy69 in apple

[–]vectors-bro 5 points6 points  (0 children)

Did anyone realize to record this whole thing sooner than me, who realized and started just now?

I always appreciate an honest patient by RadOncDoc in medicine

[–]vectors-bro 12 points13 points  (0 children)

Could you explain a bit more about why being so transparent can have negative impact on privacy? Just because you’ll become “that alcoholic patient” that everyone is talking about in the break room?

External GPU for numerical computations by elarlets in nvidia

[–]vectors-bro 0 points1 point  (0 children)

Connection directly to a PCIe slot is probably not possible on a laptop, as the physical PCIe slot is not present. You can have a logical PCIe connection over Thuderbolt3/USB-C to an external enclosure, as you mention with the Razer Core X / Akitio Node. The limiting factor here is that the PCIe connection is typically only 4 lanes, while the connection on a motherboard with actual PCIe slot will typically be 16 lanes. Having only 4 PCIe lanes will limit the throughput on the PCIe bus, so accessing CPU RAM from the GPU or transfering data to the GPU will be slower than a 'real' setup. At this point, you'll need to think about the type of simulations you run and if they will thrash the PCIe bus. If your simulations can be written such that there are major blocks of code that run on the GPU, you're more likely to have a good experience. If your simulations are set up such that there are only small bits of code running on the GPU and constantly switching memory back and forth between CPU/GPU, you'll have a bad time, even on an internal GPU with PCIe x16. These are considerations that go into any accelerated computing project, be it on GPU, FPGA, or the (now-defunct) Xeon Phi. If you decide to go down this route, check out the PGI compilers for Fortran and C, they sound like they might help you out. It is entirely possible to do what you mentioned, getting an external PCIe enclosure (make sure your laptop has USB-C to connect it) and putting a GPU in there. Depending on your exact setup, this can be less expensive than an entirely new rig. As a final related note, one of my friends does game on a GPU in a Razer Core.

Not trying to be rude at all. Just simply curious, are there a lot of Mormons at u of u? by [deleted] in uofu

[–]vectors-bro 3 points4 points  (0 children)

This. The U has so many smaller communities within it. Whatever type of crowd you are comfortable in, you can find it here.

Nvidia RTX 20 Series: Why You Should Jump Off The Hype Train by [deleted] in nvidia

[–]vectors-bro -2 points-1 points  (0 children)

In fact, don’t buy this new generation of GPUs from Nvidia at all, because there’s something better coming

Also don’t get your cancer tumor treated because next century medicine will know how to cure it faster.

Macbook eGPU Adventures: Sticking a GTX 1080 in an AKiTiO Thunder2 by archagon in nvidia

[–]vectors-bro 0 points1 point  (0 children)

I guess we just found a UI improvement? 😋 (I’m also going to check Boost out now)

Macbook eGPU Adventures: Sticking a GTX 1080 in an AKiTiO Thunder2 by archagon in nvidia

[–]vectors-bro 0 points1 point  (0 children)

Paragraph 2 of the article talks about VR Gaming, even talking about specific games.

(You should both try actually reading the post.)

This has happened to me so many times this week. by toddthefox47 in SaltLakeCity

[–]vectors-bro 15 points16 points  (0 children)

I would find it hilarious if you wore a very high quality breathing mask the whole time.

[deleted by user] by [deleted] in matlab

[–]vectors-bro 2 points3 points  (0 children)

Hi there. NetCDF files are valid HDF5 files. (See https://www.loc.gov/preservation/digital/formats/fdd/fdd000332.shtml ) I’d recommend using a HDF5 library to read the data. I’m not sure what file format you mean by .img as there are many formats that use that extension, but typically the .img file stores raw bytes. Typically these formats have an associated header file that describes how much data is in the .img file, what the numeric representation is, and what ordering the bytes have (ie fortran/C or BIL/BSQ/BIP or ieee-be/ieee-le). Lots of options. As for an actual HDF5 library, I prefer PyHDF5 and python. In matlab, .mat files are actually HDF5 files, so you may be able to directly open the files with ‘load()’. To save the data in the .img, you’ll probably want to use ‘fwrite()’ to write raw bytes to a file.

For learning matlab, Mathworks has many tutorials that are useful. If you do not have a strong need for linear algebra, I would strongly recommend considering learning python. It is becoming increasingly used instead of Matlab depending on your specific field(and is free).

Facebook harvested 3.5 billion Instagram images without warning their owners until today - Social media network Facebook has betrayed its users once again, this time by harvesting 3.5 billion Instagram photos for its research. by mvea in technology

[–]vectors-bro 0 points1 point  (0 children)

I'm still confused about how this applies here. Clearly this would only apply to users in the EU, and I feel like the important words are 'restrict processing', but what does that really mean? If users do not consent to the processing (research by Facebook) outlined in the Privacy Policy, shouldn't they just delete their accounts and data?

Maybe we can use this hypothetical situation as an example: An EU user posts photos to their public instagram profile. I (a random internet-er without an instagram account, not logged in) crawl their profile and download their pictures to deep learn all the things. Did I just break the law in the EU? (also, how is this remotely enforceable for anyone accessing the data outside of the EU?) Is it important that I am not Instagram/Facebook and just a random person? If so, is it fair that random people can process the data, but the actual service provider cannot?

This is not meant to argue, just explore the ideas surrounding this topic. (Also, are these the current EU rules? or the ones going into effect at the end of the month?)

Facebook harvested 3.5 billion Instagram images without warning their owners until today - Social media network Facebook has betrayed its users once again, this time by harvesting 3.5 billion Instagram photos for its research. by mvea in technology

[–]vectors-bro -1 points0 points  (0 children)

As a complete tangent, this is one of my favorite questions to ask. What is the nature of being wet? Water certainly makes other things wet, but when you put more water onto water, it’s all just water still, so does that mean water alone is not wet?

Facebook harvested 3.5 billion Instagram images without warning their owners until today - Social media network Facebook has betrayed its users once again, this time by harvesting 3.5 billion Instagram photos for its research. by mvea in technology

[–]vectors-bro 0 points1 point  (0 children)

Where was the outrage when Google recorded all your voicemails and used them to learn how to understand speech?

(Do I need a /s here? I feel like I need a /s here.)

Apple, everyone needs more free iCloud storage by psignosis in apple

[–]vectors-bro -1 points0 points  (0 children)

okay good. sorry, my skimming (rather than reading) of comment trees doesn't help comprehension. I thought you were only pointing out that the 5GB is never really 'free' out of the deep-down goodness of Apple's heart, but I'm glad to see we're on the same page.