ngl this got a good fucking chuckle out of me
memes
Community rules
1. Be civil
No trolling, bigotry or other insulting / annoying behaviour
2. No politics
This is non-politics community. For political memes please go to !politicalmemes@lemmy.world
3. No recent reposts
Check for reposts when posting a meme, you can only repost after 1 month
4. No bots
No bots without the express approval of the mods or the admins
5. No Spam/Ads/AI Slop
No advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.
A collection of some classic Lemmy memes for your enjoyment
Sister communities
- !tenforward@lemmy.world : Star Trek memes, chat and shitposts
 - !lemmyshitpost@lemmy.world : Lemmy Shitposts, anything and everything goes.
 - !linuxmemes@lemmy.world : Linux themed memes
 - !comicstrips@lemmy.world : for those who love comic stories.
 
Why did the creator add an incorrect apostrophe in "commas," but not "passwords?" At least be consistent!
Sadly, no. CSV files can deal with embedded commas via quoting or escaping. Given that most of the dumps are going to be put together and consumed via common libraries (e.g.python's csv module), that's all going to happen automagically.
Can be != will be
You're looping over 50M records, extracting into your csv. Did you bother using the appropriate library, or did your little perl script just do  split(/,/,$line)
What about quotes (single/double) and \s mixed with commas?
Everything you can use for a password can be escaped out of a csv. Partially because csvs have to be interoperable with databases for a bunch of different reasons, and databases are where your passwords are stored (though ideally not in plaintext). There's no way that I can think of to poison your password for a data breach that wouldn't also poison the password database for the service you're trying to log into.
This is why I always use random Korean characters to seperate my columns.
Mine are typical error messages.
See you next time!
Comma, single quote, double quote, escape last \ and all your cases are covered.