He used to be regarded as tony stark. Nah he is Justin Hammer. Steals ideas implements them shit and has no idea about anything
Programmer Humor
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
I get your point but I disagree. I think both Tony Stark and Justin Hammer are more competent than Elon.
Hammer was no where near as good as Tony but he did make some good stuff.
I would say he’s more like Obadiah Stane, an opportunist taking credit for others work.
True. Atleast Hammer knew his weapons and could sell them alone
Of course. Everyone who's ever used a DB knows it's BS. As long as the data is structured - which it a) is because he was able to make assertions about it and b) fucking Excel files are enough - it CAN be imported and SQL'd on. Even Excel has built in support for fuck's sake, not to mention Python and PowerQuery.
The dude is a self-certified moron - he probably struggles with the concept of PKI, too.
https://xcancel.com/elonmusk/status/1889062581848944961
thought the replies would be better. Some people deducted that it uses plain text.
Whenever Elon speaks of programming, he just spouts the most delusional Point-Haired Boss bullshit imaginable. Truly, he has been promoted to the level of his incompetence.
(It is also highly ironic considering the Dilbert creator's politics.)
"Our databases only store in RAM because I AM THE ELECTRICITY BATTERY MASTER"
Musk seems to think Musk is a tech genius, but really he was just born into money and used it to buy a bunch of companies. In fairness he was able to recognise which companies to buy, doesn't mean he knows anything about databases though.
In fairness he was able to recognise which companies to buy
I think this is just survivorship bias. There are millions of wealthy individuals investing in companies every single day. Occasionally these gambles pay off and make people extremely wealthy.
Most of the time the people who succeed just spend their incredibe wealth and live a quiet happy life.
But there are others who crave attention. These individuals bully their way into prestigious positions and pretend that they're leading the company.
Elon is that kind of person. He started wealthy, bet his money on companies that succeeded. Then took the CEO role so he would get credit for the companys' successes.
If ever people dare stop paying attention to him he'll do something drastic to recapture the spotlight on.
He's the kind of person who will stand on stage and do a nazi salute just because he wants you to look at him.
Ok genuine question, what is the difference between a SQL database and a simple Excel spreadsheet?
The excel file contains the data. It's equivalent to the database.
The excel program is how you interact with the data. SQL is how you interact with databases.
Doesn't matter how the data is structured inside the database. You can ask in the SQL language and you will receive an SQL answer.
In the context of this tweet most important differences are:
SQL is a language for querying databases.
Most common used databases are relational databases. With relational databases you can setup, well, relations and constraints.
Imagine you have 2 tables (2 excel sheets) one with people, and one with home ownership. You can set the following constraint: (1) each person shows up only once in the people table. And the following relation: (2) every home owner must refer to an existing person in people table.
When modifying the table contents, the system checks if no constraints or relations are violated.
Excel, just like a badly designed relational databse, would, for example, have no problem with duplicate people, or home ownership referring to non-existant people.
A whole lot. Too much to cover in one post in any kind of detail.
A modern relational database management system (RDBMS) is a highly optimized beast. How it accesses storage is very carefully considered. It has a whole mini language for defining relations between data. There are tools for debugging specific queries to make them faster. They index data with tradeoffs between read and write speeds. There are sophisticated locking mechanisms so multiple users can read and write at the same time. They have transactions where many alterations can be packed up together and written efficiently at once. Those transactional alterations are atomic, meaning there are guarantees that all of them happen or none of them happen. The entire thing is based on set theory, and it has survived attacks by many other pretenders to the throne for decades.
And if you're using Oracle, you can get all that while paying a highly optimized pricing model set up by the best financial advisors Larry Ellison can find to maximize value extraction from your company.
And alternatively, for excel once you leave the realm of a single person entering data for a single project over time sizes you start entering the "why does this take 10 minutes to open" territory
The amount of data, sql is designed to manage large datasets, millions of rows. Excel has its limits.
Calling someone a retard for believing something that's obviously true is straight out of the flat-Earther playbook.
REAL GOVERNMENTS USE EXCEL SHEETS /j
Wasn't it the uk or something that messed up a vote due to excel's row limit?
I think it was something to do with COVID stats during the initial outbreak, but yes, yes it was the UK government and their bizarre love affair with stupid tech choices.
As someone who does systems administration which includes numerous government owned database servers, this is news to me.