From joshua at keroes.com Wed May 2 15:13:52 2012 From: joshua at keroes.com (Joshua Keroes) Date: Wed, 2 May 2012 15:13:52 -0700 Subject: [Pdx-pm] Multisearch engines Message-ID: In my company we have databases, webservers, web services, and search engines; dozens of each. Almost every resource is an island unto itself. Few are linked. Some are redundant. We have so many resources that I have to show people our particular resources every few days. A single search engine to rule them all would be a big win. This problem has been solved before. It's called federated search, multi search, meta search, and search aggregation. There's a nice picture at http://en.wikipedia.org/wiki/Metasearch_engine . A rough overview of the project could look like this: Web frontend: 1. optionally run auto-completion while user is typing into the form (that's a whole different topic) 2. send complete query to Metasearch API frontend Metasearch API frontend: 1. validate query 2. normalize query (improve queries if possible) 3. send normalized query to every subsearch handler 4. optionally inform frontend about all subsearches (to initialize progress bars; etc.) 5. normalize response (add useful info to response or delete things the user shouldn't see) 6. return subsearch response Subsearch handlers: 1. optionally validate and normalize query (things specific to just this resource) 2. search. Depending on the type of resource this can mean many things: search a database, check an index, fetch a web service, make a webpage query and scrub the results; etc. 3. normalize response 4. return response Backend: 1. Run indexers Anyone familiar with projects in Perl-land (or outside the bubble) for solving this? Failing that, know of any related projects I should check out and/or leverage like Lucy/Lucene? Thanks, Joshua -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.prew at gmail.com Wed May 2 16:27:27 2012 From: ben.prew at gmail.com (Ben Prew) Date: Wed, 2 May 2012 16:27:27 -0700 Subject: [Pdx-pm] Multisearch engines In-Reply-To: References: Message-ID: I've had experience using solr (http://lucene.apache.org/solr/), but have been attracted to elasticsearch (http://www.elasticsearch.org/). Also, for something like the above (including Lucene), you'll probably want a slightly different architecture then you describe below. Instead of having "subsearch" handlers, you'll have the individual islands (dbs, etc) add their "documents" to the search engine, and then it will search across them. Something like solr or elastic search can be scaled across multiple machines. Solr also has a nice web-administration frontend, so you know what each head is doing and what it's replication status is. Perl has Plucene if you're so inclined too, but I don't have much experience with it. --Ben On Wed, May 2, 2012 at 3:13 PM, Joshua Keroes wrote: > In my company we have databases, webservers, web services, and search > engines; dozens of each. Almost every resource is an island unto itself. > Few are linked. Some are redundant. We have so many resources that I have > to show people our particular resources every few days. > > A single search engine to rule them all would be a big win. > > This problem has been solved before. It's called federated search, multi > search, meta search, and search aggregation. There's a nice picture at > http://en.wikipedia.org/wiki/Metasearch_engine . > > A rough overview of the project could look like this: > > Web frontend: > > 1. optionally run auto-completion while user is typing into the form > (that's a whole different topic) > 2. send complete query to Metasearch API frontend > > > Metasearch API frontend: > > 1. validate query > 2. normalize query (improve queries if possible) > 3. send normalized query to every subsearch handler > 4. optionally inform frontend about all subsearches (to initialize > progress bars; etc.) > 5. normalize response (add useful info to response or delete things > the user shouldn't see) > 6. return subsearch response > > > Subsearch handlers: > > 1. optionally validate and normalize query (things specific to just > this resource) > 2. search. Depending on the type of resource this can mean many > things: search a database, check an index, fetch a web service, make a > webpage query and scrub the results; etc. > 3. normalize response > 4. return response > > > Backend: > > 1. Run indexers > > > Anyone familiar with projects in Perl-land (or outside the bubble) for > solving this? Failing that, know of any related projects I should check out > and/or leverage like Lucy/Lucene? > > Thanks, > Joshua > > _______________________________________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/listinfo/pdx-pm-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zak.zebrowski at gmail.com Wed May 2 16:32:24 2012 From: zak.zebrowski at gmail.com (Zachary Zebrowski) Date: Wed, 2 May 2012 19:32:24 -0400 Subject: [Pdx-pm] Multisearch engines In-Reply-To: References: Message-ID: Lucy comes from kinosearch, which came from plucence, which came from lucene. Look at lucy. :) If your doing a meta search engine, look into www-mechanize, if the other tools apis are stable and roll your own. $0.02 Zak On May 2, 2012 7:27 PM, "Ben Prew" wrote: > I've had experience using solr (http://lucene.apache.org/solr/), but have > been attracted to elasticsearch (http://www.elasticsearch.org/). > > Also, for something like the above (including Lucene), you'll probably > want a slightly different architecture then you describe below. Instead of > having "subsearch" handlers, you'll have the individual islands (dbs, etc) > add their "documents" to the search engine, and then it will search across > them. > > Something like solr or elastic search can be scaled across multiple > machines. Solr also has a nice web-administration frontend, so you know > what each head is doing and what it's replication status is. > > Perl has Plucene if you're so inclined too, but I don't have much > experience with it. > > > --Ben > > > On Wed, May 2, 2012 at 3:13 PM, Joshua Keroes wrote: > >> In my company we have databases, webservers, web services, and search >> engines; dozens of each. Almost every resource is an island unto itself. >> Few are linked. Some are redundant. We have so many resources that I have >> to show people our particular resources every few days. >> >> A single search engine to rule them all would be a big win. >> >> This problem has been solved before. It's called federated search, multi >> search, meta search, and search aggregation. There's a nice picture at >> http://en.wikipedia.org/wiki/Metasearch_engine . >> >> A rough overview of the project could look like this: >> >> Web frontend: >> >> 1. optionally run auto-completion while user is typing into the form >> (that's a whole different topic) >> 2. send complete query to Metasearch API frontend >> >> >> Metasearch API frontend: >> >> 1. validate query >> 2. normalize query (improve queries if possible) >> 3. send normalized query to every subsearch handler >> 4. optionally inform frontend about all subsearches (to initialize >> progress bars; etc.) >> 5. normalize response (add useful info to response or delete things >> the user shouldn't see) >> 6. return subsearch response >> >> >> Subsearch handlers: >> >> 1. optionally validate and normalize query (things specific to just >> this resource) >> 2. search. Depending on the type of resource this can mean many >> things: search a database, check an index, fetch a web service, make a >> webpage query and scrub the results; etc. >> 3. normalize response >> 4. return response >> >> >> Backend: >> >> 1. Run indexers >> >> >> Anyone familiar with projects in Perl-land (or outside the bubble) for >> solving this? Failing that, know of any related projects I should check out >> and/or leverage like Lucy/Lucene? >> >> Thanks, >> Joshua >> >> _______________________________________________ >> Pdx-pm-list mailing list >> Pdx-pm-list at pm.org >> http://mail.pm.org/mailman/listinfo/pdx-pm-list >> > > > _______________________________________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/listinfo/pdx-pm-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From enobacon at gmail.com Fri May 4 01:24:31 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Fri, 4 May 2012 01:24:31 -0700 Subject: [Pdx-pm] meeting next week - topic? Message-ID: <201205040124.31294.enobacon@gmail.com> Hi all, I'm sorry to say that my prolonged state of upheaval continues and that this may still be a sorry excuse for not having the meeting planned any weeks in advance. It was suggested that the meeting be a session of "fix the kwiki", but I didn't register any overwhelming enthusiasm from the group toward this, the suggester has since realized that his role would be "absentee instigator", and I have always been of the opinion that kwiki is not the problem (thus, a fix to it would not be a solution.) That said, I am not against a meeting to address maintenance of the website or even to review/compare wikis if there is sufficient interest in that as a meeting topic. So, please discuss. A group exploration of some newer perl features, CPAN module, bug roundup, or hack session of some sort might be in order. It might also be a good time to preview someone's yapcna / osbridge / oscon talk if anyone is needing a test audience. --Eric -- --------------------------------------------------- http://scratchcomputing.com --------------------------------------------------- From kellert at ohsu.edu Fri May 4 11:37:21 2012 From: kellert at ohsu.edu (Tom Keller) Date: Fri, 4 May 2012 11:37:21 -0700 Subject: [Pdx-pm] off-topic: hacking RFID tags Message-ID: <0D6479BE-725D-4536-9426-320ECD7BCD79@ohsu.edu> Greetings, I will need to learn how to change the data contained on an RFID tagged component of an instrument I will be purchasing. Anyone have experience or suggestions for how to do that? I've found this website, but would like some local expertise and help. thanks, Tom MMI DNA Services Core Facility; 503-494-2442; Office: 6588 RJH; member of OHSU Shared Resources -------------- next part -------------- An HTML attachment was scrubbed... URL: From joshua at keroes.com Fri May 4 11:44:54 2012 From: joshua at keroes.com (Joshua Keroes) Date: Fri, 4 May 2012 11:44:54 -0700 Subject: [Pdx-pm] off-topic: hacking RFID tags In-Reply-To: <0D6479BE-725D-4536-9426-320ECD7BCD79@ohsu.edu> References: <0D6479BE-725D-4536-9426-320ECD7BCD79@ohsu.edu> Message-ID: http://stackoverflow.com/questions/501302/can-i-write-or-modify-data-on-an-rfid-tagsays some data is RO, some RW. If you run into trouble updating the RO tags, maybe it would be easier to dump the current RFID and write a new one, changing what needs to be changed. On Fri, May 4, 2012 at 11:37 AM, Tom Keller wrote: > Greetings, > I will need to learn how to change the data contained on an RFID tagged > component of an instrument I will be purchasing. Anyone have experience or > suggestions for how to do that? I've found this website, > but would like some local expertise and help. > > thanks, > Tom > > MMI DNA Services Core Facility > ; 503-494-2442; Office: 6588 RJH; member of OHSU Shared Resources > > > > > > > > _______________________________________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/listinfo/pdx-pm-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From keithl at gate.kl-ic.com Fri May 4 21:45:36 2012 From: keithl at gate.kl-ic.com (Keith Lofstrom) Date: Fri, 4 May 2012 21:45:36 -0700 Subject: [Pdx-pm] 49 yo Cobol book Message-ID: <20120505044536.GA4740@gate.kl-ic.com> Found in storage: A Guide to Cobol Programming, Daniel D. McCracken (C) 1963 Full of examples to test your Cobol-Parrot grammar engine. Free to a good home. Keith -- Keith Lofstrom keithl at keithl.com Voice (503)-520-1993 KLIC --- Keith Lofstrom Integrated Circuits --- "Your Ideas in Silicon" Design Contracting in Bipolar and CMOS - Analog, Digital, and Scan ICs From ben.hengst at gmail.com Tue May 8 07:27:28 2012 From: ben.hengst at gmail.com (ben hengst) Date: Tue, 08 May 2012 07:27:28 -0700 Subject: [Pdx-pm] Fwd: Books and News from the O'Reilly User Group ProgramBooks and News from the O'Reilly User Group Program--May7 Message-ID: <1c75be47-78ae-4d7b-847a-2fe967acbe44@email.android.com> -------- Original Message -------- From: Marsee Henon & Jon Johns Sent: Mon May 07 18:00:32 PDT 2012 To: ben.hengst+oreilly at gmail.com Subject: Books and News from the O'Reilly User Group ProgramBooks and News from the O'Reilly User Group Program--May7 View this information as HTML in your browser, click here: http://post.oreilly.com/rd/9z1z7seu7c3oktc9hkcks95s9qa01kcp0cspqsemt78 Forward this announcement to a friend: http://post.oreilly.com/f2f/9z1z85g50p9mjd5h7ufc5ov6h7lurrre903npq8206g Hello, On Thursday, May 17, students get a sneak peek at some of our exhibits and workshops as Maker Faire is being set up for the weekend. Also, at OSCON this year there will be an Open Edu track and they're looking for speakers. By the way, you'll want to check out our recent podcasts, if you haven't already. There's some great stuff in there. Speaking of great stuff, have you seen our freely available Open Books? These titles include our Community Press books, written collectively by communities like yours. Cheers, --Marsee Henon & Jon Johns Available for Review The UG team is looking for book reviewers for the following books. Consider posting your reviews on Amazon, Slashdot, oreilly.com, and/or your blog. - PayPal APIs: Up and Running, 2nd Edition http://post.oreilly.com/rd/9z1z6hdhtlmk9c634vakvofvqo0ckpbhensdlta1qg0 - Mobile Design Pattern Gallery, Color Edition http://post.oreilly.com/rd/9z1zfblrvkbj7u4hrbnpkk6is719stvklhi10n5ih18 - Node: Up and Running http://post.oreilly.com/rd/9z1z3omendfogf4rpndkh57s6rtd3ojfndb24l9klco It's easy for you to request books for your meetings or special events--just email usergroups at oreilly.com and include the words "book request" in the subject line. Don't forget to include your due date and shipping address. Prefer ebooks? We can send you a free ebook certificate to print out for raffles or book reviewers. --- New Release Titles: Make: Technology on Your Time Volume 30 http://post.oreilly.com/rd/9z1zhcp6tbv7rvoultd9gv2ulvig1oqu4b170ncgaj0 Beyond Point-and-Shoot http://post.oreilly.com/rd/9z1ze3n4h47l1ooadsjnf7n09gfkj450jd7shoh05io FreeBSD Device Drivers http://post.oreilly.com/rd/9z1zhjqmc151631i68g6p6af3c16aj752ea69k8jm30 Developing Backbone.js Applications http://post.oreilly.com/rd/9z1zh1fbhkag1r9lamo7gvdaajdgavokkrfu0tvtdjg Maintainable JavaScript http://post.oreilly.com/rd/9z1zpfb91td5lpsmsuae6ukdsc9t8shq82vn56c9tro Developing Web Applications with Haskell and Yesod http://post.oreilly.com/rd/9z1z5dme3fuip7quamc2sfgdj2et9ni6d1ada2uan00 --- Education Day at Maker Faire Bay Area http://post.oreilly.com/rd/9z1zbeo55qrle8k66qti661roh7sblu9bg0jdljvln8 Inspire your students at Education Day, a unique preview of Maker Faire Bay Area. On Thursday, May 17, 2012, students get a sneak peek at some of our exhibits and workshops as Maker Faire is being set up for the weekend. Students meet and interact with selected Makers, participate in activities, and get a glimpse of the setup process for this large-scale event. Registration is required. http://post.oreilly.com/rd/9z1zmngsvinkv0cn7bfcim9imhu23uo3f1ge39u1t30 --- Submit a Proposal for the OSCON Open Edu Track We're looking for speakers to lead sessions in OSCON's Open Edu track. We want to hear about the key projects, APIs, open standards, and technological challenges in education technology as it accelerates the progress of U.S. public schools. Proposals are due May 25. http://post.oreilly.com/rd/9z1zsmpnmlishfj4dukfb3dj251c1n1e5cbl32k4ku0 --- LGBT and Women's Community Meet-ups at Fluent Folks interested in connecting with the LGBT or women's communities at Fluent will be happy to know that there will be meet-up events at the conference Tuesday night and Wednesday night, respectively. Both are open to the public. http://post.oreilly.com/rd/9z1z15o364jjjogt1s4shpr9dphkd4pvf9pj7topth8 http://post.oreilly.com/rd/9z1zk7nj4q6nku4hv7gmr7sc757tfp8eivbluu4sq3g --- O'Reilly Podcasts Have you checked out our podcasts lately? We've got four active shows that include: The TOC podcast, which features interviews with people across the publishing world: * See TOC podcast episodes: http://post.oreilly.com/rd/9z1zt2umdjoqn8q06bhkpj0dpqc1aovgbsf58ibin98 * Subscribe through iTunes: http://post.oreilly.com/rd/9z1zcfkdkjhdf7i8rdqafruu3sv038orrs4qr8sdtjg The Code podcast is a far-reaching collection of interviews relevant to developers: * See Code podcast episodes: http://post.oreilly.com/rd/9z1z8a2sfgtvgb77vopkf4dia2dab0r9q2l987a1kj8 * Subscribe through iTunes: http://post.oreilly.com/rd/9z1z4dujt2uk2sra3o7kr9c7s0ucghpjee3ir1uckqg The Velocity podcast highlights the web operations and performance space: * See Velocity podcast episodes: http://post.oreilly.com/rd/9z1zdi0a2idt710ufnonhup828pel513vdm9f2bs7ko * Subscribe through iTunes: http://post.oreilly.com/rd/9z1z2q790vi4c5pgiopr9u8p2vul16u37bcvqt3omog And the Radar Show casts a wide net over the people, products and initiatives relevant to O'Reilly: * See Radar Show episodes: http://post.oreilly.com/rd/9z1zqr638vo9jq024dg7mi1s6ev7g82p6e2vmmpf2go * Subscribe through iTunes: http://post.oreilly.com/rd/9z1zohor31egdph2ubb904ltkkovg032hf4tiarjs1o --- Velocity in London Call for Papers If you're a performance design ace, possess legendary coding skills, manage multiple data centers, or respond to crises with the agility of an HTTP acrobat, we want to hear from you. Call for speakers is open for Velocity Conference in London (Oct 2-4). Submit your talk by May 31. http://post.oreilly.com/rd/9z1zlrh040rpl5paoc34ocuj0b91p3hi4pa8edn153o --- Webcasts: - Google AdWords Update http://post.oreilly.com/rd/9z1zr6lgtbmarpt5r5decn2pe5q3uhucumgs6h2a6io - jQuery Mobile: multiplatform HTML5 webapps http://post.oreilly.com/rd/9z1z6q68nk4u2puva8vr01n506kriuc7qflphu2k1qo - Where iOS View Controllers (and Their Views) Come From http://post.oreilly.com/rd/9z1zquo5oluh53vvukqecjqmdt6fuc0i4g4b919eid0 --- Put Up a Banner & Get a Free Book ? UG leaders only: - OSCON Banners http://post.oreilly.com/rd/9z1zqotgi642tj64nn6tndtu8kpo3clodtg0ug86290 - Maker Faire Badges/Banners http://post.oreilly.com/rd/9z1zh4hpg8pndgo4e9r9oin4plg5reln346f657emeo - Fluent Conference banners http://post.oreilly.com/rd/9z1z55freme5vp365j5e2oq2o1s8h0limotv3s7c51o - Velocity Conference banners http://post.oreilly.com/rd/9z1zqh1d24b26db2t3efv21s8oqrlpag9953a4leis8 --- O'Reilly Ebooks -- Your bookshelf on your devices DRM-free -- Lifetime access -- Multiple formats. PDF -- ePub -- Mobi -- APK -- Daisy Buy 1 Ebook, Get 1 Free with your user group discount code: DSUG2 http://post.oreilly.com/rd/9z1z9es8rcc7e3aa2ltg455uogt3eocigovnvkdgos8 --- Experience Safari Books Online Work Smart, Play Hard Summer Travel Sweepstakes Sign up for a 15-day trial to Safari Books Online and you'll be entered for a chance to win a $500 hotel gift card for your next giveaway. Tackle your toughest development projects by using the 20,000+ books and training videos from more than 100 publishers, including O'Reilly Media. Then when you take off this summer, enjoy your break, knowing you've excelled at work. And who knows, maybe you'll win that $500 gift card.* Limited to U.S. residents 18 and older only. DETAILS: http://post.oreilly.com/rd/9z1zkhfsiaejn2a7a27r51attg5qnalg2kl9it5n260 ================================== O'Reilly 1005 Gravenstein Highway North, Sebastopol, CA 95472 800-998-9938 http://post.oreilly.com/rd/9z1zcnv5gjc4a9ng4rs90k6t0hg9higld3psnbfm7to Follow us on Twitter @oreillyug You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to usergroups at oreilly.com ================================== -- Sent from Kaiten Mail. Please excuse my brevity. -------------- next part -------------- An HTML attachment was scrubbed... URL: From enobacon at gmail.com Thu May 10 11:19:38 2012 From: enobacon at gmail.com (Seven till Seven) Date: Thu, 10 May 2012 11:19:38 -0700 Subject: [Pdx-pm] meeting tonight: Favorite Features and Fun Facts Sharing Session Message-ID: <201205101119.38485.enobacon@gmail.com> Thu. May 10th, 6:53pm at FreeGeek ? 1731 SE 10th Ave. topic: Favorite Features and Fun Facts Sharing Session Tonight will be a round-table session discussing your favorite Perl features (whether new or old) and sharing fun tidbits you've found on your programming and debugging adventures. Whether you're exploring perl5i and other wild new meta layers, learning new tricks with Moose, or discovering the bottom half of the open() pod, come and share your knowledge (and questions) with the group. As usual, the meeting will be followed by social hour at the Lucky Lab. -- --------------------------------------------------- http://pdx.pm.org --------------------------------------------------- From djshultz at gmail.com Thu May 10 19:06:04 2012 From: djshultz at gmail.com (David Shultz) Date: Thu, 10 May 2012 19:06:04 -0700 Subject: [Pdx-pm] No meeting on may 10th? Message-ID: Showed up at free geek. Place was closed, hanging at the lucky lab in hopes of seeing anyone I'd know. This club must be more exclusive then I thought. If you see me at lucky lab wearing a legend of Neil shirt please say hi Sent from my Super Famicon From enobacon at gmail.com Sat May 12 00:43:15 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Sat, 12 May 2012 00:43:15 -0700 Subject: [Pdx-pm] No meeting on may 10th? What about June 14th? In-Reply-To: References: Message-ID: <201205120043.15333.enobacon@gmail.com> # from David Shultz # on Thursday 10 May 2012: >Showed up at free geek. Place was closed, hanging at the lucky lab in >hopes of seeing anyone I'd know. Hi David, I'm sorry we missed you. I was at free geek from 6:45 until 7:15 or so and only one other person turned up. We then went to the lucky lab, (where we should have put up a beacon.) Free Geek is always closed before our meetings start, so you have to look for the "perl mongers" sign on the southeast door. I'll try to make that more clear in future meeting announcements. I'm sure the weather played some role in the small turnout this month, though my failure to have a meeting topic planned and send out announcements and reminders until the day of the meeting probably didn't help. --Eric From enobacon at gmail.com Sat May 12 00:45:31 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Sat, 12 May 2012 00:45:31 -0700 Subject: [Pdx-pm] No meeting on may 10th? What about June 14th? In-Reply-To: <201205120043.15333.enobacon@gmail.com> References: <201205120043.15333.enobacon@gmail.com> Message-ID: <201205120045.31107.enobacon@gmail.com> # from Eric Wilhelm # on Saturday 12 May 2012: >I'm sure the weather played some role in the small turnout this >month, though my failure to have a meeting topic planned and send >out announcements and reminders until the day of the meeting probably >didn't help. My mail on the 4th asking for a meeting topic yielded no discussion. I'm not sure if that is because everyone was already planning on being somewhere else or just not interested in discussing it. For things to go smoothly, I typically need to have a speaker lined-up 3 weeks ahead of time -- at which point I work with them on getting the meeting announcement written so it is ready to post 2 weeks before the meeting. Some months have 5 Thursdays, (and April was not one of them this year), so currently you all have around 2 weeks to volunteer to speak at next month's meeting. Even with all of that preparation, a great speaker with a very interesting topic could still have a hard time getting more than a few people into a dark room to look at slides while the sun is shining "for the first time in months". Maybe our summer meetings should be in a park? There is a (very stale) page on the wiki for meeting topic suggestions. The lovely thing about a wiki is that you can shake that staleness right off of it by editing it. http://pdx.pm.org/kwiki/index.cgi?MeetingWishlist Please discuss what you think would make an interesting meeting (or feel free to e-mail me off list or chat on irc.perl.org/#pdx.pm) Also, if you haven't given a talk before, but think you might like to try, please feel free to contact me about that -- it is possible to even give a 5 minute or half-meeting talk. Thanks, Eric From ben.hengst at gmail.com Tue May 15 07:58:22 2012 From: ben.hengst at gmail.com (ben hengst) Date: Tue, 15 May 2012 07:58:22 -0700 Subject: [Pdx-pm] Fwd: Books and News from the O'Reilly User Group Program--May14 Message-ID: <6a171be1-d1ce-4f9c-9643-7f15544cfb62@email.android.com> -------- Original Message -------- From: Marsee Henon & Jon Johns Sent: Mon May 14 18:00:19 PDT 2012 To: ben.hengst at gmail.com Subject: Books and News from the O'Reilly User Group Program--May14 View this information as HTML in your browser, click here: http://post.oreilly.com/rd/9z1zicc27j3bhcjjup48ehtgfa0gma3fv3as5qkdvro Forward this announcement to a friend: http://post.oreilly.com/f2f/9z1zpktcjhsp8nku3km3gnojqng17ka2528j0nk1u1g Hello, We're getting fired up for Maker Faire Bay Area. In appreciation of the "Greatest Show (and Tell) on Earth," we're dedicating this week's UG newsletter to all things Make. Don't know what Maker Faire is? The first 3 people who are able to attend and email us back at usergroups at oreilly.com will get a free pair of tickets to Maker Faire Bay Area. Cheers, -Marsee Henon & Jon Johns P.S. Celebrate Maker Faire with our ebooks this week at http://post.oreilly.com/rd/9z1z4pp37364lusfrjhgumm263mnpgl9uinjsj9fb4g and our new video "Get Started with Arduino and iOS" by Alasdair Allan http://post.oreilly.com/rd/9z1zk59lmfo1kpo8etamadvrvfnk09leo81ta5h1r5o Available for Review The UG team is looking for book reviewers for the following books. Consider posting your reviews on Amazon, Slashdot, oreilly.com, and/or your blog. Fitness for Geeks http://post.oreilly.com/rd/9z1zvh2jh67ej2i2o0c7qebteviu5ck623m1j4o78fo Learning to Solder http://post.oreilly.com/rd/9z1zghb9aqhjr1vm1df7q1fusi84j984pg9uig32d60 Getting Started with Netduino http://post.oreilly.com/rd/9z1zssenj0iehgk9lkoh9gvmbaq40ldoc9acudkkmpg It's easy for you to request books for your meetings or special events--just email usergroups at oreilly.com and include the words "book request" in the subject line. Don't forget to include your due date and shipping address. Prefer ebooks? We can send you a free ebook certificate to print out for raffles or book reviewers. New Releases Augmented Reality in iOS http://post.oreilly.com/rd/9z1zfv77q6er1e29tobt4cnv2m3ld9ts3sjv733p2qo iOS Sensor Programming http://post.oreilly.com/rd/9z1z84i7tu5r1drbh2ea0jkjf1flenjpc8ogoatreno Android and Arduino http://post.oreilly.com/rd/9z1z15aidvqvgcg9vvq3oq0mbaslo8077iuhfu0logg Getting Started with NFC http://post.oreilly.com/rd/9z1z52vh4ihq7ksbvi4behgi7lddmmpnp7eo0ksqgko Getting Started with RFID http://post.oreilly.com/rd/9z1z535hgjbcl1tnniti3rnoo6kpefkskogt71nop18 Programming Your Home http://post.oreilly.com/rd/9z1zkpo2iunfrru9gie2mq3v3fm6scb6fi1ogb24bv0 Environmental Monitoring with Arduino http://post.oreilly.com/rd/9z1z59fbfabhlc5uoucu5s8ov47d9997fui5g60mg0g Making Things See http://post.oreilly.com/rd/9z1zba0ofmr10813mq04hir7vek1ggpq0m13d645evg Programming Interactivity, 2nd Edition http://post.oreilly.com/rd/9z1z6b5rbnckn7r4q1pad8hod6p14iqgmbsmsvpagb0 Make a Mind-Controlled Arduino Robot http://post.oreilly.com/rd/9z1zrjvjts9u6q82r2n14h8tku9u3hi4k4n352q91no Getting Started with Netduino http://post.oreilly.com/rd/9z1z48hq6jvjcnsk1c3qq51cj11coh4ahqoa6jtobd0 Getting Started with .NET Gadgeteer http://post.oreilly.com/rd/9z1zdtjetabg73n1rj9jd4phvhpmck2q5uvts8c5ckg Mini Maker Faire at Fluent Conference Watch for Mini Maker Faire at our Fluent conference starting at 12:30pm on Thursday, May 31. The call for participation is now open for makers interested in displaying their projects at this event. We're particularly interested in anything that is browser based or involves sensors or data visualization, but don't be shy if you have other projects as well. Apply here by May 18. http://post.oreilly.com/rd/9z1zmudu4cdtqjtdi90cajh01f35037cq7aq2l2uuuo Education Day at Maker Faire Bay Area (May 17, San Mateo) Inspire your students at Education Day, a unique preview of Maker Faire Bay Area. On Thursday, May 17, 2012, students get a sneak peek at some of our exhibits and workshops as Maker Faire is being set up for the weekend. Students meet and interact with selected Makers, participate in activities, and get a glimpse of the setup process. Registration is required. http://post.oreilly.com/rd/9z1z4tqvv32vdll3f3h51rm288358foa0oor4sqpf28 Hardware Innovation Workshop (May 15-16, Palo Alto) MAKE magazine will be hosting its Hardware Innovation Workshop, May 15-16 in Palo Alto, CA. Learn how you can benefit from the maker movement and connect with technology innovators, influencers, and thought-leaders at this nascent event. Register now. http://post.oreilly.com/rd/9z1zaj5jokppoq2ea9jflpmai0jbls8tjoddueu2al0 Maker Faire Live Streams This year at Maker Faire we'll have multiple video streams broadcasting LIVE. Choose from the LIVE Fishbowl Camera, where MAKE Magazine editorial staff will be conducting one-on-one interviews with prominent makers as they come off the stage, or the LIVE Roaming Camera, where Brookelynn and Nat follow as many makers as possible during the entire run of the event. Fora.tv will also be streaming the Center Stage presentations at maker.fora.tv. http://post.oreilly.com/rd/9z1zoma2jm12b6kgponkoat2b0j7oqbqdoogtisogvg Maker Faire App for iOS and Android Folks interested in getting the most out of Maker Faire Bay Area will want to check out the Maker Faire app. Quickly find Makers and Exhibits, get at-a-glance access to a complete program schedule, including special events, pinpoint your next attraction with search, create a personal schedule, learn the venue and surrounding area with maps, and "tweet", "like", or post to your hearts content with Facebook and Twitter integration. Get it for iOS http://post.oreilly.com/rd/9z1z0jd969klobfcdlfqm1l38tjl30l7pp1ftqipj0o Or Android today. http://post.oreilly.com/rd/9z1z39gql240g202fr19n8lei0ikcr4blt0tqdpes9g Maker Faire Program Guide Get a head start with MFBA by downloading the Maker Faire Program Guide. The guide also includes a handy map of the entire event. Download your PDF copy today. http://post.oreilly.com/rd/9z1z0v06vcm0vnflcaqgm0b3v2q6psbg0gor0t0qk30 Brighton Mini Maker Faire (September 8, Brighton, UK) The Brighton Mini Maker Faire will be making a return to Brighton on September 8, 2012. Everyone involved was truly bowled over by the popularity of last year's event. We knew we'd need to expand next time. Call for Makers ends June 20, 2012, so please sign up today to secure your participation in this growing event. http://post.oreilly.com/rd/9z1z6ohqoek05pms5m1aqf371dt2doq2894tqf612no Experience Maker Press Safari Books Online Receive a 10-day free trial and 20% off monthly fees to a Safari Books Online Library subscription for up to a year. That means unlimited access to more than 21,000 books and videos about technology, digital media, personal development and business from O'Reilly Media, Maker Press, and more than 100 of the world's leading publishers. http://post.oreilly.com/rd/9z1zpu74tghdlrslhqh2dm7lpiig89k1rktgr1k3di8 Meet Experts Online: Upcoming Free Webcasts We've got some great webcasts coming up soon that you'll want to tell your members about. http://post.oreilly.com/rd/9z1zeq841nb131anqbs62tbbu92ih4sclr5lo5j0ac8 Introducing Google App Engine with Dan Sanderson http://post.oreilly.com/rd/9z1z3lt7i10o0m8e3hi22e6q87gsu75mpf243u8dd3o O'Reilly Strata Online Conference presented by Alistair Croll http://post.oreilly.com/rd/9z1zr5hkee6nak6rnuqjf0336ea23uqiqull6kftd58 Advanced CSS Styling & Animation for Mobile Apps http://post.oreilly.com/rd/9z1znh5k9fmqaadd27firndmjt8mufb7ftfsc8763m8 Put Up a Banner & Get a Free Book--UG leaders only We're looking for groups to display our discount banners on their web sites. If you send me your group's site with one or more banners posted, we'll send you the O'Reilly book(s) of your choice. Choose from the following list of banners: O'Reilly Answers banner http://post.oreilly.com/rd/9z1znequ2j2dju4if58jpn31gi0h831jph7qda8k2l8 OSCON banners http://post.oreilly.com/rd/9z1zmggdhf4dj9d2u54ubpsaf341qu8sbmsbv1ji12g Fluent Conference banners http://post.oreilly.com/rd/9z1zt2g68c999bi7362k1foj4rit6mvkvuvhqfsssuo Velocity Conference banners http://post.oreilly.com/rd/9z1z61n7tnl33h7cdg9ppmre6hqh5een7npkmb9pfp0 O'Reilly Ebooks--Your bookshelf on your devices Lifetime access. Free Updates. Multiple DRM-free formats. Buy 1 Ebook, Get 1 Free with your user group discount code: DSUG2 Learn More http://post.oreilly.com/rd/9z1z70m650g87dhoej93u05ljqgvm8gn32r9rj7aap8 Looking for more? Visit oreilly.com. ================================== O'Reilly 1005 Gravenstein Highway North, Sebastopol, CA 95472 800-998-9938 http://post.oreilly.com/rd/9z1zt1ijtnevp4p0shnd4v737rnes5gndb854942318 Follow us on Twitter @oreillyug You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to usergroups at oreilly.com ================================== -- Sent from Kaiten Mail. Please excuse my brevity. -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian.d.foy at gmail.com Wed May 16 14:23:50 2012 From: brian.d.foy at gmail.com (brian d foy) Date: Wed, 16 May 2012 16:23:50 -0500 Subject: [Pdx-pm] brian d foy May 20th weekend social In-Reply-To: References: <201202032302.27952.enobacon@gmail.com> Message-ID: Hey Portland Perl mongers, If you haven't burned your eyes out from staring at the eclipse this weekend, where do I get to hang out with you on Sunday evening? If people want one of my talks, I can do that, or we can just hang out for drinks. Anywhere near a TriMet stop is fine with me. The only name I know is McMenamin's since Randal and I often went there. And, even though it's not marionberry season yet, I can always hope. Is anyone in PDX.pm a scotch drinker? Where could we do that? -- brian d foy http://www.pair.com/~comdog/ From michael at jamhome.us Thu May 17 05:50:05 2012 From: michael at jamhome.us (Michael Rasmussen) Date: Thu, 17 May 2012 05:50:05 -0700 Subject: [Pdx-pm] brian d foy May 20th weekend social In-Reply-To: References: <201202032302.27952.enobacon@gmail.com> Message-ID: <20120517125005.GA31309@jamhome.us> On Wed, May 16, 2012 at 04:23:50PM -0500, brian d foy wrote: > If you haven't burned your eyes out from staring at the eclipse this > weekend, where do I get to hang out with you on Sunday evening? If > people want one of my talks, I can do that, or we can just hang out > for drinks. Anywhere near a TriMet stop is fine with me. The only name > I know is McMenamin's since Randal and I often went there. > > And, even though it's not marionberry season yet, I can always hope. > > Is anyone in PDX.pm a scotch drinker? Where could we do that? A quick poll of the Brewcrew email list (which includes home beer brewers and many with stills for "medicinal and fuel" use) suggested Paddy's in downtown PDX. For the best in the area a trip to Oregon City to the Highland Stillhouse is the clear winner. http://www.highlandstillhouse.com/ Public transit on a Sunday evening makes that possibility problematic. -- Michael Rasmussen, Portland Oregon Other Adventures: http://www.jamhome.us/ or http://westy.saunter.us/ Fortune Cookie Fortune du courrier: It is interesting that the industry has invented new ways to lose money when the old ways seemed to work just fine. ~ John Stumpf, CEO Wells Fargo after the 2007 sub-prime lending debacle From merlyn at stonehenge.com Thu May 17 06:13:43 2012 From: merlyn at stonehenge.com (Randal L. Schwartz) Date: Thu, 17 May 2012 06:13:43 -0700 Subject: [Pdx-pm] brian d foy May 20th weekend social In-Reply-To: <20120517125005.GA31309@jamhome.us> (Michael Rasmussen's message of "Thu, 17 May 2012 05:50:05 -0700") References: <201202032302.27952.enobacon@gmail.com> <20120517125005.GA31309@jamhome.us> Message-ID: <86sjezhrw8.fsf@red.stonehenge.com> >>>>> "Michael" == Michael Rasmussen writes: Michael> A quick poll of the Brewcrew email list (which includes home beer brewers Michael> and many with stills for "medicinal and fuel" use) suggested Paddy's in Michael> downtown PDX. For the best in the area a trip to Oregon City to the Michael> Highland Stillhouse is the clear winner. Michael> http://www.highlandstillhouse.com/ That's probably also a good place to view the eclipse, if you wanted to start at 4pm. :) -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion From brian.d.foy at gmail.com Fri May 18 15:15:35 2012 From: brian.d.foy at gmail.com (brian d foy) Date: Fri, 18 May 2012 17:15:35 -0500 Subject: [Pdx-pm] Paddy's at 6pm on Sunday Message-ID: Hey PDX.pm-ers, I'm going to be at OSMI for their eclipse viewing party, which starts at 4:30ish on Sunday, and then I'll be Paddy's at 65 SW Yamhill around 7:30pm. Anyone who shows up then gets to vote on what happens next. :) OMSI's details about its activities are at http://www.omsi.edu/node/3060 . They have the advantage of fancy telescopes set up to look at the sun. As I recall, Tom Phoenix used to work at OSMI, so maybe another co-author of Learning Perl will show up. :) -- brian d foy http://www.pair.com/~comdog/ From merlyn at stonehenge.com Fri May 18 15:33:56 2012 From: merlyn at stonehenge.com (Randal L. Schwartz) Date: Fri, 18 May 2012 15:33:56 -0700 Subject: [Pdx-pm] Paddy's at 6pm on Sunday In-Reply-To: (brian d. foy's message of "Fri, 18 May 2012 17:15:35 -0500") References: Message-ID: <86ehqhdsq3.fsf@red.stonehenge.com> >>>>> "brian" == brian d foy writes: brian> Hey PDX.pm-ers, brian> I'm going to be at OSMI for their eclipse viewing party, which starts brian> at 4:30ish on Sunday, and then I'll be Paddy's at 65 SW Yamhill around brian> 7:30pm. Anyone who shows up then gets to vote on what happens next. :) brian> OMSI's details about its activities are at brian> http://www.omsi.edu/node/3060 . They have the advantage of fancy brian> telescopes set up to look at the sun. brian> As I recall, Tom Phoenix used to work at OSMI, so maybe another brian> co-author of Learning Perl will show up. :) At least one more. I'm also coming! Sadly, the current weather report is 90% cloud coverage, and 90% rain, at least according to http://weathercrack.com/. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion From brian.d.foy at gmail.com Fri May 18 15:44:53 2012 From: brian.d.foy at gmail.com (brian d foy) Date: Fri, 18 May 2012 17:44:53 -0500 Subject: [Pdx-pm] Paddy's at 6pm on Sunday In-Reply-To: <86ehqhdsq3.fsf@red.stonehenge.com> References: <86ehqhdsq3.fsf@red.stonehenge.com> Message-ID: > Sadly, the current weather report is 90% cloud coverage, and 90% rain, > at least according to http://weathercrack.com/. If we can't see the sun before we can't see the sun, I'll just be at Paddy's. -- brian d foy http://www.pair.com/~comdog/ From miken at mikenpdx.com Fri May 18 17:47:29 2012 From: miken at mikenpdx.com (miken at mikenpdx.com) Date: Sat, 19 May 2012 00:47:29 +0000 Subject: [Pdx-pm] Paddy's at 6pm on Sunday Message-ID: <20120519004729.83248.qmail@mikenpdx.com> Maybe someone can bring in an Abbey Road CD so that we can listen to "Here Comes the Sun" to get the Gods to keep the clouds from getting in the way too much. - Mike


