Results 238 comments of El RIDO

This was on an ubuntu 22.04 system: ``` $ git --version git version 2.34.1 $ sha256sum --version sha256sum (GNU coreutils) 8.32 [...] ``` It sounds very odd that you'd get...

The plot thickens: First, turns out that you don't actually need to have anything checked out, the last argument to git archive tells it which commit, branch or tag to...

Reading the github blog closer, that you linked: They did change the git archive generation, but... > On January 30, we deployed Git 2.38 to the service that powers source...

So I think using the piped external gzip would probably be the most portable solution to get the "standard" gzipped archive reproduced reliably: ```sh git archive --format=tar --prefix=PrivateBin-1.7.1/ 1.7.1 |...

This issue is now resolved in the bootstrap5 template: ![file upload in arabic on bootstrap5](https://github.com/PrivateBin/PrivateBin/assets/1017622/f9e65042-d65a-4fee-a321-46579b531ab5) Since we plan to deprecate the bootstrap(3) template over the next year, I'll close this...

The key phrase, I think, is "And that is a stressful and person-depended job." - when recognizing such a condition, investigating a way to automate it is the way to...

If you can stomach it, personally I would prefer if you could focus on adding more test coverage. Would it be an option for you to do a first pass...

The AttachmentViewer is already well covered, except for the parts like this one: [AttachmentViewer](https://privatebin.info/jscoverage/privatebin.js.html#L3216) These are APIs (drag-n-drop, clip-board) that are not emulated by the jsDOM framework under node. Also,...

It provides the path to the API endpoint on the same domain. It will only prepend the URL base to the webservers request URI: https://github.com/PrivateBin/PrivateBin/blob/ec02afca0469017a77fa5c8b952241c879883882/lib/Controller.php#L514 https://github.com/PrivateBin/PrivateBin/blob/ec02afca0469017a77fa5c8b952241c879883882/lib/Controller.php#L173 https://github.com/PrivateBin/PrivateBin/blob/ec02afca0469017a77fa5c8b952241c879883882/lib/Request.php#L225-L229 In the example...

The API endpoint is always the same (including for human visitors - the only difference is the non-default, server side yourls-proxy). The difference lies in the different payloads and HTTP...