JR:
Design principle - Fewer choices mean fewer worries
- People love having choices, because having choices means having freedom. Well, we don't think this is necessarily a good thing when it comes to usability.
We believe that when someone wants to do something on their computer, they want to spend thei...
more>>
1 min read
- Jul 09, 2013
- #design #simplicity
JR:
Perl example of inside-out object number 3
- # object oriented example - inside out
# tags #perl #programming #objectoriented
#
##### test-pc.pl
#!/usr/bin/perl -wT
# use Object::InsideOut;
require '../lib/PC.pm';
print "\n### Testing PC.pm ###\n\n";
print "Object A\n\n";...
more>>
2 min read
- Jul 08, 2013
JR:
Perl code for date and time processing
- ...
more>>
1 min read
- Jul 08, 2013
- #perl #programming
JR:
Perl closure example and dispatch table
- tags = #perl #programming
From the Date::Formatter Perl module
my %_parser_table = (
"MM" = \ \ \ \ \ \ \ \ \ \ \
sub createDateFormatter {
my ($self, $format, $pattern) = @_;
my @date_format;
$pattern ||= q...
more>>
- Jul 08, 2013
JR:
Perl example of inside-out object number 2
- # object oriented example - inside out
# tags #perl #programming #objectoriented
#
##### test-time.pl
#!/usr/bin/perl -wT
use Hash::Util::FieldHash 'fieldhash';
require '../lib/Time.pm';
my $time = Time-new;
print $time-epoch . "\n";
...
more>>
- Jul 08, 2013
JR:
Perl example of inside-out object
- # object oriented example - inside out
# tags #perl #programming #objectoriented
################
# lib/PlayingCard.pm
################
# from
package PlayingCard;
use strict;
use warnings;
use NEXT;
use Scalar::Util qw/refaddr/;
# U...
more>>
2 min read
- Jul 08, 2013
JR:
Strange reasons for new county-city downtown Toledo policing program
- My comment to a July 2013 Toledo Talk thread New TPD downtown patrols
"just wondering why so many are against it."
Who is against it? Re-read the above comments. People are wondering if something more is intended. We're questioning the new program'...
more>>
2 min read
- Jul 06, 2013
- #lucascounty #toledo #politics #police #sheriff #crime
JR:
Online notebooks
- July 3, 2013 Hacker News discussion that points to this wiki:
The above notes also exist at github:
https://github.com/yang/notes
From the HN chat:
- It's just a set of reference notes I mainly keep for myself, but it's not really private - I s...
more>>
4 min read
- Jul 03, 2013
- #wiki #notes
JR:
ForumCon 2013 blog postings
- Ones of intereset.
#forums
- Jul 03, 2013
JR:
Test post with the new Code. and Code.. commands
- here is a regular line
now some code
html
head
titletest/title
/head
body
h1hello world/h1
/body
/html
back to normal text
and now another block of code.
#!/usr/bin/perl -wT
use strict;
print hello world\n;
and a few more lines ...
more>>
- Jul 02, 2013
JR:
Resolved - Add Markdown support
- Implemented on July 2, 2013 - easy to incorporate.
Install John Gruber's Markdown Perl module.
Enable it within a blog post by using the command: markdown=yes
Textile will still be used by default.
The live-preview JavaScript editor will current...
more>>
- Jul 02, 2013
- #resolved #junco #markup
JR:
Resolved - Fix problem with account access after changing password
- Fixed on July 2, 2013
after changing password, the account acts like it's logged out.
make sure new session id is created and set in cookie.
#resolved
#junco
- Jul 02, 2013