------- Original Message ------- On 5/18/2012 10:44 PM brian d foy wrote:
> Sadly, the current weather report is 90% cloud coverage, and 90% rain,
> at least according to http://weathercrack.com/.

If we can't see the sun before we can't see the sun, I'll just be at Paddy's.


--
brian d foy
http://www.pair.com/~comdog/
_______________________________________________
Pdx-pm-list mailing list
Pdx-pm-list at pm.org
http://mail.pm.org/mailman/listinfo/pdx-pm-list
From keithl at gate.kl-ic.com Fri May 18 18:19:14 2012 From: keithl at gate.kl-ic.com (Keith Lofstrom) Date: Fri, 18 May 2012 18:19:14 -0700 Subject: [Pdx-pm] Eclipse Sunday In-Reply-To: References: Message-ID: <20120519011914.GA30204@gate.kl-ic.com> On Fri, May 18, 2012 at 05:15:35PM -0500, brian d foy wrote: > Hey PDX.pm-ers, > > I'm going to be at OSMI for their eclipse viewing party, which starts > at 4:30ish on Sunday, and then I'll be Paddy's at 65 SW Yamhill around > 7:30pm. Anyone who shows up then gets to vote on what happens next. :) FYI - The PLUG Linux Clinic happens at Free Geek Sunday the 20th between 1 and 5, helping folks with their Linux problems. While that is going on, I hope to run the live feed from Fujiyama: http://panasonic.net/eclipselive/ ... on the big screen in the room. That will happen from about 2pm to 5pm PDT. It will be monday morning in Japan. After the Clinic, I'll head to OMSI, perhaps to see some soggy (and hard to light) astronomers. The current forecast for Portland on Sunday afternoon is overcast with a 20% chance of rain. We may see the sky get anomalously dark above the clouds to the west, but we might not be able to see the actual occultation. If it is also overcast over Fujiyama, then I guess we'll just have to get out the big rocket engines, move the moon, and schedule a redo next month. The moon's orbit ought to be confined to the ecliptic anyway, more eclipses and easier calculations that way. Two syzygies a month, or bust! Keith -- Keith Lofstrom keithl at keithl.com Voice (503)-520-1993 KLIC --- Keith Lofstrom Integrated Circuits --- "Your Ideas in Silicon" Design Contracting in Bipolar and CMOS - Analog, Digital, and Scan ICs From joshua at keroes.com Sat May 19 01:13:29 2012 From: joshua at keroes.com (Joshua Keroes) Date: Sat, 19 May 2012 01:13:29 -0700 Subject: [Pdx-pm] Paddy's at 6pm on Sunday In-Reply-To: <20120519004729.83248.qmail@mikenpdx.com> References: <20120519004729.83248.qmail@mikenpdx.com> Message-ID: just went to the Oregon City place. Absolutely awesome pub. On Fri, May 18, 2012 at 5:47 PM, wrote: > Maybe someone can bring in an Abbey Road CD so that we can listen to "Here > Comes the Sun" to get the Gods to keep the clouds from getting in the way > too much. > > - Mike > >


