Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

cinci-art

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 257
  • Category: Development
  • Founded: Jul 5, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 2868 - 2897 of 2958   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#2868 From: Rob Biedenharn <Rob@...>
Date: Fri May 13, 2011 12:02 am
Subject: Re: Coding Standards Documentation
rab6687
Send Email Send Email
 
On May 12, 2011, at 6:56 PM, Edward Sumerfield wrote:
The key drivers to coding standards on an Agile project are:

-  shared code ownership, so if you have to edit someone else's code you soon get through the tab/no-tab arguments.

That's easy, never use a TAB character — ever.


-  pair programming as you mention because the conversation is more powerful and adaptable that your out of date doc.

-  communication, as a fundamental ensures that the team is talking about the issues they notice and indentation is always one of them. The coding standards document is also a way to communicate these ideas but the doc should have a self destruct built in of one month. The best documentation is existing code.

-  team room, reenforces communication and brings up complaints about the curly braces often enough that a solution is found.

That is not to say that everyone will follow but there is no solution to that. If a team values coding standards then the team is responsible for policing themselves.

One caveat to all of this is that you tend to respect the existing formating of code. "Right" is better than wrong, but consistently wrong is better than inconsistent.

When formatting is done for formatting sake (esp. for trailing whitespace; one of my pet-peeves), put those changes into a commit separate from other code changes.


Another cool approach is a pre-checkin hook to auto-format everything.

I've never found an auto-formatter that got it "right" (for whatever definition) 100% of the time to make this truly worthwhile.

However, I do defer to Emacs when I don't have a strong opinion about indentation. At least back in the day when I was coding in C, there was a sufficiently rich set of options to control the indentation style.

I think I still have the book any my errata for C Programming Style that was the basis for coding standards where I worked from 1992-1995.  In that situation, the bunch of coders were Pascal programmers being converted to C and so a common starting point that included a reasonable justification for why  the particular style convention was used helped greatly.

-Rob


On Thu, May 12, 2011 at 17:37, Carin <gigasquid@...> wrote:
 

I was poking through a code base and came across an ancient document of Coding Standards. It obviously hadn't been updated in years and was not even close to useful.

So what does Agile have to say about getting everyone on the same coding style, standards for a project. Does the problem go away when you pair and it is passed on by Oral tradition + pairing code review?





+1 513-295-4739
Skype: rob.biedenharn




Begin forwarded message:

From: Edward Sumerfield <esumerfd@...>

Date: May 12, 2011 6:56:24 PM EDT

To: cinci-art@yahoogroups.com

Subject: Re: [cinci-art] Coding Standards Documentation

Reply-To: cinci-art@yahoogroups.com


The key drivers to coding standards on an Agile project are:

-  shared code ownership, so if you have to edit someone else's code you soon get through the tab/no-tab arguments.

-  pair programming as you mention because the conversation is more powerful and adaptable that your out of date doc.

-  communication, as a fundamental ensures that the team is talking about the issues they notice and indentation is always one of them. The coding standards document is also a way to communicate these ideas but the doc should have a self destruct built in of one month. The best documentation is existing code.

-  team room, reenforces communication and brings up complaints about the curly braces often enough that a solution is found.

That is not to say that everyone will follow but there is no solution to that. If a team values coding standards then the team is responsible for policing themselves.

Another cool approach is a pre-checkin hook to auto-format everything.


On Thu, May 12, 2011 at 17:37, Carin <gigasquid@...> wrote:
 

I was poking through a code base and came across an ancient document of Coding Standards. It obviously hadn't been updated in years and was not even close to useful.

So what does Agile have to say about getting everyone on the same coding style, standards for a project. Does the problem go away when you pair and it is passed on by Oral tradition + pairing code review?



#2869 From: "Lari Kirby" <larikirby@...>
Date: Sat May 21, 2011 1:04 am
Subject: semi-OT: teaching kids to program
laripk
Send Email Send Email
 
I'm looking at teaching a friend's step-grandson how to program. I see there are
a number of kids' programming environments out there.

Have you taught your kids how to program?

What age were they when they started?
Which environment did you choose and why?
What sort of projects/challenges interest(ed) them?
What advice would you give someone who hasn't worked with kids before?

