Operating Systems. Chenyang Lu

Size: px
Start display at page:

Download "Operating Systems. Chenyang Lu"

Transcription

1 Operating Systems Chenyang Lu

2 Example: Linux Ø A Brief History: Chenyang Lu 2

3 Android Source: h*p:// en.wikipedia.org/wiki/ File:Android-System- Architecture.svg Chenyang Lu 3

4 Killer App for Real-Time? Ø In 2001, about a year after I joined IBM, I got involved with the Sony-Toshiba-IBM initiative that's leading up to the Sony PlayStation 3. Of course, game systems have extremely severe real-time requirements. All the gaming systems I have seen recently offer sub-reflex response (and, yes, I do have three teenagers, so I have seen a few video games). Gamers will not put up with jerky response, so one-second response times just will not cut it; milliseconds rather than seconds are required. Ø So we are in the very interesting state where gaming and entertainment are major factors driving the technology. When was the last time you heard someone say, "Hey, I bought a new PC and Excel really runs a lot faster"? I used to hear that, back in the early '90s. Paul McKenney, IBM Linux Technology Center Shrinking slices: Looking at real time for Linux, PowerPC, and Cell Chenyang Lu 4

5 Basic Func=ons Ø OS controls resources: q who gets the CPU; q when I/O takes place; q how much memory is allocated; q power management Ø Application programs run on top of OS services Ø Challenge: manage multiple, concurrent tasks. Chenyang Lu 5

6 Example: Engine Control Concurrent tasks Ø spark control Ø crankshaft sensing Ø fuel/air mixture Ø oxygen sensor engine controller Chenyang Lu 6

7 POSIX (Portable Opera=ng System Interface) Ø IEEE standards for application portability between Unix variants. q IEEE defines a Unix-like OS interface. q IEEE defines the shell and utilities q IEEE defines real-time extensions. Ø Supported by many operating systems q Variants of UNIX: Linux, MacOS, AIX, HP-UX, Solaris q Many commercial RTOS Chenyang Lu 7

8 Process Ø A process is a unique execution of a program. q Several copies of a program may run simultaneously. Ø A process has its own context. q Data in registers, PC, status. q Stored in Process Control Block (PCB) Ø Thread: lightweight process q Threads share memory space in a same process. Ø OS manages processes and threads. Chenyang Lu 8

9 Context Switch process 1 process 2... PC registers CPU memory Chenyang Lu 9

10 Process States Ø A process can be in one of three states: q executing on the CPU; q ready to run; q waiting for data. executing gets CPU preempted needs data Scheduler ready gets data waiting Chenyang Lu 10

11 Process Management Ø OS keeps track of: q process priorities; q scheduling state; q process control block. Ø Processes may be created: q statically before system starts; q dynamically during execution. Ø OS controls context switches and what process runs. Chenyang Lu 11

12 Priority Scheduling Ø Every process has a priority. Ø CPU goes to the ready process with the highest priority. q Fixed vs. dynamic priority q Preemptive vs. non-preemptive Chenyang Lu 12

13 Preemp=ve Priority Scheduling Ø Each process has a fixed priority (1 highest); Ø P 1 : priority 1; P 2 : priority 2; P 3 : priority 3. P 3 released P 2 released P 1 released P2 P1 P2 P time Chenyang Lu 13

14 Preemp=ve Priority Scheduling Ø Most common real-time scheduling approach q Real-time POSIX q Real-time priorities in Linux q Most RTOS Ø Not the only possible way q Non-preemptive q Clock-driven scheduling q Reservation-based scheduling Chenyang Lu 14

15 Semaphores Ø OS primitive for controlling access to critical regions. q Get access to semaphore S with sem_wait(s). q Perform critical region operations. q Release semaphore with sem_post(s). Ø Mutex: only one process can hold a mutex at a time. Chenyang Lu 15

16 Supervisor Mode Ø The mode in which the OS usually runs. Ø Provide protective barriers between applications and OS. q Prevent applications from corrupting OS data. Ø Can do the following only in the supervisor mode q Access the kernel address space q Execute privileged instructions Example: Set real-time priority q Access special hardware Ø Careful with memory access when q programs run in supervisor mode q processor has no supervisor mode Chenyang Lu 16

17 Trap (SoNware Interrupt) Ø Enter supervisor mode. Ø Make system calls. q Open file, read from network Ø Example: ARM q Use SWI instruction to enter supervisor mode: SWI CODE_1 q Sets PC to 0x08. q Argument to SWI is passed to supervisor mode code. Chenyang Lu 17

Final Review. Chenyang Lu. CSE 467S Embedded Compu5ng Systems

Final Review. Chenyang Lu. CSE 467S Embedded Compu5ng Systems Final Review Chenyang Lu CSE 467S Embedded Compu5ng Systems OS: Basic Func2ons Ø OS controls resources: q who gets the CPU; q when I/O takes place; q how much memory is allocated; q power management. Ø

More information

Processes. Criteria for Comparing Scheduling Algorithms

Processes. Criteria for Comparing Scheduling Algorithms 1 Processes Scheduling Processes Scheduling Processes Don Porter Portions courtesy Emmett Witchel Each process has state, that includes its text and data, procedure call stack, etc. This state resides

More information

Cyber-Physical Systems Scheduling

Cyber-Physical Systems Scheduling Cyber-Physical Systems Scheduling ICEN 553/453 Fall 2018 Prof. Dola Saha 1 Quick Recap 1. What characterizes the memory architecture of a system? 2. What are the issues with heaps in embedded/real-time

More information

CS 5523: Operating Systems