------- Original Message ------- > On 5/18/2012 10:44 PM brian d foy wrote:
> Sadly, the current weather > report is 90% cloud coverage, and 90% rain, >
> at least according to http://weathercrack.com/. >
>
If we can't see the sun before we can't see the sun, I'll just be at > Paddy's. >
>
>
--
brian d foy >
http://www.pair.com/~**comdog/ >
__________________________**_____________________ >
Pdx-pm-list mailing list >
Pdx-pm-list at pm.org >
http://mail.pm.org/**mailman/listinfo/pdx-pm-list >
> ______________________________**_________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/**listinfo/pdx-pm-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From merlyn at stonehenge.com Sun May 20 18:09:40 2012 From: merlyn at stonehenge.com (Randal L. Schwartz) Date: Sun, 20 May 2012 18:09:40 -0700 Subject: [Pdx-pm] Paddy's at 6pm on Sunday In-Reply-To: (brian d. foy's message of "Fri, 18 May 2012 17:44:53 -0500") References: <86ehqhdsq3.fsf@red.stonehenge.com> Message-ID: <86ipfqbaqz.fsf@red.stonehenge.com> >>>>> "brian" == brian d foy writes: brian> If we can't see the sun before we can't see the sun, I'll just be brian> at Paddy's. I'm already at Paddy's holding down the front corner booths. I don't see anyone else here that I recognize. But I'm hopeful. :) -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.posterous.com/ for Smalltalk discussion From andrew.clapp at gmail.com Tue May 22 14:11:58 2012 From: andrew.clapp at gmail.com (Andrew Clapp) Date: Tue, 22 May 2012 14:11:58 -0700 Subject: [Pdx-pm] Job opening In-Reply-To: References: Message-ID: Hello Clay, Did you ever fill this position? -ASC On Wed, Jan 25, 2012 at 12:44 PM, Clay Fouts wrote: > Hi, Mongers. > > I'm looking to hire a Perl developer for our "Open Source Integrated Library > Systems" team at LibLime/PTFS. Check out the job description?for a sketch of > what's involved and our website and Github?repo for further context. We have > several projects we work on, all web apps. Our two primary products are > LibLime Koha and LibLime Academic Koha. Both are the catalogue/circulation > management systems for libraries. > > Please ignore standard HR job listing quirks, especially the "Core Java" in > the title. This work does not in any way involve Java. There is also no need > to move to Maryland or anywhere outside of where you currently live. > > Feel welcome to ping me with questions and to forward this on to others you > think may be interested. > > Cheers, > Clay > > 503-752-5156 > > > _______________________________________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/listinfo/pdx-pm-list -- Andrew S. Clapp Aeonic Enterprises From enobacon at gmail.com Thu May 24 21:42:48 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Thu, 24 May 2012 21:42:48 -0700 Subject: [Pdx-pm] June meeting? Message-ID: <201205242142.48683.enobacon@gmail.com> Hi all, The June meeting is scheduled for three weeks hence. Nobody has volunteered a presentation. Does anyone have a suggestion? Thanks, Eric -- --------------------------------------------------- http://scratchcomputing.com --------------------------------------------------- From enobacon at gmail.com Sun May 27 23:55:06 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Sun, 27 May 2012 23:55:06 -0700 Subject: [Pdx-pm] Fwd: [pm_groups] yapc::na arrival dinner Message-ID: <201205272355.06805.enobacon@gmail.com> ---------- Forwarded Message: ---------- Subject: [pm_groups] yapc::na arrival dinner Date: Sunday 27 May 2012 From: Uri Guttman hi pm leaders, please forward this to your local pm if you know of any of your members who are going to yapc::na in madison WI. it is sold out but we need to get some information to many of the attendees. thanx, uri hi to all yapc::na attendees, if you haven't signed up to the yapc mailing list, please do so. it is the primary area to interact with other yapc attendees (world wide). you can discuss events, best local beers, sharing rides/rooms, rental cars, places to eat, hackathon projects, games to play etc. you can sign up on this page: http://mail.pm.org/mailman/listinfo/yapc one of the major social events of yapc::na has been the arrival dinner. it will be on tuesday, june 11 from 7-10 pm at moe's grill and tavern. if you are planning to attend please signup on this wiki page. we need a quality head count for them to arrange for enough food. we are getting drink deals (1/2 price on margaritas so far and something for beer is in the works) so read that page also for updates. if you are on a strict budget because you are a student or underemployed, we will have several scholarships. contact me off list if you want one of them. http://act.yapcna.org/2012/wiki?node=Arrival%20Dinner hope to see you at yapc::na and the arrival dinner! thanx, uri -- ------------------------------------------------------- From enobacon at gmail.com Tue May 29 23:58:06 2012 From: enobacon at gmail.com (Eric Wilhelm) Date: Tue, 29 May 2012 23:58:06 -0700 Subject: [Pdx-pm] June meeting on June 6th? In-Reply-To: References: <201205242142.48683.enobacon@gmail.com> Message-ID: <201205292358.07012.enobacon@gmail.com> # from Ingy dot Net on Friday 25 May 2012: >June pdxpm seems to conflict with yapc::na. This is a good point. Let's not do that then. >I would be glad to give a talk about Perl, Clouds and Stackato but it >would need to be a week early. June 6 or 7. The 7th wouldn't work for me, but I checked with Free Geek and we would be able to have our choice of rooms on the 6th. Does 6:53 on the 6th sound good? Thanks, Eric -- --------------------------------------------------- http://scratchcomputing.com --------------------------------------------------- From ben.hengst at gmail.com Wed May 30 10:06:33 2012 From: ben.hengst at gmail.com (benh) Date: Wed, 30 May 2012 10:06:33 -0700 Subject: [Pdx-pm] June meeting on June 6th? In-Reply-To: <201205292358.07012.enobacon@gmail.com> References: <201205242142.48683.enobacon@gmail.com> <201205292358.07012.enobacon@gmail.com> Message-ID: Works for me. On Tue, May 29, 2012 at 11:58 PM, Eric Wilhelm wrote: > # from Ingy dot Net on Friday 25 May 2012: > >>June pdxpm seems to conflict with yapc::na. > > This is a good point. ?Let's not do that then. > >>I would be glad to give a talk about Perl, Clouds and Stackato but it >>would need to be a week early. June 6 or 7. > > The 7th wouldn't work for me, but I checked with Free Geek and we would > be able to have our choice of rooms on the 6th. > > Does 6:53 on the 6th sound good? > > Thanks, > Eric > -- > --------------------------------------------------- > ? ?http://scratchcomputing.com > --------------------------------------------------- > _______________________________________________ > Pdx-pm-list mailing list > Pdx-pm-list at pm.org > http://mail.pm.org/mailman/listinfo/pdx-pm-list -- benh~ http://about.notbenh.info