Thanks!

Lari Kirby

#2870 From: John Wilger <johnwilger@...>
Date: Sat May 21, 2011 1:51 am
Subject: Re: semi-OT: teaching kids to program
killalldash9
Send Email Send Email
 
Chris Pine's Learn to Program is a good starting point. It uses Ruby.
My (then) 9yo worked through the book on his own, and I answered
occasional questions. After that, we pair-programmed on a simple web
app using TDD. Work on practices and habits (tdd, refactoring,
etc.)—if he's motivated, the technical knowledge will be absorbed.

--
Regards,
John Wilger

On May 20, 2011, at 6:04 PM, "Lari Kirby" <larikirby@...> wrote:

> I'm looking at teaching a friend's step-grandson how to program. I see there
are a number of kids' programming environments out there.
>
> Have you taught your kids how to program?
>
> What age were they when they started?
> Which environment did you choose and why?
> What sort of projects/challenges interest(ed) them?
> What advice would you give someone who hasn't worked with kids before?
>
> Thanks!
>
> Lari Kirby
>
>
> ------------------------------------
>
> To unsubscribe, send an email to:
>   cinci-art-unsubscribe@yahoogroups.com
>
> Yahoo! Groups Links
>
>
>

#2871 From: "Lari Kirby" <larikirby@...>
Date: Sun May 22, 2011 3:59 pm
Subject: TDD for data munging?
laripk
Send Email Send Email
 
I'm working on a project that is, very roughly speaking, import a bunch of data
into a central database and then write a web interface for filtering and
extracting it. It is a demo version of a larger such project I hope to work on.
So, Rails seemed like a good choice for the web interface and for managing the
data structure, and Ruby is working for doing the import (since I don't happen
to have an ETL sitting around). The code is here:
https://github.com/laripk/data_proj_demo/tree/step02-import-the-data (well,
that's the current branch).

My question is, How do you do TDD when you don't know what you need to do? I
mean, I guess the short answer is Test After - write the tests once you've poked
around long enough to learn what you're doing, but I'm not even sure how to do
that.

In this case I've got these files I'm importing into my Rails database: so far
I've only gotten geo.dic transformed into my regions table. (Code for the
imports is in tools/ since I'm not iterating far enough to have to re-import
with updated files.) Now that I've successfully done the one import, how do I
write tests to describe/protect what I did? (and I'm using YamlDb so I can get
the data onto production once I get that far, hence the db/data.yml file)

I've encountered this kind of question before, and haven't answered it, for
example, in a previous job I wrote a tool to extract some data out of our
database, send it to a third party web service, and put the return results in
another part of our database. When you don't have a good specification of the
web service, how do you write tests?

Or do these questions sound much easier when you understand mocking? (Can anyone
point me to a good mocking tutorial?)

Lari Kirby

#2872 From: John Wilger <johnwilger@...>
Date: Sun May 22, 2011 7:55 pm
Subject: Re: TDD for data munging?
killalldash9
Send Email Send Email
 
Hi Lari,

This is exactly what a "spike" is for. The idea is that you experiment
in a new problem domain without using a rigourous TDD approach to
building a system (although you might write a few tests to check
assumptions as you investigate.) Once you learn how the pieces fit
together, *then* you throw out the spike code and start the "real"
project, test-driving it from the ground up.

Slightly off the point of your question, have you looked at ruport and
the ActiveWarehouse ETL tools?

--
Regards,

John Wilger

On May 22, 2011, at 8:59 AM, "Lari Kirby" <larikirby@...> wrote:

