From elicriffield at gmail.com Mon Feb 9 16:29:18 2015 From: elicriffield at gmail.com (Eli Criffield) Date: Mon, 9 Feb 2015 09:29:18 -0600 Subject: [omaha] Python job Message-ID: Someone sent me this job, I'm not interested but someone on here might be. I don't know anymore then whats on this webpage. https://www.linkedin.com/pulse/do-you-have-passion-coding-christopher-s-smith?trk=prof-post Later Eli From mike at hostetlerhome.com Mon Feb 9 20:56:11 2015 From: mike at hostetlerhome.com (Mike Hostetler) Date: Mon, 09 Feb 2015 13:56:11 -0600 Subject: [omaha] Python job In-Reply-To: References: Message-ID: <1423511771.4015260.225267237.4C938B07@webmail.messagingengine.com> This guy has been contacting me, too. I'm happy with where I am now though. I interviewed with Lindsey a view years ago through a contracting firm. They didn't have a spot in Omaha and they wanted me to drive over an hour each way (or move -- blech). Maybe they have changed their tune. Anyway I probably know quite a bit about the spot. If someone is interested, drop me a private line and I can tell you things on an unofficial capacity. -- Mike Hostetler mike at hostetlerhome.com On Mon, Feb 9, 2015, at 09:29 AM, Eli Criffield wrote: > Someone sent me this job, I'm not interested but someone on here might > be. > > I don't know anymore then whats on this webpage. > > https://www.linkedin.com/pulse/do-you-have-passion-coding-christopher-s-smith?trk=prof-post > > Later > > Eli > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From jaybocc2 at gmail.com Mon Feb 9 23:38:48 2015 From: jaybocc2 at gmail.com (Jay Bendon) Date: Mon, 9 Feb 2015 14:38:48 -0800 Subject: [omaha] Python job In-Reply-To: <1423511771.4015260.225267237.4C938B07@webmail.messagingengine.com> References: <1423511771.4015260.225267237.4C938B07@webmail.messagingengine.com> Message-ID: The guy is persistent. I'm in california and he has contacted me twice in the past week. If you want to share the details of your experience with the rest of the group it may benefit someone who is looking or interested in such an opportunity. It seems this opportunity is in omaha specifically, at least thats what i was led to believe when he reached out to me. --Jay On Mon, Feb 9, 2015 at 11:56 AM, Mike Hostetler wrote: > This guy has been contacting me, too. I'm happy with where I am now > though. > > I interviewed with Lindsey a view years ago through a contracting firm. > They didn't have a spot in Omaha and they wanted me to drive over an > hour each way (or move -- blech). Maybe they have changed their tune. > > Anyway I probably know quite a bit about the spot. If someone is > interested, drop me a private line and I can tell you things on an > unofficial capacity. > > -- > Mike Hostetler > mike at hostetlerhome.com > > On Mon, Feb 9, 2015, at 09:29 AM, Eli Criffield wrote: > > Someone sent me this job, I'm not interested but someone on here might > > be. > > > > I don't know anymore then whats on this webpage. > > > > > https://www.linkedin.com/pulse/do-you-have-passion-coding-christopher-s-smith?trk=prof-post > > > > Later > > > > Eli > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From bob.haffner at gmail.com Tue Feb 17 21:38:56 2015 From: bob.haffner at gmail.com (Bob Haffner) Date: Tue, 17 Feb 2015 14:38:56 -0600 Subject: [omaha] Spark Data Frames - databricks blog post Message-ID: This post talks about how the new data frames in Spark that were inspired in part by Pandas. Looks like there's interop between pandas frames and spark frames as well. Along with pyspark, I see this playing a significant role in bridging the python and distributed analysis worlds. https://databricks.com/blog/2015/02/17/introducing-dataframes-in-spark-for-large-scale-data-science.html From wes.turner at gmail.com Tue Feb 17 21:57:54 2015 From: wes.turner at gmail.com (Wes Turner) Date: Tue, 17 Feb 2015 14:57:54 -0600 Subject: [omaha] Spark Data Frames - databricks blog post In-Reply-To: References: Message-ID: Great article, thanks! "Out of the box, DataFrame supports reading data from the most popular formats, including JSON files, Parquet files, Hive tables. It can read from local file systems, distributed file systems (HDFS), cloud storage (S3), and external relational database systems via JDBC. In addition, through Spark SQL?s external data sources API, DataFrames can be extended to support any third-party data formats or sources. Existing third-party extensions already include Avro, CSV, ElasticSearch, and Cassandra" " * APIs for Python, Java, Scala, and R (in development via SparkR)" ... Spark recently won the Daytona Gray Sort Benchmark 2014 title from Hadoop MapReduce: https://spark.apache.org/news/spark-wins-daytona-gray-sort-100tb-benchmark.html Blaze "translates a subset of modified NumPy and Pandas-like syntax to databases and other computing systems. Blaze allows Python users a familiar interface to query data living in other data storage systems." http://blaze.pydata.org/docs/dev/backends.html#id5 (Blaze interfaces with Spark w/ PySpark) * http://pandas-docs.github.io/pandas-docs-travis/ecosystem.html#xray works with N-dimensional labeled data and netCDF (in lieu of (Sparse) Panel and Panel4D) * http://pandas.pydata.org/pandas-docs/dev/api.html On Feb 17, 2015 2:39 PM, "Bob Haffner" wrote: > This post talks about how the new data frames in Spark that were inspired > in part by Pandas. Looks like there's interop between pandas frames and > spark frames as well. > > Along with pyspark, I see this playing a significant role in bridging the > python and distributed analysis worlds. > > > https://databricks.com/blog/2015/02/17/introducing-dataframes-in-spark-for-large-scale-data-science.html > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From bob.haffner at gmail.com Wed Feb 18 00:01:15 2015 From: bob.haffner at gmail.com (Bob Haffner) Date: Tue, 17 Feb 2015 17:01:15 -0600 Subject: [omaha] Spark Data Frames - databricks blog post In-Reply-To: References: Message-ID: I've been meaning to check out Blaze. Thanks for the link! And that Xray looks interesting. Can't say I have a need for it right now, but its definitely one to watch. On Tue, Feb 17, 2015 at 2:57 PM, Wes Turner wrote: > Great article, thanks! > > "Out of the box, DataFrame supports reading data from the most popular > formats, including JSON files, Parquet files, Hive tables. It can read from > local file systems, distributed file systems (HDFS), cloud storage (S3), > and external relational database systems via JDBC. In addition, through > Spark SQL?s external data sources API, DataFrames can be extended to > support any third-party data formats or sources. Existing third-party > extensions already include Avro, CSV, ElasticSearch, and Cassandra" > > " * APIs for Python, Java, Scala, and R (in development via SparkR)" > > ... > > Spark recently won the Daytona Gray Sort Benchmark 2014 title from Hadoop > MapReduce: > > https://spark.apache.org/news/spark-wins-daytona-gray-sort-100tb-benchmark.html > > Blaze "translates a subset of modified NumPy and Pandas-like syntax to > databases and other computing systems. Blaze allows Python users a familiar > interface to query data living in other data storage systems." > http://blaze.pydata.org/docs/dev/backends.html#id5 (Blaze interfaces with > Spark w/ PySpark) > > * http://pandas-docs.github.io/pandas-docs-travis/ecosystem.html#xray > works > with N-dimensional labeled data and netCDF (in lieu of (Sparse) Panel and > Panel4D) > * http://pandas.pydata.org/pandas-docs/dev/api.html > On Feb 17, 2015 2:39 PM, "Bob Haffner" wrote: > > > This post talks about how the new data frames in Spark that were inspired > > in part by Pandas. Looks like there's interop between pandas frames and > > spark frames as well. > > > > Along with pyspark, I see this playing a significant role in bridging the > > python and distributed analysis worlds. > > > > > > > https://databricks.com/blog/2015/02/17/introducing-dataframes-in-spark-for-large-scale-data-science.html > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From bob.haffner at gmail.com Wed Feb 18 18:07:31 2015 From: bob.haffner at gmail.com (Bob Haffner) Date: Wed, 18 Feb 2015 11:07:31 -0600 Subject: [omaha] Is there a meeting tonight? Message-ID: From wereapwhatwesow at gmail.com Wed Feb 18 19:34:05 2015 From: wereapwhatwesow at gmail.com (Steve Young) Date: Wed, 18 Feb 2015 12:34:05 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: I can make it. Anyone else? My office downtown is available if you want to meet there. Steve From keckbug at gmail.com Wed Feb 18 20:18:11 2015 From: keckbug at gmail.com (Aaron Keck) Date: Wed, 18 Feb 2015 13:18:11 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: Unfortunately I'm out... slightly delayed valentine's dinner tonight... On Wed, Feb 18, 2015 at 12:34 PM, Steve Young wrote: > I can make it. Anyone else? > > My office downtown is available if you want to meet there. > > Steve > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jeffh at delasco.com Wed Feb 18 20:48:53 2015 From: jeffh at delasco.com (Jeff Hinrichs) Date: Wed, 18 Feb 2015 13:48:53 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: I can be there. Hopefully it is more than just Steve and I. ;) -Jeff On Wed, Feb 18, 2015 at 1:18 PM, Aaron Keck wrote: > Unfortunately I'm out... slightly delayed valentine's dinner tonight... > > On Wed, Feb 18, 2015 at 12:34 PM, Steve Young > wrote: > > > I can make it. Anyone else? > > > > My office downtown is available if you want to meet there. > > > > Steve > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From bob.haffner at gmail.com Wed Feb 18 21:25:05 2015 From: bob.haffner at gmail.com (Bob Haffner) Date: Wed, 18 Feb 2015 14:25:05 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: I can make it. I'll be late if you guys start earlier than 7 though. On Wed, Feb 18, 2015 at 1:48 PM, Jeff Hinrichs wrote: > I can be there. Hopefully it is more than just Steve and I. ;) > > -Jeff > > On Wed, Feb 18, 2015 at 1:18 PM, Aaron Keck wrote: > > > Unfortunately I'm out... slightly delayed valentine's dinner tonight... > > > > On Wed, Feb 18, 2015 at 12:34 PM, Steve Young > > > wrote: > > > > > I can make it. Anyone else? > > > > > > My office downtown is available if you want to meet there. > > > > > > Steve > > > _______________________________________________ > > > Omaha Python Users Group mailing list > > > Omaha at python.org > > > https://mail.python.org/mailman/listinfo/omaha > > > http://www.OmahaPython.org > > > > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jeffh at dundeemt.com Wed Feb 18 22:18:17 2015 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Wed, 18 Feb 2015 15:18:17 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: 7 works for me if it works for Steve (host). -Jeff On Wed, Feb 18, 2015 at 2:25 PM, Bob Haffner wrote: > I can make it. I'll be late if you guys start earlier than 7 though. > > On Wed, Feb 18, 2015 at 1:48 PM, Jeff Hinrichs wrote: > > > I can be there. Hopefully it is more than just Steve and I. ;) > > > > -Jeff > > > > On Wed, Feb 18, 2015 at 1:18 PM, Aaron Keck wrote: > > > > > Unfortunately I'm out... slightly delayed valentine's dinner tonight... > > > > > > On Wed, Feb 18, 2015 at 12:34 PM, Steve Young < > wereapwhatwesow at gmail.com > > > > > > wrote: > > > > > > > I can make it. Anyone else? > > > > > > > > My office downtown is available if you want to meet there. > > > > > > > > Steve > > > > _______________________________________________ > > > > Omaha Python Users Group mailing list > > > > Omaha at python.org > > > > https://mail.python.org/mailman/listinfo/omaha > > > > http://www.OmahaPython.org > > > > > > > _______________________________________________ > > > Omaha Python Users Group mailing list > > > Omaha at python.org > > > https://mail.python.org/mailman/listinfo/omaha > > > http://www.OmahaPython.org > > > > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > -- Best, Jeff Hinrichs 402.218.1473 From wereapwhatwesow at gmail.com Wed Feb 18 23:43:57 2015 From: wereapwhatwesow at gmail.com (Steve Young) Date: Wed, 18 Feb 2015 16:43:57 -0600 Subject: [omaha] Is there a meeting tonight? In-Reply-To: References: Message-ID: 7 it is. 1516 Cuming Street, Alley Poyner office. On Feb 18, 2015 3:18 PM, "Jeff Hinrichs - DM&T" wrote: > 7 works for me if it works for Steve (host). > > -Jeff > > On Wed, Feb 18, 2015 at 2:25 PM, Bob Haffner > wrote: > > > I can make it. I'll be late if you guys start earlier than 7 though. > > > > On Wed, Feb 18, 2015 at 1:48 PM, Jeff Hinrichs > wrote: > > > > > I can be there. Hopefully it is more than just Steve and I. ;) > > > > > > -Jeff > > > > > > On Wed, Feb 18, 2015 at 1:18 PM, Aaron Keck wrote: > > > > > > > Unfortunately I'm out... slightly delayed valentine's dinner > tonight... > > > > > > > > On Wed, Feb 18, 2015 at 12:34 PM, Steve Young < > > wereapwhatwesow at gmail.com > > > > > > > > wrote: > > > > > > > > > I can make it. Anyone else? > > > > > > > > > > My office downtown is available if you want to meet there. > > > > > > > > > > Steve > > > > > _______________________________________________ > > > > > Omaha Python Users Group mailing list > > > > > Omaha at python.org > > > > > https://mail.python.org/mailman/listinfo/omaha > > > > > http://www.OmahaPython.org > > > > > > > > > _______________________________________________ > > > > Omaha Python Users Group mailing list > > > > Omaha at python.org > > > > https://mail.python.org/mailman/listinfo/omaha > > > > http://www.OmahaPython.org > > > > > > > _______________________________________________ > > > Omaha Python Users Group mailing list > > > Omaha at python.org > > > https://mail.python.org/mailman/listinfo/omaha > > > http://www.OmahaPython.org > > > > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > https://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > > > > -- > Best, > > Jeff Hinrichs > 402.218.1473 > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From jay at jays.net Thu Feb 26 22:07:33 2015 From: jay at jays.net (Jay Hannah) Date: Thu, 26 Feb 2015 15:07:33 -0600 Subject: [omaha] Top Python GitHub developers in Omaha Message-ID: lolwut? http://github-awards.com/users?city=omaha&language=python&type=city haha, j From mike at hostetlerhome.com Thu Feb 26 23:19:24 2015 From: mike at hostetlerhome.com (Mike Hostetler) Date: Thu, 26 Feb 2015 16:19:24 -0600 Subject: [omaha] Top Python GitHub developers in Omaha In-Reply-To: References: Message-ID: <1424989164.2795114.232993213.2E425CB1@webmail.messagingengine.com> Want a medal? -- Mike Hostetler mike at hostetlerhome.com On Thu, Feb 26, 2015, at 03:07 PM, Jay Hannah wrote: > lolwut? > > http://github-awards.com/users?city=omaha&language=python&type=city > > haha, > > j > > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From bob.haffner at gmail.com Thu Feb 26 23:29:20 2015 From: bob.haffner at gmail.com (Bob Haffner) Date: Thu, 26 Feb 2015 16:29:20 -0600 Subject: [omaha] Top Python GitHub developers in Omaha In-Reply-To: References: Message-ID: jay, you need to spend more time on that dirt bike! Sent from my iPhone > On Feb 26, 2015, at 3:07 PM, Jay Hannah wrote: > > lolwut? > > http://github-awards.com/users?city=omaha&language=python&type=city > > haha, > > j > > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > https://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From jay at jays.net Fri Feb 27 13:32:36 2015 From: jay at jays.net (Jay Hannah) Date: Fri, 27 Feb 2015 06:32:36 -0600 Subject: [omaha] Top Python GitHub developers in Omaha In-Reply-To: References: Message-ID: <71352705-79BC-4A0B-8E9B-0F13856E0EF0@jays.net> On Feb 26, 2015, at 4:29 PM, Bob Haffner wrote: > jay, you need to spend more time on that dirt bike! Agreed! But it's too cold, I'm a wuss, and I'm too lazy to get the right equipment for winter riding. :) j