An implementation of the OpenTelemetry SDK for Perl
Changes for 0.022 - 2024-04-19T11:46:54+01:00
- Do not call start on the background function in the batch span processor, this is handled automatically by the loop (GH #13)
Get stock and mutual fund quotes from various exchanges
Changes for 1.61 - 2024-04-18T21:34:24-07:00
List ingredients in BPOM processed food division
Changes for 0.021 - 2024-04-19
- [ux] Add shorter alias for bpom-list-food-ingredients-rba: bpomfi.
List registered food additives in BPOM
Changes for 0.019 - 2024-04-19
- [ux] Add short alias for bpom-list-food-additives: bpomfa.
Direct access to the WebGPU native APIs.
Changes for 0.13 - 2024-04-18T23:09:56Z
- Automatic documentation generation improvements
Get stock and mutual fund quotes from various exchanges
Changes for 1.60_01 - 2024-04-18T17:49:28-07:00
- YahooJSON.pm - URLs to retrieve required cookies and crumbs were changed to allow EU based users to use the module.
Date found in text as sort key
Changes for 0.001 - 2024-03-06
- First release, modified from Sort-Sub-by_date_in_text.
Google Authenticator TBOT Abstraction
Changes for 1.05 - 2024-04-18T15:00:06-07:00
- Switch from Google Chart API to Quick Chart API
cpanm compatible Image::Magick packaging.
Changes for 0.10 - 2024-04-18
- Support pinned versions of ImageMagick (Thanks to Breno Oliveira)
- Support latest version of ImageMagick (7.1.1-30)
- Added github actions to test releases
Constants for urn:oasis SAML2 implementations
Changes for 0.004 - 2024-04-18T19:50:56Z
- Add PartialLogout status
- Bump NAMEID_FORMAT constants to SAML 2 namespace. They were previously in SAML 1.1 namespace, which was incorrect.
Tagged Based Exporting
Changes for 0.08 - 2024-04-18T15:48:13-04:00
- BACKWARDS COMPAT
The great new Number::Iterator!
Changes for 0.01
- First version, released on an unsuspecting world.
Reolink API provides access to the System, Security, Network, Video input, Enc, Record, PTZ, and Alarm functions of a Reolink IP Camera or NVR via HTTP(S)/REST
Changes for 1.02
- added GetChannelstatus(): Return camera/NVR per channel status.
- tested REST via https, set SSL_verify_mode => SSL_VERIFY_NONE
Automate various sys admin stuff.
Changes for 0.12.2 - 2024-04-18
- No config found and no --config means a empty hash is used.
- Now --noConfig is respect.
- Fix the check for the JSON config.
- JSON now takes presidence over TOML. So it goes... YAML, JSON, TOML
Localization support for DateTime.pm
Changes for 1.42 - 2024-04-18
- Rebuilt all locale data with the data from CLDR 45.0.0
Utilities related to QR Code
Changes for 0.004 - 2024-04-18
- [ux] Handle when gen_qrcode() is called as a function instead of from CLI.
Utilities related to Google Authenticator
Changes for 0.006 - 2024-04-18
- Use QRCode::Any instead of directly directing to google chart (google.com/chart no longer works, 404).
stateless, text-based CAPTCHAs
Changes for 0.2
- Added missing requires to META.yml.
Comma-Separated Values manipulation routines
Changes for 1.54 - 2024-04-18
- Fix doc (Jean Forget, RT#150757)
- It's 2024
- Fix comment_str with strict
- Doc fixup (RT#151546)
Database independent interface for Acrux applications
Changes for 0.03
- Added Acrux::DBI::Dump class
- Added set-context of dsn method
- Added database URL-string to examples
- Added dump method to faster access to Acrux::DBI::Dump
Compare date found in text (or text asciibetically, if no date is found)
Changes for 0.001 - 2024-03-06
- First release.
stateless, text-based CAPTCHAs
Changes for 0.1
- Initial release, April 2024.
Validate data against a schema, minimally
Changes for 0.023 - 2024-04-17T17:55:32Z
- remove use of JSON::MaybeXS, to avoid potential use of JSON::XS; now we use Cpanel::JSON::XS or JSON::PP directly, using the same environment variables as in Mojo::JSON for customization.
Utilities related to QR Code
Changes for 0.003 - 2024-04-17
- Add utility: gen-qrcode.
- Temporarily disable decode-qrcode because Image::DecodeQR cannot be built.
perl API for mit.dk/
Changes for 0.05
- nemid auth method is phased out, use mitid instead. Document anti-CORS measures.
Patch package with a set of patches
Changes for 0.278 - 2024-04-17
- No functional changes.
- Typo in Synopsis.
Exclude some packages from stack trace
Changes for 0.002 - 2024-04-17
- [ux] Set -warn_target_loaded to 0 (GH#1).
Features declaration for Text::Table::Tiny
Changes for 0.006 - 2024-04-17
- [dist][bugfix] To index packages with underscore in its name, we have to set [MetaProvides::Package] configuration: include_underscores=1.
Im working on a script to test using a jump server to reach remote devices.
I'm able to connect to the jump server using Net::SSH::Expect, however, I'm not sure how to then ssh to a remote device (network element).
Is there a way to create that ssh to the remote device inside the jump server's connection?
submitted by /u/jtzako
[link] [comments]
First things first, I am a data engineer but have little experience in Perl. I've been able to make some easy updates to scripts in the past but this one is a bit tougher.
I have been asked to update a Perl cgi web app that someone wrote ages ago that is used to view and manipulate text files. Currently it is hosted on server (X) and manipulates the files on that same server. However, we have to have backups/mirrors of the data on a dev server and another prod sever (Y). I.e., if I push the button to move the file to a different folder, it should do that on all three servers instead of just X. I added code to do this, referencing the additional servers with their UNC names, but I just get an error "No such file or directory" (which is not true). Googling has suggested that there may be an issue with permissions, but I can bring up the Y and DEV servers from a windows file explorer using the same path so I don't think that is necessarily the issue.
Example: Here we are trying to copy the file with a letter appended a given number of times. It works fine on the X server, its when trying to make it also work on the Y and DEV servers I get an error.
our $DIR_X = "\\\\serverX\\folder\\subfolder" ; our $DIR_Y = "\\\\serverY\\folder\\subfolder"; our $DIR_DEV = "\\\\serverDEV\\folder\\subfolder"; . . . }elsif ($query->param('action') eq 'split' && $query->param('fileNum') ne "") { my $fileNum $query->param('fileNum'); my $fileX=$DIR_X . "\\" . $fileNum . ".txt"; my $fileY $DIR_Y . "\\" . $fileNum . ".txt"; my $fileDEV = $DIR_DEV . "\\" . $fileNum . ".txt"; my $splitNbr = $query->param('splitNbr'); my @letters1("a".. "z"); for (my $i = 0; $i < $splitNbr; $i++) { my $FileNew_X = $DIR_X . "\\" $fileNum. $letters[$i]=.txt"; my $FileNew_Y = $DIR_Y . "\\" $fileNum. $letters[$i]=.txt"; my $FileNew_DEV = $DIR_DEV . "\\" $fileNum. $letters[$i]=.txt"; copy($fileX, $FileNew_X) or die "WARNING: copy failed: $!\n"; ---->>>>>ERROR AT NEXT LINE copy($fileY, $FileNew_Y) or die "WARNING: copy failed: $!\n"; copy($fileDEV, $FileNew_DEV) or die "WARNING: copy failed: $!\n"; }
Any thoughts?
submitted by /u/QueenScorp
[link] [comments]
Tagged Based Exporting
Changes for 0.07 - 2024-04-16T11:35:06-04:00
- PORTABILITY
Installs noop handlers to disable Mojolicious sessions
Changes for 0.01 - 2024-04-10T12:47:08-05:00
- First public release
Mojolicious Plugin that wraps Mojolicious::Plugin::Cron for job configurability
Changes for 0.01 - 2024-04-12T09:44:22-05:00
- initial release
Fetch CVE information from cve.org
Changes for 0.009 - 2024-04-16
- Require HTTP::Tiny 0.025
Automate various sys admin stuff.
Changes for 0.12.0 - 2024-04-16
- Fix spelling of nptd.enable to ntpd.enable for snmpd v2 template
- add support to auto cron and snmp_v2 for Lilith
ESLIF is Extended ScanLess InterFace
Changes for 6.0.35.1 - 2024-04-16T04:48:47Z
- No changes found
find perl root and push lib modules path to @INC
Changes for 0.10 - 2024-04-16T04:10:02Z
- doc update
Get Whois information of domains and IP addresses.
Changes for 2.99039
Tagged Based Exporting
Changes for 0.06 - 2024-04-15T22:17:27-04:00
- BUG FIX
- ENHANCEMENT