Please let me know if you are coming and if you'd like to present!
Tentative presentation ideas:
- CPAN author tools: care and maintenance of your cpan module, the rt queue, cpants. Scenario: "my module works great for me but fails install tests on 90% of hosts, how to fix that." I wish that was completely hypothetical.
- Perl hadoop streaming examples follow-up. I didn't get to show much code for Hadoop::Streaming::Mapper last time around. I'd like to show snippets of the code I'm working on now for $work (cleansed appropriately)
- mega extreme prorgramming to the max. "Pairing" with a room full of coders (instead of just a pair) trying to code onto the main display. Expanding App::PM::Announce to our nefarious purposes
What: | Los Angeles Perl Mongers Meeting |
When: | 7-9pm |
Date: | Wednesday, June 30, 2010 |
Where: | The Rubicon Project HQ - 1925 S. Bundy, 90025 |
Theme: | Perl! |
RSVP: | Responses always appreciated. |
Saturday, June 26, 2010
Iron Man Challenge -- what happened to the status images?
I don't have the tuits to rewrite that part of the system, but maybe if I knew where the blog meta info was kept, or even if the old csv list is being updated with each blog's posts listed by date( unsorted ). Maybe I will be writing it afterall.
Thursday, June 17, 2010
hideous remakes and sequels
Waiting for me on gale chat was a conversation on hideous remakes and sequels. Beautiful Synchronicity! The pillaging of my childhood memories continues, thanks to the soulless profiteering freaks in Hollywood, to paraphrase Jason and provides plenty of fodder for my 'Hollywood Executive Delta File' to remind myself what not to do when I become a hollywood executive. Remind me not to read slashfilm, lest I learn about these things sooner than I need to.
I do plan to go see A-Team soon, it looks pretty sweet. I mean, it's the friggin' A-Team!
The A-Team and The Karate Kid?
No, seriously, W - T - F? I mean... I just... why?
--jason
Just wait until Peter Berg's "Battleship" [1], Sony's "Risk" [2], Gore Verbinski's "Clue" [3], Steve Oedekirk's "Stretch Armstrong" [4], Etan Cohen and Kevin Lima's "Candyland", and even Ridley Scott's "Monopoly" [6]
--presto
- Peter Berg's Battleship moved up a week
- Sony Pictures to make movie based on the board game RISK
- Gore Verbinski to direct CLUE
- Worst idea ever -- Steve Oedekerk to write Stretch Armstrong movie/
- From the guy who wrote Tropic Thunder comes Candy-Land the movie
- Worst Idea Ever - Ridley Scott is directing Monopoly/
You forgot Universal's Asteroids
--erich
Save us all.
Tuesday, June 15, 2010
g33k d1nner -- returns for one night only (tonight!)
What | Dinner with your fellow geeks |
When | Jun 15, 2010, 7:30pm |
Where | Canters Deli [ Canter's Fairfax Restaurant ] |
Address | 419 North Fairfax Avenue, Los Angeles, CA 90036 |
Who | People who self-identify as geeks |
RSVP | at upcoming |
Why | "It’s a chill scene. No uber networking, self-promotion or company promotion. Just be cool. We’re all friends you haven’t met yet." |
How | Show up. Look for the like minded peeps. pay for your own food. enjoy. |
More info available on the geekdinner website [ g33kd1nner ]:
Friday, June 11, 2010
ubuntu 10.4 + perl 5.10.1 => personal config moved to .local/share/.cpan
Once I found this new location, I was able to delete the new .cpan directory and replace it with a symlink to my old ~/.cpan. Now I can get back to building modules as a non-privileged user into a local::lib based configuration.
Delete empty new .cpan directory and replace with a symlink to my old .cpan:
rm -rf $HOME/.local/share/.cpan && ln -s $HOME/.cpan $HOME/.local/share/
Tuesday, June 8, 2010
Thunderbird SSL Exceptions
- Open Preferences:
Edit Menu -> Preferences
- View Certificates:
Advanced Tab -> Certificates Sub Tab -> [View Certificates] button
- Servers Tab :
[Add Exception] button
- Add domain :
Enter domain in Server Location text field
- Get Certificate :
[Get certificate]
- View Certificate (optional) :
[View Certificate] then [Close]
- Check permanently store exception :
[X] Permanently store this exemption
- Confirm Security exception :
[Confirm Security Exception] button
- close certificates :
[close] button
- close preferences :
[close] button
The exception core for Thunderbird is separate from the one for Mozilla / Firefox, so if you've already added an exception there you'll need to repeat it for Thunderbird. I needed to do this because I get legitimate emails from a site that come to me from the internal company domain using our external company SSL certificate. Having to click through 3 pop-ups each time I saw a bamboo build status message is a non-starter.
I wonder if there is a simpler perl interface to directly manipulate these configuration options? Perhaps using Mozilla::Prefs::Simple?
Friday, June 4, 2010
Ubuntu 10.4 upgrade and reset metacity bindings.
The metacity window manager configuration has been changed considerably: the minimize, maximize, close buttons have been moved from the right to the left, and reordered. Rather than adjust to these new settings, I modified the configuration to put them back where they were before. This is a good reminder that I should go back to my own window manager and config. I'm not sure what will be best for the laptop, I am very happy with ion, at least with the ideas behind it, it's kind of a pain to configure. I still haven't duplicated my ion1 settings in ion3. Now that the developer gave up on it and switched to windows (sigh), I'm not sure if I should move on.
How to change the metacity button layout: Edit the gnome config for apps/metacity/general/button_layout, which is a string describing the button locations. I have changed mine to menu:maximize,minimize,close
. Using the gconf-editor tool, navigate to apps/metacity/general, then find the button_layout option. Changes are immediate. Invalid button names are silently ignored, to future proof against updated button names in later configurations.
Thanks to lifehacker and how to geek for tips. Check out the howtogeek article if you need a walk through for gconf-editor.