HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chronial

no profile record

Submissions

Apple geofences third-party browser engine work for EU devices

theregister.com
2 points·by chronial·vor 2 Jahren·0 comments

comments

chronial
·vor 8 Monaten·discuss
Draw a square around Einstein's face. Call the side length of the square a and the area of the square A. We have A=a^2. Einstein takes up some portion p < 1 of that area, so Einstein has area E = pA. Now we scale the whole thing by factor f. So the new square has side lengths fa, and thus area A' = (fa)^2 = f^2×a^2 = f^2×A. Since the relative portion the face takes up doesn't change with scaling, the face now has size pA' = p×f^2×A = f^2 × pA = f^2 E.

Does that help or was that not the part you were missing?
chronial
·letztes Jahr·discuss
Note that the official 7z build supports zstd compression since version 24: https://github.com/ip7z/7zip/releases/tag/24.05
chronial
·letztes Jahr·discuss
What are these called / do you have a source for that? I never heard of that and a quick Google didn't turn up anything except for changes planned for 2028.
chronial
·letztes Jahr·discuss
I really like this video essay that also covers convict leasing: https://youtu.be/j4kI2h3iotA?si=9-VanyLpw1rJLLUI
chronial
·vor 2 Jahren·discuss
The right was calling Obama Hilter long before that. https://digitalcommons.usf.edu/etd/3598/
chronial
·vor 2 Jahren·discuss
Which old times are you referring to / what are "sensible" names?

I thought about it and I don't know what a better name would be. Off the top of my Head, I know Perforce, BitWarden, Subversion, fossil and git. And then the abbreviations CVS, RCS and SVN.

Do any of these qualify as a descriptive name?
chronial
·vor 2 Jahren·discuss
You deliberately misquoted the article, you are clearly not discussing in good faith. I won't respond any further.

> photos or videos of extremely thin girls and women or bodies that serve as weight loss motivation and ideal images
chronial
·vor 2 Jahren·discuss
Glorifications of eating disorders. That is very dangerous content, especially for minors. If you want more information: https://www.klicksafe.de/en/verherrlichung-von-essstoerungen
chronial
·vor 2 Jahren·discuss
It's because of the headlights - they bias right and would blind oncoming traffic.
chronial
·vor 2 Jahren·discuss
> One repo uses `master` but a subtree uses `main`. If you make a mistake and checkout `main` you end up clobbering your whole working tree with the subtree.

If you replace checkout with switch/restore, that foot gun goes away.
chronial
·vor 3 Jahren·discuss
A very effective solution for that is a well-configured shell. IF you summarize the state of the repo in the prompt, it is always visible while typing a command.
chronial
·vor 3 Jahren·discuss
That's the reason why it was replaced by two separate, more sensible commands: git switch for switching branches etc, which is safe, and the inherently dangerous git restore for reverting changes in your working directory.
chronial
·vor 3 Jahren·discuss
Funny, I did just exactly that at work yesterday. If your branches have linear histories, here's what to do:

1. Make sure all branches touch separate files. I would strongly recommend git-filter-repo over git-filter-branch. It's way simpler to use and orders of magnitudes faster.

2. Generate the list of commits in the correct order:

git rev-list --date-order --reverse branchA BranchB BranchC > revisions.txt

3. Go to any branch and: git rebase -i --root --force-rebase

Paste the contents of revisions.txt into the sequence editor and add "p " at the bigging of every line. Run the rebase and you are done.