From wereapwhatwesow at gmail.com Fri Aug 2 21:42:50 2013 From: wereapwhatwesow at gmail.com (Steve Young) Date: Fri, 2 Aug 2013 14:42:50 -0500 Subject: [omaha] Zend.to in Python In-Reply-To: References: Message-ID: Thanks for the info. I have set up a trial of http://www.liquidfiles.net/ on an Amazon EC2 server (can also install locally). it was easy to install and configure. Not python but it has an api so we can use python to enhance if necessary. Pricing seems reasonable. Steve On Tue, Jul 30, 2013 at 11:42 AM, Wes Turner wrote: > I believe both Dropbox and Google Drive support integration with single > sign on providers. When/if changes are made, is it necessary to re-send the > whole file again? What sort of file versioning is there? > > Rsync over SSH is fast. > > OAuth works. > > * http://pythonhosted.org/xsendfile/ > * http://django-social-auth.readthedocs.org/ > * https://github.com/oauth-io/oauthd > * http://pythonhosted.org/fs/filesystems.html#s3 > * http://en.wikipedia.org/wiki/OpenStack#Amazon_Web_Services_compatibility > * http://hadoop.apache.org/docs/r1.0.4/webhdfs.html > * http://git-annex.branchable.com > * > > https://git.wiki.kernel.org/index.php/Interfaces,_frontends,_and_tools#Web_Interfaces > On Jul 30, 2013 8:40 AM, "Steve Young" wrote: > > > I am looking for a way to send and receive large files for our office. > > Something like Zend.to. Anyone have any ideas? > > http://zend.to/downloads.php > > > > I would like to have unlimited file size, Active Directory integration > > would be nice, notifications when items are picked up or dropped off... > > Smartfile is a pay option that has nice features. > > https://www.smartfile.com/pricing/ > > > > Thanks. > > > > Steve > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From cfarrow at enthought.com Fri Aug 9 05:56:31 2013 From: cfarrow at enthought.com (Chris Farrow) Date: Thu, 8 Aug 2013 22:56:31 -0500 Subject: [omaha] Looking for Coach In-Reply-To: References: Message-ID: Hi all, Sorry for being out of touch. Is there still interest in doing this? It looks like I can get free between the 14th and 19th. Cheers, Chris On Sun, Jun 16, 2013 at 8:22 PM, Chris Farrow wrote: > Hi Jay, > > I'd be happy to open this up to more people. I should be free in the range > of August 14-21; I can work with you on the night. I can talk about Canopy > and Enthought tools, answer questions, work on specific problems. I'm open > to ideas. > > Regards, > > Chris > -- The information contained in this message is Enthought confidential & not to be disseminated to outside parties without explicit prior approval from sender. This message is intended solely for the addressee(s), If you are not the intended recipient, please contact the sender by return e-mail and destroy all copies of the original message. From schumann at leadingedgeanalytics.com Fri Aug 9 16:26:38 2013 From: schumann at leadingedgeanalytics.com (LEA) Date: Fri, 9 Aug 2013 09:26:38 -0500 Subject: [omaha] Yes I am interested in getting coaching on Canopy In-Reply-To: References: Message-ID: <3338A208-5A6F-4A3E-9A78-4C231E7DDA65@leadingedgeanalytics.com> Evenings 14th to 19th is open for me Sent from my iPhone On Aug 9, 2013, at 5:00 AM, omaha-request at python.org wrote: > Send Omaha mailing list submissions to > omaha at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/omaha > or, via email, send a message with subject or body 'help' to > omaha-request at python.org > > You can reach the person managing the list at > omaha-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Omaha digest..." > > > Today's Topics: > > 1. Re: Looking for Coach (Chris Farrow) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 8 Aug 2013 22:56:31 -0500 > From: Chris Farrow > To: omaha at python.org > Subject: Re: [omaha] Looking for Coach > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > Hi all, > > Sorry for being out of touch. Is there still interest in doing this? It > looks like I can get free between the 14th and 19th. > > Cheers, > > Chris > > > On Sun, Jun 16, 2013 at 8:22 PM, Chris Farrow wrote: > >> Hi Jay, >> >> I'd be happy to open this up to more people. I should be free in the range >> of August 14-21; I can work with you on the night. I can talk about Canopy >> and Enthought tools, answer questions, work on specific problems. I'm open >> to ideas. >> >> Regards, >> >> Chris > > > > -- > The information contained in this message is Enthought confidential & not > to be disseminated to outside parties without explicit prior approval from > sender. This message is intended solely for the addressee(s), If you are > not the intended recipient, please contact the sender by return e-mail and > destroy all copies of the original message. > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Omaha mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > > > ------------------------------ > > End of Omaha Digest, Vol 78, Issue 2 > ************************************ From jhsu802701 at jasonhsu.com Tue Aug 13 19:53:26 2013 From: jhsu802701 at jasonhsu.com (Jason Hsu) Date: Tue, 13 Aug 2013 12:53:26 -0500 Subject: [omaha] Database for two-dimensional array Message-ID: <20130813125326.ea7164eb117e6565f4c3e91f@jasonhsu.com> My Doppler Value Investing site (http://www.dopplervalueinvesting.com) uses Ruby on Rails and a Postgres database. (Yes, I know this is a Python group, but Python scripts can use Postgres databases.) There are two important parts: the superficial analysis and an in-depth analysis. An example of the superficial analysis is at: http://www.dopplervalueinvesting.com/stocks/FAST An example of the in-depth analysis is at: http://old.doppler.webfactional.com/sites/default/files/stock-results/FAST.html Note that the results of the superficial analysis are 1-dimensional - just parameters. This easily fits into one row in one table of a database. Note that the results of the in-depth analysis are 2-dimensional - parameters AND year. How would this fit into a Postgres database? What are your suggestions? Is it possible to have a table within a table? -- Jason Hsu From mike at squarepegsystems.com Tue Aug 13 20:58:48 2013 From: mike at squarepegsystems.com (Mike Hostetler) Date: Tue, 13 Aug 2013 13:58:48 -0500 Subject: [omaha] Database for two-dimensional array In-Reply-To: <20130813125326.ea7164eb117e6565f4c3e91f@jasonhsu.com> References: <20130813125326.ea7164eb117e6565f4c3e91f@jasonhsu.com> Message-ID: If you want to stay with PostgreSQL (and, like, you should -- it's a great database) then look at Postgres' Array types: http://www.postgresql.org/docs/9.1/static/arrays.html There is an ActiveRecord adaptor for it: https://github.com/tlconnor/activerecord-postgres-array Another interesting type, though not useful for this, is hstore (i.e. JavaScript objects): http://www.postgresql.org/docs/9.1/static/hstore.html On Tue, Aug 13, 2013 at 12:53 PM, Jason Hsu wrote: > My Doppler Value Investing site (http://www.dopplervalueinvesting.com) > uses Ruby on Rails and a Postgres database. (Yes, I know this is a Python > group, but Python scripts can use Postgres databases.) > > There are two important parts: the superficial analysis and an in-depth > analysis. > > An example of the superficial analysis is at: > http://www.dopplervalueinvesting.com/stocks/FAST > > An example of the in-depth analysis is at: > > http://old.doppler.webfactional.com/sites/default/files/stock-results/FAST.html > > Note that the results of the superficial analysis are 1-dimensional - just > parameters. This easily fits into one row in one table of a database. > > Note that the results of the in-depth analysis are 2-dimensional - > parameters AND year. How would this fit into a Postgres database? What > are your suggestions? Is it possible to have a table within a table? > > -- > Jason Hsu > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > -- Mike Hostetler SquarePeg Systems http://www.squarepegsystems.com From jrguliz at yahoo.com Wed Aug 14 05:02:58 2013 From: jrguliz at yahoo.com (Joe Gulizia) Date: Tue, 13 Aug 2013 20:02:58 -0700 (PDT) Subject: [omaha] August Meeting Date Message-ID: <1376449378.6460.YahooMailNeo@web165004.mail.bf1.yahoo.com> August Meeting Date Can the August meeting date be changed from the 21st to the 28th?? Nebraska CERT which normally alternates Breakfasts and Lunch every month has decided to try a night time event.? I know that Jeff and I both have attended those.? I would like to attend both events, but would leave it up to a group vote...and then go from there. Thanks for your consideration. Joe Gulizia From jrguliz at yahoo.com Wed Aug 14 23:57:03 2013 From: jrguliz at yahoo.com (Joe Gulizia) Date: Wed, 14 Aug 2013 14:57:03 -0700 (PDT) Subject: [omaha] August Meeting Date Change Request In-Reply-To: <1374100907.73163.YahooMailNeo@web165001.mail.bf1.yahoo.com> References: <1374100907.73163.YahooMailNeo@web165001.mail.bf1.yahoo.com> Message-ID: <1376517423.32234.YahooMailNeo@web165006.mail.bf1.yahoo.com> NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our normal night)...I know Jeff has gone to their Breakfast or Lunch meetings as have I.? Details are below.... Thoughts on doing our August meeting on the 28th? Joe Gulizia Hi Everyone, For August we are doing a NIGHTTIME CSF. ?If this goes over well we might start doing one or two of these a year. ?This was one of the most requested items in our 2013 Survey. ?We are very fortunate that TD Ameritrade is going to let us use their facilities for it. Couple of things #1. ? ? TD Ameritrade is a secured facility. ?If you're not on the ? ? ? ? RSVP list we won't be able to get you into the facility. ?So ? ? ? ? we need all people to RSVP for this event. ?I need to have ? ? ? ? the list in Tuesday morning. #2. ? ? This is in the "Big Green" building both in color and eco-impact. ? ? ? ? We'll need to park in the North parking lot and go through ? ? ? ? the main doors. ?There'll be a security guard who'll take ? ? ? ? down your name get you a visitor badge and escort you to ? ? ? ? the room. #3. ? ? We're going to be ordering Pizza. ?A LOT of Pizza. ?If anybody ? ? ? ? has any particular type they like (Pepperoni, Meat, Chicken, ? ? ? ? Veggie, etc) please let me know. ?We'll also be ordering Soda ? ? ? ? so please let us know if you have a preference there as well. ? ? ? ? Otherwise it will be a mix of cola, diet cola, green stuff, and ? ? ? ? "other". #4. ? ? If there is a very good pizza place by the office that does deliveries ? ? ? ? plese let me know and we'll see if we can get pizza from there. ? ? ? ? Otherwise it will be one of the franchises. Hope to see you there, Aaron 0-0-0 "The Journey is the Reward" - Old Zen Buddhist Saying Omaha's Cyber Security Forum welcomes you! ?August's meeting is at 7:00 p.m. on Wednesday the 21st and regular meetings will continue to be held on the third Wednesday of each month. ?Details are as follows: Note #1: ?If you need a CPE form please let us know when you ? ? ? ? ? RSVP. Note #2: ?We need all people who would like to attend to RSVP because ? ? ? ? ? this meeting is taking place at a secure facility. ? TOPIC: ?Taking Control of Permissions on your Android Phone ? BY: ? ? Aaron Grothe ? ? ? ? ? NEbraskaCERT ? WHO: ? ?All Nebraska/Iowa Information Security Professionals ? WHEN: ? Wednesday - August 21, 7:00 pm - 8:30 am ? WHERE: ?TD Ameritrade Headquarters ? ? ? ? ? 200 S. 108th Ave. Omaha, NE (Big Green Building) ? WHY: ? ?To share information with like-minded professionals ? ? ? ? ? and to get some pizza :-) ? HOW: ? ?Please RSVP to csfrsvp at nebraskacert.org and provide ? ? ? ? ? your name, company, phone and email address ? ? ? ? ? by Close Of Business Monday, 19 August. ? DESCRIPTION: ?With recent apps like Jayz's Magna Carte and other ? ? ? ? ? ? ? ? apps such as the Obama and Romney campaign apps along ? ? ? ? ? ? ? ? with even regular programs such as Mozilla's Firefox ? ? ? ? ? ? ? ? constantly asking for more and more permissions on ? ? ? ? ? ? ? ? people's phones. ? ? ? ? ? ? ? ? It has started to become a war of escalation or ? ? ? ? ? ? ? ? attrition on privileges. ?This talk will cover ? ? ? ? ? ? ? ? several steps to take with android phones: being more ? ? ? ? ? ? ? ? aware of the permissions being asked for, taking ? ? ? ? ? ? ? ? control by denying permissions, and also giving apps ? ? ? ? ? ? ? ? false or random information to send back to their ? ? ? ? ? ? ? ? masters. If those of you who have access to lists of interested individuals would pass this message along, it would be appreciated! We look forward to seeing you at the meeting. From jeffh at dundeemt.com Thu Aug 15 20:22:48 2013 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Thu, 15 Aug 2013 13:22:48 -0500 Subject: [omaha] August Meeting Date Change Request In-Reply-To: <1376517423.32234.YahooMailNeo@web165006.mail.bf1.yahoo.com> References: <1374100907.73163.YahooMailNeo@web165001.mail.bf1.yahoo.com> <1376517423.32234.YahooMailNeo@web165006.mail.bf1.yahoo.com> Message-ID: Yeas or nays? On Aug 14, 2013 5:00 PM, "Joe Gulizia" wrote: > > > NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our > normal night)...I know Jeff has gone to their Breakfast or Lunch meetings > as have I. Details are below.... > > Thoughts on doing our August meeting on the 28th? > > Joe Gulizia > > > > > Hi Everyone, > > For August we are doing a NIGHTTIME CSF. If this goes over well > we might start doing one or two of these a year. This was one of > the most requested items in our 2013 Survey. We are very fortunate > that TD Ameritrade is going to let us use their facilities for it. > > Couple of things > > #1. TD Ameritrade is a secured facility. If you're not on the > RSVP list we won't be able to get you into the facility. So > we need all people to RSVP for this event. I need to have > the list in Tuesday morning. > > #2. This is in the "Big Green" building both in color and eco-impact. > We'll need to park in the North parking lot and go through > the main doors. There'll be a security guard who'll take > down your name get you a visitor badge and escort you to > the room. > > #3. We're going to be ordering Pizza. A LOT of Pizza. If anybody > has any particular type they like (Pepperoni, Meat, Chicken, > Veggie, etc) please let me know. We'll also be ordering Soda > so please let us know if you have a preference there as well. > Otherwise it will be a mix of cola, diet cola, green stuff, and > "other". > > #4. If there is a very good pizza place by the office that does > deliveries > plese let me know and we'll see if we can get pizza from there. > Otherwise it will be one of the franchises. > > Hope to see you there, > > Aaron > 0-0-0 > "The Journey is the Reward" - Old Zen Buddhist Saying > > Omaha's Cyber Security Forum welcomes you! August's meeting is at > 7:00 p.m. on Wednesday the 21st and regular meetings will continue > to be held on the third Wednesday of each month. Details are as follows: > > Note #1: If you need a CPE form please let us know when you > RSVP. > > Note #2: We need all people who would like to attend to RSVP because > this meeting is taking place at a secure facility. > > TOPIC: Taking Control of Permissions on your Android Phone > BY: Aaron Grothe > NEbraskaCERT > WHO: All Nebraska/Iowa Information Security Professionals > WHEN: Wednesday - August 21, 7:00 pm - 8:30 am > WHERE: TD Ameritrade Headquarters > 200 S. 108th Ave. Omaha, NE (Big Green Building) > WHY: To share information with like-minded professionals > and to get some pizza :-) > HOW: Please RSVP to csfrsvp at nebraskacert.org and provide > your name, company, phone and email address > by Close Of Business Monday, 19 August. > > DESCRIPTION: With recent apps like Jayz's Magna Carte and other > apps such as the Obama and Romney campaign apps along > with even regular programs such as Mozilla's Firefox > constantly asking for more and more permissions on > people's phones. > > It has started to become a war of escalation or > attrition on privileges. This talk will cover > several steps to take with android phones: being more > aware of the permissions being asked for, taking > control by denying permissions, and also giving apps > false or random information to send back to their > masters. > > If those of you who have access to lists of interested individuals > would pass this message along, it would be appreciated! > > We look forward to seeing you at the meeting. > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From wereapwhatwesow at gmail.com Thu Aug 15 20:30:57 2013 From: wereapwhatwesow at gmail.com (Steve Young) Date: Thu, 15 Aug 2013 13:30:57 -0500 Subject: [omaha] August Meeting Date Change Request In-Reply-To: References: <1374100907.73163.YahooMailNeo@web165001.mail.bf1.yahoo.com> <1376517423.32234.YahooMailNeo@web165006.mail.bf1.yahoo.com> Message-ID: The 28th is better for me. On Aug 15, 2013 1:23 PM, "Jeff Hinrichs - DM&T" wrote: > Yeas or nays? > On Aug 14, 2013 5:00 PM, "Joe Gulizia" wrote: > > > > > > > NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our > > normal night)...I know Jeff has gone to their Breakfast or Lunch meetings > > as have I. Details are below.... > > > > Thoughts on doing our August meeting on the 28th? > > > > Joe Gulizia > > > > > > > > > > Hi Everyone, > > > > For August we are doing a NIGHTTIME CSF. If this goes over well > > we might start doing one or two of these a year. This was one of > > the most requested items in our 2013 Survey. We are very fortunate > > that TD Ameritrade is going to let us use their facilities for it. > > > > Couple of things > > > > #1. TD Ameritrade is a secured facility. If you're not on the > > RSVP list we won't be able to get you into the facility. So > > we need all people to RSVP for this event. I need to have > > the list in Tuesday morning. > > > > #2. This is in the "Big Green" building both in color and eco-impact. > > We'll need to park in the North parking lot and go through > > the main doors. There'll be a security guard who'll take > > down your name get you a visitor badge and escort you to > > the room. > > > > #3. We're going to be ordering Pizza. A LOT of Pizza. If anybody > > has any particular type they like (Pepperoni, Meat, Chicken, > > Veggie, etc) please let me know. We'll also be ordering Soda > > so please let us know if you have a preference there as well. > > Otherwise it will be a mix of cola, diet cola, green stuff, and > > "other". > > > > #4. If there is a very good pizza place by the office that does > > deliveries > > plese let me know and we'll see if we can get pizza from there. > > Otherwise it will be one of the franchises. > > > > Hope to see you there, > > > > Aaron > > 0-0-0 > > "The Journey is the Reward" - Old Zen Buddhist Saying > > > > Omaha's Cyber Security Forum welcomes you! August's meeting is at > > 7:00 p.m. on Wednesday the 21st and regular meetings will continue > > to be held on the third Wednesday of each month. Details are as follows: > > > > Note #1: If you need a CPE form please let us know when you > > RSVP. > > > > Note #2: We need all people who would like to attend to RSVP because > > this meeting is taking place at a secure facility. > > > > TOPIC: Taking Control of Permissions on your Android Phone > > BY: Aaron Grothe > > NEbraskaCERT > > WHO: All Nebraska/Iowa Information Security Professionals > > WHEN: Wednesday - August 21, 7:00 pm - 8:30 am > > WHERE: TD Ameritrade Headquarters > > 200 S. 108th Ave. Omaha, NE (Big Green Building) > > WHY: To share information with like-minded professionals > > and to get some pizza :-) > > HOW: Please RSVP to csfrsvp at nebraskacert.org and provide > > your name, company, phone and email address > > by Close Of Business Monday, 19 August. > > > > DESCRIPTION: With recent apps like Jayz's Magna Carte and other > > apps such as the Obama and Romney campaign apps along > > with even regular programs such as Mozilla's Firefox > > constantly asking for more and more permissions on > > people's phones. > > > > It has started to become a war of escalation or > > attrition on privileges. This talk will cover > > several steps to take with android phones: being more > > aware of the permissions being asked for, taking > > control by denying permissions, and also giving apps > > false or random information to send back to their > > masters. > > > > If those of you who have access to lists of interested individuals > > would pass this message along, it would be appreciated! > > > > We look forward to seeing you at the meeting. > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > > > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > From matt.g.payne at gmail.com Thu Aug 15 20:58:57 2013 From: matt.g.payne at gmail.com (Matt Payne) Date: Thu, 15 Aug 2013 11:58:57 -0700 (PDT) Subject: [omaha] August Meeting Date Change Request In-Reply-To: References: Message-ID: <1376593134557.97a53363@Nodemailer> Me too. What are the location details for the next meeting please? Thanks --Matt Payne ? Matt Payne; cell: (402) 208-8787 Sent from Mailbox for iPhone On Thu, Aug 15, 2013 at 1:49 PM, Steve Young wrote: > The 28th is better for me. > On Aug 15, 2013 1:23 PM, "Jeff Hinrichs - DM&T" wrote: >> Yeas or nays? >> On Aug 14, 2013 5:00 PM, "Joe Gulizia" wrote: >> >> > >> > >> > NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our >> > normal night)...I know Jeff has gone to their Breakfast or Lunch meetings >> > as have I. Details are below.... >> > >> > Thoughts on doing our August meeting on the 28th? >> > >> > Joe Gulizia >> > >> > >> > >> > >> > Hi Everyone, >> > >> > For August we are doing a NIGHTTIME CSF. If this goes over well >> > we might start doing one or two of these a year. This was one of >> > the most requested items in our 2013 Survey. We are very fortunate >> > that TD Ameritrade is going to let us use their facilities for it. >> > >> > Couple of things >> > >> > #1. TD Ameritrade is a secured facility. If you're not on the >> > RSVP list we won't be able to get you into the facility. So >> > we need all people to RSVP for this event. I need to have >> > the list in Tuesday morning. >> > >> > #2. This is in the "Big Green" building both in color and eco-impact. >> > We'll need to park in the North parking lot and go through >> > the main doors. There'll be a security guard who'll take >> > down your name get you a visitor badge and escort you to >> > the room. >> > >> > #3. We're going to be ordering Pizza. A LOT of Pizza. If anybody >> > has any particular type they like (Pepperoni, Meat, Chicken, >> > Veggie, etc) please let me know. We'll also be ordering Soda >> > so please let us know if you have a preference there as well. >> > Otherwise it will be a mix of cola, diet cola, green stuff, and >> > "other". >> > >> > #4. If there is a very good pizza place by the office that does >> > deliveries >> > plese let me know and we'll see if we can get pizza from there. >> > Otherwise it will be one of the franchises. >> > >> > Hope to see you there, >> > >> > Aaron >> > 0-0-0 >> > "The Journey is the Reward" - Old Zen Buddhist Saying >> > >> > Omaha's Cyber Security Forum welcomes you! August's meeting is at >> > 7:00 p.m. on Wednesday the 21st and regular meetings will continue >> > to be held on the third Wednesday of each month. Details are as follows: >> > >> > Note #1: If you need a CPE form please let us know when you >> > RSVP. >> > >> > Note #2: We need all people who would like to attend to RSVP because >> > this meeting is taking place at a secure facility. >> > >> > TOPIC: Taking Control of Permissions on your Android Phone >> > BY: Aaron Grothe >> > NEbraskaCERT >> > WHO: All Nebraska/Iowa Information Security Professionals >> > WHEN: Wednesday - August 21, 7:00 pm - 8:30 am >> > WHERE: TD Ameritrade Headquarters >> > 200 S. 108th Ave. Omaha, NE (Big Green Building) >> > WHY: To share information with like-minded professionals >> > and to get some pizza :-) >> > HOW: Please RSVP to csfrsvp at nebraskacert.org and provide >> > your name, company, phone and email address >> > by Close Of Business Monday, 19 August. >> > >> > DESCRIPTION: With recent apps like Jayz's Magna Carte and other >> > apps such as the Obama and Romney campaign apps along >> > with even regular programs such as Mozilla's Firefox >> > constantly asking for more and more permissions on >> > people's phones. >> > >> > It has started to become a war of escalation or >> > attrition on privileges. This talk will cover >> > several steps to take with android phones: being more >> > aware of the permissions being asked for, taking >> > control by denying permissions, and also giving apps >> > false or random information to send back to their >> > masters. >> > >> > If those of you who have access to lists of interested individuals >> > would pass this message along, it would be appreciated! >> > >> > We look forward to seeing you at the meeting. >> > _______________________________________________ >> > Omaha Python Users Group mailing list >> > Omaha at python.org >> > http://mail.python.org/mailman/listinfo/omaha >> > http://www.OmahaPython.org >> > >> _______________________________________________ >> Omaha Python Users Group mailing list >> Omaha at python.org >> http://mail.python.org/mailman/listinfo/omaha >> http://www.OmahaPython.org >> > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org From jeffh at dundeemt.com Tue Aug 20 15:00:42 2013 From: jeffh at dundeemt.com (Jeff Hinrichs - DM&T) Date: Tue, 20 Aug 2013 08:00:42 -0500 Subject: [omaha] August Meeting Date Change Request In-Reply-To: <1376593134557.97a53363@Nodemailer> References: <1376593134557.97a53363@Nodemailer> Message-ID: Ok, this has been out there for 5 days now and the only responses so far have been negative to being able to make the meeting on the 21st. Because of the fact that attendance has been low over the summer and a number of members have indicated that they can't make the meeting on the 21st, I am going to officially cancel this months meeting. We will set the next meeting for Sept. 18th. I will work with my our contact @ Creighton to get the room reserved. Best, Jeff On Thu, Aug 15, 2013 at 1:58 PM, Matt Payne wrote: > Me too. > > > > > > What are the location details for the next meeting please? > > > > > > Thanks --Matt Payne > > ? > Matt Payne; cell: (402) 208-8787 > Sent from Mailbox for iPhone > > On Thu, Aug 15, 2013 at 1:49 PM, Steve Young > wrote: > > > The 28th is better for me. > > On Aug 15, 2013 1:23 PM, "Jeff Hinrichs - DM&T" > wrote: > >> Yeas or nays? > >> On Aug 14, 2013 5:00 PM, "Joe Gulizia" wrote: > >> > >> > > >> > > >> > NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our > >> > normal night)...I know Jeff has gone to their Breakfast or Lunch > meetings > >> > as have I. Details are below.... > >> > > >> > Thoughts on doing our August meeting on the 28th? > >> > > >> > Joe Gulizia > >> > > >> > > >> > > >> > > >> > Hi Everyone, > >> > > >> > For August we are doing a NIGHTTIME CSF. If this goes over well > >> > we might start doing one or two of these a year. This was one of > >> > the most requested items in our 2013 Survey. We are very fortunate > >> > that TD Ameritrade is going to let us use their facilities for it. > >> > > >> > Couple of things > >> > > >> > #1. TD Ameritrade is a secured facility. If you're not on the > >> > RSVP list we won't be able to get you into the facility. So > >> > we need all people to RSVP for this event. I need to have > >> > the list in Tuesday morning. > >> > > >> > #2. This is in the "Big Green" building both in color and > eco-impact. > >> > We'll need to park in the North parking lot and go through > >> > the main doors. There'll be a security guard who'll take > >> > down your name get you a visitor badge and escort you to > >> > the room. > >> > > >> > #3. We're going to be ordering Pizza. A LOT of Pizza. If anybody > >> > has any particular type they like (Pepperoni, Meat, Chicken, > >> > Veggie, etc) please let me know. We'll also be ordering Soda > >> > so please let us know if you have a preference there as well. > >> > Otherwise it will be a mix of cola, diet cola, green stuff, > and > >> > "other". > >> > > >> > #4. If there is a very good pizza place by the office that does > >> > deliveries > >> > plese let me know and we'll see if we can get pizza from > there. > >> > Otherwise it will be one of the franchises. > >> > > >> > Hope to see you there, > >> > > >> > Aaron > >> > 0-0-0 > >> > "The Journey is the Reward" - Old Zen Buddhist Saying > >> > > >> > Omaha's Cyber Security Forum welcomes you! August's meeting is at > >> > 7:00 p.m. on Wednesday the 21st and regular meetings will continue > >> > to be held on the third Wednesday of each month. Details are as > follows: > >> > > >> > Note #1: If you need a CPE form please let us know when you > >> > RSVP. > >> > > >> > Note #2: We need all people who would like to attend to RSVP because > >> > this meeting is taking place at a secure facility. > >> > > >> > TOPIC: Taking Control of Permissions on your Android Phone > >> > BY: Aaron Grothe > >> > NEbraskaCERT > >> > WHO: All Nebraska/Iowa Information Security Professionals > >> > WHEN: Wednesday - August 21, 7:00 pm - 8:30 am > >> > WHERE: TD Ameritrade Headquarters > >> > 200 S. 108th Ave. Omaha, NE (Big Green Building) > >> > WHY: To share information with like-minded professionals > >> > and to get some pizza :-) > >> > HOW: Please RSVP to csfrsvp at nebraskacert.org and provide > >> > your name, company, phone and email address > >> > by Close Of Business Monday, 19 August. > >> > > >> > DESCRIPTION: With recent apps like Jayz's Magna Carte and other > >> > apps such as the Obama and Romney campaign apps along > >> > with even regular programs such as Mozilla's Firefox > >> > constantly asking for more and more permissions on > >> > people's phones. > >> > > >> > It has started to become a war of escalation or > >> > attrition on privileges. This talk will cover > >> > several steps to take with android phones: being more > >> > aware of the permissions being asked for, taking > >> > control by denying permissions, and also giving apps > >> > false or random information to send back to their > >> > masters. > >> > > >> > If those of you who have access to lists of interested individuals > >> > would pass this message along, it would be appreciated! > >> > > >> > We look forward to seeing you at the meeting. > >> > _______________________________________________ > >> > Omaha Python Users Group mailing list > >> > Omaha at python.org > >> > http://mail.python.org/mailman/listinfo/omaha > >> > http://www.OmahaPython.org > >> > > >> _______________________________________________ > >> Omaha Python Users Group mailing list > >> Omaha at python.org > >> http://mail.python.org/mailman/listinfo/omaha > >> http://www.OmahaPython.org > >> > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://mail.python.org/mailman/listinfo/omaha > http://www.OmahaPython.org > -- Best, Jeff Hinrichs 402.218.1473 From jrguliz at yahoo.com Tue Aug 20 19:33:50 2013 From: jrguliz at yahoo.com (Joe Gulizia) Date: Tue, 20 Aug 2013 10:33:50 -0700 (PDT) Subject: [omaha] August Meeting Date Change Request In-Reply-To: References: <1376593134557.97a53363@Nodemailer> Message-ID: <1377020030.93624.YahooMailNeo@web165004.mail.bf1.yahoo.com> >From what I saw (Steve's and Matt Payne's responses) Steve said the 28th was better...Matt said "Me too" then asked where the meeting would be? Either the 28th this month or cancelling is fine with me. Joe ________________________________ From: Jeff Hinrichs - DM&T To: Omaha Python Users Group Sent: Tuesday, August 20, 2013 8:00 AM Subject: Re: [omaha] August Meeting Date Change Request Ok, this has been out there for 5 days now and the only responses so far have been negative to being able to make the meeting on the 21st.? Because of the fact that attendance has been low over the summer and a number of members have indicated that they can't make the meeting on the 21st, I am going to officially cancel this months meeting. We will set the next meeting for Sept.? 18th.? ? I will work with my our contact @ Creighton to get the room reserved. Best, Jeff On Thu, Aug 15, 2013 at 1:58 PM, Matt Payne wrote: > Me too. > > > > > >? ? What are the location details for the next meeting please? > > > > > >? ? Thanks --Matt Payne > >? ? ? > Matt Payne; cell: (402) 208-8787 > Sent from Mailbox for iPhone > > On Thu, Aug 15, 2013 at 1:49 PM, Steve Young > wrote: > > > The 28th is better for me. > > On Aug 15, 2013 1:23 PM, "Jeff Hinrichs - DM&T" > wrote: > >> Yeas or nays? > >> On Aug 14, 2013 5:00 PM, "Joe Gulizia" wrote: > >> > >> > > >> > > >> > NEbraska-CERT is doing a nighttime event on Wednesday August 21st (our > >> > normal night)...I know Jeff has gone to their Breakfast or Lunch > meetings > >> > as have I.? Details are below.... > >> > > >> > Thoughts on doing our August meeting on the 28th? > >> > > >> > Joe Gulizia > >> > > >> > > >> > > >> > > >> > Hi Everyone, > >> > > >> > For August we are doing a NIGHTTIME CSF.? If this goes over well > >> > we might start doing one or two of these a year.? This was one of > >> > the most requested items in our 2013 Survey.? We are very fortunate > >> > that TD Ameritrade is going to let us use their facilities for it. > >> > > >> > Couple of things > >> > > >> > #1.? ? TD Ameritrade is a secured facility.? If you're not on the > >> >? ? ? ? RSVP list we won't be able to get you into the facility.? So > >> >? ? ? ? we need all people to RSVP for this event.? I need to have > >> >? ? ? ? the list in Tuesday morning. > >> > > >> > #2.? ? This is in the "Big Green" building both in color and > eco-impact. > >> >? ? ? ? We'll need to park in the North parking lot and go through > >> >? ? ? ? the main doors.? There'll be a security guard who'll take > >> >? ? ? ? down your name get you a visitor badge and escort you to > >> >? ? ? ? the room. > >> > > >> > #3.? ? We're going to be ordering Pizza.? A LOT of Pizza.? If anybody > >> >? ? ? ? has any particular type they like (Pepperoni, Meat, Chicken, > >> >? ? ? ? Veggie, etc) please let me know.? We'll also be ordering Soda > >> >? ? ? ? so please let us know if you have a preference there as well. > >> >? ? ? ? Otherwise it will be a mix of cola, diet cola, green stuff, > and > >> >? ? ? ? "other". > >> > > >> > #4.? ? If there is a very good pizza place by the office that does > >> > deliveries > >> >? ? ? ? plese let me know and we'll see if we can get pizza from > there. > >> >? ? ? ? Otherwise it will be one of the franchises. > >> > > >> > Hope to see you there, > >> > > >> > Aaron > >> > 0-0-0 > >> > "The Journey is the Reward" - Old Zen Buddhist Saying > >> > > >> > Omaha's Cyber Security Forum welcomes you!? August's meeting is at > >> > 7:00 p.m. on Wednesday the 21st and regular meetings will continue > >> > to be held on the third Wednesday of each month.? Details are as > follows: > >> > > >> > Note #1:? If you need a CPE form please let us know when you > >> >? ? ? ? ? RSVP. > >> > > >> > Note #2:? We need all people who would like to attend to RSVP because > >> >? ? ? ? ? this meeting is taking place at a secure facility. > >> > > >> >? TOPIC:? Taking Control of Permissions on your Android Phone > >> >? BY:? ? Aaron Grothe > >> >? ? ? ? ? NEbraskaCERT > >> >? WHO:? ? All Nebraska/Iowa Information Security Professionals > >> >? WHEN:? Wednesday - August 21, 7:00 pm - 8:30 am > >> >? WHERE:? TD Ameritrade Headquarters > >> >? ? ? ? ? 200 S. 108th Ave. Omaha, NE (Big Green Building) > >> >? WHY:? ? To share information with like-minded professionals > >> >? ? ? ? ? and to get some pizza :-) > >> >? HOW:? ? Please RSVP to csfrsvp at nebraskacert.org and provide > >> >? ? ? ? ? your name, company, phone and email address > >> >? ? ? ? ? by Close Of Business Monday, 19 August. > >> > > >> >? DESCRIPTION:? With recent apps like Jayz's Magna Carte and other > >> >? ? ? ? ? ? ? ? apps such as the Obama and Romney campaign apps along > >> >? ? ? ? ? ? ? ? with even regular programs such as Mozilla's Firefox > >> >? ? ? ? ? ? ? ? constantly asking for more and more permissions on > >> >? ? ? ? ? ? ? ? people's phones. > >> > > >> >? ? ? ? ? ? ? ? It has started to become a war of escalation or > >> >? ? ? ? ? ? ? ? attrition on privileges.? This talk will cover > >> >? ? ? ? ? ? ? ? several steps to take with android phones: being more > >> >? ? ? ? ? ? ? ? aware of the permissions being asked for, taking > >> >? ? ? ? ? ? ? ? control by denying permissions, and also giving apps > >> >? ? ? ? ? ? ? ? false or random information to send back to their > >> >? ? ? ? ? ? ? ? masters. > >> > > >> > If those of you who have access to lists of interested individuals > >> > would pass this message along, it would be appreciated! > >> > > >> > We look forward to seeing you at the meeting. > >> > _______________________________________________ > >> > Omaha Python Users Group mailing list > >> > Omaha at python.org > >> > http://mail.python.org/mailman/listinfo/omaha > >> > http://www.OmahaPython.org > >> > > >> _______________________________________________ > >> Omaha Python Users Group mailing list > >> Omaha at python.org > >> http://mail.python.org/mailman/listinfo/omaha > >> http://www.OmahaPython.org > >> > > _______________________________________________ > > Omaha Python Users Group mailing list > > Omaha at python.org > > http://mail.python.org/mailman/listinfo/omaha > > http://www.OmahaPython.org > _______________________________________________ > Omaha Python Users Group mailing list > Omaha at python.org > http://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 http://mail.python.org/mailman/listinfo/omaha http://www.OmahaPython.org