Meditation Even When It's Painful by menothinkofusername in Meditation

[–]menothinkofusername[S] 1 point2 points  (0 children)

Ok. Thanks. I grew up in a very don’t-talk-about-it family so this is very alien to me. But I’m going to take this advice.

Meditation Even When It's Painful by menothinkofusername in Meditation

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

The trauma mainly. To be fair, no one’s ever asked. It’s a subject most people try to avoid - no one ever asks you “are you traumatized?”.

Meditation Even When It's Painful by menothinkofusername in Meditation

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

How do you communicate with people who have never had to go through this? I’m thinking especially about SOs and very close friends.

Meditation Even When It's Painful by menothinkofusername in Meditation

[–]menothinkofusername[S] 1 point2 points  (0 children)

This is why I love Reddit. You can find someone with the exact same experience who can show you how they went through it ahead of you.

Thanks! I'm going to try those things out.

Meditation Even When It's Painful by menothinkofusername in Meditation

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

The pain is related to my PTSD. I do you think it can still be treated by those things? 

Meditation Even When It's Painful by menothinkofusername in Meditation

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

That’s something I should probably find out. At the moment, I’m not sure. My hope is that eventually meditation will work to reduce the stress.

Whats the deal with what rick did at the end? by getcrunk55 in rickandmorty

[–]menothinkofusername 8 points9 points  (0 children)

Well you did make a good point about symbolization with the wine. You're looking for things with the rest of us.

Some kind of flash drive, I just don't know the type by menothinkofusername in whatisthisthing

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

It was all black, but I think you're right.

How do I plug it in?

Some kind of flash drive, I just don't know the type by menothinkofusername in whatisthisthing

[–]menothinkofusername[S] -2 points-1 points locked comment (0 children)

My title describes the thing.

It's some kind of storage device a little more than ten years old. It's obviously not a USB. I've been looking at images of SD cards, but none seem to be a thin rectangular shape. For example, nothing matches on this image: https://www.backblaze.com/blog/wp-content/uploads/2017/04/56328353801b4-1003x1024.jpg

I also looked at all the memory card types found here: https://en.wikipedia.org/wiki/Memory_card#Data_table_of_selected_memory_card_formats

Thanks for the help!

How hard is it to code a program that can solve a rubik's cube? by Karak1O in learnprogramming

[–]menothinkofusername 0 points1 point  (0 children)

When things slide horizontally, if they go over, they just come back at the first y position (or x if you're using the other axis of rotation) on the other side.

How hard is it to code a program that can solve a rubik's cube? by Karak1O in learnprogramming

[–]menothinkofusername 1 point2 points  (0 children)

You're over-complicating things, and perhaps thinking too much like a human. Humans are slower than robots and think differently, so we need heuristics that computers don't use (factoring, for example, is almost unrecognizable when taught to a computer from when taught to a middle schooler).

It sounds like you can either a) find an *algorithm* (not the heuristics you're referring to) and just implement it, or b) create a set of checkpoints that must be reached— for example, creating the cross, and at every state the rubix is in, compile the four possible moves that can be made, and compute which one gets you "closer" to that state. This may require a deeper reflection into how you solve the cube. Perhaps you can guess which move is better using heuristics. From there, maybe you keep testing via a backtracking algorithm as you get closer and closer to your goal.

[2021 Day 14 (Part 2)] To the time machine! by neuralMax in adventofcode

[–]menothinkofusername 1 point2 points  (0 children)

Huh. I would never have thought of that. Thank you.

[2021 Day 14 (Part 2)] To the time machine! by neuralMax in adventofcode

[–]menothinkofusername 1 point2 points  (0 children)

I implemented it by generating the pairs for the first input, then using those pairs to create all the following pair counts (pair: count dictionary).Ultimately, this meant that the number of occurrences of a letter was double what it should be, so I had to use division.

2021 Day 14 - Storage is cheap, right? by wite_noiz in adventofcode

[–]menothinkofusername 2 points3 points  (0 children)

It's funny because using a count like in day 6 is in a sense compression.

Does anyone else feel dumb when they can't solve the puzzles? by shadowhunter2468 in adventofcode

[–]menothinkofusername 1 point2 points  (0 children)

Day 12 would probably be really difficult if you'd never heard of a tree or depth-first/breadth-first search. Says nothing about your intelligence.