

You should tailor your resume to every job you apply for, but not every job requires a different resume. If you’re applying to a bunch of the same positions then you don’t need to change anything.
Any pronouns. 33.
Professional developer and amateur gardener located near Atlanta, GA in the USA.
I’m using a new phone keyboard, please forgive typos.
You should tailor your resume to every job you apply for, but not every job requires a different resume. If you’re applying to a bunch of the same positions then you don’t need to change anything.
I’m still mad there’s no straightforward way to convert a PDF into semantic HTML. There’s plenty of tools to convert it into HTML that looks the same with pages and such, but I just want the content.
Yeah. TikTok’s generated share links don’t have separate params for the content and tracking making it difficult to get around without copying the link into the browser yourself. Because it’s mostly used through an app and not the browser, you cannot just copy the URL and you have to use the share button.
Query parameters follow everything after the ?
and take the format a=foo&b=bar
. Essentially, key value pairs using =
and separated by &
.
There’s no perfect way to know what is and isn’t part of a tracking stuff. We just use our intuition. In this case, when we look at a YouTube video we see links like https://www.youtube.com/watch?v=dQw4w9WgXcQ
. Notice the v=xxx
? So, in the URL you shared, we can deduce that v=W_svsNc6seE
is needed and the si=xxx
is the tracking stuff. You should also then remove the &
because it’s no longer separating two entries. Leaving it doesn’t seem to hurt anything though. So https://music.youtube.com/watch?v=W_svsNc6seE
without &si=22MYOxMc5wMcdatU
.
I don’t know what si
stands for, but in my head I see it as “share ID”. A lot of services use si
or something similar for the tracking stuff.
I just got the joke.
Just because something isnt perfect doesn’t mean you shouldn’t do it. Would you rather OP share links with tracking?
With TikTok, if you copy and paste the URL into a browser you will get a link you can then copy and paste without the baked-in tracking. You can probably do the same with Instagram, but I just got a link from them and they had the tracking under a query parameter (that’s the technical term for the stuff after the question mark). So I’m not sure what you’re seeing.
Also, thank you for stripping tracking data off of links you share. “It ain’t much, but it’s honest work!”
https://www.tiktok.com/t/aaaa becomes https://www.tiktok.com/@someuser/video/111 (manually remove tracking as before). I assume this might work with Instagram, but like I said, when I try it, it doesn’t actually give me that style URL.
I feel line this would be funnier as “code updated to do 999 things”
It’s not that they’re LEDs, it’s that they’re too bright.
You’re correct. I once was trying to rename a file in Windows in a git repository that had a wrong capitalization. It was tricky.
https://realbitcoin.cash/post/210?scrollToComments=true Basically every account created 19 days ago. This is hilarious. It’s like they’re playing with dolls making them all talk to each other.
As you should. Because the alternative is just putting it on some team wiki page where they’ll just copy and paste it to their local stuff anyways. It just saves everyone time.
Sure, fail the entire build because of a formatting problem. Hey, wouldn’t it be cool if we could stop that from happening? I don’t know, maybe by also adding in IDE specific formatting files? No? Oh. I wasn’t aware we could only have formatting files OR a CI format checker. 🙄
None of these things come at the expense of others. You can do both. Even if it’s part of the local build process I’d much rather know in my editor than on the terminal. And you may say “just have everyone do the same setup” to which I’d wonder what sort of magical land you live in where everyone always follows those rules and/or you can get buy in from management to spend that much time bike shedding and why you’d prefer either of them to just adding the damn file to version control to avoid it entirely.
Linting rules and scripts should never live in an IDE-specific directory. I should not need to know your IDE configuration to run scripts and lint my files.
This is what I’m getting at with it being cargo culty. You can have generic scripts and also IDE specific run configurations too.
If your whole team uses the same IDE, what’s wrong with commiting things like run configurations and code styles? I agree in general, but a wholesale ban on it is very cargo culty to me. There can be legitimate times to do it.
Long long ago, but yeah
This is probably not a relevant counter point, just a(n un)fun fact, but Nintendo put in a patent for throwing a capture ball at monsters after Pal World was released and Pal World has to change some stuff (though I’m not sure if they’re doing it to avoid going to court because they’re concerned or if they’re being compelled).
Idk what all it does and doesn’t do, but installing it in Windows lets you find your Raspberry Pi by its “.local” hostname. I know it was originally for printers or something.
Use this so that the things you need to share do get shared.
.idea/*
!.idea/codeStyles
!.idea/runConfigurations
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
Note: I haven’t checked the vs code ones in depth, the list might not be perfect.
I just hate two column paginated lay outs. Give me pageless single column text.