From me at heyjay.com Sat Aug 2 13:31:45 2008 From: me at heyjay.com (Jay Strauss) Date: Sat, 2 Aug 2008 15:31:45 -0500 Subject: [Chicago-talk] Creating dynamic, callable subroutines Message-ID: Hi, I have a list of subroutines of the form: sub Order { return __PACKAGE__.'::com::ib::client::Order'; } sub ScannerSubscription { return __PACKAGE__.'::com::ib::client::ScannerSubscription'; } sub TickType { return __PACKAGE__.'::com::ib::client::TickType'; } But the list of subroutines changes with each version of a vendor supplied API. I can create a list of names of subroutines dynamically. I can create the code above dynamically (they all look the same). How can I create the actual subroutines dynamically, so that they can be called from the outside using the normal: TickType(); form? Thanks Jay From me at heyjay.com Sat Aug 2 13:53:22 2008 From: me at heyjay.com (Jay Strauss) Date: Sat, 2 Aug 2008 15:53:22 -0500 Subject: [Chicago-talk] Creating dynamic, callable subroutines Message-ID: Never mind, I found a nice example at: http://www252.pair.com/comdog/mastering_perl/Chapters/09.dynamic_subroutines.html Thanks Jay From lembark at wrkhors.com Sun Aug 3 16:50:54 2008 From: lembark at wrkhors.com (Steven Lembark) Date: Sun, 03 Aug 2008 19:50:54 -0400 Subject: [Chicago-talk] Creating dynamic, callable subroutines In-Reply-To: References: Message-ID: <4896445E.40702@wrkhors.com> > How can I create the actual subroutines dynamically, so that they can > be called from the outside using the normal: > > TickType(); Don't bother: if the only thing you are doing is calling the other subs then just import them into your local calling space: use Symbol qw( qualify_to_ref ); # list of things you want in your local space # by package and source sub; you can also supply # an optional local name instead of importing the # name as-is. my %importz = ( 'Foo::com::ib::client' => { Order => '', TickType => '' # if they called this something else # in the last rev you can rename the # local version. ScannerSubscription => 'ScanSub', }, ) # do the deed: # walk down the packages, finding lists of subs to import. # for each import, make a ref in this package with the # dest name ( $src || $dst ), then assign it a coderef # from the source package. sub import_subs { while( my ( $package, $subz ) = each %importz ) { while( my ( $src, $dst ) = each %$subz ) { my $ref = qualify_to_ref ( $dst || $src ), __PACKAGE__; *$ref = $package->can( $src ) or die "Oops: $package lacks '$src' to export!"; } } } # viola! at this point calling Order in the local # package will dispatch into the other package's # 'Order' call. -- Steven Lembark 85-09 90th St. Workhorse Computing Woodhaven, NY, 11421 lembark at wrkhors.com +1 888 359 3508 From me at heyjay.com Sun Aug 3 19:15:42 2008 From: me at heyjay.com (Jay Strauss) Date: Sun, 3 Aug 2008 21:15:42 -0500 Subject: [Chicago-talk] Creating dynamic, callable subroutines In-Reply-To: <4896445E.40702@wrkhors.com> References: <4896445E.40702@wrkhors.com> Message-ID: Thanks Steve. I already got it working like in the example. On Sun, Aug 3, 2008 at 6:50 PM, Steven Lembark wrote: > >> How can I create the actual subroutines dynamically, so that they can >> be called from the outside using the normal: >> >> TickType(); > > Don't bother: if the only thing you are doing is calling > the other subs then just import them into your local > calling space: > > use Symbol qw( qualify_to_ref ); > > # list of things you want in your local space > # by package and source sub; you can also supply > # an optional local name instead of importing the > # name as-is. > > my %importz = > ( > > 'Foo::com::ib::client' => > { > Order => '', > TickType => '' > > # if they called this something else > # in the last rev you can rename the > # local version. > > ScannerSubscription => 'ScanSub', > }, > ) > > # do the deed: > # walk down the packages, finding lists of subs to import. > # for each import, make a ref in this package with the > # dest name ( $src || $dst ), then assign it a coderef > # from the source package. > > sub import_subs > { > while( my ( $package, $subz ) = each %importz ) > { > while( my ( $src, $dst ) = each %$subz ) > { > my $ref = qualify_to_ref ( $dst || $src ), __PACKAGE__; > > *$ref = $package->can( $src ) > or die "Oops: $package lacks '$src' to export!"; > } > } > } > > # viola! at this point calling Order in the local > # package will dispatch into the other package's > # 'Order' call. > > -- > Steven Lembark 85-09 90th St. > Workhorse Computing Woodhaven, NY, 11421 > lembark at wrkhors.com +1 888 359 3508 > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > From jason at hostedlabs.com Tue Aug 5 06:08:24 2008 From: jason at hostedlabs.com (Jason Rexilius) Date: Tue, 05 Aug 2008 08:08:24 -0500 Subject: [Chicago-talk] BARcamp Chicago Aug 15th! Message-ID: <489850C8.6030604@hostedlabs.com> Hey Everyone, BARcamp Chicago 2008 is coming up in a week and a half! The weekend of Aug 15th at 1240 W. Harrison St (UIC area). Wow, time flies. Its being held at the Innovation Center at UIC which is this cool new space for tech commercialization projects. I posted a couple of snapshots on the wiki: http://barcampchicago.com/WherePage Sean Johnson is working on the Food and I know its going to be impossible, but we'd like to try and estimate the amount. Can people either reply to me or add their name to the wiki? http://barcampchicago.com/AttendeeList -or- barcamp-subscribe at corp.hostedlabs.com One of the really cool events happening at BARcamp this year is an Erlang workshop being given by Martin Logan and Erlang User group team. If you dont know about Erlang, its a very cool Functional language thats good for distributed computing. Martin and others at Orbitz are putting some Erlang code into production and they have an open source project that they are putting out I believe. As with every year, we have lots of cool talks lined up and I expect a lot more to develop over the weekend. The Chicago LUG is donating a keg, like the previous years and the organizers have been working like crazy. Its coming together despite my being a disorganized slacker ;-) CALL FOR HELP: 1) RSVP in some form or fashion, (call me, email, join the list, add to wiki). Need to size catering. 2) Get your company to participate, sposnor, bring schwag, give a talk about technology you are using or building. 3) Give a talk. 4) Spread the word. Also note: Social Dev Camp is coming up this weekend, at IIT. Check it out: http://barcamp.pbwiki.com/SocialDevCampChicago Thats it for now. Looking forward to seeing you all next weekend! -jason jason at hostedlabs.com 847.208.1000 From joshua.mcadams at gmail.com Tue Aug 5 07:32:33 2008 From: joshua.mcadams at gmail.com (Joshua McAdams) Date: Tue, 5 Aug 2008 09:32:33 -0500 Subject: [Chicago-talk] Fwd: [ChicagoLinux] BARcamp Chicago Aug 15th! In-Reply-To: <48985041.9020802@hostedlabs.com> References: <48985041.9020802@hostedlabs.com> Message-ID: <49d805d70808050732o6ba0b516w7560dc7ab8389437@mail.gmail.com> I haven't seen any mention of BarCamp on this list so I figured I'd pass it along... ---------- Forwarded message ---------- From: Jason Rexilius Date: Tue, Aug 5, 2008 at 8:06 AM Subject: [ChicagoLinux] BARcamp Chicago Aug 15th! To: Chicago Linux Discuss Hey Everyone, BARcamp Chicago 2008 is coming up in a week and a half! The weekend of Aug 15th at 1240 W. Harrison St (UIC area). Wow, time flies. Its being held at the Innovation Center at UIC which is this cool new space for tech commercialization projects. I posted a couple of snapshots on the wiki: http://barcampchicago.com/WherePage Sean Johnson is working on the Food and I know its going to be impossible, but we'd like to try and estimate the amount. Can people either reply to me or add their name to the wiki? http://barcampchicago.com/AttendeeList -or- barcamp-subscribe at corp.hostedlabs.com One of the really cool events happening at BARcamp this year is an Erlang workshop being given by Martin Logan and Erlang User group team. If you dont know about Erlang, its a very cool Functional language thats good for distributed computing. Martin and others at Orbitz are putting some Erlang code into production and they have an open source project that they are putting out I believe. As with every year, we have lots of cool talks lined up and I expect a lot more to develop over the weekend. The Chicago LUG is donating a keg, like the previous years and the organizers have been working like crazy. Its coming together despite my being a disorganized slacker ;-) CALL FOR HELP: 1) RSVP in some form or fashion, (call me, email, join the list, add to wiki). Need to size catering. 2) Get your company to participate, sposnor, bring schwag, give a talk about technology you are using or building. 3) Give a talk. 4) Spread the word. Also note: Social Dev Camp is coming up this weekend, at IIT. Check it out: http://barcamp.pbwiki.com/SocialDevCampChicago Thats it for now. Looking forward to seeing you all next weekend! -jason jason at hostedlabs.com 847.208.1000 _______________________________________________ ChicagoLinux-Discuss mailing list ChicagoLinux-Discuss at chicagolug.org https://www.chicagolug.org/lists/listinfo/chicagolinux-discuss From andy at petdance.com Tue Aug 5 07:44:46 2008 From: andy at petdance.com (Andy Lester) Date: Tue, 5 Aug 2008 09:44:46 -0500 Subject: [Chicago-talk] Fwd: [Chirb] BARcamp Chicago Aug 15th! References: <489850A9.2040705@hostedlabs.com> Message-ID: <7166FE84-9853-467A-ADB6-DEBFA0D649D4@petdance.com> Begin forwarded message: > From: Jason Rexilius > Date: August 5, 2008 8:07:53 AM CDT > To: Chirb discussion list > Subject: [Chirb] BARcamp Chicago Aug 15th! > Reply-To: Chirb discussion list > > > Hey Everyone, > > BARcamp Chicago 2008 is coming up in a week and a half! The > weekend of Aug 15th at 1240 W. Harrison St (UIC area). Wow, time > flies. > > Its being held at the Innovation Center at UIC which is this cool > new space for tech commercialization projects. I posted a couple of > snapshots on the wiki: > > http://barcampchicago.com/WherePage > > Sean Johnson is working on the Food and I know its going to be > impossible, but we'd like to try and estimate the amount. Can > people either reply to me or add their name to the wiki? > > http://barcampchicago.com/AttendeeList > -or- > barcamp-subscribe at corp.hostedlabs.com > > One of the really cool events happening at BARcamp this year is an > Erlang workshop being given by Martin Logan and Erlang User group > team. If you dont know about Erlang, its a very cool Functional > language thats good for distributed computing. Martin and others at > Orbitz are putting some Erlang code into production and they have an > open source project that they are putting out I believe. > > As with every year, we have lots of cool talks lined up and I > expect a lot more to develop over the weekend. The Chicago LUG is > donating a keg, like the previous years and the organizers have been > working like crazy. Its coming together despite my being a > disorganized slacker ;-) > > CALL FOR HELP: > > 1) RSVP in some form or fashion, (call me, email, join the list, add > to wiki). Need to size catering. > > 2) Get your company to participate, sposnor, bring schwag, give a > talk about technology you are using or building. > > 3) Give a talk. > > 4) Spread the word. > > > Also note: > > Social Dev Camp is coming up this weekend, at IIT. Check it out: http://barcamp.pbwiki.com/SocialDevCampChicago > > > Thats it for now. Looking forward to seeing you all next weekend! > > -jason > jason at hostedlabs.com > 847.208.1000 > > _______________________________________________ > ChicagoGroup-Members-List at rubyforge.org > http://rubyforge.org/mailman/listinfo/chicagogroup-members-list > -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From andy at petdance.com Tue Aug 5 09:10:40 2008 From: andy at petdance.com (Andy Lester) Date: Tue, 5 Aug 2008 11:10:40 -0500 Subject: [Chicago-talk] Johanna Rothman on project estimation Message-ID: http://www.codinghorror.com/blog/archives/001161.html Sounds a lot like my estimation technique! I'm glad Johanna got such a good writeup, too. She's one of the reviewers on my hiring book. xoa -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From Darren.Young at ChicagoGSB.edu Wed Aug 6 12:40:41 2008 From: Darren.Young at ChicagoGSB.edu (Young, Darren) Date: Wed, 06 Aug 2008 14:40:41 -0500 Subject: [Chicago-talk] Array diff Message-ID: <07A371D457B501478C1DB3C3DE8372D701FD8FC1@GSBHEX2V.gsb.uchicago.edu> Need to diff() 2 arrays, anyone used Array::Diff? Docs say it returns added and delted arrays but the example given shows a scalar. my @old = ( 'a', 'b', 'c' ); my @new = ( 'b', 'c', 'd' ); my $diff = Array::Diff->diff( \@old, \@new ); $diff->count # 2 $diff->added # [ 'd' ]; $diff->deleted # [ 'a' ]; So, would the added be @added = $diff::added? Am I missing something obvious? In my usage here, @old has 480 elements, @new has 489. From lembark at wrkhors.com Wed Aug 6 14:27:12 2008 From: lembark at wrkhors.com (Steven Lembark) Date: Wed, 06 Aug 2008 17:27:12 -0400 Subject: [Chicago-talk] Array diff In-Reply-To: <07A371D457B501478C1DB3C3DE8372D701FD8FC1@GSBHEX2V.gsb.uchicago.edu> References: <07A371D457B501478C1DB3C3DE8372D701FD8FC1@GSBHEX2V.gsb.uchicago.edu> Message-ID: <489A1730.2040506@wrkhors.com> > Need to diff() 2 arrays, anyone used Array::Diff? Docs say it returns > added and delted arrays but the example given shows a scalar. > > my @old = ( 'a', 'b', 'c' ); > my @new = ( 'b', 'c', 'd' ); > > my $diff = Array::Diff->diff( \@old, \@new ); > > $diff->count # 2 > $diff->added # [ 'd' ]; > $diff->deleted # [ 'a' ]; > > So, would the added be @added = $diff::added? Am I missing something > obvious? > > In my usage here, @old has 480 elements, @new has 489. Returns an arrayref: DB<1> @a = ( 1 .. 10 ) DB<2> @b = ( 2 .. 11 ) DB<3> x $c = Array::Diff->diff( \@a, \@b ) 0 Array::Diff=HASH(0xd97cc0) 'added' => ARRAY(0xd97ca0) 0 11 'count' => 2 'deleted' => ARRAY(0xd51910) 0 1 DB<4> x $c->added 0 ARRAY(0xd97ca0) 0 11 Large-ish arrays or differences could turn this into something of a memory hog. Hash slice with delete would give you a quick list of the excess in one list over the other if that's all you need: sub added { my ( $a, $b ) = @_; my %tmp = (); @tmp{ @$b } = (); delete @tmp{ @$a }; wantarray ? keys %tmp : [ keys %tmp ] } From Darren.Young at ChicagoGSB.edu Wed Aug 6 14:31:00 2008 From: Darren.Young at ChicagoGSB.edu (Young, Darren) Date: Wed, 06 Aug 2008 16:31:00 -0500 Subject: [Chicago-talk] Array diff In-Reply-To: <489A1730.2040506@wrkhors.com> References: <07A371D457B501478C1DB3C3DE8372D701FD8FC1@GSBHEX2V.gsb.uchicago.edu> <489A1730.2040506@wrkhors.com> Message-ID: <07A371D457B501478C1DB3C3DE8372D70200AA77@GSBHEX2V.gsb.uchicago.edu> > Large-ish arrays or differences could turn this > into something of a memory hog. They probably will grow large over time, good point. > Hash slice with delete would give you a quick > list of the excess in one list over the other > if that's all you need: Yep, that's all I need. What's in new that's not in old. From michael.hettinger at bankofamerica.com Thu Aug 7 19:15:18 2008 From: michael.hettinger at bankofamerica.com (Hettinger, Michael J) Date: Thu, 07 Aug 2008 22:15:18 -0400 Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers Message-ID: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> Folks: Thanks for letting me share these opportunities. If you are looking for a warmer climate, dynamic city and a great career opportunity please review my current active/approved openings below. Please note these are only for Sr. talent. Please share with your qualified friends. Thanks, Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers Senior Perl/Database Developer The Corporate Investments Group at Bank of America is looking for a Perl/Database developer to join our team in Atlanta, GA. The Corporate Investments Group (CIG) manages a discretionary mortgage portfolio of approximately $400 billion and a balance sheet of $1.5 trillion. The Quantitative wing of CIG is responsible for model development, implementation, and reporting. We are a Linux shop. We write all our own code using predominantly Perl and C++. We use pvm for parallel computing. We run a nightly production system and respond to a variety of short-term requests. We have needs ranging from database development to web development to large-scale module design and implementation to end-user support to analysis and troubleshooting of existing systems. We place a big emphasis on doing the right thing the first time and are looking for motivated, independent people who feel the same way. Desired skills: - degree in a quantitative field (Math, Finance, Engineering) - familiarity with source control using SVN and/or CVS - experience with parallel computing via pvm or mpi - Linux systems administration experience (RedHat Enterprise) - Database administration Bonus: - C++ - Ruby (on Rails) - experience with Mac use and administration Sr. C++ Developer for Reverse Mortgage Bank of America's Corporate Investments Group is seeking a highly skilled Sr C++ Developer to join our quantitative finance team in Atlanta, GA and be responsible for programming the Reverse Mortgage product. We are a linux/open source shop using over 1000 linux processors to price and analyze over $400 billion in mortgages and other fixed income investments with our C++ and Perl models. Our work is fast-paced and intellectually challenging, and we interact daily with traders, mathematicians, and senior bank management to improve our models and adapt to changing market needs. We have a fun atmosphere with casual dress, daily chess puzzles, and unlimited opportunities to learn finance as well as to challenge your technical skills. No knowledge of finance is necessary for this position, but willingness and aptitude for learning is required. Required Skills: * Superior programming skills in C++ * 3 - 7+ years of C++ experience * Experience with the design of object-oriented C++ classes * Significant experience in industry-quality C++ projects or equivalent open source contributions * Candidates must be able to pass advanced C++ programming tests * STL experience is required * Unix or Linux experience * Ability to work in a time sensitive, market driven environment * Strong attention to detail Desired Skills: * Familiarity with source-code control using SVN * Familiarity with boost * Experience with parallel computing using PVM or MPI * Strong mathematical skills, especially coursework or experience in financial theory, economics, statistics, derivatives pricing, or stochastic calculus -------------- next part -------------- An HTML attachment was scrubbed... URL: From andy at petdance.com Thu Aug 7 19:17:42 2008 From: andy at petdance.com (Andy Lester) Date: Thu, 7 Aug 2008 21:17:42 -0500 Subject: [Chicago-talk] job postings In-Reply-To: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> References: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> Message-ID: > Thanks for letting me share these opportunities. If you are looking > for a warmer climate, dynamic city and a great career opportunity > please review my current active/approved openings below. We're not letting you share them. Please don't post them here. Post to jobs.perl.org and people who are interested will read them there. -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From joel.limardo at forwardphase.com Thu Aug 7 19:36:55 2008 From: joel.limardo at forwardphase.com (Joel Limardo) Date: Thu, 7 Aug 2008 21:36:55 -0500 Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers In-Reply-To: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> References: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> Message-ID: <00ed01c8f8ff$a1825000$e486f000$@limardo@forwardphase.com> When did Chi.pm become a jobs list? Isn't this what jobs.perl.org is for? This isn't even for jobs in Chicago. From: chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] On Behalf Of Hettinger, Michael J Sent: Thursday, August 07, 2008 9:15 PM To: chicago-talk at pm.org Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers Folks: Thanks for letting me share these opportunities. If you are looking for a warmer climate, dynamic city and a great career opportunity please review my current active/approved openings below. Please note these are only for Sr. talent. Please share with your qualified friends. Thanks, Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers Senior Perl/Database Developer The Corporate Investments Group at Bank of America is looking for a Perl/Database developer to join our team in Atlanta, GA. The Corporate Investments Group (CIG) manages a discretionary mortgage portfolio of approximately $400 billion and a balance sheet of $1.5 trillion. The Quantitative wing of CIG is responsible for model development, implementation, and reporting. We are a Linux shop. We write all our own code using predominantly Perl and C++. We use pvm for parallel computing. We run a nightly production system and respond to a variety of short-term requests. We have needs ranging from database development to web development to large-scale module design and implementation to end-user support to analysis and troubleshooting of existing systems. We place a big emphasis on doing the right thing the first time and are looking for motivated, independent people who feel the same way. Desired skills: - degree in a quantitative field (Math, Finance, Engineering) - familiarity with source control using SVN and/or CVS - experience with parallel computing via pvm or mpi - Linux systems administration experience (RedHat Enterprise) - Database administration Bonus: - C++ - Ruby (on Rails) - experience with Mac use and administration Sr. C++ Developer for Reverse Mortgage Bank of America's Corporate Investments Group is seeking a highly skilled Sr C++ Developer to join our quantitative finance team in Atlanta, GA and be responsible for programming the Reverse Mortgage product. We are a linux/open source shop using over 1000 linux processors to price and analyze over $400 billion in mortgages and other fixed income investments with our C++ and Perl models. Our work is fast-paced and intellectually challenging, and we interact daily with traders, mathematicians, and senior bank management to improve our models and adapt to changing market needs. We have a fun atmosphere with casual dress, daily chess puzzles, and unlimited opportunities to learn finance as well as to challenge your technical skills. No knowledge of finance is necessary for this position, but willingness and aptitude for learning is required. Required Skills: * Superior programming skills in C++ * 3 - 7+ years of C++ experience * Experience with the design of object-oriented C++ classes * Significant experience in industry-quality C++ projects or equivalent open source contributions * Candidates must be able to pass advanced C++ programming tests * STL experience is required * Unix or Linux experience * Ability to work in a time sensitive, market driven environment * Strong attention to detail Desired Skills: * Familiarity with source-code control using SVN * Familiarity with boost * Experience with parallel computing using PVM or MPI * Strong mathematical skills, especially coursework or experience in financial theory, economics, statistics, derivatives pricing, or stochastic calculus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.hettinger at bankofamerica.com Thu Aug 7 19:42:14 2008 From: michael.hettinger at bankofamerica.com (Hettinger, Michael J) Date: Thu, 07 Aug 2008 22:42:14 -0400 Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers In-Reply-To: <00ed01c8f8ff$a1825000$e486f000$%limardo@forwardphase.com> References: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> <00ed01c8f8ff$a1825000$e486f000$%limardo@forwardphase.com> Message-ID: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976C1@ex2k.bankofamerica.com> Joel - we have it out on jobs.perl.org --- these are not your average bear roles. Sorry to be a bother but we are trying to hit everywhere and everyone. It's a challenge too - probably on 2 out of 25 make it through the written exam, phone interview, program test and interview gauntlet, Once again sorry for the bother. These are Wall St jobs in Atlanta - it has to match someone. Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers From: chicago-talk-bounces+michael.hettinger=bankofamerica.com at pm.org [mailto:chicago-talk-bounces+michael.hettinger=bankofamerica.com at pm.org] On Behalf Of Joel Limardo Sent: Thursday, August 07, 2008 10:37 PM To: 'Chicago.pm chatter' Subject: Re: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers When did Chi.pm become a jobs list? Isn't this what jobs.perl.org is for? This isn't even for jobs in Chicago. From: chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] On Behalf Of Hettinger, Michael J Sent: Thursday, August 07, 2008 9:15 PM To: chicago-talk at pm.org Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers Folks: Thanks for letting me share these opportunities. If you are looking for a warmer climate, dynamic city and a great career opportunity please review my current active/approved openings below. Please note these are only for Sr. talent. Please share with your qualified friends. Thanks, Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers Senior Perl/Database Developer The Corporate Investments Group at Bank of America is looking for a Perl/Database developer to join our team in Atlanta, GA. The Corporate Investments Group (CIG) manages a discretionary mortgage portfolio of approximately $400 billion and a balance sheet of $1.5 trillion. The Quantitative wing of CIG is responsible for model development, implementation, and reporting. We are a Linux shop. We write all our own code using predominantly Perl and C++. We use pvm for parallel computing. We run a nightly production system and respond to a variety of short-term requests. We have needs ranging from database development to web development to large-scale module design and implementation to end-user support to analysis and troubleshooting of existing systems. We place a big emphasis on doing the right thing the first time and are looking for motivated, independent people who feel the same way. Desired skills: - degree in a quantitative field (Math, Finance, Engineering) - familiarity with source control using SVN and/or CVS - experience with parallel computing via pvm or mpi - Linux systems administration experience (RedHat Enterprise) - Database administration Bonus: - C++ - Ruby (on Rails) - experience with Mac use and administration Sr. C++ Developer for Reverse Mortgage Bank of America's Corporate Investments Group is seeking a highly skilled Sr C++ Developer to join our quantitative finance team in Atlanta, GA and be responsible for programming the Reverse Mortgage product. We are a linux/open source shop using over 1000 linux processors to price and analyze over $400 billion in mortgages and other fixed income investments with our C++ and Perl models. Our work is fast-paced and intellectually challenging, and we interact daily with traders, mathematicians, and senior bank management to improve our models and adapt to changing market needs. We have a fun atmosphere with casual dress, daily chess puzzles, and unlimited opportunities to learn finance as well as to challenge your technical skills. No knowledge of finance is necessary for this position, but willingness and aptitude for learning is required. Required Skills: * Superior programming skills in C++ * 3 - 7+ years of C++ experience * Experience with the design of object-oriented C++ classes * Significant experience in industry-quality C++ projects or equivalent open source contributions * Candidates must be able to pass advanced C++ programming tests * STL experience is required * Unix or Linux experience * Ability to work in a time sensitive, market driven environment * Strong attention to detail Desired Skills: * Familiarity with source-code control using SVN * Familiarity with boost * Experience with parallel computing using PVM or MPI * Strong mathematical skills, especially coursework or experience in financial theory, economics, statistics, derivatives pricing, or stochastic calculus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.hettinger at bankofamerica.com Thu Aug 7 19:43:49 2008 From: michael.hettinger at bankofamerica.com (Hettinger, Michael J) Date: Thu, 07 Aug 2008 22:43:49 -0400 Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers In-Reply-To: <00ed01c8f8ff$a1825000$e486f000$%limardo@forwardphase.com> References: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976AD@ex2k.bankofamerica.com> <00ed01c8f8ff$a1825000$e486f000$%limardo@forwardphase.com> Message-ID: <1CF1474576C7FB4D9C3BC0D6A9A0599205D976C3@ex2k.bankofamerica.com> Joel - a few other chapters were open to the jobs due to the level. I was not trying to offend anyone. Thanks, Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers From: chicago-talk-bounces+michael.hettinger=bankofamerica.com at pm.org [mailto:chicago-talk-bounces+michael.hettinger=bankofamerica.com at pm.org] On Behalf Of Joel Limardo Sent: Thursday, August 07, 2008 10:37 PM To: 'Chicago.pm chatter' Subject: Re: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers When did Chi.pm become a jobs list? Isn't this what jobs.perl.org is for? This isn't even for jobs in Chicago. From: chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] On Behalf Of Hettinger, Michael J Sent: Thursday, August 07, 2008 9:15 PM To: chicago-talk at pm.org Subject: [Chicago-talk] Bank of America - Wall St. jobs in Atlanta, GA --- Sr. PERL and Sr. C++ Developers Folks: Thanks for letting me share these opportunities. If you are looking for a warmer climate, dynamic city and a great career opportunity please review my current active/approved openings below. Please note these are only for Sr. talent. Please share with your qualified friends. Thanks, Michael Hettinger VP, Executive Management Recruiter Enterprise Global Quantitative Staffing Bank of America 980.683.6713 michael.hettinger at bankofamerica.com http://www.bankofamerica.com/careers Senior Perl/Database Developer The Corporate Investments Group at Bank of America is looking for a Perl/Database developer to join our team in Atlanta, GA. The Corporate Investments Group (CIG) manages a discretionary mortgage portfolio of approximately $400 billion and a balance sheet of $1.5 trillion. The Quantitative wing of CIG is responsible for model development, implementation, and reporting. We are a Linux shop. We write all our own code using predominantly Perl and C++. We use pvm for parallel computing. We run a nightly production system and respond to a variety of short-term requests. We have needs ranging from database development to web development to large-scale module design and implementation to end-user support to analysis and troubleshooting of existing systems. We place a big emphasis on doing the right thing the first time and are looking for motivated, independent people who feel the same way. Desired skills: - degree in a quantitative field (Math, Finance, Engineering) - familiarity with source control using SVN and/or CVS - experience with parallel computing via pvm or mpi - Linux systems administration experience (RedHat Enterprise) - Database administration Bonus: - C++ - Ruby (on Rails) - experience with Mac use and administration Sr. C++ Developer for Reverse Mortgage Bank of America's Corporate Investments Group is seeking a highly skilled Sr C++ Developer to join our quantitative finance team in Atlanta, GA and be responsible for programming the Reverse Mortgage product. We are a linux/open source shop using over 1000 linux processors to price and analyze over $400 billion in mortgages and other fixed income investments with our C++ and Perl models. Our work is fast-paced and intellectually challenging, and we interact daily with traders, mathematicians, and senior bank management to improve our models and adapt to changing market needs. We have a fun atmosphere with casual dress, daily chess puzzles, and unlimited opportunities to learn finance as well as to challenge your technical skills. No knowledge of finance is necessary for this position, but willingness and aptitude for learning is required. Required Skills: * Superior programming skills in C++ * 3 - 7+ years of C++ experience * Experience with the design of object-oriented C++ classes * Significant experience in industry-quality C++ projects or equivalent open source contributions * Candidates must be able to pass advanced C++ programming tests * STL experience is required * Unix or Linux experience * Ability to work in a time sensitive, market driven environment * Strong attention to detail Desired Skills: * Familiarity with source-code control using SVN * Familiarity with boost * Experience with parallel computing using PVM or MPI * Strong mathematical skills, especially coursework or experience in financial theory, economics, statistics, derivatives pricing, or stochastic calculus -------------- next part -------------- An HTML attachment was scrubbed... URL: From andy at petdance.com Tue Aug 12 09:58:55 2008 From: andy at petdance.com (Andy Lester) Date: Tue, 12 Aug 2008 11:58:55 -0500 Subject: [Chicago-talk] Chicago hackathon in October* Message-ID: <587D2655-40F1-4535-BD21-84D403E95AFC@petdance.com> There's a Chicago hackathon in October*! * Except really, it'll be at BarCamp Milwaukee. http://perlbuzz.com/2008/08/barcamp-milwaukee-3-coming-october-4th5th.html But this would be a great place to have a hackathon, and if anyone's interested, please start chattering here so that we can encourage others to come, too. xoxo, Andy -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance From pcmantz at gmail.com Tue Aug 12 11:37:51 2008 From: pcmantz at gmail.com (Paul Mantz) Date: Tue, 12 Aug 2008 13:37:51 -0500 Subject: [Chicago-talk] Chicago hackathon in October* In-Reply-To: <587D2655-40F1-4535-BD21-84D403E95AFC@petdance.com> References: <587D2655-40F1-4535-BD21-84D403E95AFC@petdance.com> Message-ID: <42f28fe0808121137p6c05f72cxb3479eccba3fa235@mail.gmail.com> If someone plans on driving, I wouldn't mind taking a spot :-) I kind of wish that the Hackathon at YAPC::NA was more visible, I heard it was in the dorms most of the time, and I never actually *saw* it. On Tue, Aug 12, 2008 at 11:58 AM, Andy Lester wrote: > There's a Chicago hackathon in October*! > > * Except really, it'll be at BarCamp Milwaukee. > > http://perlbuzz.com/2008/08/barcamp-milwaukee-3-coming-october-4th5th.html > > But this would be a great place to have a hackathon, and if anyone's > interested, please start chattering here so that we can encourage others to > come, too. > > xoxo, > Andy > > -- > Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance > > > > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk > -- Paul Mantz http://www.mcpantz.org Zmanda - Open source backup and recovery http://www.zmanda.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From joshua.mcadams at gmail.com Wed Aug 13 07:54:54 2008 From: joshua.mcadams at gmail.com (Joshua McAdams) Date: Wed, 13 Aug 2008 16:54:54 +0200 Subject: [Chicago-talk] Chicago hackathon in October* In-Reply-To: <587D2655-40F1-4535-BD21-84D403E95AFC@petdance.com> References: <587D2655-40F1-4535-BD21-84D403E95AFC@petdance.com> Message-ID: <49d805d70808130754q7c480f07m4571c4020f83d06f@mail.gmail.com> > There's a Chicago hackathon in October*! > > * Except really, it'll be at BarCamp Milwaukee. There's a bar camp in Chicago this weekend, maybe next year we can plan a hack-a-thon at it too. Piggy-backing on these open events seems like a really good way to attract new people to Perl. From hwigoda at mindspring.com Fri Aug 15 00:41:54 2008 From: hwigoda at mindspring.com (Hal Wigoda) Date: Fri, 15 Aug 2008 02:41:54 -0500 Subject: [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! Message-ID: <33C66773-44DC-496C-9F0A-9175C5460F8D@mindspring.com> BARcamp Chicago 2008 is coming up tomorrow! The weekend of Aug 15th at 1240 W. Harrison St (UIC area). It's being held at the Innovation Center at UIC which is this cool new space for tech commercialization projects. I posted a couple of snapshots on the wiki: http://barcampchicago.com/WherePage Sean Johnson is working on the Food and I know its going to be impossible, but we'd like to try and estimate the amount. Can people either reply to me or add their name to the wiki? http://barcampchicago.com/AttendeeList -or- barcamp-subscribe at corp.hostedlabs.com One of the really cool events happening at BARcamp this year is an Erlang workshop being given by Martin Logan and Erlang User group team. If you dont know about Erlang, its a very cool Functional language thats good for distributed computing. Martin and others at Orbitz are putting some Erlang code into production and they have an open source project that they are putting out I believe. As with every year, we have lots of cool talks lined up and I expect a lot more to develop over the weekend. The Chicago LUG is donating a keg, like the previous years and the organizers have been working like crazy. Its coming together despite my being a disorganized slacker ;-) CALL FOR HELP: 1) RSVP in some form or fashion, (call me, email, join the list, add to wiki). Need to size catering. 2) Get your company to participate, sposnor, bring schwag, give a talk about technology you are using or building. 3) Give a talk. 4) Spread the word. Also note: Social Dev Camp is coming up this weekend, at IIT. Check it out: http://barcamp.pbwiki.com/SocialDevCampChicago Thats it for now. Looking forward to seeing you all next weekend! -jason jason at hostedlabs.com 847.208.1000 _______________________________________________ BARcamp Chicago mailing list http://barcampchicago.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jason at hostedlabs.com Fri Aug 15 06:03:26 2008 From: jason at hostedlabs.com (Jason Rexilius) Date: Fri, 15 Aug 2008 08:03:26 -0500 Subject: [Chicago-talk] our $BARcamp = (now + 26_hours); Message-ID: <48A57E9E.4070602@hostedlabs.com> Hey Everyone! We are starting set-up this evening and BARcamp officially starts 11:00 Saturday morning! Some photos of the venue have been uploaded, kegs are on the way, food is being ordered. Crazy, but its all coming together. Saturday 10:00am August 16th at 1240 W Harrison, Chicago IL. http://barcampchicago.com/ The Erlang Workshop starts at noon and kicks off a weekend long Erlang code competition. There are, as always, some great talks planned and even more great talks that aren't planned ;-) Thanks to the organizers and sponsors for making this happen! Look forward to seeing you all this weekend. -jason From joel.limardo at forwardphase.com Fri Aug 15 10:58:22 2008 From: joel.limardo at forwardphase.com (Joel Limardo) Date: Fri, 15 Aug 2008 12:58:22 -0500 Subject: [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! In-Reply-To: <33C66773-44DC-496C-9F0A-9175C5460F8D@mindspring.com> References: <33C66773-44DC-496C-9F0A-9175C5460F8D@mindspring.com> Message-ID: <008601c8ff00$83b32de0$8b1989a0$@limardo@forwardphase.com> The barcampchicago.com website says that this starts tomorrow, Aug. 16th and the Social Dev Camp was last week. I know, I was there. From: chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] On Behalf Of Hal Wigoda Sent: Friday, August 15, 2008 2:42 AM To: dlc at mailman.depaul.edu Cc: sec-daemons at mailman.depaul.edu; cinsc-announce at mailman.depaul.edu; Chicago.pm chatter Subject: [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! BARcamp Chicago 2008 is coming up tomorrow! The weekend of Aug 15th at 1240 W. Harrison St (UIC area). It's being held at the Innovation Center at UIC which is this cool new space for tech commercialization projects. I posted a couple of snapshots on the wiki: http://barcampchicago.com/WherePage Sean Johnson is working on the Food and I know its going to be impossible, but we'd like to try and estimate the amount. Can people either reply to me or add their name to the wiki? http://barcampchicago.com/AttendeeList -or- barcamp-subscribe at corp.hostedlabs.com One of the really cool events happening at BARcamp this year is an Erlang workshop being given by Martin Logan and Erlang User group team. If you dont know about Erlang, its a very cool Functional language thats good for distributed computing. Martin and others at Orbitz are putting some Erlang code into production and they have an open source project that they are putting out I believe. As with every year, we have lots of cool talks lined up and I expect a lot more to develop over the weekend. The Chicago LUG is donating a keg, like the previous years and the organizers have been working like crazy. Its coming together despite my being a disorganized slacker ;-) CALL FOR HELP: 1) RSVP in some form or fashion, (call me, email, join the list, add to wiki). Need to size catering. 2) Get your company to participate, sposnor, bring schwag, give a talk about technology you are using or building. 3) Give a talk. 4) Spread the word. Also note: Social Dev Camp is coming up this weekend, at IIT. Check it out: http://barcamp.pbwiki.com/SocialDevCampChicago Thats it for now. Looking forward to seeing you all next weekend! -jason jason at hostedlabs.com 847.208.1000 _______________________________________________ BARcamp Chicago mailing list http://barcampchicago.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From jason at hostedlabs.com Fri Aug 15 15:10:18 2008 From: jason at hostedlabs.com (Jason Rexilius) Date: Fri, 15 Aug 2008 17:10:18 -0500 Subject: [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! In-Reply-To: <008601c8ff00$83b32de0$8b1989a0$@limardo@forwardphase.com> References: <33C66773-44DC-496C-9F0A-9175C5460F8D@mindspring.com> <008601c8ff00$83b32de0$8b1989a0$@limardo@forwardphase.com> Message-ID: <48A5FECA.7030304@hostedlabs.com> whats the question? BARcamp Chicago is tomorrow. SocialDevCamp was last weekend. They are two different events.. Do people think SocialDevCamp == BARcamp Chicago ?? Joel Limardo wrote: > The barcampchicago.com website says that this starts tomorrow, Aug. > 16^th and the Social Dev Camp was last week. I know, I was there. > > > > > > *From:* chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org > [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] *On > Behalf Of *Hal Wigoda > *Sent:* Friday, August 15, 2008 2:42 AM > *To:* dlc at mailman.depaul.edu > *Cc:* sec-daemons at mailman.depaul.edu; cinsc-announce at mailman.depaul.edu; > Chicago.pm chatter > *Subject:* [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! > > > > BARcamp Chicago 2008 is coming up tomorrow! The weekend > of Aug 15th at 1240 W. Harrison St (UIC area). > > It's being held at the Innovation Center at UIC which is this cool new > space for tech commercialization projects. I posted a couple of > snapshots on the wiki: > > http://barcampchicago.com/WherePage > > Sean Johnson is working on the Food and I know its going to be > impossible, but we'd like to try and estimate the amount. Can people > either reply to me or add their name to the wiki? > > http://barcampchicago.com/AttendeeList > -or- > barcamp-subscribe at corp.hostedlabs.com > > > One of the really cool events happening at BARcamp this year is an > Erlang workshop being given by Martin Logan and Erlang User group team. > If you dont know about Erlang, its a very cool Functional language > thats good for distributed computing. Martin and others at Orbitz are > putting some Erlang code into production and they have an open source > project that they are putting out I believe. > > As with every year, we have lots of cool talks lined up and I expect > a lot more to develop over the weekend. The Chicago LUG is donating a > keg, like the previous years and the organizers have been working like > crazy. Its coming together despite my being a disorganized slacker ;-) > > CALL FOR HELP: > > 1) RSVP in some form or fashion, (call me, email, join the list, add to > wiki). Need to size catering. > > 2) Get your company to participate, sposnor, bring schwag, give a talk > about technology you are using or building. > > 3) Give a talk. > > 4) Spread the word. > > > Also note: > > Social Dev Camp is coming up this weekend, at IIT. Check it out: > http://barcamp.pbwiki.com/SocialDevCampChicago > > > Thats it for now. Looking forward to seeing you all next weekend! > > -jason > jason at hostedlabs.com > 847.208.1000 > > _______________________________________________ > BARcamp Chicago mailing list > http://barcampchicago.com/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk From jason at hostedlabs.com Fri Aug 15 15:11:53 2008 From: jason at hostedlabs.com (Jason Rexilius) Date: Fri, 15 Aug 2008 17:11:53 -0500 Subject: [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! In-Reply-To: <008601c8ff00$83b32de0$8b1989a0$@limardo@forwardphase.com> References: <33C66773-44DC-496C-9F0A-9175C5460F8D@mindspring.com> <008601c8ff00$83b32de0$8b1989a0$@limardo@forwardphase.com> Message-ID: <48A5FF29.80906@hostedlabs.com> nm.. I see the confusion, someone forwarded an older email (from two weeks ago) where I was talking about BARcamp and also trying to help get word out about SocialDevCamp.. Joel Limardo wrote: > The barcampchicago.com website says that this starts tomorrow, Aug. > 16^th and the Social Dev Camp was last week. I know, I was there. > > > > > > *From:* chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org > [mailto:chicago-talk-bounces+joel.limardo=forwardphase.com at pm.org] *On > Behalf Of *Hal Wigoda > *Sent:* Friday, August 15, 2008 2:42 AM > *To:* dlc at mailman.depaul.edu > *Cc:* sec-daemons at mailman.depaul.edu; cinsc-announce at mailman.depaul.edu; > Chicago.pm chatter > *Subject:* [Chicago-talk] Forwarded - BARcamp Chicago Aug 15th! > > > > BARcamp Chicago 2008 is coming up tomorrow! The weekend > of Aug 15th at 1240 W. Harrison St (UIC area). > > It's being held at the Innovation Center at UIC which is this cool new > space for tech commercialization projects. I posted a couple of > snapshots on the wiki: > > http://barcampchicago.com/WherePage > > Sean Johnson is working on the Food and I know its going to be > impossible, but we'd like to try and estimate the amount. Can people > either reply to me or add their name to the wiki? > > http://barcampchicago.com/AttendeeList > -or- > barcamp-subscribe at corp.hostedlabs.com > > > One of the really cool events happening at BARcamp this year is an > Erlang workshop being given by Martin Logan and Erlang User group team. > If you dont know about Erlang, its a very cool Functional language > thats good for distributed computing. Martin and others at Orbitz are > putting some Erlang code into production and they have an open source > project that they are putting out I believe. > > As with every year, we have lots of cool talks lined up and I expect > a lot more to develop over the weekend. The Chicago LUG is donating a > keg, like the previous years and the organizers have been working like > crazy. Its coming together despite my being a disorganized slacker ;-) > > CALL FOR HELP: > > 1) RSVP in some form or fashion, (call me, email, join the list, add to > wiki). Need to size catering. > > 2) Get your company to participate, sposnor, bring schwag, give a talk > about technology you are using or building. > > 3) Give a talk. > > 4) Spread the word. > > > Also note: > > Social Dev Camp is coming up this weekend, at IIT. Check it out: > http://barcamp.pbwiki.com/SocialDevCampChicago > > > Thats it for now. Looking forward to seeing you all next weekend! > > -jason > jason at hostedlabs.com > 847.208.1000 > > _______________________________________________ > BARcamp Chicago mailing list > http://barcampchicago.com/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Chicago-talk mailing list > Chicago-talk at pm.org > http://mail.pm.org/mailman/listinfo/chicago-talk From jason at froebe.net Mon Aug 25 14:21:20 2008 From: jason at froebe.net (Jason L. Froebe) Date: Mon, 25 Aug 2008 14:21:20 -0700 (PDT) Subject: [Chicago-talk] Chicago hackathon in October* Message-ID: <45567.54200.qm@web807.biz.mail.mud.yahoo.com> I have to check with the boss, my wife, but I should be able to make it. Not sure how having the hackathon and BarCamp at the same place/time would go as I want to see it all. :) Jason L. Froebe Tech log http://www.froebe.net/blog MyDatabases (free) magazine: http://froebe.net/blog/category/databases/my-databases/ Froebe Fibers http://www.froebe-fibers.com The opinions expressed within are the sole rantings of a raving lunatic and in no way reflect the rantings, fits, tantrums, errors, corrections, allocutions, or aimless thoughts of Sybase or its employees or of TeamSybase or ISUG. Any resemblence to reasonable thought, or any official or published opinion of Sybase, TeamSybase or ISUG is merely coincidental, and should be totally ignored. ----- Original Message ---- From: Andy Lester To: Chicago.pm chatter Sent: Tuesday, August 12, 2008 11:58:55 AM Subject: [Chicago-talk] Chicago hackathon in October* There's a Chicago hackathon in October*! * Except really, it'll be at BarCamp Milwaukee. http://perlbuzz.com/2008/08/barcamp-milwaukee-3-coming-october-4th5th.html But this would be a great place to have a hackathon, and if anyone's interested, please start chattering here so that we can encourage others to come, too. xoxo, Andy -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk From jason at froebe.net Mon Aug 25 19:10:51 2008 From: jason at froebe.net (Jason L. Froebe) Date: Mon, 25 Aug 2008 19:10:51 -0700 (PDT) Subject: [Chicago-talk] Chicago hackathon in October* Message-ID: <992416.66560.qm@web807.biz.mail.mud.yahoo.com> Got the go ahead from the boss. I'm going up and back each day from Chicago's south side (Flossmoor/Homewood area). If anyone would like to go along, let me know. Jason L. Froebe Tech log http://www.froebe.net/blog MyDatabases (free) magazine: http://froebe.net/blog/category/databases/my-databases/ Froebe Fibers http://www.froebe-fibers.com The opinions expressed within are the sole rantings of a raving lunatic and in no way reflect the rantings, fits, tantrums, errors, corrections, allocutions, or aimless thoughts of Sybase or its employees or of TeamSybase or ISUG. Any resemblence to reasonable thought, or any official or published opinion of Sybase, TeamSybase or ISUG is merely coincidental, and should be totally ignored. ----- Original Message ---- From: Jason L. Froebe To: Chicago.pm chatter Sent: Monday, August 25, 2008 4:21:20 PM Subject: Re: [Chicago-talk] Chicago hackathon in October* I have to check with the boss, my wife, but I should be able to make it. Not sure how having the hackathon and BarCamp at the same place/time would go as I want to see it all. :) Jason L. Froebe Tech log http://www.froebe.net/blog MyDatabases (free) magazine: http://froebe.net/blog/category/databases/my-databases/ Froebe Fibers http://www.froebe-fibers.com The opinions expressed within are the sole rantings of a raving lunatic and in no way reflect the rantings, fits, tantrums, errors, corrections, allocutions, or aimless thoughts of Sybase or its employees or of TeamSybase or ISUG. Any resemblence to reasonable thought, or any official or published opinion of Sybase, TeamSybase or ISUG is merely coincidental, and should be totally ignored. ----- Original Message ---- From: Andy Lester To: Chicago.pm chatter Sent: Tuesday, August 12, 2008 11:58:55 AM Subject: [Chicago-talk] Chicago hackathon in October* There's a Chicago hackathon in October*! * Except really, it'll be at BarCamp Milwaukee. http://perlbuzz.com/2008/08/barcamp-milwaukee-3-coming-october-4th5th.html But this would be a great place to have a hackathon, and if anyone's interested, please start chattering here so that we can encourage others to come, too. xoxo, Andy -- Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk _______________________________________________ Chicago-talk mailing list Chicago-talk at pm.org http://mail.pm.org/mailman/listinfo/chicago-talk