languages
play

Languages are in the Eye of the Beholder Clemens Szyperski - PowerPoint PPT Presentation

Languages are in the Eye of the Beholder Clemens Szyperski Development Manager in Data Platform Group Wirth 80 Symposium, ETH Zrich, February 2014 Driving your own car, anyone? Having a chauffeur was more than a luxury. It was a


  1. Languages are in the Eye of the Beholder Clemens Szyperski Development Manager in Data Platform Group Wirth 80 Symposium, ETH Zürich, February 2014

  2. Driving your own car, anyone? Having a chauffeur was more than a luxury. It was a necessity. So many things could go wrong, requiring a technician’s skills. And it limited who could afford to own and use a car.

  3. “The worldwide demand for cars will not exceed one million – even if just for a Self-Service scarcity of available chauffeurs .” Revolution Gottlieb Daimler, Inventor, 1901

  4. * chips “… all large scale applications of LSI are by definition highly suspect. That does away with ‘personal computing’, ‘home Technology computers’, ‘the information society’, and Revolution all that jazz .” As any technology matures, capabilities that required Edsgar Dijkstra, 1978 genius-level skills in one (EWD691 “On improving the state of the art”) generation become common-place in the next. * LSI = Large Scale Integration

  5. “There is no reason for any individual to Sticking to the have a computer in his home.” technology status quo ? Ken Olson, Founder and CEO of Digital Equipment Corp, 1977 at Convention of the World Future Society

  6. “A computer on every desk and in every home.” DIY ! At work and at home. Bill Gates and Paul Allen, Microsoft Vision Statement, 1977 * Do It Yourself

  7.  Programmers write solutions (programs) in a programming language.  Requires intersection of programming skills (how?) and domain knowledge (what?). Programmer  Programming languages themselves are the A person skilled in subject of a design activity. designing and developing programs.  Facts and opinions abound: usability, expressiveness, correctness by construction, The chauffeur of your computer! readability vs. writability , simplicity, style, …

  8.  Read-Only Languages  SQL (Structured Query Language) – many learn to read SQL, only a few can write non-trivial SQL Properties of  Write-Only Languages  Pearl – many learn to write scripts, but most cannot Programming even read what they wrote themselves a day ago Languages  Impedance Mismatch Tools need to match the  “Ceremony” or lack of expressiveness force problem space, the cumbersome formulations of solutions in a given audience expected to use problem domain the tool, and the expectation space of the  Requirements Mismatch desired outcome when  Functionally good expressions end up failing using the tool. expectations of performance, security, etc.

  9. “I suppose it is tempting, if the only tool you have is a hammer, to treat everything Law of the as if it were a nail .” Instrument Abraham Maslow, Psychologist, 1966

  10. “General Purpose”  Instructions can be very low-level (close to the machine’s primitive operations)  Instructions can be very high-level Programming (close to the problem domain at Languages hand) Given a computer with  Most languages strike a balance some primitive operations  Too low-level (limited audience, and a problem to solve. limited target machines)  Too high-level Formulate a composition of Machine Domain (limited audience, limited instructions to the Specific Specific problem domains) computer that solve the Skills Interest Audience problem.

  11.  Why not “drive” your own computer to go where you want to go?  This is not about “using” a computer application, in the simple sense.  Why not write the programs you need to get Programmer your job done, yourself? A person skilled in  This is not about “programming” a computer designing and developing either, in the fullest sense. programs.  Why not master a programming language? The chauffeur of your computer!  If the language is Abstract Algebra, you’ll be in trouble. If it is Pidgin, you are in trouble too.

  12.  Query by Example Moshé M. Zloof, IBM Research, mid-1970s  Generalizes to Programming by Example  Using direct manipulation, change results of a Self-Service program, causing the system to adjust that Programming program. Think of cars that most  Users can watch the effect on the underlying people can learn to drive. program – and learn from that. Clearly not to the limit of what  Some users pick up ways to change their programs “cars” can be; think 18 -wheeler trucks or F1. directly, naturally learning the underlying programming language.  Requires uniform and simple languages.

  13. “Audience Specific”  Languages that strive to be Audience- “general purpose” end up being not “General quite right at most anything. Specific Purpose”  To compensate, such languages Programming develop a large arsenal of Languages specialized but overlapping capabilities. Consider a variety of  The ideal maximized audience is personas that characterize subdued by complexity. how groups of people get their tasks done.  Larger audiences can be served Machine Domain with simpler languages to either Consider a set of personas Specific Specific side of the “general purpose” point. that fall into comparable needs/skills categories. Call Skills Interest that an audience . Audience Complexity

  14. Anyone can drive a car Downside: everyone does drive a car. “The trouble with programmers is that you can never tell what a programmer is doing until it’s too late.” Seymour Cray

  15. Anyone can write a program For a suitable set of domains and requirements. Example: Power Query , a part of Microsoft Power BI, aims at Excel users that gather, combine, and analyze data from a wide variety of sources.

  16.  Target audience is advanced Information Workers (Analysts etc.), Data Stewarts  Specifically, top 10% (ish) of Excel users “M” - a simple  Litmus test: benefits from today’s Excel formulas programming  For that audience, the language should be language  Simple, easy to remember Again, an example – the  Easy to read and write; limited syntax, little use Power Query Expression Language (often referred to of non-standard symbols as “M” for short).  Powerful; no cliffs for advanced user  Wide range of “data models” (relational, hierarchical, semi-structured, etc.)

  17. T-SQL SELECT Orders.OrderDate, Products.OrderID, Products.ProductSKU FROM Products INNER JOIN Orders ON Products.OrderID = Orders.OrderID ORDER BY ProductSKU ; from p in Products C# LINQ join o in Orders on p.OrderID equals o.OrderID syntax Uniform simple orderby p.ProductSKU select new { o.OrderDate, p.OrderID, p.ProductSKU } syntax C# LINQ Products The syntax of a language pattern .Join(Orders, defines the form a valid p => p.OrderID, o => o.OrderID, expression in that language (p, o) => new { o.OrderDate, p.OrderID, p.ProductSKU } ) .OrderBy( p => p.ProductSKU ) takes. It does not, as such, define the let Joined = Table.Join( Products, "OrderID", Orders, "OrderID" ), meaning of such an expression. “M” Columns = Table.SelectColumns( Joined, {"OrderDate", "OrderID", "ProductSKU"} ), Sorted = Table.Sort( Columns, "ProductSKU" ), in Sorted

  18.  Dynamic  “M” programs only fail when reaching an invalid evaluation state Semantics  Static checking, beyond syntax, is an option for tools to meet  Functional (mostly)  Mostly deterministic: no direct side effects; mostly referentially expectations & transparent; once calculated, all values are immutable requirements  External data is stream-processed (not necessarily buffered) and can be non-repeatable; error handling can expose non-determinism The semantics of a language  Higher-order defines the meaning of an expression.  Functions, closures, and types are also values  Nested application and conditionals as only forms of “control flow” Semantics is defined relative to the syntax of a language.  Optionally typed For a language to be “simple”,  Mostly optional yet expressive type system; very limited runtime its semantics should follow a checking of types few uniform principles.

  19.  “M” discourages explicit control flow (even recursion!) and prefers higher-order application  Many library functions take functions as arguments Table.SelectRows( table, (row) => row[Manager] = row[Buddy] ) Table.SelectRows( table, (row) => row[Manager] = row[Buddy] ) No control-flow primitives … Say again? Table.SelectRows is the name of Control flow in a programming a function. If applied to a table language directs the flow of The second argument is a function program execution based on and a predicate, it returns a new that takes a single row and determines state observations. table with rows that meet that whether that row should be selected predicate. Examples include constructs (or dropped). for looping (iteration), This function is higher-order ; it branching (case selection), and In the example, the predicate function even jumping (“ goto ”). takes a function as its argument. is anonymous ; it has no name and is defined right where it is needed.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend