article archive - 10/2013 - all archives
JR:
Toledo TV Mayoral Debate - October 2013
- (My Oct 8, 2013 comment in ToledoTalk.com thread.)
I missed it, but according to the Twitter feeds of Taylor Dungjen and Nolan_Rosenkrans, it does sound like they were "swinging hard" at each other. More interesting tweets at The 22nd Floor.
App...
more>>
4 min read
- Oct 08, 2013
- #toledo #politics #election #debate #mayor #blog_jr
JR:
Occupy Toledo Info - 2011
- (posted at ToledoTalk.com in October 2011.)
Web presence:
online donations
Timeline:
Occupy Toledo formed on September 28, 2011.
29 people attended the first meeting on September 30.
meeting notes
The Revolution Collective will ...
more>>
3 min read
- Mar 21, 2014
- #OccupyCleveland #toledo #activism #occupytoledo #blog_jr
JR:
REST-related stories
- #programming - #rest - #api
- Oct 07, 2013
JR:
Info on attending UM game
- Sat, Oct 5, 2013 football game
Minnesota Gophers at Michigan Wolverines
Kickoff at 3:30 p.m. EDT
weather app
Compiling info from my notes.
parking info at UM football games, includes: location of permit-only and non-permit lots and costs.
...
more>>
1 min read
- Mar 03, 2014
- #sports #football #college #blog_jr
JR:
Change sort display of blog_username stream
- completed on 7oct2013
sort by creation date not updated date.
maybe add both dates to the stream display for each post.
#junco
#resolved
- Oct 07, 2013
JR:
Add title to microblog posts
- completed the below on 7oct2013
display max of 75 chars of the microblog post in title tag.
when displaying an individual microblog post, use the first X-number of chars of post in html title tag.
convert those X-number of title chars to a clean ...
more>>
- Oct 07, 2013
- #junco #resolved
JR:
Indie Web checkins
- Man, another interesting function.
p class=h-geo
a href= into The Creamery/a
data class=p-latitude value=37.777372680126/data
data class=p-longitude value=-122.39515461257/data
/p
#indieweb
- Oct 04, 2013
JR:
Indie Web stories
- Some links from around the Webverse:
https://willnorris.com/2013/06/testing-indieweb-comments
https://github.com/indieweb
The ability to post content, including status updates, blog posts, bookmarks, photos, geographic check-ins and even...
more>>
1 min read
- Oct 09, 2013
- #birds #weather #indieweb
JR:
Perl CGI setting headers
- #!/usr/bin/perl -wT
use strict;
use warnings;
use CGI qw(:standard);
print header('text/plain', '404 Not Found');
print Move along, nothing to see here\n;
At promp, execute: curl -i url-to-script
which returns:
HTTP/1.1 404 Not Found
Date...
more>>
- Oct 04, 2013
- #perl #programming
JR:
Aggregating 2013 stories about toxic algae bloom in Lake Erie
- #lakeerie - #environment
EPA - Blue-Green Algae and Algal Toxins
July 2, 2013 - NOAA news - NOAA, partners predict significant harmful algal bloom in western Lake Erie this summer
Aug 14, 2013 - Columbus Dispatch - Toxic algae spur warning at La...
more>>
5 min read
- Aug 02, 2014
- #lakeerie #environment
JR:
Using the Internet for fun and profit
- Sep 30, 2013 - Wired - Twitter Founder Reveals Secret Formula for Getting Rich Online
Excerpts:
Ev Williams has figured out the internet.
his message was clear: At a time when so many internet entrepreneurs are running around Silicon Valley try...
more>>
4 min read
- Mar 03, 2014
- #quote #web #business #howto #gtd #blog_jr
JR:
Renovating Promenade Park in Downtown Toledo
- I guess this is a taxpayer-funded attempt by Toledo city government to bring back the 1980s and 1990s.
My Oct 2, 2013 comment in a Toledo Talk thread titled Phase 2 of Promenade Park Improvements
"I'm willing to bet you guys complain about Tole...
more>>
1 min read
- Jan 15, 2014
- #toledo #politics #entertainment #blog_jr
JR:
Perl regex extracting domain name from URL code example
- #!/usr/bin/perl -wT
use strict;
use Data::Dumper;
# code from:
# (
# test links taken from the front page of news.ycombinator.com on 2Oct2013
my @urls = (
https://groups.google.com/forum/#!topic/mechanical-symp...
more>>
- Oct 02, 2013
- #perl #programming #regex
JR:
Loop through a Perl array
- @myNames = ('Larry', 'Curly', 'Moe');
foreach (@myNames) {
print $_;
}
#programming - #perl - #howto
- Oct 02, 2013
JR:
Perl regex extracting domain name from URL
- use strict;
use warnings;
use URI::Split qw/ uri_split uri_join /;
my $scheme_host = do {
my (@parts) = uri_split '
uri_join @parts[0,1];
};
print $scheme_host;
If cannot install module:
use strict;
use warnings;
my $url = '
my ($sch...
more>>
1 min read
- Oct 02, 2013
- #perl #programming #regex