| Site | Icon |
|---|---|
![]() |
|
| Gmail | ![]() |
| Cal | ![]() |
| Drive | ![]() |
| Meet | ![]() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/perl | |
| #!/bin/perl -CSDA # Try this variation | |
| use v5.16.3; | |
| use warnings; | |
| use File::Temp qw(tempfile tempdir); | |
| my @layers; | |
| print 'tmp layers: '; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/perl | |
| # Binary search in perl | |
| # https://www.perlmonks.org/?node_id=920127 | |
| # Useful for finding closest element | |
| # https://www.perlmonks.org/?node_id=927656 | |
| sub _unsigned_to_signed { unpack('j', pack('J', $_[0])) } | |
| sub binsearch(&$\@) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| # Demo showing when Perl upgrades strings from bytes to Unicode | |
| use v5.16.3; | |
| use warnings; | |
| use warnings qw(FATAL utf8); | |
| use utf8; | |
| use open qw(:std :utf8); | |
| use Encode qw(decode_utf8); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env raku | |
| # The following `use` pragma requires the leading 'v' in the version specification, or you'll get | |
| # an error: | |
| # | |
| # in Raku please use "v" prefix for pragma (e.g., "use v6;", "use v6.c;") instead | |
| # | |
| # The relevant documention page shows only examples with the 'v' | |
| # https://docs.raku.org/language/pragmas |
Related issue:
I've found that pasting into a Google Document produces an unexpected result.
Copy the following minimal test case:
A link
and paste it into a GDoc.
I needed to download Oracle JDBC jar files for use with my database query tool. Oracle JDBC drivers have been available in the public official Maven repository since September 15, 2019. They extended it to include all supported releases in February, 2020. (link1 [link2] [link3] [link4]).