> I'm working on a project that is, very roughly speaking, import a bunch of
data into a central database and then write a web interface for filtering and
extracting it. It is a demo version of a larger such project I hope to work on.
So, Rails seemed like a good choice for the web interface and for managing the
data structure, and Ruby is working for doing the import (since I don't happen
to have an ETL sitting around). The code is here:
https://github.com/laripk/data_proj_demo/tree/step02-import-the-data (well,
that's the current branch).
>
> My question is, How do you do TDD when you don't know what you need to do? I
mean, I guess the short answer is Test After - write the tests once you've poked
around long enough to learn what you're doing, but I'm not even sure how to do
that.
>
> In this case I've got these files I'm importing into my Rails database: so far
I've only gotten geo.dic transformed into my regions table. (Code for the
imports is in tools/ since I'm not iterating far enough to have to re-import
with updated files.) Now that I've successfully done the one import, how do I
write tests to describe/protect what I did? (and I'm using YamlDb so I can get
the data onto production once I get that far, hence the db/data.yml file)
>
> I've encountered this kind of question before, and haven't answered it, for
example, in a previous job I wrote a tool to extract some data out of our
database, send it to a third party web service, and put the return results in
another part of our database. When you don't have a good specification of the
web service, how do you write tests?
>
> Or do these questions sound much easier when you understand mocking? (Can
anyone point me to a good mocking tutorial?)
>
> Lari Kirby
>
>
> ------------------------------------
>
> To unsubscribe, send an email to:
>   cinci-art-unsubscribe@yahoogroups.com
>
> Yahoo! Groups Links
>
>
>

#2873 From: Lari Kirby <larikirby@...>
Date: Sun May 22, 2011 11:33 pm
Subject: Re: TDD for data munging?
laripk
Send Email Send Email
 
I've heard of spikes before. I don't know why it never occurred to me that this
was a situation for them.

I had not heard of ActiveWarehouse ETL before. I'll be looking into that more
soon.

Thanks!

Lari Kirby


On May 22, 2011, at 3:55 PM, John Wilger <johnwilger@...> wrote:

> Hi Lari,
>
> This is exactly what a "spike" is for. The idea is that you experiment
> in a new problem domain without using a rigourous TDD approach to
> building a system (although you might write a few tests to check
> assumptions as you investigate.) Once you learn how the pieces fit
> together, *then* you throw out the spike code and start the "real"
> project, test-driving it from the ground up.
>
> Slightly off the point of your question, have you looked at ruport and
> the ActiveWarehouse ETL tools?
>
> --
> Regards,
>
> John Wilger
>
> On May 22, 2011, at 8:59 AM, "Lari Kirby" <larikirby@...> wrote:
>
>> I'm working on a project that is, very roughly speaking, import a bunch of
data into a central database and then write a web interface for filtering and
extracting it. It is a demo version of a larger such project I hope to work on.
So, Rails seemed like a good choice for the web interface and for managing the
data structure, and Ruby is working for doing the import (since I don't happen
to have an ETL sitting around). The code is here:
https://github.com/laripk/data_proj_demo/tree/step02-import-the-data (well,
that's the current branch).
>>
>> My question is, How do you do TDD when you don't know what you need to do? I
mean, I guess the short answer is Test After - write the tests once you've poked
around long enough to learn what you're doing, but I'm not even sure how to do
that.
>>
>> In this case I've got these files I'm importing into my Rails database: so
far I've only gotten geo.dic transformed into my regions table. (Code for the
imports is in tools/ since I'm not iterating far enough to have to re-import
with updated files.) Now that I've successfully done the one import, how do I
write tests to describe/protect what I did? (and I'm using YamlDb so I can get
the data onto production once I get that far, hence the db/data.yml file)
>>
>> I've encountered this kind of question before, and haven't answered it, for
example, in a previous job I wrote a tool to extract some data out of our
database, send it to a third party web service, and put the return results in
another part of our database. When you don't have a good specification of the
web service, how do you write tests?
>>
>> Or do these questions sound much easier when you understand mocking? (Can
anyone point me to a good mocking tutorial?)
>>
>> Lari Kirby
>>
>>
>> ------------------------------------
>>
>> To unsubscribe, send an email to:
>>  cinci-art-unsubscribe@yahoogroups.com
>>
>> Yahoo! Groups Links
>>
>>
>>
>
>
> ------------------------------------
>
> To unsubscribe, send an email to:
>   cinci-art-unsubscribe@yahoogroups.com
>
> Yahoo! Groups Links
>
>
>

#2874 From: cinci-art@yahoogroups.com
Date: Mon Jun 6, 2011 1:29 pm
Subject: New poll for cinci-art
cinci-art@yahoogroups.com
Send Email Send Email
 