CS 5523: Operating Systems Lecture1: OS Overview CS 5523: Operating Systems Instructor: Dr Tongping Liu Midterm Exam: Oct 2, 2017, Monday 7:20pm 8:45pm Operating System: what is it?! Evolution of Computer Systems and OS Concepts

More information

Real-Time Scheduling Single Processor. Chenyang Lu

Real-Time Scheduling Single Processor. Chenyang Lu Real-Time Scheduling Single Processor Chenyang Lu Critiques Ø 1/2 page critiques of research papers. q Back-of-envelop comments - NOT whole essays. q Guidelines: http://www.cs.wustl.edu/%7elu/cse521s/critique.html

More information

TinyOS and nesc. Ø TinyOS: OS for wireless sensor networks. Ø nesc: programming language for TinyOS.

TinyOS and nesc. Ø TinyOS: OS for wireless sensor networks. Ø nesc: programming language for TinyOS. TinyOS and nesc Ø TinyOS: OS for wireless sensor networks. Ø nesc: programming language for TinyOS. Original slides by Chenyang Lu, adapted by Octav Chipara 1 Mica2 Mote Ø Processor Ø Radio Ø Sensors Ø

More information

File Systems: Fundamentals

File Systems: Fundamentals File Systems: Fundamentals 1 Files What is a file? Ø A named collection of related information recorded on secondary storage (e.g., disks) File attributes Ø Name, type, location, size, protection, creator,

More information

CSE 520S Real-Time Systems

CSE 520S Real-Time Systems CSE 520S Real-Time Systems Prof. Chenyang Lu TAs: Haoran Li, Yehan Ma Real-Time Systems Ø Systems operating under timing constraints q Automobiles. q Airplanes. q Mars rovers. q Game console. q Factory

More information

Critiques. Ø Critique #1

Critiques. Ø Critique #1 Critiques Ø 1/2 page critiques of research papers Ø Due at 10am on the class day (hard deadline) Ø Email Yehan yehan.ma@wustl.edu in plain txt Ø Back-of-envelop notes - NOT whole essays Ø Guidelines: http://www.cs.wustl.edu/%7elu/cse521s/critique.html

More information

CS 2461: Computer Architecture I

CS 2461: Computer Architecture I The von Neumann Model : Computer Architecture I Instructor: Prof. Bhagi Narahari Dept. of Computer Science Course URL: www.seas.gwu.edu/~bhagiweb/cs2461/ Memory MAR MDR Processing Unit Input ALU TEMP Output

More information

Adaptive QoS Control for Real-Time Systems

Adaptive QoS Control for Real-Time Systems Adaptive QoS Control for Real-Time Systems Chenyang Lu CSE 520S Challenges Ø Classical real-time scheduling theory relies on accurate knowledge about workload and platform. New challenges under uncertainties

More information

Concurrent Programing: Why you should care, deeply. Don Porter Portions courtesy Emmett Witchel

Concurrent Programing: Why you should care, deeply. Don Porter Portions courtesy Emmett Witchel Concurrent Programing: Why you should care, deeply Don Porter Portions courtesy Emmett Witchel 1 Uniprocessor Performance Not Scaling Performance (vs. VAX-11/780) 10000 1000 100 10 1 20% /year 52% /year

More information

Last Time. Bit banged SPI I2C LIN Ethernet. u Embedded networks. Ø Characteristics Ø Requirements Ø Simple embedded LANs

Last Time. Bit banged SPI I2C LIN Ethernet. u Embedded networks. Ø Characteristics Ø Requirements Ø Simple embedded LANs Last Time u Embedded networks Ø Characteristics Ø Requirements Ø Simple embedded LANs Bit banged SPI I2C LIN Ethernet Today u CAN Bus Ø Intro Ø Low-level stuff Ø Frame types Ø Arbitration Ø Filtering Ø

More information

FairCom Press Release Archive:

FairCom Press Release Archive: FairCom Press Release Archive: 2000-2009 With over thirty years of innovation in the database industry, FairCom has a long-standing tradition of leadership. This archive highlights the announcements we

More information

Philips Lifeline. Ø Chenyang Lu 1

Philips Lifeline. Ø  Chenyang Lu 1 Philips Lifeline Ø http://www.lifelinesys.com/content/lifeline-products/auto-alert Chenyang Lu 1 Smartphone for Medicine Ø http://video.msnbc.msn.com/rock-center/50582822 2 Proposal Presenta5on Ø 2/12,

More information

Performance & Energy

Performance & Energy 1 Performance & Energy Optimization @ Md Abdullah Shahneous Bari Abid M. Malik Millad Ghane Ahmad Qawasmeh Barbara M. Chapman 11/28/15 2 Layout of the talk Ø Overview Ø Motivation Ø Factors that affect

More information

A Micro-Benchmark Evaluation of Catamount and Cray Linux Environment (CLE) Performance

A Micro-Benchmark Evaluation of Catamount and Cray Linux Environment (CLE) Performance A Micro-Benchmark Evaluation of Catamount and Cray Linux Environment (CLE) Performance Jeff Larkin Cray Inc. Jeff Kuehn ORNL Does CLE waddle like a penguin, or run like

More information

Internet of Things Wireless Sensor Networks. Chenyang Lu

Internet of Things Wireless Sensor Networks. Chenyang Lu Internet of Things Wireless Sensor Networks Chenyang Lu Internet of Things Ø Convergence of q Miniaturized hardware: processor+sensors+wireless q Low-power wireless: connect millions of devices to the

More information

Fall Detection for Older Adults with Wearables. Chenyang Lu

