Charlie Gonzalez
Recent Actions
-
Posted The scoop on Windows running Perl to itcharlie
Scoop is a command-line installer for Windows that allows you to install a local user copy of Perl and other open source programming languages.
To get started, just install scoop on your windows machine by typing this in a powershell terminal:
-
Posted Hacktoberfest 2022 is near! to itcharlie
Hello Fellow Perl mongers!
Every year in the month of October a company named DigitalOcean hosts an event named Hacktoberfest.
If you ever wanted to contribute to a Perl project no…
-
Posted EV charge calculator from script to Dancer web to itcharlie
Since my last post I wanted to take my EV charge calculator script and convert it into a web form. In this post I breakdown how I migrated the script to a Dancer2 web app.
Just a minor note …
-
Posted EV charge pricing per State in US to itcharlie
Continuing from my previous post ( https://blogs.perl.org/users/itcharlie/2021/04/calculating-ev-battery-charge-with-perl.html ) I learned that residential electricity charges are calculated…
-
Posted Calculating EV battery charge pricing with Perl to itcharlie
Presently I have great interest in “EVs” Electric Vehicles but I haven’t seen any data on how much it would cost to charge an electric vehicle from 0 % to 100 % battery charge at home in NYC ( So I wrote a Perl script to do just that ) but before we dig in into it I explain a…
-
Commented on Call for volunteers to update OWASP Perl Wiki
Hi Martin, Thank you for your comment, I am not sure how long it will take for OWASP to respond. I have updated my post to reflect this information....
-
Commented on Call for volunteers to update OWASP Perl Wiki
Ah yes, this is important!! I have updated the post entry with the required updates needed. Thanks Dean!...
- Posted Call for volunteers to update OWASP Perl Wiki to itcharlie
-
Posted Perl used in an unusual place to itcharlie
Here's an article by New York City-based Perl hacker Jim Keenan on Medium.com about an unusual place where Perl has been put to good use:
-
Commented on CPAN Tutorials
Loving the entry on Pod::POM::Web. Currently using on my windows laptop. Thank you for sharing....
-
Commented on Cleaning up the IDs in a FASTA file
Hello kyclark, Thanks you for this post, Today I learned what Fasta File formats are. Best, Charlie...
-
Commented on Dancer2 0.200000 is finally out!
Excited for this news!! Much thanks to the Dancer Core Team....
-
Commented on Need Perl6 modules on Windows then use Zef
Awesome Steve, Thanks for updating the site. I'm glad zef exists and my issue was addressed quickly in irc....
-
Posted Need Perl6 modules on Windows then use Zef to itcharlie
Lately I have been working on writing some serious Perl 6 so I can discuss and review at the NYC Perl 6 Beginners group in NY.pm. After doing some research I then realize that I need to install additional Perl 6 modules on my Windows machine. In a Rakudo Star installation for Windows you have…
-
Posted NYC Perl 6 Beginners Study Group Session 2 to itcharlie
"The future is now thanks to science" - Clemont - Pokemon Trainer and Science Aficionado.
If you are in or around NYC next week then be part of the future. NY.pm has organized a Perl 6 Beginners Study Group and next week Saturday March 05 2016 is our second group session. Meeting details f…
-
Posted A Travis pull request for Proc::ProcessTable to itcharlie
My pull request challenge assignment for the month of February was Proc::ProcessTable a Perl module to interface with the Unix process table. As you can see from looking at the README.md file via Github this project recently has…
-
Posted What I learned at Perl MiniConf to itcharlie
… -
Posted My Second NYC Perl Hackathon experience to itcharlie
On May 2nd 2015, the Second NYC Perl Hackathon event took place and this time around it was a completely different experience from the First NYC Perl Hackathon that took place in 2013. In early February, Jim Keenan made a call for a Perl Hackathon venue space in the NY.pm mailing list and Peter…
-
Posted Mini CPAN PR Challenge Distros available in NYC Perl Hackathon 2015 Wiki to itcharlie
NYC Perl Hackathon 2015. -
Posted NYC Perl Hackathon 2015 has its own Mini CPAN PR Challenge to itcharlie
Influenced by the original Pull Request Challenge, I am excited to announce that NYC Perl Hackathon 2015 will have its own
-
Commented on New York City Perl Hackathon 2015
Thanks Nick. I updated the post with registration information since Perl Weekly is already pointing to this page....
-
Posted New York City Perl Hackathon 2015 to itcharlie
Thanks to a generous venue offer from Bloomberg, L.P., I am pleased to announce the Second New York City Perl Hackathon, to be held Saturday, May 02, 2015 ( 10:00 am - 5:00 pm )
Location:
Bloomberg Tower
731 Lexington Ave ( between East 58 & 59 Sts )
New York, NY 100… -
Posted "Short and sweet, but definitely a good value PR!" to itcharlie
Hello,
As Neil categorized it in the title of this post, My first PR Challenge ( Poe::Component::DirWatch ) was definitely short , sweet and packed with value. When I attempted to work on this module I didn't find any issues…
-
Commented on Write a Perl tutorial and earn some $$$!!
Sorry for this. I added more information about the payment amount and how it is paid....
-
Posted Write a Perl tutorial and earn some $$$!! to itcharlie
Then head over to Digital Ocean and submit your Perl tutorial. Digital Ocean provides Cloud servers for as low as $5 bucks a month. Digital O…
-
Commented on How can I make this Perl code run faster ?
Hi Jeffrey! You are correct!! I updated the script to dump the list of distributions it found into a file. Here is an example of the file: https://github.com/itcharlie/IDP_charlie/blob/master/perl_tools/dist_file_1388981451 You can see duplicate entries of distributions with different versions. Take Dancer-Plugin-Database-Core...
-
Commented on How can I make this Perl code run faster ?
Thanks Brian and Joel for the suggestions. I will run this script with Devel::NYTProf and do the same with a different version of the script using Mojo::UserAgent. I am also going to consider using JSON::XS and compiling the regex patterns...
-
Commented on Christmas Eve Obfu
Very Nice!!...
-
Commented on How can I make this Perl code run faster ?
Updated the post to make the URL links. Thanks Toby....
-
Posted How can I make this Perl code run faster ? to itcharlie
Hello world and Happy Holidays!! This is my first time blogging in blogs.perl.org and I figure I take this opportunity to ask the Perl community for suggestions on how I can make this Perl code run faster.
="https://github.com/itcharlie/IDP_charlie/blob/master/perl_tools/bundle2pin…
Comment Threads
-
Liz commented on
Cleaning up the IDs in a FASTA file
split() currently does not create a lazy list. If the grammar engine is used to split, it creates all Match objects prior to returning and starting to hand them back. If it is not, it is using the internal nqp::split function, which also builds structures in memory (and does not have a parameter to only split into x elements).
So, split is not lazy.
-
Ken Youens-Clark commented on
Cleaning up the IDs in a FASTA file
"starts-with" is a great thing to show my beginner students! I keep forgetting about that, but it's a nice borrow from Python. Thanks!
-
Ken Youens-Clark commented on
Cleaning up the IDs in a FASTA file
Pawel, I accidentally stumbled into bioinformatics. I was a Perl hacker who got hired by Lincoln Stein back in 2001 to work at Cold Spring Harbor Lab. It was immediately fascinating and horribly intimidating. I have never felt even a little bit competent as a biologist, but I keep trying to learn as much as possible. After working for CSHL (on the Gramene.org project), I moved to the Univ. of Arizona where I work for Dr. Bonnie Hurwitz in a field called "metagenomics." I'm still in way over my head, but she puts up with me because I can hack together pipelines. So, just keep learning,…
-
Martin McGrath commented on
Call for volunteers to update OWASP Perl Wiki
Hi Charlie, do you a rough idea how long account requests take to process for the OWASP wiki?
-
Grinnz commented on
Call for volunteers to update OWASP Perl Wiki
Surely Perl 6 should get its own page rather than confusing the Perl page.
About blogs.perl.org
blogs.perl.org is a common blogging platform for the Perl community. Written in Perl with a graphic design donated by Six Apart, Ltd.