It's your code, no one else will ever see it or maintain it. What worst practices and cheap shortcuts do you use when you really are going "quick and dirty?"
Writing an entire app in a single file that ends up being a few thousand lines of code. It started as a few hundred, but grew from there (like always), and now there's no turning back until it's launched and validated! No use wasting time refactoring until I know it'll work.
Oh dear. I've done just about everything on this page...
I never hide data. All structs with all public members. Even if I write an API around that, I can still just access everything directly if I want to.
When I use raw pointers, I usually don't check for nullptr.
I abuse unions and their initial members and don't bother checking tags even if I tag them.
Does it compile? Good. Does it run? Good. If I leave it running does it eat all my RAM? No? it's probably fine then.
I tend not to push changes for weeks or sometimes months, and my commit message is basically that I forgot everything I actually changed. Also, my commit messages are terrible.
I keep one big text file full of notes, comments and old code pasted in. My source code itself tends not to be commented well as a result.
Proper async code tends to go out the window where timers will suffice. It's filthy, but often faster and it works for whatever narrow problem the one-off script in question is solving.
Perl one-liners in bash scripts. The kind that don't use spaces or bracket. Of course one-character variable names and use of special variables like $\, $| or $& (http://perldoc.perl.org/perlvar.html). Execute code withing regular expressions. Almost obfuscation. I assume they break whenever a new minor version of Perl is released.
It really amazes me how many companies (especially the ones with an avaricious reputation such as health insurance companies) don't take the payment system seriously.
That's one of the reasons I no longer use Github. I don't want every line of code I write to be used as part of a hiring filter, much less just the languages I'm tagged with or the number of stars in my repos or in anything I contribute to.
The more useless social media BS Github piles onto its site the more it becomes the new Linkedin... no thanks.
That sounds a bit like fretting over the fine details of which clothes to wear. There's a good chance the other party is not that interested, and does not dwell on or even notice these things.