Results 238 comments of El RIDO

Not in the current UI, no. The order is determined on the server side (by sequence the comments got posted) and the client side renders the list in the order...

Note in case the site is down, this would be done by using: ``` var copyEvent = new ClipboardEvent('copy', { dataType: 'text/plain', data: 'Data to be copied' } ); document.dispatchEvent(copyEvent);...

I looked into it, but found that (for the safety of the user) this can't be run without interaction as I had initially understood. Currently we already preselect the text...

That library has the same issue. Its just a nice wrapper and not really needed anyway and would be yet another JS to load for something that can be done...

Actually in german it gets translated to [Strg]+[c] which is odd for the german speaking Swiss who have [Ctrl] instead of [Strg].

> "Make a de-CH translation" Currently we only provide i18n (_internationalization_ aka translation to main language family e.g. en, de) not l10n (_localization_ which would include formatting changes of numbers...

This is not a bug in our code, but a [(missing) configuration in our nginx server](https://github.com/PrivateBin/privatebin.info-pelican/blob/master/nginx.conf). Our sites config simply doesn't support OPTION requests, so the request never reaches the...

Once I (finally) get around to conclude the paste manage and get it into a release, I'll definitely will want to add it to that images configuration - since we...

Deployed, but my testing shows it to only work with HTTP 1.1, not HTTP/2? Can you let me know what behaviour you get in the browser with your static page,...

Agreed and with the latest update and the switch to a 204 code I think we got this settled for the HTTP/2 case as well: ``` $ curl -v -X...