Enter your vote today!  A new poll has been created for the
cinci-art group:

Will you be attending Tuesday 6th June?  Topic: Agile in A Flash

   o Yes, please order me Pizza I'll bring $5
   o Yes, NO pizza for me
   o No
   o Maybe


To vote, please visit the following web page:
http://groups.yahoo.com/group/cinci-art/surveys?id=2371750

Note: Please do not reply to this message. Poll votes are
not collected via email. To vote, you must go to the Yahoo! Groups
web site listed above.

Thanks!

#2875 From: cinci-art@yahoogroups.com
Date: Mon Jun 6, 2011 1:29 pm
Subject: New poll for cinci-art
cinci-art@yahoogroups.com
Send Email Send Email
 
Enter your vote today!  A new poll has been created for the
cinci-art group:

Will you be attending Tuesday 6th June?  Topic: Agile in A Flash

   o Yes, please order me Pizza I'll bring $5
   o Yes, NO pizza for me
   o No
   o Maybe


To vote, please visit the following web page:
http://groups.yahoo.com/group/cinci-art/surveys?id=2371775

Note: Please do not reply to this message. Poll votes are
not collected via email. To vote, you must go to the Yahoo! Groups
web site listed above.

Thanks!

#2876 From: "Carin" <gigasquid@...>
Date: Sun Jun 19, 2011 9:42 pm
Subject: Cloud Camp Cincy 2011
gigasquid
Send Email Send Email
 
Heads up for anyone who is interested.  I went last year and it was very
enjoyable.

http://www.cloudcamp.org/cincinnati

#2877 From: Joe Herbers <joe.herbers@...>
Date: Sun Jun 26, 2011 9:26 pm
Subject: First meeting of Cincy Functional Programmers
joeherbers
Send Email Send Email
 

Are you tired of building software with Object-Oriented approaches? Ruby is so 200x. There is a better way. Functional Programming books have names like the "Joy of Clojure", showing how enjoyable they are to use. Learn new terms like "lambda calculus" and monads that you can drop on your friends at other user groups. We've got Clojure, Erlang, Scala, F#, Haskel, and more.


Details on the CincyFP site (which Carin built with 3 lines of Clojure ;) and Meetup site . There’s a cincy-functional-programmers google groop and Twitter: @cincyfp

 

http://cincyfp.wordpress.com/

http://www.meetup.com/TechLife-Cincinnati/events/19878921/

 

Creighton Kirkendall will be presenting. We will also have a meet and greet and discuss what topics that everyone would like to cover in future meetings. The meeting starts at 6:30 – No food is provided, but feel free to bring you own. MaxTrain like CinJUG.

 

Clojure in Action

We will take a tour of clojure through building a practical app (logging server).  Through this tour we will learn the basics of the following:

  • program structure
  • data structures
  • the REPL
  • java interop
  • event/communication framework aleph
  • leiningen - Clojure's version of maven


#2878 From: cinci-art@yahoogroups.com
Date: Thu Jun 30, 2011 2:18 pm
Subject: New poll for cinci-art
cinci-art@yahoogroups.com
Send Email Send Email
 
Enter your vote today!  A new poll has been created for the
cinci-art group:

Will you be attending Tuesday 5th July Topic: Jim Weirich on RSpec Given

   o Yes, please order me Pizza I'll bring $5
   o Yes, NO pizza for me
   o No
   o Maybe


To vote, please visit the following web page:
http://groups.yahoo.com/group/cinci-art/surveys?id=2375706

Note: Please do not reply to this message. Poll votes are
not collected via email. To vote, you must go to the Yahoo! Groups
web site listed above.

Thanks!

#2879 From: "Lari Kirby" <larikirby@...>
Date: Mon Jul 4, 2011 7:36 pm
Subject: Ride July 5th?
laripk
Send Email Send Email
 
My husband wants to take our one car to Columbus tomorrow, and while he could
drop me off near the meeting on the way up, he's planning to stay overnight, so
I'm wondering if anyone would be able to drive me home to Northern Kentucky
after the meeting. We're off the Mt. Zion exit (south side of Florence), so it's
not a short detour if you're a north-sider. (On the other hand, we are close to
the highway.)

