article archive - 11/2014 - all archives
JR:
Perl programming tools to test
- HTTP::Engine
Dancer
PSGI/Plack
Starman
#perl - #programming - #todo
- Nov 14, 2014
JR:
Run perl script as a daemon
- #!/usr/bin/perl
use strict;
use warnings;
use Proc::Daemon;
Proc::Daemon::Init;
my $continue = 1;
$SIG{TERM} = sub { $continue = 0 };
while ($continue) {
a href=/cgi-bin/junco.pl/tag/do#do/a stuff
}
#perl - #programming -...
more>>
- Nov 14, 2014
- #do #perl #programming #howto
JR:
Regex - parsing url parameters
- regex - parsing url parameters
(\?|\)([^=]+)\=([^]+)
-----------------------------
#!/usr/bin/perl -wT
my $str = "url.html?id=14114yolo=hahaha";
while ( $str =~ m/(\?|\)([^=]+)\=([^]+)/igs ) {
print "1 = $1\n";
prin...
more>>
- Nov 14, 2014
JR:
Browns defeat Bengals - Nov 6, 2014
- Solid, grinding performance by the Browns in Cincy. Cleveland rushed the ball 52 times, and they controlled time of possession 35:49 min to 24:11 min.
Cleveland (6-3) 24 and Cincinnati (5-3-1) 3
ESPN - Game info
Team Stats
- Cle Cin
1st Downs2...
more>>
20 min read
- Nov 14, 2014
- #browns
JR:
My thought to a tt thread - 13nov2014
- "Until people step up and want to get involved in watching out for their neighborhood ..."
It's possible that many people are too busy working, caring for their family, caring for their own homestead, hanging out with friends, donating time to orga...
more>>
- Nov 13, 2014
JR:
UP Veterans Day Snowstorm 2014
- Houghton Severe Watches Warnings NOAA Weather Radio
Winter Storm Warning
Statement as of 9:06 PM EST on November 11, 2014
...Winter Storm Warning remains in effect until 7 am EST Wednesday...
Hazardous weather...
expect moderate lake effect snow...
more>>
5 min read
- Nov 12, 2014
- #michigan #weather
JR:
Test post - 11Nov2014
- Just messing around. I'm typing this, using the enhanced writing area, which is a JavaScript-based feature, instead of the simple, HTML textarea box.
I used ctrl-j to shift to a mode that contains no buttons, no split screen, nothing. It's not full...
more>>
4 min read
- Nov 12, 2014
- #writing #editor #blogging #testing
JR:
Grebe-Client-NodeJS
- https://github.com/ericf/express-handlebars
https://github.com/jrsawvel/Grebe/blob/master/docs/returned-json.md#stream-of-posts
https://github.com/jrsawvel/Grebe/blob/master/docs/api.md#posts
https://github.com/jrsawvel/Grebe/blob/master/lib/Cli...
more>>
- Nov 13, 2014
- #grebe #nodejs
JR:
Node.js methods to learn
- when = require('when')
when.reject()
when.resolve()
when.defer()
require('path')
path.resolve(...)
.promise
.req.session.user
#nodejs - #programming
- Nov 11, 2014
JR:
Redemption City Church - Vision meeting notes - Sun, Nov 9, 2014
- Website: Redemption City Church
The church held its first service on Sun, Oct 26, 2014. DD attended the second service. I tagged along for the third service. Impressive beginning.
On Sunday evening, November 9, the church held a meeting to share i...
more>>
4 min read
- Nov 10, 2014
- #religion #activism #toledo
JR:
My car in the early to mid 1990s
- from my old ToledoTalk.com posts:
I tried to do my part 14 years ago. My comment from that posting:
"Driving 60 mph on Ohio's highways, I was getting 60 mpg. That was 1992 in an all-gas-powered vehicle."
14 years ago, all-gas car, no hybrid crap,...
more>>
3 min read
- Nov 07, 2014
- #auto
JR:
Jan - Feb 2006 Toledo Talk threads about blogging, forums, and TT
- Threads created by me and others.
Lewiki
Brian Wilson slams Toledo Talk and blogging
What is the difference between a forum and a blog?
Blogging in Toledo
- Nov 07, 2014
JR:
2012 - 2013 Winter Season Summary
- I'd like to see a write-up for the 2013-2014 winter season.
North Central and Northeast Ohio
The winter of 2012-2013 in north central and northeast Ohio was characterized by warm temperatures and few big snowstorms. Temperatures at the beginning ...
more>>
10 min read
- Nov 07, 2014
- #weather #ohio #history
JR:
Node.js - Express - Handlebars - Ex 3
- #nodejs - #javacript - #programming
grebe-dispatch.js
grebe-show-post3.js
grebepageglobals.js
/views/
grebe-post.hbs
/views/partials/
grebe-header.hbs
grebe-footer.hbs
/views/layouts/
grebe-main.hbs
- Nov 06, 2014
JR:
Node.js - Express - Handlebars - Ex 2
- #nodejs - #javascript - #programming
// app2.js
var express = require('express');
var exphbs = require('express-handlebars');
var simple = require('./simple');
var app = express();
app.engine('handlebars', exphbs({defaultLayout: 'main'}));
ap...
more>>
1 min read
- Nov 06, 2014