Spring 2023 Computer Science 458


[Home]

Video of the day

Appalachian Spring Aaron Copland.

Administrivia

  • I have office hours Mondays and Wednesdays from 2 to 3pm, NOT on Friday, on zoom, id 459 434 2854.

  • Guest speaker Monday April 10th: Michael Ljung. Senior Managing Director, Accenture. There are several possible topics for his talk, including delivering responsible AI and modernizing legacy systems. Among Michael's many achievements is fixing health.gov (the problematic Obamacare web site.) I will post a notice about a lottery for going out to dinner.

  • Guest speaker Monday April 17th: Ben Fried. Venture Partner at Rally Ventures I met Ben years ago at Morgan Stanley. In 2008, he joined Google in NYC as CIO and Site lead. Last year he joined Rally Ventures. Ben wants to eat at Frank Pepe's. I will arrange a lottery.

    Assignments

    Extension for hw2 to April 6th hw 2 which deals with finance. See Ed Discussion note by Sam regarding alternative to yfinance.

    You should try yahooquery which is alive and well.

    >>> from yahooquery import Ticker
    >>> a = Ticker('AAPL')
    >>> dir(a)
    >>> for p in dir(a):
      print (p)		     
    

    Also, hw3 is now available (along with the paper due 4/3 and final project - proposal due 4/10.) There are no more assignments.

    Oop.html object-oriented programming in Python. Helpful for hw3.

    Lecture: 4/6/2023

  • Goals.html

    Goal-based Systems

    See GBDMgoals.html Chapter 3: Goals.


    [Home]