Two lines
This file has been truncated, but you can view the full file.
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
| Use of uninitialized value $value in string eq at cpan/DB_File/t/db-hash.t line 224. | |
| Use of uninitialized value $values[0] in string eq at cpan/DB_File/t/db-hash.t line 224. | |
| Use of uninitialized value $value in lc at cpan/DB_File/t/db-hash.t line 224. | |
| Use of uninitialized value $h{""} in string eq at cpan/DB_File/t/db-hash.t line 243. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. | |
| Use of uninitialized value in numeric eq (==) at cpan/DB_File/t/db-hash.t line 252. |
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/bash | |
| cd `dirname "$0"` | |
| cd .. | |
| url=http://api.cpantesters.org/v3/release | |
| in=t/var/tmp/cpantesters-release-api.json | |
| out=t/var/cpantesters-release-api-fake.json | |
| download_original () { |
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
| 23.235.32.0/20 | |
| 43.249.72.0/22 | |
| 103.244.50.0/24 | |
| 103.245.222.0/23 | |
| 103.245.224.0/24 | |
| 104.156.80.0/20 | |
| 151.101.0.0/16 | |
| 157.52.64.0/18 | |
| 172.111.64.0/18 | |
| 185.31.16.0/22 |
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
| # Standard curl user agent string | |
| $ curl http://snowcatman.0fees.us/images/left01.gif | |
| <html> | |
| <head><title>403 Forbidden</title></head> | |
| <body bgcolor="white"> | |
| <center><h1>403 Forbidden</h1></center> | |
| <hr><center>nginx</center> | |
| </body> | |
| </html> | |
| # User agent string from my Safari |
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
| root@cpantesters3:~# systemctl status rsyslog | |
| ● rsyslog.service - System Logging Service | |
| Loaded: loaded (/lib/systemd/system/rsyslog.service; enabled) | |
| Active: inactive (dead) since Sat 2017-09-09 04:45:53 UTC; 32min ago | |
| Docs: man:rsyslogd(8) | |
| http://www.rsyslog.com/doc/ | |
| Main PID: 820 (code=exited, status=0/SUCCESS) | |
| Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable. |
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
| cat <(git ls-files; git diff -b -w --no-renames --name-only) | sort | uniq -c | grep '^\s*1' | awk '{ print $2 }' |
Things have been fairly stable for the last 48 hours, so here's a report on the current status:
Work done:
- Created a new API to write incoming test reports to a MySQL database
- This removes Amazon SimpleDB and saves us $250/mo
- In the future, we will be able to reduce our total disk usage through removing duplicate data
- Translated the Metabase reports to the new test report format
- The new test report format has more fields for future expansion, including places for testers to report on all the dependencies of the distribution they tested
- The API is doing this transparently
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
| # | |
| # Recommended minimum configuration: | |
| # | |
| # Example rule allowing access from your local networks. | |
| # Adapt to list your (internal) IP networks from where browsing | |
| # should be allowed | |
| acl localnet src 10.0.0.0/8 # RFC1918 possible internal network | |
| acl localnet src 172.16.0.0/12 # RFC1918 possible internal network | |
| acl localnet src 192.168.0.0/16 # RFC1918 possible internal network |
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
| use v5.24; | |
| use Data::Dumper; | |
| my $hash = { foo => 'bar', fizz => 'buzz' }; | |
| say Dumper $hash; | |
| local $hash->@{qw( foo fizz )} = ( 'foo', 'fizz' ); | |
| say Dumper $hash; | |
| #local $hash->%{qw( foo fizz )} = ( foo => 'foo', fizz => 'fizz' ); | |
| # Can't modify key/value hash slice in local |