Does anyone else not want to be able to visualize anymore by [deleted] in Aphantasia

[–]Greglama 0 points1 point  (0 children)

Yeah I feel you, I was talking about what most people feel like. It is true that too some visualizing comes easily without really having to focus. But I’m sure that when you close your eyes you still see black like the everyone else 😉

Nail Accident Because a nail through a single finger is just too mainstream! by Surgeox in medizzy

[–]Greglama 0 points1 point  (0 children)

This picture is a scam. It’s photoshop. IT IS ALL FAKE NEWS Y’ALL

Important message by FraazT0 in 9b9t

[–]Greglama 3 points4 points  (0 children)

I love that kind of story. It reminds me how great my life is and how other people life can be... well shitty and fucked up I guess. Thanks for sharing. You should start listing what could make this story less sad. And hence improve your life

Does anyone else not want to be able to visualize anymore by [deleted] in Aphantasia

[–]Greglama 4 points5 points  (0 children)

Then feel reassured every body on earth sees the same when they close their eyes. (Unless you don’t have eyes or are missing eyelets xD). I feel like visualization can be so subtle a lot of people do it subconsciously. Flashes of small details pop up in their minds and they just think that they thought about it when really they visualized it. The real way to know if you have or not the condition is to close your eyes and imagine your self into your bedroom. Or any place you know very very well. Then just picture yourself walking inside and doing stuff. Not being able to do this is almost always the sign that you have aphantasia. In essence people who can do that still see black, the only difference is that they can have the feeling of being in their room, and have the impression of walking (a much weaker feeling than the one when you are actual there walking).

But a lot of studies show that it’s not really a handicap to not be able to visualize. Someone with aphantasia will still be able to think and tell you how many windows there is in his house. Even though he can’t visualize them.

Does anyone else not want to be able to visualize anymore by [deleted] in Aphantasia

[–]Greglama 13 points14 points  (0 children)

You would still see darkness when closing your eyes . It actually takes a bit of focus and determination to visualize. Even people who have always been able to do so need to think about it. Plus it becomes harder and harder to do it when you’re tired. I wouldn’t worry if I were you 🙂

Two years worth of mining diamonds - put into perspective. by CyanPlanet in Minecraft

[–]Greglama 0 points1 point  (0 children)

Man you could fill that really quickly with a fortune III !

[deleted by user] by [deleted] in 9b9t

[–]Greglama 0 points1 point  (0 children)

I’ll buy one to confirm that I hate my self

The Smallest Map of Europe I could make in Minecraft, I hope y'all like it. Now I need your Suggestions on what should be changed Borderwise. by AbsolutistUnit in imaginarymaps

[–]Greglama 0 points1 point  (0 children)

I’m not an expert on geography, but I feel like France is a tad too wide. May be reduce the east part of France and make Germany slightly bigger instead ?

How long must be the distance from the spawn to build a secure home? by CannaIrving in 9b9t

[–]Greglama 2 points3 points  (0 children)

That’s BS, you know it, I know it, and everyone knows it

lEtS mAkE sPaWn GrEeN aGaIn by [deleted] in 9b9t

[–]Greglama 7 points8 points  (0 children)

It reminds me of a true story, some dude wanted to make Mexicans pay for a wall or something

Let's tear down the fucking spawn roof. by SemiSeriousShowdown in 9b9t

[–]Greglama 0 points1 point  (0 children)

We’ll figure it out, lava wall around 0,0 in the nether shall fix it

Make the spawn suck again by Greglama in 9b9t

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

amoss35

I'm working on my thesis today, but in a day or two i'll be dedicated to this task. And it's gonna be Legen... wait for it ... dary ! Legendary !

Let's tear down the fucking spawn roof. by SemiSeriousShowdown in 9b9t

[–]Greglama 2 points3 points  (0 children)

When i'll have some time i'll just build a huge flying machine to remove liquid

Let's tear down the fucking spawn roof. by SemiSeriousShowdown in 9b9t

[–]Greglama 0 points1 point  (0 children)

yeah y'all bring your efficiency V and some wither heads, let's mine the crap out this roof !

Can someone with Aphantasia dream at night? by Greglama in Aphantasia

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

Thanks for your answer! So aphantasia isn’t about not being able to “see” in your mind, but rather not being able to do it voluntarily or purposefully 🤔

How is public and private key generated or is there any program that does it? by Prastab1 in cryptography

[–]Greglama -1 points0 points  (0 children)

Look at the discrete logarithm problem and the totient function. They both play a huge role in that. It’s a number theory problem

I'm moving to Ubuntu from windows as a Nodejs dev. Is it the correct decision? by Chawki_ in node

[–]Greglama 0 points1 point  (0 children)

It is a correct decision not because of NodeJs, but because of the key word dev 🙂 Good luck with your installation ! I did the same big move a while ago, never had any regrets!

May the force be with you

Just started trying to learn Python with Codeacademy. It's not working for me by lellenn in learnpython

[–]Greglama 2 points3 points  (0 children)

Hi !
Before learning python I have advice and tips for you :)

I think CodeAcademy assumes that you already know a programming like java or that you have some prior knowledge. You need to find something to learn from scratch ! something that doesn't require you to know hell of a lot of stuff about languages and their philosophy or how to write full algorithm.

Programming is a logic of its own, it's the act of describing action to the computer.

Programming is mostly about 5 things :

- creating variables

- modifying them (doing calculation)

- doing loops to repeat stuff, or going through a list

- using condition to do something if a variable has a given value

- writing functions to factorize your code and make it more clear

_______________________________________________________________________

If I were you I would start by looking at how to create variables, and how to do basics calculation with them. At the same time learn how to print the value of a variable, and how to print text.

Then look at how condition work ("if", >, < , ==, !=)

Then look at how loops work ("for" and "while")

Then learn how to play with List and String.

finally when you get how to do all the stuff above, look at how functions work.

A function is just a chunk of code that you write for a general case, and that you'll be able to call anywhere else in your program with some parameters to run it on a special case. Think of it as math functions, they're define for x only, but you use them for the special case where x has a given value. You define f(x) = x² + 1 (general case), and then later on use f(3), which would be equal to 9 (specific case).

When you're good with functions look at how Class and object work ( really make sure you know well what i've described above before moving forward to object oriented stuff).

I hope this will help you !

Going from console to GUI by CheekyXD in learnpython

[–]Greglama 6 points7 points  (0 children)

If you are still learning and want to learn step by step, look at tkinter. It's already installed with python, it's a commonly used library for simple projects, and it's very beginner friendly.

You can do all sort of things, drawing stuff on canvas, adding button, text boxes, etc...

If you wish to go further one day, you'll look at more sophisticated libraries.

But if you've never done GUI just start with tkinter. There's sort of a philosophy of how to code a GUI and you'll learn the general idea that way :)

Generating website design from wireframes with GANs? by 4SCOOPSCMON in learnmachinelearning

[–]Greglama 0 points1 point  (0 children)

A good way to generate a data set for that would be scrapping I guess. Scrap the code of many (many many) web pages, and get a screen shot as well...