Elvin Aslanov
Elvin Aslanov
So that we can install and read on Amazon devices, or even with [WSA](https://learn.microsoft.com/en-us/windows/android/wsa/) on Windows which could be arguably more convenient than the [website](https://www.sefaria.org/texts). 
Covering the `remotelink` endpoint: https://developer.atlassian.com/server/jira/platform/jira-rest-api-for-remote-issue-links/
`POST` creates, `PUT` updates with HTTP In the examples `PUT` is (rightfully) used for editing: https://github.com/gnustavo/JIRA-REST/blob/5de3eb67533868dbe821795a0bde2268b2cee0cf/examples/edit_issue.pl#L50
Using username/password I get: ``` JIRA::REST Error[401 - Unauthorized]: Basic authentication with passwords is deprecated. For more information, see: https://developer.atlassian.com/cloud/confluence/deprecation-notice-basic-auth/ ``` --- Using `pat` (assuming it's the Jira API Token)...
Now that [`HTTP::Tiny`](https://perldoc.perl.org/HTTP::Tiny#new) enables SSL certificate verification by default, maybe it's time to remove the explicit option in code? So we can use the `$ENV{PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT}` environment variable in development mode?...
Because "Manuel Instructions" sounds funny :-) Manual Instructions -- also doesn't make much sense Correct to Manual Installation which is proper See [manual](https://en.wiktionary.org/wiki/manual)
https://perlmaven.com/plack-app-cgibin Installing https://metacpan.org/pod/CGI::Emulate::PSGI wasn't mentioned. It's needed in order to run CGI with Plack. It's also mentioned here: https://metacpan.org/pod/Plack::App::CGIBin ------ In addition, I also had to install `CGI-Compile` to make...
it's possible to load a module per [use](https://perldoc.perl.org/functions/use) keyword: ``` perl use namespace::module qw(symbol1 symbol2); ``` but not multiple modules at once (cf. [import](https://golang.org/ref/spec#Import_declarations) in go): ``` perl use {...
**Where** eg. [perlre(1)](https://man.openbsd.org/perlre.1), [perlretut(1)](https://man.openbsd.org/perlretut.1), [perlreref(1)](https://man.openbsd.org/perlreref.1) **Description** unix manpages for perl's [language-specific](https://perldoc.perl.org/perl#Tutorials) documentation such as those prefixed with `perl` (eg. `perlfunc`) that should have [probably](https://en.wikipedia.org/wiki/Man_page#Manual_sections) been in section `7` (misc) are...
Not sure if it's the right repository to report this issue, but currently the feed content (ie. body) is always the description of the distribution which very rarely change. I...