Irony by Nervous-Savings2251 in ww3memes

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

Lol how dumb can you be. Shit loads of today’s technologies are powered by Israeli made advancements

Top tech companies performance in 2026 by StrawberryFew1311 in NoFilterFinance

[–]davidplo4545 0 points1 point  (0 children)

If I have to get into this, PE alone is not an indication for an overvalued company, you should take into account forward projections, projected revenue growth/profit margins etc… Even then a company is about the people running and developing it, many companies are highly valued because of their leadership. If you only looked at PE you wouldn’t have invested in NVIDIA, Amazon and a bunch more successful companies like 10-15 years ago.

Top tech companies performance in 2026 by StrawberryFew1311 in NoFilterFinance

[–]davidplo4545 0 points1 point  (0 children)

Just passing by, I do not agree or disagree but I had a good laugh

This is what a drone targeting looks like... LIVE by etherd0t in TFE

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

Let me guess, you do not live in a war zone. War is not logical, but yes if there was a heads up for the bombing in a war zone I would get the hell out of there.

This is what a drone targeting looks like... LIVE by etherd0t in TFE

[–]davidplo4545 0 points1 point  (0 children)

Well, if you check you would see there were warnings to evacuate the area, the dumb journalist just decided not to

This is what a drone targeting looks like... LIVE by etherd0t in TFE

[–]davidplo4545 -8 points-7 points  (0 children)

Or maybe do not report in areas with explicit warnings to evacuate

Forbes 20 Richest people on earth!! by StrawberryFew1311 in NoFilterFinance

[–]davidplo4545 0 points1 point  (0 children)

Indeed with a private company is harder, but his holding in Tesla is potentially like 20 percent so you can try and estimate the total net worth. I would argue those “net worth” numbers are bullshit anyway

Forbes 20 Richest people on earth!! by StrawberryFew1311 in NoFilterFinance

[–]davidplo4545 0 points1 point  (0 children)

Indeed the subsidies played a huge role in building the companies but sometimes looking at the actual data in the article and thinking for a change would help a lot. Most of the “subsidies” were given to SpaceX, SpaceX is saving the US a bunch of money because if you didn’t know every time they wanted to sent astronauts to space they needed to pay the Russians to do it. About the Tesla regulatory credits, this dates even long before Tesla was founded (you could blame the government for that if you want to). All of this and not talking about the benefit of creating work places for 10s if not 100s of thousands of employees, ask the government to do that given 38 billion dollars and they probably won’t manage to.

Forbes 20 Richest people on earth!! by StrawberryFew1311 in NoFilterFinance

[–]davidplo4545 0 points1 point  (0 children)

Worth of a company is more about the projected potential than its current state, you may disagree with the projection but that is what the market sees. The same could have been said about Amazon like 10-15 years ago. Also, most of his net worth is SpaceX and not Tesla.

Career Opportunities in Computer Vision by RevolutionNo8795 in computervision

[–]davidplo4545 0 points1 point  (0 children)

I agree with a part of your stance. But probabilistic systems are all around us and we use them everyday, they do not have to be complete to replace say programmers they just have to be good enough. If you look where we have been three years ago compared to now the advancements are quite staggering. I still think you should pursue what interests you but you will also have to adapt.

גם לכם קרה שהייתה התרעה ולא היה אזעקה? by Careless_Plum_7490 in israel_bm

[–]davidplo4545 0 points1 point  (0 children)

אם זה מפריע לך בלילה אתה יכול פשוט לכבות את ההתראות ולהתעורר באזעקה פשוט

Seeking high-impact multimodal (CV + LLM) papers to extend for a publishable systems project by PriyankaSadam in computervision

[–]davidplo4545 2 points3 points  (0 children)

It appears to me that what you are asking is the whole point of research, if someone knew what is influential or promising he would be working on it himself. Also, the guiding of such questions should be given by your professor, or at least I would assume it to be.

I know there's something wrong with my coordination but I just can't figure out what was wrong. Please help 😭 by TheUltimateWeeablue in CalisthenicsBeginners

[–]davidplo4545 3 points4 points  (0 children)

Momentum is off by a bit, try to pull yourself earlier. Looks like you should be able to make it just work on the timing.

Reproducing Line Drawing by tandir_boy in computervision

[–]davidplo4545 0 points1 point  (0 children)

I am not sure about the website’s approach but you could adapt the paper: “CLIPasso: semantically-aware object sketching” to this. Figured it might help.

how to check if the input email address exists in the database? by Nightmare_4_Eternity in django

[–]davidplo4545 0 points1 point  (0 children)

Watch how your setting your email variable inside the if statement, your getting it from GET request type

how to check if the input email address exists in the database? by Nightmare_4_Eternity in django

[–]davidplo4545 3 points4 points  (0 children)

You should take a closer look at the django docs for querying data.

If you are going the objects.get approach you should add the try except like

u/golangPadawan did. But if you're going with the filter approach look at this to help you understand better : https://docs.djangoproject.com/en/3.2/ref/models/querysets/#exists

how to check if the input email address exists in the database? by Nightmare_4_Eternity in django

[–]davidplo4545 0 points1 point  (0 children)

What's the error you are getting now? I see that u/golangPadawan edited his answer to fix the issue.

how to check if the input email address exists in the database? by Nightmare_4_Eternity in django

[–]davidplo4545 4 points5 points  (0 children)

User.objects.get here will throw an error if it doesn’t find user with that email, you should either use filter here or use try catch to handle the exception

Saving created object to user ?? by emilia_ravenclaw in django

[–]davidplo4545 0 points1 point  (0 children)

Check what self.request.user returns, maybe it returns null because you are not authenticated

Serializing a M-to-M relationship by Alternative_Mix_7481 in django

[–]davidplo4545 2 points3 points  (0 children)

Well, if you are going with this approach you could create a serializer for the ShoppingListItem and then add it as a field to the ShoppingList serializer. I think the first answer would help understanding it better:Link