Thanks!

Lari Kirby

#2880 From: Joe Herbers <joe.herbers@...>
Date: Tue Jul 5, 2011 2:12 am
Subject: Agile Roundtable Tuesday: Jim Weirich
joeherbers
Send Email Send Email
 
I'd probably go to see Jim speak on observing paint dry, and I like the drafts and company at Habanero's (where it's always fun to seat a big group of us).

http://www.meetup.com/TechLife-Cincinnati/events/24090321/


---------- Forwarded message ----------
Date: Thu, Jun 30, 2011 at 10:18 AM
Subject: [cinci-art] New poll for cinci-art

Enter your vote today! A new poll has been created for the
cinci-art group:

Will you be attending Tuesday 5th July Topic: Jim Weirich on RSpec Given

o Yes, please order me Pizza I'll bring $5
o Yes, NO pizza for me
o No
o Maybe

To vote, please visit the following web page:
http://groups.yahoo.com/group/cinci-art/surveys?id=2375706

Note: Please do not reply to this message. Poll votes are
not collected via email. To vote, you must go to the Yahoo! Groups
web site listed above.

Thanks!



#2881 From: "Lari Kirby" <larikirby@...>
Date: Tue Jul 5, 2011 4:05 pm
Subject: Re: Ride Tonight?
laripk
Send Email Send Email
 
Well, my husband just took off for his thing in Columbus, so if I'm going to see
the inestimable Jim Weirich speak, I will need a ride in both directions. (I'm
in Florence.)

Thanks!

Lari Kirby


----- Original message -----
From: "Lari Kirby" <larikirby@...>
To: cinci-art@yahoogroups.com
Date: Mon, 04 Jul 2011 15:36:14 -0400
Subject: [cinci-art] Ride July 5th?

My husband wants to take our one car to Columbus tomorrow, and while he could
drop me off near the meeting on the way up, he's planning to stay overnight, so
I'm wondering if anyone would be able to drive me home to Northern Kentucky
after the meeting. We're off the Mt. Zion exit (south side of Florence), so it's
not a short detour if you're a north-sider. (On the other hand, we are close to
the highway.)

Thanks!

Lari Kirby



------------------------------------

To unsubscribe, send an email to:
    cinci-art-unsubscribe@yahoogroups.com

Yahoo! Groups Links

#2882 From: Jim Weirich <jim.weirich@...>
Date: Tue Jul 5, 2011 4:21 pm
Subject: Re: Agile Roundtable Tuesday: Jim Weirich
jimweirich
Send Email Send Email
 
On Jul 4, 2011, at 10:12 PM, Joe Herbers wrote:

> I'd probably go to see Jim speak on observing paint dry, and I like the drafts
and company at Habanero's (where it's always fun to seat a big group of us).
>
> http://www.meetup.com/TechLife-Cincinnati/events/24090321/

(am having trouble posting this to the list, I hope this goes through)

