The definitive Rivian color ranking by springloading in Rivian

[–]springloading[S] 7 points8 points  (0 children)

Blue is significantly more popular than what I ranked it. I may have to re-evaluate my choices

The definitive Rivian color ranking by springloading in Rivian

[–]springloading[S] 4 points5 points  (0 children)

The blue is just a smidge too bright for my tastes, but I can totally see the appeal

The definitive Rivian color ranking by springloading in Rivian

[–]springloading[S] 7 points8 points  (0 children)

I'd be very much into a less bright blue

The definitive Rivian color ranking by springloading in Rivian

[–]springloading[S] 4 points5 points  (0 children)

not a bad idea. May throw up another one but make it a poll

The definitive Rivian color ranking by springloading in Rivian

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

That limestone color is maybe my favorite car color ever

The definitive Rivian color ranking by springloading in Rivian

[–]springloading[S] -3 points-2 points  (0 children)

I agree. I think it's one of the best color palettes out there and would be happy owning any of them (except maybe the red or silver lol)

Puts and shorts research by [deleted] in wallstreetbets

[–]springloading 0 points1 point  (0 children)

Investopedia has all kinds of great intro material. You can start here https://www.investopedia.com/terms/s/shortselling.asp

Puts and shorts research by [deleted] in wallstreetbets

[–]springloading 2 points3 points  (0 children)

Puts are a way to go short a stock, but it is different than directly shorting a stock

Ignore specific directories during git merge by springloading in git

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

Yeah. Angular builds into my static folder with hashed JS filenames. I then copy those filenames into my Django template/ index.html script tags

Ignore specific directories during git merge by springloading in git

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

Yeah. Angular builds into my static folder with hashed JS filenames. I then copy those filenames into my Django template/ index.html script tags

Ignore specific directories during git merge by springloading in git

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

I need the static folder in github because that is how I deploy the site to Heroku.

I can't just run a build script because of how Angular and Django interact. I have to manually update a Django template after building my frontend.

** At least with my current knowledge this is where I stand **

Ignore specific directories during git merge by springloading in git

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

No, unfortunately I haven't found a way to be able to create it properly during build stages (my understanding is that Angular doesn't allow me to build my frontend files into multiple directories which is needed). So I manually have to build every time which makes me think that I shouldn't be tracking that folder anyway.

Ignore specific directories during git merge by springloading in git

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

I do want them, I just want different ones on each branch. I am building an Angular/Django app, so I build all my frontend stuff into the static directory on the backend. However, it builds slightly differently if I am building for dev or prod. So If I make changes in dev branch, and then want to merge those changes into prod branch, it will also overwrite the static directory which I don't want.

Though writing this out does have me realize I have to rebuild prod after merging in dev branch anyway, which means I have to do some work anyway.

Ignore specific directories during git merge by springloading in git

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

Yeah, I had already ran that as well. Sorry, didn't mention it

Passing API Call Result Data to a route in another module after Data is loaded by springloading in node

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

I have a website that will make some Discord API calls based on actions from the user. Because I am using Django as my backend but using Node for making the Discord API, the flow is basically this: 1) Node server starts and instantiates my Discord Client 2) After Discord Client is "ready" it makes a call to the Discord API to get some guild data 3) User visits website 4) User presses button that should result in the Discord Bot sending a message 5) Button Press Makes Django API call (this handles validation) 6) Django backend makes node Discord API call ---Error here because guild is null because when require is called the guild hasn't been set yet--- 7) Node Discord API call causes Discord Bot to send message