LING 408/508: Programming for Linguists Lecture 19 November 9 th.

Slides:



Advertisements
Similar presentations
Introduction to JavaScript
Advertisements

SWE 444: Internet & Web Application Development0.1 SWE 444 Internet and Web Application Development Dr. Abdallah Al-Sukairi and Dr. Sahalu Junaidu
HTML Recall that HTML is static in that it describes how a page is to be displayed, but it doesn’t provide for interaction or animation. A page created.
Introduction to Python: Slides Referenced in Homework 0 CSE-391: Artificial Intelligence University of Pennsylvania Matt Huenerfauth January 2005.
LING 408/508: Programming for Linguists Lecture 19 November 4 th.
LING 408/508: Programming for Linguists Lecture 1 August 26 th.
SYST Web Development 2 SYST Web Development 2 Course Overview and Introduction Client/Server Overview.
LING 408/508: Programming for Linguists Lecture 17 October 21 st.
Course A201: Introduction to Programming 09/09/2010.
LING 408/508: Programming for Linguists Lecture 1 August 24 th.
LING 408/508: Programming for Linguists Lecture 3 August 31 st.
SE-2840 Web Application Development 1. 2 Contact info Dr. Mark L. Hornick For office hours, course syllabus, see:
LINUX TERMINAL TUTORIAL EDCI 339 – Online Presentation by Roop Rahal.
GNU Compiler Collection (GCC) and GNU C compiler (gcc) tools used to compile programs in Linux.
Goals Approach Evaluation Intro to Python The two on-line sources Getting started with LPTHW.
Introduction to Programming the WWW I CMSC Summer 2003 Lecture 7.
Python – May 11 Briefing Course overview Introduction to the language Lab.
Introduction to CMPT 281. Outline Admin information Textbooks and resources Moodle site Grading Assignments Project.
By Bearzx Dive Into Web Introduction To WEB
Drush: The Drupal Shell Utility Trevor Mckeown Founder & Owner Sublime Technologies
IS2802 Introduction to Multimedia Applications for Business Lecture 1: Introduction to IS2802 Rob Gleasure
Week 1 basic Python programs, defining functions Special thanks to Scott Shawcroft, Ryan Tucker, and Paul Beck for their work on these slides. Except where.
You Need an Interpreter!. Closing the GAP Thus far, we’ve been struggling to speak to computers in “their” language, maybe its time we spoke to them in.
LING 408/508: Programming for Linguists Lecture 17 October 28 th.
LING 408/508: Programming for Linguists Lecture 8 September 23 rd.
LING 408/508: Programming for Linguists Lecture 18 November 2 nd.
LING 408/508: Programming for Linguists Lecture 16 October 26 th.
Cindy Royal Texas State U PROGRAMMING FOR COMMUNICATORS
CS-4220 Dr. Mark L. Hornick 1 CS-4220 (last time!) Web Software Applications.
LING 408/508: Programming for Linguists Lecture 23 November 25 th.
LING 408/508: Programming for Linguists Lecture 20 November 16 th.
JavaScript Dynamic Active Web Pages Client Side Scripting.
1/10/2008. >>> About Us Paul Beck * Third quarter TA * Computer Engineering * Ryan Tucker * Second quarter TA * Computer.
Linux A practical introduction. 1)Background and Getting Started Linux is an operating system with multiple providers Red Hat/CentOS (our version) Ubuntu.
ASP Syntax Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Scripting Languages Info derived largely from Programming Language Pragmatics, by Michael Scott.
LING 408/508: Programming for Linguists Online Lecture 7 September 16 th.
Beginning JavaScript 4 th Edition. Chapter 1 Introduction to JavaScript and the Web.
Web Page Designing With Dreamweaver MX\Session 1\1 of 9 Session 1 Introduction to PHP Hypertext Preprocessor - PHP.
Intelligent Data Systems Lab. Department of Computer Science & Engineering Python Installation guide 컴퓨터의 개념 및 실습.
Machine Language Computer languages cannot be directly interpreted by the computer – they are not in binary. All commands need to be translated into binary.
Related Courses CMPT 411: Knowledge Representation. Mainly Logic. CMPT 413: Computational Linguistics. Dealing with Natural Language. CMPT 419/726: Often.
Physical Properties of Matter Grade 7.
Physical Properties of Matter Grade 7. 
Scripting Languages Info derived largely from Programming Language Pragmatics, by Michael Scott.
Programming Language Design Concepts
What Else is There? CMPT 411: Knowledge Representation. Mainly Logic.
Introduction to Programming the WWW I
Using PowerShell with Python & SQL Server
Python Training Institutes in Hyderabad Python Training Institutes in Hyderabad.
LING 408/508: Computational Techniques for Linguists
LING 408/508: Computational Techniques for Linguists
Server Side Programming Overview And file system basics
WELCOME PARENTS! Dr. Yox AP Physics.
LING 388: Computers and Language
How Much Do You Know?.
LING 408/508: Computational Techniques for Linguists
Unit 6 part 3 Test Javascript Test.
An introduction to the Linux environment v
Python 19 Mr. Husch.
LING 388: Computers and Language
LING 408/508: Computational Techniques for Linguists
LING 408/508: Computational Techniques for Linguists
Python Crash Course CSC 576: Data Science.
Architecture of the web
Lab 1: Getting Started.
Python 19 Mr. Husch.
LING/C SC 581: Advanced Computational Linguistics
EN Software Carpentry Python – A Crash Course Esoteric Sections Compiled Languages.
CHAPTER 1 THE ABC OF PROGRAMMING
Presentation transcript:

LING 408/508: Programming for Linguists Lecture 19 November 9 th

Administrivia Veterans Day is November 11th – No class Wednesday

Term Programming Project It's time to think about the end of the semester … Propose a programming project – 20%–35% of your grade Send your proposal to me If I give up the go-ahead, you can start working on it …

Next Programming Language So far, you've been exposed to: bash shell scripting html/css Javascript + DOM Web client/server model Python – indentation matters! On course website: pythonbook.pdf

Why Python?

Python Installed by default on OSX – Terminal command: python interactive (like a shell) interpreter interactive (like a shell) interpreter

Python On Ubuntu:

Textbook programs ppics1/index.html

Chapter 1