I've been meaning to post about the meeting, but haven't gotten to it till now.
I'll be talking about making your tests more readable, more like specifications.
I'll talk about my experience using the Given/When/Then framework for RSpec. At
least half the meeting will be group coding on one or more testing Katas
(hopefully using Given/When/Then, but that's up to you).

So, bring your laptop and be prepared to do some pairing.

If you want a preview of the Katas that we will be doing, you can see
http://onestepback.org/vital_testing.  There are six testing Katas on that page,
ranging from simple to difficult.

And most importantly, be prepared to have some fun.

--
-- Jim Weirich
-- jim.weirich@...

#2883 From: Joe Herbers <joe.herbers@...>
Date: Wed Jul 6, 2011 5:18 pm
Subject: Cincy Clean Coders Thursday
joeherbers
Send Email Send Email
 
This group was recently formed out of the ashes of the CinNUG Bit Slingers but crosses languages. After a lightning talk, the group breaks up into pairs to work on katas in your language of choice (summary from last meeting: Finding a Groove). If you want practice on improving your coding, this is a good chance to do it.

Cincy Clean Coders - TechLife Cincinnati - Meetup July 7 @6pm

We’re excited to have a new Lightning Talk tomorrow as Sudhin Varghese (@sudhcha) discusses the Anti-If Campaign.  From their site:

Avoid dangerous IFs and use Objects to build a code that is flexible, changeable and easily testable, and will get rid of a lot of headaches and weekends spent debugging!

That’s what we’re all about at Cincy Clean Coders!

As always we’ll be starting at 6pm and ending around 8pm.  MaxTrain facilities in Mason, OH are again hosting us.  Directions can be found here.



#2884 From: Chris Nelson <superchrisnelson@...>
Date: Thu Jul 7, 2011 10:43 pm
Subject: Beautiful Front End Code with Backbone.js and Coffescript
cnelson4eii
Send Email Send Email
 
Hey all,

I've done several presentations on CoffeeScript and Backbone in the past few months. I've come to the realization that there's way more to cover than can possibly be crammed into a couple of hours.  As a result, we've come up with a two day training class that's slam full of front end coding goodness.  

Because you're awesome and we love you, we'd like to offer you a 10% discount!  

For information on the topics and schedule, check out our website: http://gaslightsoftware.com/beautiful-front-end-code.html

Go here and enter cart as the discount code to get 10% off.

Promo Code: cart

Hope to see you there!

Chris & Moore Chris

#2885 From: "soni_nimesh" <beyondcsm@...>
Date: Fri Jul 22, 2011 3:28 pm
Subject: Agile Release Planning Book
soni_nimesh
Send Email Send Email
 
I am excited to announce availability of my book "Agile Release Planning" on
Amazon Kindle platform.

Check out, download yourself OR pass on the link to your friends, colleagues,
and everyone in your network!  Just visit Amazon.com and search for "Nimesh
Soni" or click here
http://amzn.com/B004TGTHNM


Don't have Kindle? no worries!. You can download Kindle for PC/Mac/Smart phone
and read the book on any of those devices.

Nimesh Soni
skype: nimesh0308 | twitter: @beyondCSM
"Agile Release Planning" Book: http://amzn.com/B004TGTHNM

P.S: This book will be available on Nook (Barns & Noble) and iBook (Apple/iPad)
format soon. Stay tuned..

#2886 From: Joe Herbers <joe.herbers@...>
Date: Sat Jul 23, 2011 6:58 pm
Subject: Functional Programming Concepts in Scala on Tuesday
joeherbers
Send Email Send Email
 
Second meeting of the Cincy Functional Programmers Group. Free pizza, cool stuff.

Functional Programming Concepts in Scala

An introduction to basic functional programming concepts in Scala, where we will learn…

  • What all the fuss is about
  • Thinking functionally
  • Why mutable state can be evil
  • Tail recursion
  • And a brief introduction to monads.

The meeting starts at 6:30 at MaxTrain, pizza beforehand :)

http://www.meetup.com/TechLife-Cincinnati/events/24568841/


About the Speaker:

Benjamin Kyrlach

Systems Integrator for Luxottica Retail

Twitter: @benkyrlach


http://cincyfp.wordpress.com/

Twitter: @cincyfp



#2887 From: Joe Herbers <joe.herbers@...>
Date: Thu Jul 28, 2011 1:18 pm
Subject: "Twitter: From Ruby on Rails to the JVM"‬‏
joeherbers
Send Email Send Email
 
‪Very interesting 15 minute talk at the Open Source Convention by the guy who runs the app services group at Twitter: Twitter: From Ruby on Rails to the JVM. He emphasizes that while Ruby and Rails allowed them to quickly build and grow and they still like it, they've reached the point where performance is overriding other concerns (and they can't mod MRI enough anymore). He also says the JVM's ecosystem is a big advantage in terms of tools, community, support, etc. Sounds like they are converting a number of components from Ruby to Scala and now also pursuing Clojure (which should make Carin happy :)

O'Reilly OSCON Java 2011, Raffi Krikorian, "Twitter: From Ruby on Rails to the JVM"‬‏ - YouTube
http://youtu.be/ohHdZXnsNi8

"Ruby doesn't provide us the ability to do scatter/gather algorithms"

"Fundamentally, the JVM gives us something that Ruby can't."

