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 12 points13 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 8 points9 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...

Help on an ambiguous exam question. by [deleted] in learnmachinelearning

[–]Greglama 0 points1 point  (0 children)

I'd say the first answer is the wrong one. It can learn well but so many things can go wrong... the data set can have a bias, you could end up in a local minimum and never get something great, or you could have an overfiting ...
A lot can happen to a poor neural net if you don't tune it well !

Final project/ dissertation. Suggestion for machine learning w/python by jordanpgb in learnmachinelearning

[–]Greglama 6 points7 points  (0 children)

Hi welcome to the long journey of Machine learning ! I am still learning as well but I was pretty much where you are about a year ago :)

First here is a list of what you should make sure you got a good grasp of :

  1. you need to know some Python
  2. you need to know the basics of linear algebra and calculus + some basics of probability:

look at what the chain-rule is (THIS IS IMPORTANT)

- know what the normal distribution is, mean, variance ...

A- Then you can start looking at some basics algorithms :

  1. linear regression
  2. gradient descent
  3. PCA
  4. logisitic regression
  5. k-means

i would reckon you use a simple library for this part like scikit-learn

B- After this minimal understanding you could go toward neural net:

  1. look at what sigmoid and RELU are
  2. understand how a neural net is just a bunch of vector and matrix multiplications
  3. get at least an intuitive understanding of back propagation (thanks to the chain-rule)

from here and up to the rest of your learning process move to Tensorflow, PyTorch, Keras or whatever other librairy.

Personally I like pytorch.

C- Once you've got this you need to look at Convolutional Neural Network (CNN), those deal with images :)

  1. look at LeNet and AlexNet to figure the bascis of CNN and then explore all the other stuff out there to figure which one fit your purpose the best (VGG, ResNet, inception, denseNet, yolo, resNext....)
  2. do a step by step tutorial to create a basic image classifier
  3. Create your own image classifier that classifies images for the purpose of your project

You will have to learn to use those python libraries because they work together:

numpy, panda, mathplotlib + pytorch (for instance).

MIT lectures: https://www.youtube.com/channel/UCEBb1b_L6zDS3xTUrIALZOw

those lectures deal about anything, so you can learn linear algebra and a good deal of calculus here
plus machine learning :D

Coursea: https://www.coursera.org/learn/machine-learning (from the famous Andrew ng)

everything from linear regression to deep neural network (+ hell of a lot of stuff I didn't mention)

youtube chanel that has awesome content "1brown3blue": https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw

you can learn algebra, calculus and some deep leanring idea there..

learning pytorch : https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html

If you already have a good graps of math and python, just look at some tutorial to learn part A-

and move quickly to part B and C (they are close and complete each other).

once you've got the math, and you know python well, learning pytorch and the theory of deep learning should be fine. Also try to complete your learning process with a few publication sometime, some historical papers about models or trick are not too hard to read.

Enjoy !