article archive - 07/2013 - all archives
JR:
Pop-culture directed by the media plus government mind control machine
- Toledo Talk thread that informed me of this story.
and my comment ...
Man, I got duped by this thread's title. I thought it was going to be an interesting factoid about a children's book or game. Oh well.
At least with this thread, I can n...
more>>
1 min read
- Aug 16, 2013
- #media #politics #news #blog_jr
JR:
Maybe add paraperms
- Something I wanted to add, and I think started to add to ToledoTalk.com/parula code, but I never completed.
Like "Purple Numbers" in the old Meatball Wiki code.
Permalinks at the paragraph level.
Make it an option.
paraperms=yes
#junco
#todo_...
more>>
- Jul 14, 2013
- #junco #todo_later
JR:
Add a night mode display
- implemented on 8Aug2013
Maybe.
Like ToledoTalk.com/parula code, allow for different CSS themes to be used via a cookie.
For JotHut/junco, provide two theme options: the current or default view and the white on black view (or is it light gray on ch...
more>>
- Aug 08, 2013
- #resolved #junco
JR:
Documentary - Hackers - Wizards of the Electronic Age
- 1985 video, about 27 min long.
#video
#documentary
- Jul 30, 2013
JR:
July 11, 2013 stories to read
- https://blog.dropbox.com/2013/07/dbx/
#toread
- Jul 11, 2013
JR:
ForecastIO.pm
- # tags: #perl #programming
use strict;
use warnings;
use NEXT;
{
package ForecastIO;
use JSON::PP;
use LWP::Simple;
my $API_ENDPOINT = "https://api.forecast.io/forecast/";
my @FIELDS = qw( latitude longitude ...
more>>
6 min read
- Mar 02, 2014
JR:
ForecastIO
- /lib
ForecastIO.pm - July 14, 2013
/bin
test-forecastio-1.pl - July 11, 2013
#perl
#weather
- Jul 14, 2013
JR:
Perl commands - exists versus defined
- if (defined $hash{$key}) { }
if (exists $hash{$key}) { }
defined checks to see if value for key is not undef. so key may exists but it was assigned undef.
exists checks to see if the key exists.
defined $hash{key} tells you whether or not the va...
more>>
- Jul 11, 2013
- #perl
JR:
July 10, 2013 area storm reports
- Cle NWS
000
NWUS53 KIWX 110032
LSRIWX
PRELIMINARY LOCAL STORM REPORT
NATIONAL WEATHER SERVICE NORTHERN INDIANA
832 PM EDT WED JUL 10 2013
..TIME... ...EVENT... ...CITY LOCATION... ...LAT.LON...
..DATE... ....MAG.... ..COUNTY L...
more>>
15 min read
- Jul 10, 2013
- #weather #storm
JR:
GitHub uploads to make - July 14, 2013
- #github
July 10, 2013 - july 14, 2013 code changes
ForecastIO - new repo - july 14, 2013 code changes
[x] lib / ForecastIO.pm new
[x] bin / test-forecastio-1.pl new
ToledoWX - done on July 14, 2013
[x] yml / wx.yml
[x] bin / wx-create-index...
more>>
- Jul 14, 2013
- #github
JR:
Perl example of hash-style object oriented code with multiple packages per module
- # tags #perl #programming #objectoriented
### test-pc3.pl
#!/usr/bin/perl -wT
require '../lib/PC3.pm';
print "\n### Testing PC3.pm ###\n\n";
print "Object A\n\n";
print "init A with (A rank 1) and (A suit 1)\n";
my $a = PC3A-new("A r...
more>>
2 min read
- Jul 10, 2013
JR:
Test-datetimeformatter-2.pl
- #perl
#!/usr/bin/perl -wT
use strict;
require '../lib/DateTimeFormatter.pm';
require '../lib/DateTimeUtils.pm';
my $dt1 = DateTimeFormatter::create_date_time_stamp_utc("(yearfull)-(0monthnum)-(0daynum) (24hr):(0min):(0sec)");
print " ...
more>>
- Jul 14, 2013
JR:
Test-datetimeformatter.pl
- test-datetimeformatter.pl
#perl
#!/usr/bin/perl -wT
use strict;
use Time::Local;
use Data::Dumper;
require '../lib/DateTimeFormatter.pm';
require '../lib/DateTimeUtils.pm';
print EOTEXT;
year (int) (only year number like 1...
more>>
1 min read
- Jul 14, 2013
JR:
DateTimeUtils
- /lib
DateTimeUtils.pm - July 14, 2013
#perl
- Jul 14, 2013