"Switching to Java doesn't imply that we think Ruby is a mistake."… "Small companies should continue probably to go with that route"



#2888 From: "WindMark" <windholtz@...>
Date: Fri Jul 29, 2011 11:47 am
Subject: August Summer Break: No Meeting
WindMark
Send Email Send Email
 
Agile Round Table will be taking a summer break in August 2011.
We will NOT have an official meeting on August 2nd.

You may however want to check the mailing list to see if anyone is maybe
interested in an un-official meeting at Habanjaro

#2889 From: "WindMark" <windholtz@...>
Date: Wed Aug 17, 2011 12:02 pm
Subject: Columbus Code Camp
WindMark
Send Email Send Email
 
A code camp will be held Saturday, October 22nd @ TechColumbus.

What's a code camp? It's a community event (following the Code Camp Manifesto --
see http://www.thedevcommunity.org/CodeCamps/Manifesto.aspx) where developers
learn from their peers. Everyone is welcome to attend and speak.

The Code Camp follows these principles:
by and for the developer community
always free
community-developed material
no fluff – only code
never occur during working hours
Sessions will range from lightning talks to chalk talks to more formal
presentations. There will be a mix of presenters-- some will be experienced
public speakers, some may be making their first-ever public presentation. We
expect to see people from throughout the region and beyond.

For more information, please visit http://columbuscodecamp.com


Potential Presenters

If you have something you're passionate about as a developer, please share it at
the Columbus Code Camp.
Have a php configuration hack you love?
Figured out a better way to debug linux USB drivers?
Found a way to navigate a Windows registry in lisp?
Got a one-liner shell pipeline that you can type by muscle memory?
Have a python pattern you can't live without?
Figured out a better way to count story points with a .NET widget?
Sign up to share it!  Visit http://bit.ly/cmhcc-presentation and tell us what
you'd like to talk about.

For more information, for sponsorship opportunities, or if you just want to help
out, please contact the Columbus Code Camp organizers at cmhcodecamp@....



---
Jeff Frontz, co-organizer
Columbus Code Camp
cmhcodecamp@...
+1 434 262 0213

#2890 From: "WindMark" <windholtz@...>
Date: Wed Aug 17, 2011 1:24 pm
Subject: Meeting Tuesday Sept 6th: The Semantic Web and JRuby
WindMark
Send Email Send Email
 
The Semantic Web and JRuby

The Semantic Web is changing the way we communicate and share data on the
internet and holds the key to exciting new innovations. Come and discover what
the Semantic Web is and it's many benefits. We'll learn about some of the
technologies that enable the Semantic Web (RDF/ SPARQL) and take a look at using
the power of JRuby to access Jena, a prominent Java Open Source Semantic Web
Framework, to do some practical examples

Presented by:
Carin Meier
twitter @carinmeier
http://gigasquidsoftware.com/wordpress/

#2891 From: cinci-art@yahoogroups.com
Date: Thu Aug 18, 2011 5:16 pm
Subject: New poll for cinci-art
cinci-art@yahoogroups.com
Send Email Send Email
 
Enter your vote today!  A new poll has been created for the
cinci-art group:

Will you be attending Tuesday 6th September on The Semantic Web and JRuby?

   o Yes, please order me Pizza I'll bring $5
   o Yes, but NO pizza for me
   o No
   o Maybe


To vote, please visit the following web page:
http://groups.yahoo.com/group/cinci-art/surveys?id=2382851

Note: Please do not reply to this message. Poll votes are
not collected via email. To vote, you must go to the Yahoo! Groups
web site listed above.

Thanks!

#2892 From: gerard sychay <hellogerard@...>
Date: Fri Aug 19, 2011 5:02 pm
Subject: Blake Mizerany / Cincy Hackathon
gerrys0
Send Email Send Email
 
All,

There is an exciting event occurring on Sept. 9th. Blake Mizerany,
creator of the Sinatra web framework, and one of the 1st employees of
Heroku, is coming to Cincinnati. On Friday, Sept. 9, he will be
talking about Heroku, Rails, and other technical topics. That will
kick off a 24-hour-long hackathon with cash prizes at the end. Details
on the website:

<http://cincyhackathon.com>

There is a rumor that he will be giving a talk on startups and
entrepreneurship on Thursday, Sept. 8th, at the Brandery downtown, but
that is not yet confirmed.

Hope to see you there.

--
Gerard Sychay | hellogerard@... | 859-802-5513

#2893 From: Joe Herbers <joe.herbers@...>
Date: Sun Aug 21, 2011 8:16 pm
Subject: CincyFP: Functional Programming in Ruby Aug.23
joeherbers
Send Email Send Email
 
This Tuesday, Aug.23, at the Cincinnati Functional Programmer's Group, Rob Biedenharn will talk to us about Functional Programming in Ruby.

In a purely functional language, you are forced to write functional code.  However, you can write functional style code in object oriented languages as well.  This talk will cover how to write Ruby in a functional style.  It will also touch on Fibers, the new concurrency feature in Ruby.

For background on Rob, see Gaslight Software: Our Team

The meeting starts at 6:30 – No food is provided, but feel free to bring you own.
Meetup - CincyFP: Functional Programming in Ruby

http://cincyfp.wordpress.com/
Twitter: @cincyfp


#2894 From: Chris Moore <cdmwebs@...>
Date: Tue Aug 30, 2011 1:20 am
Subject: Artificial Intelligence
cdmwebs
Send Email Send Email
 
I know Mark expressed interest in this topic. 


Note the monitor stand on the right.

#2895 From: "Lari Kirby" <larikirby@...>
Date: Tue Aug 30, 2011 1:57 pm
Subject: Re: Artificial Intelligence
laripk
Send Email Send Email
 
If you're *really* interested in AI: http://www.ai-class.com/

Lari Kirby


----- Original message -----
From: "Chris Moore" <cdmwebs@...>
To: cinci-art@yahoogroups.com
Date: Mon, 29 Aug 2011 21:20:50 -0400
Subject: [cinci-art] Artificial Intelligence

I know Mark expressed interest in this topic.

http://www.youtube.com/watch?v=WnzlbyTZsQY

Note the monitor stand on the right.

#2896 From: Michael Davis <2524051@...>
Date: Tue Aug 30, 2011 1:59 pm
Subject: Re: Artificial Intelligence
m_c_davis64
Send Email Send Email
 
And I just saw last week that they put two more online, and plan to place the entire curriculum.

On Tue, Aug 30, 2011 at 9:57 AM, Lari Kirby <larikirby@...> wrote:
 

If you're *really* interested in AI: http://www.ai-class.com/

Lari Kirby

----- Original message -----
From: "Chris Moore" <cdmwebs@...>
To: cinci-art@yahoogroups.com
Date: Mon, 29 Aug 2011 21:20:50 -0400
Subject: [cinci-art] Artificial Intelligence

I know Mark expressed interest in this topic.

http://www.youtube.com/watch?v=WnzlbyTZsQY

Note the monitor stand on the right.



#2897 From: Michael Davis <2524051@...>
Date: Tue Aug 30, 2011 2:07 pm
Subject: Re: Artificial Intelligence
m_c_davis64
Send Email Send Email
 
http://www.kurzweilai.net/more-free-online-stanford-computer-science-courses?utm_source=KurzweilAI+Weekly+Newsletter&utm_campaign=011471035b-UA-946742-1&utm_medium=email

On Tue, Aug 30, 2011 at 9:59 AM, Michael Davis <2524051@...> wrote:
And I just saw last week that they put two more online, and plan to place the entire curriculum.


On Tue, Aug 30, 2011 at 9:57 AM, Lari Kirby <larikirby@...> wrote:
 

If you're *really* interested in AI: http://www.ai-class.com/

Lari Kirby

----- Original message -----
From: "Chris Moore" <cdmwebs@...>
To: cinci-art@yahoogroups.com
Date: Mon, 29 Aug 2011 21:20:50 -0400
Subject: [cinci-art] Artificial Intelligence

I know Mark expressed interest in this topic.

http://www.youtube.com/watch?v=WnzlbyTZsQY

Note the monitor stand on the right.




Messages 2868 - 2897 of 2958   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help