Fall Detection for Older Adults with Wearables. Chenyang Lu Fall Detection for Older Adults with Wearables Chenyang Lu Internet of Medical Things Ø Wearables: wristbands, smart watches q Continuous monitoring q Sensing: activity, heart rate, sleep, (pulse-ox, glucose

More information

Computer Power Management Rules. Ø Jim Kardach, re-red chief power architect, Intel h6p://

Computer Power Management Rules. Ø Jim Kardach, re-red chief power architect, Intel h6p:// Computer Power Management Rules Ø Jim Kardach, re-red chief power architect, Intel h6p://www.youtube.com/watch?v=cz6akewb0ps 1 HW1 Ø Has been posted on the online schedule. Ø Due on March 3 rd, 1pm. Ø

More information

Real-Time Wireless Control Networks for Cyber-Physical Systems

Real-Time Wireless Control Networks for Cyber-Physical Systems Real-Time Wireless Control Networks for Cyber-Physical Systems Chenyang Lu Cyber-Physical Systems Laboratory Department of Computer Science and Engineering Wireless Control Networks Ø Real-time Sensor

More information

HPCG on Tianhe2. Yutong Lu 1,Chao Yang 2, Yunfei Du 1

HPCG on Tianhe2. Yutong Lu 1,Chao Yang 2, Yunfei Du 1 HPCG on 2 Yutong Lu 1,Chao Yang 2, Yunfei Du 1 1, Changsha, Hunan, China 2 Institute of Software, CAS, Beijing, China Outline r HPCG result overview on -2 r Key Optimization works Ø Hybrid HPCG:CPU+MIC

More information

Servilla: Service Provisioning in Wireless Sensor Networks. Chenyang Lu

Servilla: Service Provisioning in Wireless Sensor Networks. Chenyang Lu Servilla: Provisioning in Wireless Sensor Networks Chenyang Lu Sensor Network Challenges Ø Device heterogeneity Ø Network dynamics q due to mobility and interference Ø Limited resources and energy Signal

More information

Real- Time Wireless Control Networks for Cyber- Physical Systems

Real- Time Wireless Control Networks for Cyber- Physical Systems Real- Time Wireless Control Networks for Cyber- Physical Systems Chenyang Lu Cyber- Physical Systems Laboratory Department of Computer Science and Engineering Wireless Control Networks Ø Real-time Ø Reliability

More information

Real-Time CORBA. Chenyang Lu CSE 520S

Real-Time CORBA. Chenyang Lu CSE 520S Real-Time CORBA Chenyang Lu CSE 520S CORBA Common Object Request Broker Architecture Ø CORBA specifications q OMG is the standards body q Over 800 companies q CORBA defines interfaces, not implementations

More information

This Week on developerworks: Ruby, AIX, collaboration, BPM, Blogger API Episode date:

This Week on developerworks: Ruby, AIX, collaboration, BPM, Blogger API Episode date: This Week on developerworks: Ruby, AIX, collaboration, BPM, Blogger API Episode date: 10-06-2011 developerworks: Welcome to This Week On developerworks. I'm Scott Laningham in Austin, Texas, and John Swanson

More information

Case 1:18-cv TWP-MPB Document 1 Filed 01/04/18 Page 1 of 17 PageID #: 1

Case 1:18-cv TWP-MPB Document 1 Filed 01/04/18 Page 1 of 17 PageID #: 1 Case 1:18-cv-00029-TWP-MPB Document 1 Filed 01/04/18 Page 1 of 17 PageID #: 1 UNITED STATES DISTRICT COURT SOUTHERN DISTRICT OF INDIANA INDIANAPOLIS DIVISION JASON JONES, on behalf of himself and all others

More information

Wednesday, January 4, electronic components

Wednesday, January 4, electronic components electronic components a desktop computer relatively complex inside: screen (CRT) disk drive backup battery power supply connectors for: keyboard printer n more! Wednesday, January 4, 2012 integrated circuit

More information

Data Processing Development

Data Processing Development Herschel Data Processing Status and Outlook Stephan Ott Herschel Science Data Processing Development Manager Herschel Science Data Processing Coordinator Viewgraph 1 Ø Data Processing Overview Ø System

More information

BASED ON ALL TABLET OWNERS AND THOSE WHO HAVE TABLETS IN HH [N=2806]:

BASED ON ALL TABLET OWNERS AND THOSE WHO HAVE TABLETS IN HH [N=2806]: PROJECT FOR EXCELLENCE IN JOURNALISM AND THE ECONOMIST MOBILE NEWS SURVEY June 29-August 8, N=9513 adults N=2013 tablet users; N=3947 smartphone owners N=810 tablet news users; N=1075 smartphone news users

More information

The optical memory card is a Write Once media, a written area cannot be overwritten. Information stored on an optical memory card is non-volatile.

The optical memory card is a Write Once media, a written area cannot be overwritten. Information stored on an optical memory card is non-volatile. T10/99-128r0 Subject: Comments on the Committee Draft 14776-381 -Small Computer System Interface -Part 381: Optical Memory Card Device Commands (SCSI OMC). 99-107R0 on T10 site. I have a number of comments

More information

Installation Instructions HM2085-PLM Strain Gage Input Module

Installation Instructions HM2085-PLM Strain Gage Input Module Helm Instrument Company, Inc. 361 West Dussel Drive Maumee, Ohio 43537 USA Phone: 419-893-4356 Fax: 419-893-1371 www.helminstrument.com Installation Instructions HM2085-PLM Strain Gage Input Module October,

More information

OPEN SOURCE CRYPTOCURRENCY

OPEN SOURCE CRYPTOCURRENCY 23 April, 2018 OPEN SOURCE CRYPTOCURRENCY Document Filetype: PDF 325.26 KB 0 OPEN SOURCE CRYPTOCURRENCY Detailed information for OpenSourcecoin, including the OpenSourcecoin price and value, OpenSourcecoin

More information

Title Author Edition

Title Author Edition 2 3 Title: AN OPERATING SYSTEM IN A NUTSHELL Author: Corrado Santoro Edition: Draft 1.2.0 - Dec 04, 2004 Copyright c 2001, 2002, 2003, 2004, 2005 Corrado Santoro (csanto@diit.unict.it), University of Catania.

More information

Large Group Lesson. Introduction Video This teaching time will introduce the children to what they are learning for the day.

Large Group Lesson. Introduction Video This teaching time will introduce the children to what they are learning for the day. Lesson 1 Large Group Lesson What Is The Purpose Of These Activities What Is The Purpose Of These Activities? Lesson 1 Main Point: I Worship God When I Am Thankful Bible Story: Song of Moses and Miriam

More information

Case 5:18-cv Document 1 Filed 02/03/18 Page 1 of 27

Case 5:18-cv Document 1 Filed 02/03/18 Page 1 of 27 Case :-cv-00 Document Filed 0/0/ Page of 0 Gordon M. Fauth, Jr. (SBN: 00) gfauth@finkelsteinthompson.com Of Counsel Rosanne L. Mah (SBN: ) rmah@finkelsteinthompson.com Of Counsel FINKELSTEIN THOMPSON LLP

More information

Case 1:17-cv Document 1 Filed 12/11/17 Page 1 of 17 IN THE UNITED STATES DISTRICT COURT FOR THE WESTERN DISTRICT OF TEXAS AUSTIN DIVISION

Case 1:17-cv Document 1 Filed 12/11/17 Page 1 of 17 IN THE UNITED STATES DISTRICT COURT FOR THE WESTERN DISTRICT OF TEXAS AUSTIN DIVISION Case 1:17-cv-01148 Document 1 Filed 12/11/17 Page 1 of 17 IN THE UNITED STATES DISTRICT COURT FOR THE WESTERN DISTRICT OF TEXAS AUSTIN DIVISION LUCIO DEVELOPMENT LLC, Plaintiff, Case No: 1:17-cv-1148 vs.

More information

UTAH LEGISLATIVE BILL WATCH

UTAH LEGISLATIVE BILL WATCH UTAH LEGISLATIVE BILL WATCH Category: Fast Track Solutions Contact: David Fletcher State of Utah Project Initiation and Completion Dates: December 2012/Completion February 2013 NASCIO 2013 1 EXECUTIVE

More information

CS 5523 Operating Systems: Intro to Distributed Systems

CS 5523 Operating Systems: Intro to Distributed Systems CS 5523 Operating Systems: Intro to Distributed Systems Instructor: Dr. Tongping Liu Thank Dr. Dakai Zhu, Dr. Palden Lama for providing their slides. Outline Different Distributed Systems Ø Distributed

More information

FM Legacy Converter User Guide

FM Legacy Converter User Guide FM Legacy Converter User Guide Version 1.0 Table of Contents v Ways to Convert Ø Drag and Drop Supported file types Types of content that are converted Types of content that are not converted Converting

More information

5 SIMPLE STEPS TO A BETTER CHECKING ACCOUNT

5 SIMPLE STEPS TO A BETTER CHECKING ACCOUNT 5 SIMPLE STEPS TO A BETTER CHECKING ACCOUNT STEP 1: Stop using your old account and debit card once your GPO checking account has been open. Allow up to two weeks for outstanding checks or withdrawals

More information

Batch binary Edwards. D. J. Bernstein University of Illinois at Chicago NSF ITR

Batch binary Edwards. D. J. Bernstein University of Illinois at Chicago NSF ITR Batch binary Edwards D. J. Bernstein University of Illinois at Chicago NSF ITR 0716498 Nonnegative elements of Z: etc. 0 meaning 0 1 meaning 2 0 10 meaning 2 1 11 meaning 2 0 + 2 1 100 meaning 2 2 101

More information

Model Act to Permit Continued Access by Law Enforcement to Wire & Electronic Communications

Model Act to Permit Continued Access by Law Enforcement to Wire & Electronic Communications Model Act to Permit Continued Access by Law Enforcement to Wire & Electronic Communications Table of Contents D-77 Policy Statement D-79 Highlights Section One D-81 Short Title Section Two D-81 Legislative

More information

IBM Cognos Open Mic Cognos Analytics 11 Part nd June, IBM Corporation

IBM Cognos Open Mic Cognos Analytics 11 Part nd June, IBM Corporation IBM Cognos Open Mic Cognos Analytics 11 Part 2 22 nd June, 2016 IBM Cognos Open MIC Team Deepak Giri Presenter Subhash Kothari Technical Panel Member Chakravarthi Mannava Technical Panel Member 2 Agenda

More information

LPGPU. Low- Power Parallel Compu1ng on GPUs. Ben Juurlink. Technische Universität Berlin. EPoPPEA workshop

LPGPU. Low- Power Parallel Compu1ng on GPUs. Ben Juurlink. Technische Universität Berlin. EPoPPEA workshop LPGPU Low- Power Parallel Compu1ng on GPUs Ben Juurlink Technische Universität Berlin Cri1cal Ques1ons We Seek to Ask Power consump9on has become the cri9cal limi9ng factor in performance of processors

More information

New features in Oracle 11g for PL/SQL code tuning.

New features in Oracle 11g for PL/SQL code tuning. New features in Oracle 11g for PL/SQL code tuning. 1-1 - Speakers Nikunj Gadoya Nikunj is working in Blink Consul4ng as Technical Consultant for more than 2 years now. He did his engineering in computer

More information

COMP 635: WIRELESS & MOBILE COMMUNICATIONS COURSE INTRODUCTION. Jasleen Kaur. Fall 2017

COMP 635: WIRELESS & MOBILE COMMUNICATIONS COURSE INTRODUCTION.   Jasleen Kaur. Fall 2017 COMP 635: WIRELESS & MOBILE COMMUNICATIONS COURSE INTRODUCTION http://wireless.web.unc.edu Jasleen Kaur Fall 2017 1 Introductions Names BS/MS, First-year Grad, Senior Grad? If you re new, where have you

More information

You Could Get Money From $44.95 Million in Settlements A Federal Court authorized this Notice. This is not a solicitation from a lawyer.

You Could Get Money From $44.95 Million in Settlements A Federal Court authorized this Notice. This is not a solicitation from a lawyer. If You Bought Electronics Such as a Portable Computer, Power Tool, Camcorder, and/or Other Items Containing a Lithium Ion Cylindrical Battery Since 2000 You Could Get Money From $44.95 Million in Settlements

More information

Compsci 290.3, Spring 2017 Software Design and Implementation: Mobile Landon Cox Owen Astrachan

Compsci 290.3, Spring 2017 Software Design and Implementation: Mobile Landon Cox Owen Astrachan Compsci 290.3, Spring 2017 Software Design and Implementation: Mobile Landon Cox Owen Astrachan http://www.cs.duke.edu/courses/spring17/compsci290.3 See also Sakai @ Duke for all information Compsci 290.3/Mobile,

More information

DevOps Course Content

DevOps Course Content INTRODUCTION TO DEVOPS DevOps Course Content Ø What is DevOps? Ø History of DevOps Ø Different Teams Involved Ø DevOps definitions Ø DevOps and Software Development Life Cycle o Waterfall Model o Agile

More information

Geting happy ending from legit parlor. Site Tools. Search for. Translate site English to Spanish Go

Geting happy ending from legit parlor. Site Tools. Search for. Translate site English to Spanish Go Geting happy ending from legit parlor Site Tools Search for Translate site English to Spanish Go Go Our cooling system ensures low GPU temps and scalding hot takes. Microsoft's awesome wall of graphics

More information

Ø Project Description. Ø Design Criteria. Ø Design Overview. Ø Design Components. Ø Schedule. Ø Testing Criteria. Background Design Implementation

Ø Project Description. Ø Design Criteria. Ø Design Overview. Ø Design Components. Ø Schedule. Ø Testing Criteria. Background Design Implementation Ø Project Description Ø Design Criteria Ø Design Overview Ø Design Components Background Design Implementation Ø Schedule Ø Testing Criteria Ø Asante Solutions, Inc. and RCPD Ø Blind user focused insulin

More information

Review: Background on Bits. PFTD: What is Computer Science? Scale and Bits: Binary Digits. BIT: Binary Digit. Understanding scale, what does it mean?

Review: Background on Bits. PFTD: What is Computer Science? Scale and Bits: Binary Digits. BIT: Binary Digit. Understanding scale, what does it mean? PFTD: What is Computer Science? Understanding scale, what does it mean? Ø Using numbers to estimate size, performance, time Ø What makes a password hard to break? Ø How hard to break encrypted message?

More information

Case 3:18-cv HZ Document 1 Filed 03/05/18 Page 1 of 30

Case 3:18-cv HZ Document 1 Filed 03/05/18 Page 1 of 30 Case 3:18-cv-00389-HZ Document 1 Filed 03/05/18 Page 1 of 30 Steve D. Larson, OSB No. 863540 Email: slarson@stollberne.com Jennifer S. Wagner, OSB No. 24470 Email: jwagner@stollberne.com 209 SW Oak Street,

More information

Hardhats, Hippies, And Hawks: The Vietnam Antiwar Movement As Myth And Memory By Penny Lewis

Hardhats, Hippies, And Hawks: The Vietnam Antiwar Movement As Myth And Memory By Penny Lewis Hardhats, Hippies, And Hawks: The Vietnam Antiwar Movement As Myth And Memory By Penny Lewis If you are searched for a book by Penny Lewis Hardhats, Hippies, and Hawks: The Vietnam Antiwar Movement as

More information

ACME TOWNSHIP REGULAR BOARD MEETING ACME TOWNSHIP HALL 6042 Acme Road, Williamsburg MI Tuesday, December 4, 2018, 7:00 p.m.

ACME TOWNSHIP REGULAR BOARD MEETING ACME TOWNSHIP HALL 6042 Acme Road, Williamsburg MI Tuesday, December 4, 2018, 7:00 p.m. ACME TOWNSHIP REGULAR BOARD MEETING ACME TOWNSHIP HALL 6042 Acme Road, Williamsburg MI 49690 Tuesday, December 4, 2018, 7:00 p.m. UGENERAL TOWNSHIP MEETING POLICIES A. All cell phones shall be switched

More information

Campaign Training: VoteBuilder Overview

Campaign Training: VoteBuilder Overview Campaign Training: VoteBuilder Overview TOPICS TO COVER Accessing VoteBuilder Voter data sources Scores and targeting Creating lists Cutting turf MiniVAN (for mobile devices) Virtual Phonebanks Counts

More information

May 2014 REPORT. Channel 2 Action News - #1 All Day, Every Day. Grew Each Newscast 4-7P Over 2013

May 2014 REPORT. Channel 2 Action News - #1 All Day, Every Day. Grew Each Newscast 4-7P Over 2013 May 2014 REPORT Channel 2 Action News - #1 All Day, Every Day Grew Each Newscast 4-7P Over 2013 May 2014 SWEEPS REPORT ATLANTA May 27, 2014 In the May 2014 Sweep, Channel 2 Action News turned in another

More information

The Hispanic Millennial Project

The Hispanic Millennial Project The Hispanic Millennial Project Wave 5: Media, Entertainment & Technology ASIAN FOCUS #HMP5 Roy Eduardo Kokoyachuk Partner ThinkNow Research @ThinkNowTweets Roy Eduardo Kokoyachuk thinknowresearch.com/blog

More information

Using Technology to Improve Jury Service 39

Using Technology to Improve Jury Service 39 Using Technology to Improve Jury Service Hon. Stuart Rabner, Chief Justice, Supreme Court of New Jersey Millions of people are summoned for jury service each year nationwide. The New Jersey Judiciary has

More information

3. APPROVAL OF MINUTES: a. March 4, 2015 (regular session)... 3

3. APPROVAL OF MINUTES: a. March 4, 2015 (regular session)... 3 GRAND TRAVERSE COUNTY PUBLIC HEALTH & SAFETY AGENDA Wednesday, May 6`, 2015 @ 6:00 p.m. Commission Chambers, 2 nd Floor, Governmental Center 400 Boardman, Traverse City, MI 49684 General Meeting Policies:

More information

There s a Cloud in My Enterprise

There s a Cloud in My Enterprise Healthcare Simplified - Leveraging Technology to stay Connected and Improve Program Opera?ons: There s a Cloud in My Enterprise Dale Posont Sr. Principal August 23, 2012 Agenda Discussion Topics Ø Defining

More information

Systems and methods for conducting jury research and training for estimating punitive damages

Systems and methods for conducting jury research and training for estimating punitive damages ( 1 of 1 ) United States Patent 7,665,993 Genevie February 23, 2010 Systems and methods for conducting jury research and training for estimating punitive damages Abstract The present invention relates

More information

Agenda Administration Conference Room Tuesday, November 20, :00 p.m.

Agenda Administration Conference Room Tuesday, November 20, :00 p.m. IT COMMITTEE Agenda Administration Conference Room Tuesday, November 20, 2018 1:00 p.m. 1. Call to Order/Pledge of Allegiance 2. Roll Call/Notice of Quorum 3. Chairs Announcements a. Introduction of Guests

More information

DOWNLOAD OR READ : UNITY GAME ENGINE MANUAL PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : UNITY GAME ENGINE MANUAL PDF EBOOK EPUB MOBI DOWNLOAD OR READ : UNITY GAME ENGINE MANUAL PDF EBOOK EPUB MOBI Page 1 Page 2 unity game engine manual unity game engine manual pdf unity game engine manual Unity is a cross-platform real-time engine developed

More information

Quality of Service in Optical Telecommunication Networks

Quality of Service in Optical Telecommunication Networks Quality of Service in Optical Telecommunication Networks Periodic Summary & Future Research Ideas Zhizhen Zhong 2015.08.28 @Networks Lab Group Meeting 1 Outline Ø Background Ø Preemptive Service Degradation

More information

Cadac SoundGrid I/O. User Guide

Cadac SoundGrid I/O. User Guide Cadac SoundGrid I/O User Guide 1 TABLE OF CONTENTS 1. Introduction... 3 1.1 About SoundGrid and the Cadac SoundGrid I/O... 3 1.2 Typical Uses... 4 1.3 Native/SoundGrid Comparison Table... 6 2. Hardware

More information

Link Attraction Factors

Link Attraction Factors Link Attraction Factors A study of the factors that influence the number of links a URL published to Digg s homepage accumulates. By Dan Zarrella http://danzarrella.com 2008 Introduction & Dataset One

More information

Going to court. A booklet for children and young people who are going to be witnesses at Crown, magistrates or youth court

Going to court. A booklet for children and young people who are going to be witnesses at Crown, magistrates or youth court Going to court A booklet for children and young people who are going to be witnesses at Crown, magistrates or youth court 5051688011814 This booklet tells you: 1 2 3 4 What a witness does Who will be

More information

ASK ALL: Q.1 Do you use any of the following social networking sites? [RANDOMIZE A-D FOLLOWED BY E-K, KEEP L LAST] Yes No No answer

ASK ALL: Q.1 Do you use any of the following social networking sites? [RANDOMIZE A-D FOLLOWED BY E-K, KEEP L LAST] Yes No No answer 1 PEW RESEARCH CENTER PEW RESEARCH FACEBOOK NEWS SURVEY FINAL TOPLINE AUGUST 21-SEPTEMBER 2, GENERAL POPULATION N=5,173 FACEBOOK USER N=3,268 FACEBOOK NEWS CONSUMER N=1,429 Q.1 Do you use any of the following

More information

Case 5:18-cv Document 1 Filed 01/03/18 Page 1 of 26

Case 5:18-cv Document 1 Filed 01/03/18 Page 1 of 26 Case 5:18-cv-00046 Document 1 Filed 01/03/18 Page 1 of 26 William J. Doyle II (SBN 188069) Chris W. Cantrell (SBN 290874) DOYLE APC 550 West B St., 4th Floor San Diego, CA 92101 Telephone: (619) 736-0000

More information

4th International Industrial Supercomputing Workshop Supercomputing for industry and SMEs in the Netherlands

4th International Industrial Supercomputing Workshop Supercomputing for industry and SMEs in the Netherlands 4th International Industrial Supercomputing Workshop Supercomputing for industry and SMEs in the Netherlands Dr. Peter Michielse Deputy Director 1 Agenda q Historical example: oil reservoir simulation

More information

Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna

Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna Programming with Android: SDK install and initial setup Luca Bedogni Marco Di Felice Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna SDK and initial setup: Outline Ø Today: How

More information

By the time most find our footsteps, we ve created a NEW PATH. Coextruded Cryovac NewGen Laminates with New Surface Printing Technology

By the time most find our footsteps, we ve created a NEW PATH. Coextruded Cryovac NewGen Laminates with New Surface Printing Technology By the time most find our footsteps, we ve created a NEW PATH Coextruded Cryovac NewGen Laminates with New Surface Printing Technology EVEN IN THE BEGINNING, our laminates were leading the way. For more

More information

Deadlock. deadlock analysis - primitive processes, parallel composition, avoidance

Deadlock. deadlock analysis - primitive processes, parallel composition, avoidance Deadlock CDS News: Brainy IBM Chip Packs One Million Neuron Punch Overview: ideas, 4 four necessary and sufficient conditions deadlock analysis - primitive processes, parallel composition, avoidance the

More information

Re: Amendment to the Online Marketing Strategy and Implementation RFP. RFP Ref: MCAN/COM/RFP/2B03002

Re: Amendment to the Online Marketing Strategy and Implementation RFP. RFP Ref: MCAN/COM/RFP/2B03002 16 February 211 Dear Bidders Re: Amendment to the Online Marketing Strategy and Implementation RFP RFP Ref: MCAN/COM/RFP/2B32 Please be advised that the following amendment is to be made to the abovementioned

More information

Nanosecond Pulse Stimulation in the Ni-H 2 System

Nanosecond Pulse Stimulation in the Ni-H 2 System Nanosecond Pulse Stimulation in the Ni-H 2 System Francis Tanzella, Robert Godes, Robert George Presented at ICCF21 Ft. Collins, CO USA June 5, 2018 Brillouin Energy Corp. 2018 SRI International Outline

More information

News English.com Ready-to-Use English Lessons by Sean Banville Level 5 Candy Crush Saga most downloaded app

News English.com Ready-to-Use English Lessons by Sean Banville Level 5 Candy Crush Saga most downloaded app www.breaking News English.com Ready-to-Use English Lessons by Sean Banville 1,000 IDEAS & ACTIVITIES FOR LANGUAGE TEACHERS www.breakingnewsenglish.com/book.html Thousands more free lessons from Sean's

More information

Case 4:10-cv YGR Document Filed 06/17/16 Page 8 of 156

Case 4:10-cv YGR Document Filed 06/17/16 Page 8 of 156 Case 4:10-cv-01811-YGR Document 259-1 Filed 06/17/16 Page 8 of 156 Case 4:10-cv-01811-YGR Document 259-1 Filed 06/17/16 Page 9 of 156 Case 4:10-cv-01811-YGR Document 259-1 Filed 06/17/16 Page 10 of 156

More information

Case 3:18-cv HNJ Document 1 Filed 03/06/18 Page 1 of 14 UNITED STATES DISTRICT COURT FOR THE NORTHERN DISTRICT OF ALABAMA NORTHWESTERN DIVISION

Case 3:18-cv HNJ Document 1 Filed 03/06/18 Page 1 of 14 UNITED STATES DISTRICT COURT FOR THE NORTHERN DISTRICT OF ALABAMA NORTHWESTERN DIVISION Case 3:18-cv-00357-HNJ Document 1 Filed 03/06/18 Page 1 of 14 FILED 2018 Mar-06 PM 03:55 U.S. DISTRICT COURT N.D. OF ALABAMA UNITED STATES DISTRICT COURT FOR THE NORTHERN DISTRICT OF ALABAMA NORTHWESTERN

More information

NetTest A European Solution from Austria for measuring Broadband Quality SERENTSCHY.COM ADVISORY SERVICES GMBH

NetTest A European Solution from Austria for measuring Broadband Quality SERENTSCHY.COM ADVISORY SERVICES GMBH NetTest A European Solution from Austria for measuring Broadband Quality NetTest - Background Ø 2011, the Austrian Telecom Regulatory Authority RTR developed a new concept for measuring broadband quality

More information

VHCoin WHITE PAPER. An Ethereum-based decentralized platform, an electronic encryption currency build to lead the fourth industrial revolution.

VHCoin WHITE PAPER. An Ethereum-based decentralized platform, an electronic encryption currency build to lead the fourth industrial revolution. WHITE PAPER VHCoin An Ethereum-based decentralized platform, an electronic encryption currency build to lead the fourth industrial revolution. 2017 2018 Built on an enormously powerful shared global infrastructure

More information

Trump Executive Order Travel Ban. CUNY Citizenship Now! Graduate Center March 16, 2017

Trump Executive Order Travel Ban. CUNY Citizenship Now! Graduate Center March 16, 2017 Trump Executive Order Travel Ban CUNY Citizenship Now! Graduate Center March 16, 2017 March 6, 2017 Executive Order President Trump issued Executive Order titled Protecting the Nation from Foreign Terrorist

More information

valli ravindran th St, NW, #204, Washington, DC (202) /

valli ravindran th St, NW, #204, Washington, DC (202) / valli ravindran 1133 14th St, NW, #204, Washington, DC 20005 (202)- 549-8007 mailto:vravindran@gmail.com / www.freshsample.com passion Award winning design leader, thrives on challenge by incorporating

More information

Tackling Electrical System Efficiency, Safety and Reliability for pharmaceutical plants

Tackling Electrical System Efficiency, Safety and Reliability for pharmaceutical plants Tackling Electrical System Efficiency, Safety and Reliability for pharmaceutical plants. MSD Rathdrum Site History 1961 Loftus Bryan Chemicals Ltd 1964 P1 Production Plant 1975 P2, QC / R&D & Pilot Plant

More information

Election Campaigner Through Android Application

Election Campaigner Through Android Application Reviewed Paper Volume 2 Issue 8 April 2015 International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 Election Campaigner Through Android Application Paper ID IJIFR/ V2/ E8/ 070

More information

THANKFUL TREE THANKFUL TREE

THANKFUL TREE THANKFUL TREE THANKFUL TREE It s easy to make a Thankful Tree for your home! Grab some construction paper, markers, and tape next time you re at the store, and you re ready to go. Decide what wall is going to be your

More information

Note concerning the Patentability of Computer-Related Inventions

Note concerning the Patentability of Computer-Related Inventions PATENTS Note concerning the Patentability of Computer-Related Inventions INTRODUCTION I.THE MAIN PROVISIONS OF THE EUROPEAN CONVENTION II. APPLICATION OF THESE PROVISIONS AND MAINSTREAM CASELAW OF THE

More information

REPORT ON THE MACE CONGRESS 2015 COMPILED BY THE UNIZULU COMMUNICATIONS AND MARKETING DIVISION

REPORT ON THE MACE CONGRESS 2015 COMPILED BY THE UNIZULU COMMUNICATIONS AND MARKETING DIVISION REPORT ON THE MACE CONGRESS 2015 COMPILED BY THE UNIZULU COMMUNICATIONS AND MARKETING DIVISION INTRODUCTION The University of Zululand served as hosts of the 2015 MACE Congress. The staff at the University

More information

Exploring QR Factorization on GPU for Quantum Monte Carlo Simulation

Exploring QR Factorization on GPU for Quantum Monte Carlo Simulation Exploring QR Factorization on GPU for Quantum Monte Carlo Simulation Tyler McDaniel Ming Wong Mentors: Ed D Azevedo, Ying Wai Li, Kwai Wong Quantum Monte Carlo Simulation Slater Determinant for N-electrons

More information

OC ACM Executive Committee June 2018 Meeting Agenda and Notes

OC ACM Executive Committee June 2018 Meeting Agenda and Notes OC ACM Executive Committee June 2018 Meeting Agenda and Notes Introductions Review and approve prior meeting minutes Treasurer's Report 2018 Program Meeting Speakers July 18 Program meeting Status Reports

More information

Liveness: The Readers / Writers Problem

Liveness: The Readers / Writers Problem Liveness: The Readers / Writers Problem Admin stuff: Minute paper for concurrency revision lecture Please take one, fill out in 1st 5min & return to box at front by end of lecture Labs week 4 review: event

More information

2008 Patently-O Patent Law Journal

2008 Patently-O Patent Law Journal 2008 Patently-O Patent Law Journal Paul Cole 1 Patentability of Computer Software As Such The Court of Appeal decision in Symbian obliges the UK Patent Office to take a broader view of what is patentable.

More information

Google App Engine 8/10/17. CS Cloud Compu5ng Systems--Summer II 2017

Google App Engine 8/10/17. CS Cloud Compu5ng Systems--Summer II 2017 Google App Engine CS 6030--Cloud Compu5ng Systems--Summer II 2017 WESTERN MICHIGAN UNIVERSITY Professor: Dr. AJAY K. GUPTA SubmiPed by: JAPINDER PAL SINGH GHOTRA Contents Ø Introduc/on Ø Key Features Ø

More information

Voting Criteria April

Voting Criteria April Voting Criteria 21-301 2018 30 April 1 Evaluating voting methods In the last session, we learned about different voting methods. In this session, we will focus on the criteria we use to evaluate whether

More information

The CIA World Factbook 2016 By Central Intelligence Agency READ ONLINE

The CIA World Factbook 2016 By Central Intelligence Agency READ ONLINE The CIA World Factbook 2016 By Central Intelligence Agency READ ONLINE Register Cia World Factbook 2016 - aatadaal.store - Browse and Read Register Cia World Factbook 2016 Register Cia World Factbook 2016

More information

How We Paid Our Student Loans [Kindle Edition] By Andrew Wood READ ONLINE

How We Paid Our Student Loans [Kindle Edition] By Andrew Wood READ ONLINE How We Paid Our Student Loans [Kindle Edition] By Andrew Wood READ ONLINE 1 Like our page. 2 Share. Share. You May Like. Recommended Email: Country: Privacy: We never share your email. Hot Topics Iran.

More information

US MOBILE NEWS SEEKING TRENDS. Based on October September 2015 data. Excerpted from a full findings report delivered November 2015.

US MOBILE NEWS SEEKING TRENDS. Based on October September 2015 data. Excerpted from a full findings report delivered November 2015. US MOBILE NEWS SEEKING TRENDS Based on October 2013- September 2015 data. Excerpted from a full findings report delivered November 2015. BACKGROUND Knight Foundation commissioned Nielsen to delve into

More information

MINUTES WASHINGTON COUNTY BOARD OF COMMISSIONERS APRIL 28, 2015

MINUTES WASHINGTON COUNTY BOARD OF COMMISSIONERS APRIL 28, 2015 MINUTES WASHINGTON COUNTY BOARD OF COMMISSIONERS APRIL 28, 2015 CONVENED: 6:31 p.m. BOARD OF COMMISSIONERS: Chair Andy Duyck Commissioner Dick Schouten Commissioner Greg Malinowski Commissioner Bob Terry

More information

Norfolk-Google Fiber to the Home

Norfolk-Google Fiber to the Home Norfolk-Google Fiber to the Home 1. Do you support Google building this network in Norfolk? Yes 97.3% 71 No 2.7% 2 2. Do you have Internet access at home? Yes 98.6% 72 No 1.4% 1 3. What type of Internet

More information