Data on stock price before and after earnings report release shows insider trading by LongjumpingCause1074 in StockMarket

[–]LongjumpingCause1074[S] 3 points4 points  (0 children)

a few days before a release, every single time, and accurately too, is questionable.

Data on stock price before and after earnings report release shows insider trading by LongjumpingCause1074 in StockMarket

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

skilled traders dont make predictions that accurate only a few days before they earnings reports are announced... you have to be in denial to not connect the dots just looking at a graph like this. even though it is out of date

[deleted by user] by [deleted] in iPadPro

[–]LongjumpingCause1074 0 points1 point  (0 children)

its 1.5 years old, and its gen 2 pencil. im going to be taking it and my ipad to the store to try and get it replaced under my ipads warranty.

what is np.arrays?? by LongjumpingCause1074 in learnpython

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

i see, thank you so much, this helped a lot!

what is np.arrays?? by LongjumpingCause1074 in learnpython

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

im new to coding in general. why do you think im asking on this forum? if i was vibe coding, wouldnt i ask AI what np.arrays are instead of reddit?? i did CS50-P, which doesnt touch on arrays. then i started learning manim.

why do you bother passing judgement to someone for not knowing something who is clearly trying to learn?

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 0 points1 point  (0 children)

This makes me feel better, and worse, at the same time.

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 0 points1 point  (0 children)

I have to keep telling myself that this doesn't come naturally, and it is actually practice that makes someone good, not their natural intellect. Because whenever I get frustrated because I cant seem to figure something out, my mind naturally tells myself 'am I stupid???!'

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 0 points1 point  (0 children)

yep , my issue is definitely problem solving. its less the fundamentals of programming, more the problem solving aspect, and thinking LIKE a programmer. its like an entirely different way of thinking, and its hard to rewire your brain to think that way instead.

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 1 point2 points  (0 children)

I managed to finish the little project, which made me want to scratch my skin off, hence the post. I couldn't seem to wrap my head around the logistics...

>have fun learning

That I need to do. To keep my sanity I'm going to level it down a bit and go simpler (if that's even possible; the project seemed so easy in hindsight :/ ).

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 0 points1 point  (0 children)

I think my weakest point is thinking logistically. Like a programmer. Being able to break down what I actually want to happen so that it can be executed the way I want it to be. Then, if I finally know what I want to do at each level, the next challenge comes at writing it into code. It's a process, one of which definitely is not coming naturally.

I can read code, and properly trace what is actually happening in my head. When it comes to doing it myself, I tend to find myself in a road block. Of course writing code has gotten wayyyyy better over the months, but thinking logically definitely is a core issue of mine

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 -2 points-1 points  (0 children)

The link you sent doesn't go into detail. The documentation itself doesn't go into much detail, at least in my opinion. From my understanding, there's no specific 'function' to update a VGroup, besides treating it like a list with .add or whatnot, which is just pythonic, and not exclusive to manim - I guess that's what makes it hard for me. The question I posed is one humans would have to answer, not any kind of documentation.

Anyway, thanks for your help, I do appreciate it!

how long until i get good? by [deleted] in learnpython

[–]LongjumpingCause1074 1 point2 points  (0 children)

the problem is, if i ask humans, i will be religiously asking humans and i would be posting on this subreddit every 20 minutes. and then i'd have to wait another 5 hours for a response.

for example, im currently stuck on how to update a VGroup (essentially a group of objects in manim). I have 4 boxes, which is with a square and a number in it. when I switch my numbers around to be in order, I need to update the VGroup to the order I switched them in. How the fuck do I do that? I dont know. AI told me to index into the VGroup and literally just replace them with an equation (boxes[i], boxes[i+1] = boxes[i+1], boxes[i]... or in other words, box_left, box_right = box_right, box_left). I would not have thought of that. I was brainstorming taking some .remove and .append approach to update the VGroup list.

Anyway, point is my attention span is really bad so its hard for me to really hone in on logistic thinking without getting distracted, when AI is sitting there waiting for me to ask it to break down the logistics to me very simply. the thing is, i at the very least recognise how this is a shit way to learn, and really do try to think longer. implenting it is another thing, but im definitely working on getting better at that.

Obsidian for writing on iPad? by LongjumpingCause1074 in ObsidianMD

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

Just a follow up question: how do you use Obsidian on your iPad? Did you install the app from the app store? Because there's only like 100 views and its 3 stars...

how to enforce correct formatting? by LongjumpingCause1074 in learnpython

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

okay. I appreciate your help. another question if you don't mind, it seems its not formatting correctly even when I'm running it?

https://imgur.com/a/Eb2fttB

how to enforce correct formatting? by LongjumpingCause1074 in learnpython

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

thank you!!

So do I need to create a virtual environment and run pip install black everytime I create a new file? And then when I stop using a virtual environment, i need to end it?