Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1626

DerbyPy: Louisville Python MeetUp - Functional Programming Introduction - Tuesday March 24 6:30PM

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <alex.sisson@level12.io>
X-Original-To python-announce-list@python.org
Delivered-To python-announce-list@mail.python.org
X-Spam-Status OK 0.027
X-Spam-Evidence '*H*': 0.95; '*S*': 0.00; 'python.': 0.02; 'subject:Python': 0.06; 'computing,': 0.07; 'dependency': 0.09; 'oop': 0.09; 'python': 0.11; 'language,': 0.12; 'concurrency,': 0.16; 'direct:': 0.16; 'limiting': 0.16; 'mainstream': 0.16; 'overview:': 0.16; 'paradigms': 0.16; 'subject:Introduction': 0.16; 'subject:Programming': 0.16; 'to:addr:python-announce-list': 0.16; 'alex': 0.19; 'programming': 0.22; 'header:User-Agent:1': 0.23; 'mathematical': 0.24; 'host': 0.29; 'programming.': 0.30; 'becoming': 0.31; 'programmers': 0.33; 'style': 0.33; 'basic': 0.35; 'received:209.85': 0.35; 'received:google.com': 0.35; 'level': 0.37; 'received:209': 0.37; 'sometimes': 0.38; 'stable': 0.38; 'functional': 0.39; 'to:addr:python.org': 0.39; 'referred': 0.60; 'helps': 0.61; 'world.': 0.61; 'more': 0.64; 'life': 0.66; 'virus:src="cid:': 0.66; 'content-type:multipart/related': 0.67; 'covers': 0.68; 'attention': 0.75; 'demonstrates': 0.84; 'premise': 0.84; 'subject::': 0.85; 'carries': 0.91; 'procedural': 0.91; 'differences': 0.93
X-Google-DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type; bh=m5kzuwcOvEgyC8y9JjqqA9RCiL1oR4MF2v3P5GExWHY=; b=Kg2oz4zEPMVDMmSY90zi3CDdmT8cpkZhmlhCa2DUWcbcANg0ff6mW42u0999kRUqsc XNDu1xzrkV3gkKYDju7ksKgRZ1YIcei3vVHRJzXboHVIdt8PWWLB4m3bcmoMyqx7Novi VYZOV5e24Rq/9LtkZTdkoGxuydBKljb2j7KzrKvkccJEYBTgPIOOLiM/g+1jTmnumc8Z B3inD4JztO10WtWDNPCx2S1b5OtLtGbG68JJtPrG2+Vhse6CnG1srTRICnlr8oCU5NgO 9mfI0kbJTQRC/S7VwsU4T25xvho9cQPu4LfDtB9fvS3iipB48fBph70ZTUm4V+UifrA3 3VsA==
X-Gm-Message-State ALoCoQkLpH8RzLxbTU0oIgcuOsOaTolwHvQQRGuPFKvFvHeuaYtetr72wcxpA5Cv2ePfIKOtr7Xq
X-Received by 10.55.23.34 with SMTP id i34mr100142547qkh.6.1426621987937; Tue, 17 Mar 2015 12:53:07 -0700 (PDT)
Date Tue, 17 Mar 2015 15:53:05 -0400
From Alex Sisson <alex.sisson@level12.io>
User-Agent Postbox 3.0.11 (Macintosh/20140602)
MIME-Version 1.0
To python-announce-list@python.org
Subject DerbyPy: Louisville Python MeetUp - Functional Programming Introduction - Tuesday March 24 6:30PM
X-Mailman-Approved-At Wed, 18 Mar 2015 09:59:55 +0100
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
X-Content-Filtered-By Mailman/MimeDel 2.1.19
X-BeenThere python-announce-list@python.org
X-Mailman-Version 2.1.19
Precedence list
List-Id Announcement-only list for the Python programming language <python-announce-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-announce-list/>
List-Post <mailto:python-announce-list@python.org>
List-Help <mailto:python-announce-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe>
Approved python-announce-list@python.org
Newsgroups comp.lang.python.announce
Message-ID <mailman.516.1426669196.21433.python-announce-list@python.org> (permalink)
Lines 28
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1426669196 news.xs4all.nl 2885 [2001:888:2000:d::a6]:43168
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python.announce:1626

Show key headers only | View raw


Functional Programming (FP) is becoming a popular alternative to the 
mainstream paradigms of Object-Oriented Programming and Procedural 
Programming. Sometimes referred to as "Value-Oriented Programming," FP 
helps programmers think with more mathematical precision and carries 
many practical benefits to computing, like formal provability, algebraic 
reasoning, stable concurrency, and a host of powerful deductions that 
compilers can leverage for optimization. As a multi-paradigm language, 
Python has received much attention from the FP world. This talk covers 
the basics of the FP design philosophy and demonstrates its use in Python.

* General overview: What is FP?
     * Basic premise
     * Differences from OOP and Procedural
     * Pros/Cons
* Every-day life
     * Declarative style
     * Dependency injection
     * Limiting effects
     * More (TBD)
-- 

*Alex Sisson*
BizDev Strategist
Direct: 502.380.7210
Office: 812.285.8766
Level 12 <https://www.level12.io/>

Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

DerbyPy: Louisville Python MeetUp - Functional Programming Introduction - Tuesday March 24 6:30PM Alex Sisson <alex.sisson@level12.io> - 2015-03-17 15:53 -0400

csiph-web