LobbyView: Firm-level Lobbying & Congressional Bills Database

Size: px
Start display at page:

Download "LobbyView: Firm-level Lobbying & Congressional Bills Database"

Transcription

1 LobbyView: Firm-level Lobbying & Congressional Bills Database In Song Kim August 30, 2018 Abstract A vast literature demonstrates the significance for policymaking of lobbying by special interest groups. Yet, empirical studies of political representation have been limited by the difficulty of observing a direct connection between politicians and interest groups. This article introduces LobbyView, a comprehensive lobbying database that is based on the universe of lobbying reports filed under the Lobbying Disclosure Act of LobbyView bridges two distinct observable political behaviors with regard to congressional bills: (1) sponsorship by politicians, and (2) reported lobbying by interest groups. It also allows researchers to identify political actors and their lobbying activities based on standardized firm- and industry-level identifiers to facilitate systemic research on lobbying and merging with external datasets. Finally, we develop an API (Application Programming Interface) that enables researchers to bulk download the massive amount of unstructured data in standard formats so that they can conduct further analyses using preferred statistical software. Financial support from the National Science Foundation is acknowledged (SES and SES ). Associate Professor, Department of Political Science, Massachusetts Institute of Technology, Cambridge, MA, insong@mit.edu, URL:

2 1 Introduction This document currently contains only some technical details of the database. We will soon update this paper to provide a full description of the methods used for constructing the database. Specifically, we will show 1) how we disambiguate interest group names using natural language processing (NLP) as well as collaborative filtering, 2) how the complex relational structure is stored using PostgreSQL and Elasticsearch, and 3) the scalability of our methods for bill number and bill title matching described in Section 2. Moreover, we will conduct several descriptive and statistical analyses to demonstrate the scope and quality of the lobbying database. Until then, we refer readers to the following two papers for an introduction to LobbyView. References Kim, In Song Political Cleavages within Industry: Firm-level Lobbying for Trade Liberalization. American Political Science Review 111 (1): Kim, In Song, and Dmitriy Kunisky Mapping Political Communities: A Statistical Analysis of Lobbying Networks in Legislative Politics. Working paper available at insong/www/pdf/network.pdf. 2 Identifying Bills and Missing Congress Numbers Identifying congressional bills in lobbying reports is difficult because bill numbers are repeated across Congresses, and often do not appear directly annotated with Congress numbers in lobbing reports. Using the report filing year to guess the Congress often leads to erroneous matches, because reports filed at the beginning of a new Congress tend to include disclosures of lobbying activities from the previous year (and therefore, if a new Congress has begun recently, from the previous Congress as well). For example, consider the following lobbying report filed by Google, Inc. in It reads: Monitor legislation regarding online privacy including Safe Data Act (H.R. 2577, S. 1207) and Do not track proposals (H.R. 654). Monitor any Congressional or Administration efforts to impose privacy laws on search engines. Monitor Spectrum acts (S. 911, H.R. 2482). Figure 1: First Quarter Report by Google, Inc. in 2013 A naive guess would be that the bill H.R refers to a bill from the 113th Congress, because the report was filed in However, it is clear from the report that this is a bill from the 112th Congress, the SAFE Data Act. We use the following strategies to mitigate this problem and correctly identify Congress session numbers under various circumstances. 1

3 1. Bill Number Search: We first identify bill numbers (e.g., H.R above) using regular expression search in the report text. In the above example in Figure 1, our algorithm would identify bill numbers H.R. 2577, S. 1207, H.R. 654, S. 911, and H.R Note that all of these bills are from the 112th Congress rather than the 113th. 2. Congress Identification: Given a bill number found in a specific issue text (a section of the lobbying report), we attempt to identify the most likely Congress to which that bill would belong using other text around the bill number. We consider a range of candidate Congresses extending backwards from the Congress containing the year that the lobbying report was filed. By default, we consider the three preceding Congresses; in the above example, therefore, we would consider the 113th, 112th, and 111th Congresses. We then retrieve the bills having the same number as the given bill from each of these Congresses (omitting the Congresses that do not have a bill of that number), and compute a bag-of-words representation (after a tokenization and stopword filtering pipeline) of each of those bills, producing vectors v 1,..., v n representing the n candidate bills. We also compute the same representation of the text around the mention of the bill number in the lobbying report, producing a vector w representing that text. We then choose the Congress number by maximizing the cosine similarity between the v i and w, choosing bill i with index given by i = argmax 1 i n v i w v i w. (1) If no bill having the same number exists in the entire range of Congresses we consider, we simply guess that the bill comes from the Congress of the year the lobbying report was filed. 3. Congress Propagation: If we successfully find a match for a Congress, it may be propagated to the other bills mentioned in the lobbying report, since, being scheduled on a quarterly basis, lobbying report will almost always only mention legislation from a single Congress. If different bills in a lobbying report disagree on the best-matching Congress, a majority vote may be taken, but this rarely occurs in practice. 4. Bill Title Search: Bills are sometimes only referred to by titles or alternate names. To account for this, we clean and tokenize the specific issue sections of the lobbying report, and perform a text matching operation against a table of bill titles. For instance, this operation would identify Safe Data Act in our previous example, even if the bill number H.R were not mentioned. 5. Bill Range Expansion: It is also common for bills with nearby numbers to be related, and for lobbying reports to refer to ranges of bills when lobbying all of them at once. For 2

4 instance, a lobbying report filed by Mattel, Inc. in 2002 contains the following text: H.R.3009, Trade Act of Certain miscellaneous tariff bills to suspend the rates of duty on certain toy-related articles (H.R ; S ). WTO market access negotiations for non-agricultural products Port and border security measures Figure 2: Midyear Report by Mattel, Inc. in 2002 Therefore, if we find two bill numbers that are close (by default, we take this to mean that they share the same prefix and their numbers differ by at most 10), then we consider all other bills with numbers in between as also being lobbied in the same report. For instance, the pattern H.R in the excerpt shown in Figure 2 would be expanded into bills H.R. 4182, H.R. 4183, H.R. 4184, H.R. 4185, and H.R. 4186, all of which we would consider lobbied on by Mattel, Inc. 3 Technical Details This document concerns the code in the /trade/code/database directory of our repository, which sets up and provides access to a system of databases (running on SQLite and the Whoosh text indexing library) that store relationships between bills, their lobbiers, and various other related pieces of data. 3.1 Dependencies The table below is a summary of the packages on which the database depends, along with a short summary of the functionalities that they provide (further information and documentation can be easily found on their PyPI (Python Package Index) pages). The packages are roughly grouped by their function (database, parsing, etc). For the purposes of actual deployment, the file that manages these packages is database/requirements. 3

5 Package Description SQLAlchemy Basic Python bindings and model representations for SQL-type databases. Elixir Whoosh BeautifulSoup nltk path.py python-dateutil Higher-level abstractions for dealing with SQL-type databases, extending the functionality that SQLAlchemy makes available. A library for creating full-text index databases that are searchable with reasonable efficiency (if in the future better efficiency here is needed, there are non-python packages that can do a better job). SQL is not good, generally speaking, for full-text search, hence the necessity of this for the bill CRS summaries and lobbying report specific issue texts. Convenient library for parsing XML and HTML data into Python objects, although when speed becomes an issue there are faster but less convenient (and more code-verbose) alternatives, such as xml.etree in the core Python library. The natural language toolkit for Python, providing tools for tokenizing and statistically analyzing English-language texts. Convenience tools to make dealing with the filesystem easier from Python. Convenience tools for dealing with datetimes and time ranges. Before going any further, you will need to install all of these packages, which can be conveniently done through the REQUIREMENTS file, by running the following command in the shell (you will need the pip utility for Python package management): > pip install -r REQUIREMENTS Also, there are a few subpackages to install for the nltk package. In a Python interpreter, run the following: >>> import nltk >>> nltk.download() That will open up an interface for downloading extras/packages for nltk. Then, you should go into the Corpora tab and install the packages stopwords and wordnet. If no errors arise during this installation procedure, it is safe to proceed to the next steps. 4

6 4 Getting Started 4.1 Configuration All of the necessary configuration for the database system can be done by modifying the variables in general.py. The variables are listed below along with the effect that they have on the database creation process. Realistically speaking, to get things working locally you should just change DATA DIR to something that is not Della-specific. Everything else should be (more or less) good to go, assuming no large repository reorganizations have happened. Variable TEST MODE CONGRESSES OUTPUT DIR ROOT DIR DATA DIR LOBBY REPO DIR CLIENT NAME MATCHES FILE Description Intended as a testing mode for bill detection and related algorithms, but this is not yet complete, so avoid setting this to True before taking a look at the testing code. The range of congresses that all processes will be concerned with (note that in Python, the range(x, y) syntax gives the numbers x, x + 1,..., y 1, not including y). The directory for generic outputs of analytics scripts. The database directory (these directories are given relative to the trade/code directory). The directory used for storing databases, which can be totally separate from the code directories. For instance, on Della it is useful to put this under /tigress since it requires lots of storage space. The location of the lobby repository (parallel to the trade repository in the current setup). The file containing the client name filtering matches (i.e. the output of Josh s script). 4.2 Initialization Installing the databases is (or should be) very easy, just go to the trade/code directory and run the command sudo python -m database.setup. This will probably take a very long time to run from scratch possibly up to several days. 5

7 5 Working with the Database 5.1 Starting and Ending Sessions In order to get started with a database session, navigate to the trade/code directory, and run the following sequence of commands in the Python interpreter: >>> import database.general >>> from database.bills.models import * >>> from database.lda.models import * >>> from database.firms.models import * >>> database.general.init_db() When finished, the following command will safely close the database without accidentally permanently writing any changes that may have been made to the data: >>> database.general.close_db(write=false) If you are in fact correcting errors in the database or otherwise performing operations that cause changes that you would like permanently registered, then just change the above to instead pass the argument write=true. 5.2 Basic Database Objects and Relationships To see what objects are stored in the various databases, look at the models.py files in the directories bills, lda, and firms (the imports described above are what give you access to all of these classes). Each class has some fields, where are available to access on any object of the class. The system is best clarified with an example: consider the case of bill objects, which are represented by the Bill class. This class, like any other, has an id field that is its primary key, i.e. the value of this field uniquely identifies a Bill object. For bills, the id is a string of the form 110 HR7311, where 110 is the number of the congress to which this bill belongs, and HR7311 is the bill number. To retrieve a particular bill by its id, use the following snippet: >>> b = Bill.query.get( 110_HR7311 ) Once this command completes, the object b will have all of the fields listed under Bill in the file bills/models.py. So, for instance, we can get the date that the bill was introduced with b.introduced, get its CRS summary text with b.summary, and so forth. Any field inside Bill that is initialized as Field(ABC) where ABC is some text (example possible values are Integer for integer fields, Unicode(L) for a string field of maximum length L, or DateTime for a date/time field) is accessed in this straightforward way. 6

8 Other fields are registered as ManyToMany(ABC), ManyToOne(ABC), or OneToMany(ABC), where ABC is now the name of some other model. These fields contain references to one or more instances of some other model. For instance, in Bill, the field definition titles = OneToMany( BillTitle ) indicates that each bill has one or more (hence Many) associated objects of class BillTitle, which are its titles. In BillTitle, we see the field giving the reverse relation, bill = ManyToOne( Bill ) which indicates that many BillTitle objects can share the same Bill object (for some intuition, think of a OneToMany field as a my children relation, and of a ManyToOne field as a my parent relation). Thus, if b is a Bill object, then b.titles will give an iterable (effectively a Python list, for all basic purposes) containing all the titles of b. Conversely, if t is a BillTitle object, then t.bill is the Bill object to which the title belongs. The last possibility of these more complex relationships is a ManyToMany field, which as its name suggests creates a generic relation between two object types (where neither object plays the child or parent role). For example, we see in Bill, terms = ManyToMany( Term ) and in Term, bills = ManyToMany( Bill ) which means that for a bill b, looking at b.terms gives all of the terms that that bill is classified under, and for a term t, looking at t.bills gives all bills under that term. 5.3 Filtering Operations The more sophisticated and interesting sorts of queries that are possible are those that involve not just fetching particular bills or other objects and examining their relationships, but also involve filtering sets of objects by useful criteria. Example: filter by columns of each Model >>> reports = LobbyingReport.query.\ filter_by(year=2011) 7

9 returns all lobbying reports filed in 2011 Example: filter by membership in at least one ManyToMany related table >>> trade = LobbyingReport.query.\ filter(lobbyingreport.issues.any(lobbyingissue.code.\ in_([ TRADE (DOMESTIC/FOREIGN) ]))) >>> trade.count() returns all lobbying reports that at least has TRADE (DOMESTIC/FOREIGN) as one of issues lobbied. 5.4 Full-Text Indices Two types of data items are duplicated in a separate full-text index database to facilitate more efficient searching: the CRS summary text of each bill, and the text of each lobbying report specific issue. The code concerning the creation and access of these indices is found in the files bills/ix utils.py and lda/ix utils.py, respectively. The primary useful methods, in turn, for accessing these indices are summary search and issue search, in the above two files respectively. These both take one required argument, called queries list, which is a list of the queries (as strings) to make to the full-text index. They also have two optional boolean arguments, return objects and make phrase, which default to False. Setting return objects to True will return a collection of Bill or LobbyingSpecificIssue Python objects rather than just their id values. Setting make phrase to True will make each query into a phrase that is searched for a single unit, rather than separately searching for each word (as in the difference when searching Google for red cat running versus red cat running in quotes). In lda/ix utils.py, there is an additional method exposed for using the index that is called get bill specific issues by titles, which is a simple special case of issue search that searches for all of the titles of a particular bill in the specific issues, used in the database construction process to find the bills mentioned by title in specific issues. A simple example of using these indices to find bills pertaining to a particular textuallydistinguished subject (trade-related bills in our case) can be found in analytics/lobbied bills data.py. We define a list of queries on our bills in the following way: from database.analytics.bill_utils import * bill_queries = [ u trade barrier, 8

10 u tariff barrier,... u uruguay round, u harmonized tariff schedule ] Then, to get the id s of the bills that contain one of these phrases, we do this: query_bill_ids = database.bills.ix_utils.summary_search( bill_queries, make_phrase=true, return_objects=false ) This returns a list of id s as strings. If we wanted the corresponding Bill objects instead, we could instead pass the argument return objects=true. Note that here it is important that we use make phrase=true, since otherwise the query uruguay round would match all bills that contain both the word uruguay and the word round, not necessarily together, which is not what we want. A simple example of using these indices to find lobbying reports that contain a particular phrase, from database.analytics.lda_utils import * reports = lda_issue_search( [ Free trade agreements with South Korea ] ) 5.5 Calculating Herfindahl Indices for Industry Clients Belong to We provide a tool to measure the size of each firm in relation to the industry. Herfindahl index measures the levels of competition among firms (clients) within the same industry herfindahl.py (in lobby/code/hfcc) Given lobbying database containing firm, LDA, and bill information, 1. Pulls firm-level financial and LDA report information from lobbying database 2. Computes Herfindahl indices 3. Outputs rows with firm information (sorted by industry as identified by NAICS2), industry Herfindahl index, and lobbying information for firm. 9

11 To run: From lobby/code, type python -m hfcc.herfindahl No additional parameters needed herfindadd.py (in lobby/code/hfcc) Given output (csv) files generated by herfindahl.py, 1. Adds indicator showing whether firm lobbied on at least one trade issue 2. Adds firm-level compustat financial data 3. Generates (in addition) new csv files with industry-level information in rows To run: Ensure output files from herfindahl.py are in lobby/code From lobby/code, type python -m hfcc.herfindadd On-screen documentation will detail additional parameters that are needed. Example python -m hfcc.herfindadd namerica naics -s e 2011 runs the script for the North America files, using NAICS (rather than SIC), starting from 1996 and ending in 2011 (herfindahl.py generates one file per year per classification system (NAICS / SIC).) 10

Congress Lobbying Database: Documentation and Usage

Congress Lobbying Database: Documentation and Usage Congress Lobbying Database: Documentation and Usage In Song Kim February 26, 2016 1 Introduction This document concerns the code in the /trade/code/database directory of our repository, which sets up and

More information

ForeScout Extended Module for McAfee epolicy Orchestrator

ForeScout Extended Module for McAfee epolicy Orchestrator ForeScout Extended Module for McAfee epolicy Orchestrator Version 3.1 Table of Contents About McAfee epolicy Orchestrator (epo) Integration... 4 Use Cases... 4 Additional McAfee epo Documentation... 4

More information

Please reach out to for a complete list of our GET::search method conditions. 3

Please reach out to for a complete list of our GET::search method conditions. 3 Appendix 2 Technical and Methodological Details Abstract The bulk of the work described below can be neatly divided into two sequential phases: scraping and matching. The scraping phase includes all of

More information

General Framework of Electronic Voting and Implementation thereof at National Elections in Estonia

General Framework of Electronic Voting and Implementation thereof at National Elections in Estonia State Electoral Office of Estonia General Framework of Electronic Voting and Implementation thereof at National Elections in Estonia Document: IVXV-ÜK-1.0 Date: 20 June 2017 Tallinn 2017 Annotation This

More information

One View Watchlists Implementation Guide Release 9.2

One View Watchlists Implementation Guide Release 9.2 [1]JD Edwards EnterpriseOne Applications One View Watchlists Implementation Guide Release 9.2 E63996-03 April 2017 Describes One View Watchlists and discusses how to add and modify One View Watchlists.

More information

Learning and Visualizing Political Issues from Voting Records Erik Goldman, Evan Cox, Mikhail Kerzhner. Abstract

Learning and Visualizing Political Issues from Voting Records Erik Goldman, Evan Cox, Mikhail Kerzhner. Abstract Learning and Visualizing Political Issues from Voting Records Erik Goldman, Evan Cox, Mikhail Kerzhner Abstract For our project, we analyze data from US Congress voting records, a dataset that consists

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

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

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

Python Congress Documentation

Python Congress Documentation Python Congress Documentation Release 0.3.2 Chris Amico Mar 04, 2018 Contents: 1 Install 3 2 Usage 5 2.1 API.................................................... 6 3 Indices and tables 9 Python Module

More information

Lobbying Registration and Disclosure: The Role of the Clerk of the House and the Secretary of the Senate

Lobbying Registration and Disclosure: The Role of the Clerk of the House and the Secretary of the Senate Lobbying Registration and Disclosure: The Role of the Clerk of the House and the Secretary of the Senate Jacob R. Straus Specialist on the Congress April 19, 2017 Congressional Research Service 7-5700

More information

SCHOOLMASTER. Appointment Scheduling. Student Information Systems. Revised - August Schoolmaster is SIF Certified

SCHOOLMASTER. Appointment Scheduling. Student Information Systems. Revised - August Schoolmaster is SIF Certified SCHOOLMASTER Student Information Systems Appointment Scheduling Revised - August 2005 Schoolmaster is SIF Certified Schoolmaster uses ctree Plus from FairCom 2005 Printed Documentation Revised August 2005

More information

JD Edwards EnterpriseOne Applications

JD Edwards EnterpriseOne Applications JD Edwards EnterpriseOne Applications One View Watchlists Implementation Guide Release 9.1 E39041-02 December 2013 JD Edwards EnterpriseOne Applications One View Watchlists Implementation Guide, Release

More information

LexisNexis Information Professional

LexisNexis Information Professional LexisNexis Information Professional 2013 Update Product updates and research strategies from the LexisNexis Librarian Relations Group TABLE OF CONTENTS November/ December 2013 Lexis Diligence: now reach

More information

U.S. Congressional Documents

U.S. Congressional Documents Help & Support U.S. Congressional Documents Getting Started Quick Reference Guide Select the U.S. Congressional Documents from the welcome page to access all content in the database. Select a browse option

More information

A New Computer Science Publishing Model

A New Computer Science Publishing Model A New Computer Science Publishing Model Functional Specifications and Other Recommendations Version 2.1 Shirley Zhao shirley.zhao@cims.nyu.edu Professor Yann LeCun Department of Computer Science Courant

More information

Plan For the Week. Solve problems by programming in Python. Compsci 101 Way-of-life. Vocabulary and Concepts

Plan For the Week. Solve problems by programming in Python. Compsci 101 Way-of-life. Vocabulary and Concepts Plan For the Week Solve problems by programming in Python Ø Like to do "real-world" problems, but we're very new to the language Ø Learn the syntax and semantics of simple Python programs Compsci 101 Way-of-life

More information

Creating and Managing Clauses. Selectica, Inc. Selectica Contract Performance Management System

Creating and Managing Clauses. Selectica, Inc. Selectica Contract Performance Management System Selectica, Inc. Selectica Contract Performance Management System Copyright 2006 Selectica, Inc. Copyright 2007 Selectica, Inc. 1740 Technology Drive, Suite 450 San Jose, CA 95110 http://www.selectica.com

More information

Appendix 2. [Draft] Disclosure Review Document

Appendix 2. [Draft] Disclosure Review Document Appendix 2 [Draft] Disclosure Review Document Explanatory Note 1. The Disclosure Review Document ( DRD ) is intended to: (A) (B) (C) facilitate the exchange of information and provide a framework for discussions

More information

Estonian National Electoral Committee. E-Voting System. General Overview

Estonian National Electoral Committee. E-Voting System. General Overview Estonian National Electoral Committee E-Voting System General Overview Tallinn 2005-2010 Annotation This paper gives an overview of the technical and organisational aspects of the Estonian e-voting system.

More information

Fairsail Country Pack: U.S.A.

Fairsail Country Pack: U.S.A. Version 1.2 FS-CP-XXX-UG-201503--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced, disclosed, or used in whole or in part

More information

SPECIAL INSPECTOR GENERAL FOR AFGHANISTAN RECONSTRUCTION CHIEF FOIA OFFICER REPORT FISCAL YEAR 2010

SPECIAL INSPECTOR GENERAL FOR AFGHANISTAN RECONSTRUCTION CHIEF FOIA OFFICER REPORT FISCAL YEAR 2010 SPECIAL INSPECTOR GENERAL FOR AFGHANISTAN RECONSTRUCTION CHIEF FOIA OFFICER REPORT FISCAL YEAR 2010 Page 1 I. Steps Taken to Apply the Presumption of Openness The guiding principle underlying the President's

More information

Bankruptcy Practice Center

Bankruptcy Practice Center Bankruptcy Practice Center Take your bankruptcy practice to the next level with Bloomberg Law s unique combination of news, analysis, comprehensive secondary sources, Practical Guidance, and business tools

More information

ALBERTA OFFICE OF THE INFORMATION AND PRIVACY COMMISSIONER ORDER F December 8, 2016 UNIVERSITY OF LETHBRIDGE. Case File Number

ALBERTA OFFICE OF THE INFORMATION AND PRIVACY COMMISSIONER ORDER F December 8, 2016 UNIVERSITY OF LETHBRIDGE. Case File Number ALBERTA OFFICE OF THE INFORMATION AND PRIVACY COMMISSIONER ORDER F2016-60 December 8, 2016 UNIVERSITY OF LETHBRIDGE Case File Number 000146 Office URL: www.oipc.ab.ca Summary: The Applicant made an access

More information

DATA ANALYSIS USING SETUPS AND SPSS: AMERICAN VOTING BEHAVIOR IN PRESIDENTIAL ELECTIONS

DATA ANALYSIS USING SETUPS AND SPSS: AMERICAN VOTING BEHAVIOR IN PRESIDENTIAL ELECTIONS Poli 300 Handout B N. R. Miller DATA ANALYSIS USING SETUPS AND SPSS: AMERICAN VOTING BEHAVIOR IN IDENTIAL ELECTIONS 1972-2004 The original SETUPS: AMERICAN VOTING BEHAVIOR IN IDENTIAL ELECTIONS 1972-1992

More information

Installation Guide: cpanel Plugin

Installation Guide: cpanel Plugin Installation Guide: cpanel Plugin Installation using an SSH client such as Terminal or Putty partners@cloudflare.com partnersupport@cloudflare.com www.cloudflare.com Installation using an SSH client such

More information

Chapter 7 Case Research

Chapter 7 Case Research 1 Chapter 7 Case Research Table of Contents Chapter 7 Case Research... 1 A. Introduction... 2 B. Case Publications... 2 1. Slip Opinions... 2 2. Advance Sheets... 2 3. Case Reporters... 2 4. Official and

More information

Care Management v2012 Enhancements. Lois Gillette Vice President, Care Management

Care Management v2012 Enhancements. Lois Gillette Vice President, Care Management Care Management v2012 Enhancements Lois Gillette Vice President, Care Management Comprehensive Overview Care Management v2012 Please note that this presentation includes slides from the General Session

More information

The Digital Appellate Court Introduction to the edca Electronic Portal

The Digital Appellate Court Introduction to the edca Electronic Portal The Digital Appellate Court Introduction to the edca Electronic Portal First District Court of Appeal - State of Florida Table of Contents Introduction... 2 External District Court of Appeal - edca...

More information

Integration Guide for ElectionsOnline and netforum

Integration Guide for ElectionsOnline and netforum Integration Guide for ElectionsOnline and netforum Integration Guide for ElectionsOnline and netforum 1 Introduction 2 Set up an election in netforum s iweb 2 Viewing elections 4 Editing elections 4 Managing

More information

The Pupitre System: A desk news system for the Parliamentary Meeting rooms

The Pupitre System: A desk news system for the Parliamentary Meeting rooms The Pupitre System: A desk news system for the Parliamentary Meeting rooms By Teddy Alfaro and Luis Armando González talfaro@bcn.cl lgonzalez@bcn.cl Library of Congress, Chile Abstract The Pupitre System

More information

Tie Breaking in STV. 1 Introduction. 3 The special case of ties with the Meek algorithm. 2 Ties in practice

Tie Breaking in STV. 1 Introduction. 3 The special case of ties with the Meek algorithm. 2 Ties in practice Tie Breaking in STV 1 Introduction B. A. Wichmann Brian.Wichmann@bcs.org.uk Given any specific counting rule, it is necessary to introduce some words to cover the situation in which a tie occurs. However,

More information

Bank Reconciliation Script

Bank Reconciliation Script Bank Reconciliation Script Clip Link: http://www.eshbel.com/movie_search/bank_reconciliation_clip.htm. instructions Note: Yellow highlights indicate action Introduction (00:00-00:36) In this clip, we'll

More information

Tariffs and Tariff Comparison

Tariffs and Tariff Comparison Tariffs and Tariff Comparison Imagicle Billing is bundled with the definition of the call costs of many well known telephony providers. Imagicle keeps the costs tables updated year by year, but probably

More information

User Guide. News. Extension Version User Guide Version Magento Editions Compatibility

User Guide. News. Extension Version User Guide Version Magento Editions Compatibility User Guide News Extension Version - 1.0.0 User Guide Version - 1.0.0 Magento Editions Compatibility Community - 2.0.0 to 2.0.13, 2.1.0 to 2.1.7 Extension Page : http://www.magearray.com/news-extension-for-magento-2.html

More information

Hoboken Public Schools. PLTW Introduction to Computer Science Curriculum

Hoboken Public Schools. PLTW Introduction to Computer Science Curriculum Hoboken Public Schools PLTW Introduction to Computer Science Curriculum Introduction to Computer Science Curriculum HOBOKEN PUBLIC SCHOOLS Course Description Introduction to Computer Science Design (ICS)

More information

Inviscid TotalABA Help

Inviscid TotalABA Help Inviscid TotalABA Help Contents Summary... 2 Accessing the Application... 3 Initial Setup... 3 Customization... 4 Sidebar... 4 Support... 4 Settings... 4 Appointments... 5 Attendees... 7 Recurring Appointments...

More information

KENTUCKY. Jim Swain, Chief Information Officer Legislative Research Commission. Monday, August 6, 2012

KENTUCKY. Jim Swain, Chief Information Officer Legislative Research Commission. Monday, August 6, 2012 KENTUCKY Jim Swain, Chief Information Officer Legislative Research Commission Monday, August 6, 2012 In Senate Switched from Projector & Screen to Large Screen TV Monitors Implemented New Programs for:

More information

Comparison of the Psychometric Properties of Several Computer-Based Test Designs for. Credentialing Exams

Comparison of the Psychometric Properties of Several Computer-Based Test Designs for. Credentialing Exams CBT DESIGNS FOR CREDENTIALING 1 Running head: CBT DESIGNS FOR CREDENTIALING Comparison of the Psychometric Properties of Several Computer-Based Test Designs for Credentialing Exams Michael Jodoin, April

More information

GST 104: Cartographic Design Lab 6: Countries with Refugees and Internally Displaced Persons Over 1 Million Map Design

GST 104: Cartographic Design Lab 6: Countries with Refugees and Internally Displaced Persons Over 1 Million Map Design GST 104: Cartographic Design Lab 6: Countries with Refugees and Internally Displaced Persons Over 1 Million Map Design Objective Utilize QGIS and Inkscape to Design a Chorolpleth Map Showing Refugees and

More information

City of Toronto Election Services Internet Voting for Persons with Disabilities Demonstration Script December 2013

City of Toronto Election Services Internet Voting for Persons with Disabilities Demonstration Script December 2013 City of Toronto Election Services Internet Voting for Persons with Disabilities Demonstration Script December 2013 Demonstration Time: Scheduled Breaks: Demonstration Format: 9:00 AM 4:00 PM 10:15 AM 10:30

More information

Relying Party Agreement. 1. Definitions

Relying Party Agreement. 1. Definitions Relying Party Agreement You must read this Google Trust Services, LLC ( Google ) Relying Party Agreement ( Agreement ) before accessing, using, or relying on any digital certificates or related certificate

More information

Global Conditions (applies to all components):

Global Conditions (applies to all components): Conditions for Use ES&S The Testing Board would also recommend the following conditions for use of the voting system. These conditions are required to be in place should the Secretary approve for certification

More information

Results of L Année philologique online OpenURL Quality Investigation

Results of L Année philologique online OpenURL Quality Investigation Results of L Année philologique online OpenURL Quality Investigation Mellon Planning Grant Final Report February 2009 Adam Chandler Cornell University Note: This document is a subset of a report sent to

More information

Inventory Project: Identifying and Preserving Minnesota s Digital Legislative Record

Inventory Project: Identifying and Preserving Minnesota s Digital Legislative Record Preserving State Government Digital Information Minnesota Historical Society Inventory Project: Identifying and Preserving Minnesota s Digital Legislative Record Summary The Inventory Project is a joint

More information

E-Verify Solutions effective January 2015 page 1

E-Verify Solutions effective January 2015 page 1 page 1 Introduction Introduction The Employment Eligibility Verification (EEV) User Manual is the primary reference tool for ordering General Information Services, Inc. s EEV product, our web interface

More information

My Health Online 2017 Website Update Online Appointments User Guide

My Health Online 2017 Website Update Online Appointments User Guide My Health Online 2017 Website Update Online Appointments User Guide Version 1 15 June 2017 Vision The Bread Factory 1a Broughton Street London SW8 3QJ Registered No: 1788577 England www.visionhealth.co.uk

More information

ProQuest Legislative Insight Basic Research Guide May 2012 Thomas Cooper Library & Coleman Karesh Law Library University of South Carolina

ProQuest Legislative Insight Basic Research Guide May 2012 Thomas Cooper Library & Coleman Karesh Law Library University of South Carolina I. Working with a Retrieved Legislative History Because Legislative Insight focuses on the legislative history for a particular law, it is also helpful to understand what information Legislative Insight

More information

PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE

PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE PCGENESIS PAYROLL SYSTEM OPERATIONS GUIDE 1/22/2009 Section I: Special Functions [Topic 1: Pay Schedule Processing, V2.1] Revision History Date Version Description Author 1/22/2009 2.1 08.04.00 Corrected

More information

Abstract: Submitted on:

Abstract: Submitted on: Submitted on: 30.06.2015 Making information from the Diet available to the public: The history and development as well as current issues in enhancing access to parliamentary documentation Hiroyuki OKUYAMA

More information

101 Ready-to-Use Excel Macros. by Michael Alexander and John Walkenbach

101 Ready-to-Use Excel Macros. by Michael Alexander and John Walkenbach 101 Ready-to-Use Excel Macros by Michael Alexander and John Walkenbach 101 Ready-to-Use Excel Macros Published by John Wiley & Sons, Inc. 111 River Street Hoboken, NJ 07030-5774 www.wiley.com Copyright

More information

State of Minnesota Department of Public Safety Bureau of Criminal Apprehension

State of Minnesota Department of Public Safety Bureau of Criminal Apprehension State of Minnesota Department of Public Safety Bureau of Criminal Apprehension Statute Service User Interface Prepared By: Bureau of Criminal Apprehension Minnesota Justice Information Systems 1430 Maryland

More information

7/26/2007 Page 1 of 9 GENESIS ADMINISTRATION: SETTING UP GRADING COMMENTS

7/26/2007 Page 1 of 9 GENESIS ADMINISTRATION: SETTING UP GRADING COMMENTS GENESIS ADMINISTRATION: SETTING UP GRADING COMMENTS I. INTRODUCTION TO GRADING COMMENTS II. ADDING GRADING COMMENT CATEGORIES III. ADDING GRADING COMMENTS IV. DELETING A GRADING COMMENTS V. MODIFYING A

More information

STUDYING POLICY DYNAMICS

STUDYING POLICY DYNAMICS 2 STUDYING POLICY DYNAMICS FRANK R. BAUMGARTNER, BRYAN D. JONES, AND JOHN WILKERSON All of the chapters in this book have in common the use of a series of data sets that comprise the Policy Agendas Project.

More information

BMI for everyone. Compsci 6/101: PFTW. Accumulating a value. How to solve an APT. Review how APTs and Python work, run

BMI for everyone. Compsci 6/101: PFTW. Accumulating a value. How to solve an APT. Review how APTs and Python work, run Compsci 6/101: PFTW Review how APTs and Python work, run Ø Good, Bad, Ugly: getting better, avoid frustration, Ø How do you run/test APT code, other Python code BMI for everyone How do we get at the data

More information

Fairsail Payflow Cookbook for CSV Record Downloads

Fairsail Payflow Cookbook for CSV Record Downloads Fairsail Payflow Cookbook for CSV Record Downloads Version 10 FS-PF-CSV-CB-201410--R010.00 Fairsail 2014. All rights reserved. This document contains information proprietary to Fairsail and may not be

More information

Freedom of Information Act 2000 (Section 50) Decision Notice

Freedom of Information Act 2000 (Section 50) Decision Notice Freedom of Information Act 2000 (Section 50) Decision Notice 1 December 2008 Public Authority: Address: Ofsted (Office for Standards in Education) Alexandra House 33 Kingsway London WC2B 6SE Summary Following

More information

Guidelines Targeting Economic and Industrial Sectors Pertaining to the Act on the Protection of Personal Information. (Tentative Translation)

Guidelines Targeting Economic and Industrial Sectors Pertaining to the Act on the Protection of Personal Information. (Tentative Translation) Guidelines Targeting Economic and Industrial Sectors Pertaining to the Act on the Protection of Personal Information (Announcement No. 2 of October 9, 2009 by the Ministry of Health, Labour and Welfare

More information

301 Politics and Film RPOL POL30. Master Course Syllabus

301 Politics and Film RPOL POL30. Master Course Syllabus RPOL POL30 301 Politics and Film Master Course Syllabus Course Overview (QM Standards 1.2) This course is cross-listed with the RBA Today and is administered via the WVROCKS program and therefore is presented

More information

Oracle FLEXCUBE Bills User Manual Release Part No E

Oracle FLEXCUBE Bills User Manual Release Part No E Oracle FLEXCUBE Bills User Manual Release 4.5.0.0.0 Part No E52127-01 Bills User Manual Table of Contents (index) 1. Master Maintenance... 3 1.1. BIM04-Bill Parameters Maintenance*... 4 1.2. BIM02-Court

More information

Voting System Qualification Test Report Democracy Live, LiveBallot Version 1.9.1

Voting System Qualification Test Report Democracy Live, LiveBallot Version 1.9.1 Voting System Qualification Test Report Democracy Live, LiveBallot Version 1.9.1 May 2014 Florida Department of State R. A. Gray Building, Room 316 500 S. Bronough Street Tallahassee, FL 32399-0250 Table

More information

REPORT UNDER THE FREEDOM OF INFORMATION AND PROTECTION OF PRIVACY ACT CASE MANITOBA FINANCE - INSURANCE COUNCIL OF MANITOBA

REPORT UNDER THE FREEDOM OF INFORMATION AND PROTECTION OF PRIVACY ACT CASE MANITOBA FINANCE - INSURANCE COUNCIL OF MANITOBA REPORT UNDER THE FREEDOM OF INFORMATION AND PROTECTION OF PRIVACY ACT CASE 2018-0077 MANITOBA FINANCE - INSURANCE COUNCIL OF MANITOBA PRIVACY COMPLAINT: DISCLOSURE OF PERSONAL INFORMATION PROVISIONS CONSIDERED:

More information

Entity Linking Enityt Linking. Laura Dietz University of Massachusetts. Use cursor keys to flip through slides.

Entity Linking Enityt Linking. Laura Dietz University of Massachusetts. Use cursor keys to flip through slides. Entity Linking Enityt Linking Laura Dietz dietz@cs.umass.edu University of Massachusetts Use cursor keys to flip through slides. Problem: Entity Linking Query Entity NIL Given query mention in a source

More information

Honest Leadership and Open Government Act of 2007: The Role of the Clerk of the House and Secretary of the Senate

Honest Leadership and Open Government Act of 2007: The Role of the Clerk of the House and Secretary of the Senate Order Code RL34377 Honest Leadership and Open Government Act of 2007: The Role of the Clerk of the House and Secretary of the Senate Updated June 4, 2008 Jacob R. Straus Analyst on the Congress Government

More information

Clause Logic Service User Interface User Manual

Clause Logic Service User Interface User Manual Clause Logic Service User Interface User Manual Version 2.0 1 February 2018 Prepared by: Northrop Grumman 12900 Federal Systems Park Drive Fairfax, VA 22033 Under Contract Number: SP4701-15-D-0001, TO

More information

AGENCY: U.S. Copyright Office, Library of Congress. SUMMARY: The U.S. Copyright Office is amending its regulations for the recordation

AGENCY: U.S. Copyright Office, Library of Congress. SUMMARY: The U.S. Copyright Office is amending its regulations for the recordation This document is scheduled to be published in the Federal Register on 09/17/2014 and available online at http://federalregister.gov/a/2014-22233, and on FDsys.gov LIBRARY OF CONGRESS U.S. Copyright Office

More information

Improving Record-Linkage-Software for Survey-Data

Improving Record-Linkage-Software for Survey-Data Second conference of the European Survey Research Association, 25-29 June 2007 in Prague, Czech Republic Improving Record-Linkage-Software for Survey-Data Rainer Schnell, Tobias Bachteler, and Jörg Reiher

More information

TERANET CONNECT USER S GUIDE Version 1.4 August 2013

TERANET CONNECT USER S GUIDE Version 1.4 August 2013 TERANET CONNECT USER S GUIDE Version 1.4 August 2013 Table of Contents 1. Introduction... 1 2. Getting Started... 1 2.1 Configurable Setting in The Conveyancer... 2 3. Ordering a Parcel Register... 3 4.

More information

The Effectiveness of Receipt-Based Attacks on ThreeBallot

The Effectiveness of Receipt-Based Attacks on ThreeBallot The Effectiveness of Receipt-Based Attacks on ThreeBallot Kevin Henry, Douglas R. Stinson, Jiayuan Sui David R. Cheriton School of Computer Science University of Waterloo Waterloo, N, N2L 3G1, Canada {k2henry,

More information

ecourts Attorney User Guide

ecourts Attorney User Guide ecourts Attorney User Guide General Equity-Foreclosure May 2017 Version 2.0 Table of Contents How to Use Help... 3 Introduction... 6 HOME... 6 efiling Tab... 11 Upload Document - Case Initiation... 13

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

Introduction 2. Common Law 2. Common Law versus Legislation 5. How to Find and Understand Law 6. Legal Resources 8.

Introduction 2. Common Law 2. Common Law versus Legislation 5. How to Find and Understand Law 6. Legal Resources 8. Changing Your Name CHAPTER CONTENTS Introduction 2 Common Law 2 Common Law versus Legislation 5 How to Find and Understand Law 6 Legal Resources 8 Legal Notices 10 2016 Caxton Legal Centre Inc. queenslandlawhandbook.org.au

More information

Electronic Voting For Ghana, the Way Forward. (A Case Study in Ghana)

Electronic Voting For Ghana, the Way Forward. (A Case Study in Ghana) Electronic Voting For Ghana, the Way Forward. (A Case Study in Ghana) Ayannor Issaka Baba 1, Joseph Kobina Panford 2, James Ben Hayfron-Acquah 3 Kwame Nkrumah University of Science and Technology Department

More information

User s Guide and Codebook for the ANES 2016 Time Series Voter Validation Supplemental Data

User s Guide and Codebook for the ANES 2016 Time Series Voter Validation Supplemental Data User s Guide and Codebook for the ANES 2016 Time Series Voter Validation Supplemental Data Ted Enamorado Benjamin Fifield Kosuke Imai January 20, 2018 Ph.D. Candidate, Department of Politics, Princeton

More information

Studying Policy Dynamics. Frank R. Baumgartner, Bryan D. Jones, and John Wilkerson

Studying Policy Dynamics. Frank R. Baumgartner, Bryan D. Jones, and John Wilkerson 2 Studying Policy Dynamics Frank R. Baumgartner, Bryan D. Jones, and John Wilkerson All of the chapters in this book have in common the use of a series of datasets that comprise the Policy Agendas Project

More information

ACCESSING GOVERNMENT INFORMATION IN. British Columbia

ACCESSING GOVERNMENT INFORMATION IN. British Columbia ACCESSING GOVERNMENT INFORMATION IN British Columbia RESOURCES Freedom of Information and Protection of Privacy Act (FOIPPA) http://www.oipcbc.org/legislation/foi-act%20(2004).pdf British Columbia Information

More information

The Economics And Politics Of High Speed Rail Lessons From Experiences Abroad

The Economics And Politics Of High Speed Rail Lessons From Experiences Abroad The Economics And Politics Of High Speed Rail Lessons From Experiences Abroad We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Linearly Separable Data SVM: Simple Linear Separator hyperplane Which Simple Linear Separator? Classifier Margin Objective #1: Maximize Margin MARGIN MARGIN How s this look? MARGIN

More information

Case 4:14-cv SOH Document 30 Filed 11/24/14 Page 1 of 10 PageID #: 257

Case 4:14-cv SOH Document 30 Filed 11/24/14 Page 1 of 10 PageID #: 257 Case 4:14-cv-04074-SOH Document 30 Filed 11/24/14 Page 1 of 10 PageID #: 257 IN THE UNITED STATES DISTRICT COURT WESTERN DISTRICT OF ARKANSAS TEXARKANA DIVISION PAMELA GREEN PLAINTIFF v. Case No. 1:14-cv-04074

More information

Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section

Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section Objective(s) 1. To learn how to use 1D arrays to solve a problem in C. Problem A: Expected

More information

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets Objective: Analyze two data sets at the same time by combining them within Tableau. Learning Outcomes: Identify

More information

Management Overview. Introduction

Management Overview. Introduction Introduction Information is nothing without Control! Information under control? The electronic information explosion: Currently 1.5 billion document pages are created worldwide on a daily basis, this figure

More information

Maps, Hash Tables and Dictionaries

Maps, Hash Tables and Dictionaries Maps, Hash Tables and Dictionaries Chapter 9-1 - Outline Ø Maps Ø Hashing Ø Dictionaries Ø Ordered Maps & Dictionaries - 2 - Outline Ø Maps Ø Hashing Ø Dictionaries Ø Ordered Maps & Dictionaries - 3 -

More information

Testing the Waters: Working With CSS Data in Congressional Collections

Testing the Waters: Working With CSS Data in Congressional Collections Electronic Records Case Studies Series Congressional Papers Roundtable Society of American Archivists Testing the Waters: Working With CSS Data in Congressional Collections Natalie Bond University of Montana

More information

REPORT VOLUME 6 MAY/JUNE 2017

REPORT VOLUME 6 MAY/JUNE 2017 BORDER SECURITY REPORT VOLUME 6 MAY/JUNE 2017 For the world s border protection, management and security industry policy-makers and practitioners COVER STORY Smarter Borders in Spain AGENCY NEWS SHORT

More information

1. Goto osr.ashrae.org and log in the right hand corner if not already logged in the site.

1. Goto osr.ashrae.org and log in the right hand corner if not already logged in the   site. 1. Goto osr.ashrae.org and log in the right hand corner if not already logged in the www.ashrae.org site. 2. To create a ballot hoover over the Balloting Tab and chose Create Ballot. 3. The Create Ballot

More information

Downloaded from: justpaste.it/vlxf

Downloaded from: justpaste.it/vlxf Downloaded from: justpaste.it/vlxf Jun 24, 2016 20:19:27.468 [2944] INFO - Plex Media Server v1.0.0.2261-a17e99e - Microsoft PC - build: windows-i386 english Jun 24, 2016 20:19:27.469 [2944] INFO - Windows

More information

Capstone Prospectus Julia Jackson, PUAD 5361 September 2, 2015

Capstone Prospectus Julia Jackson, PUAD 5361 September 2, 2015 Capstone Prospectus Julia Jackson, PUAD 5361 September 2, 2015 Project Introduction The National Conference of State Legislatures (NCSL) "provides research, technical assistance and opportunities for policymakers

More information

A REPORT BY THE NEW YORK STATE OFFICE OF THE STATE COMPTROLLER

A REPORT BY THE NEW YORK STATE OFFICE OF THE STATE COMPTROLLER A REPORT BY THE NEW YORK STATE OFFICE OF THE STATE COMPTROLLER Alan G. Hevesi COMPTROLLER DEPARTMENT OF MOTOR VEHICLES CONTROLS OVER THE ISSUANCE OF DRIVER S LICENSES AND NON-DRIVER IDENTIFICATIONS 2001-S-12

More information

Scytl. Enhancing Governance through ICT solutions World Bank, Washington, DC - September 2011

Scytl. Enhancing Governance through ICT solutions World Bank, Washington, DC - September 2011 Scytl Enhancing Governance through ICT solutions World Bank, Washington, DC - September 2011 Pere Valles Chief Executive Officer pere.valles@scytl.com Index About Scytl Electoral modernization e-democracy

More information

Lab 11: Pair Programming. Review: Pair Programming Roles

Lab 11: Pair Programming. Review: Pair Programming Roles Lab 11: Pair Programming Apr 2, 2019 Sprenkle - CSCI111 1 Review: Pair Programming Roles Driver (Like the role I play when we write programs in class) Uses keyboard and mouse to execute all actions on

More information

Distributed representations of politicians

Distributed representations of politicians Distributed representations of politicians Bobbie Macdonald Department of Political Science Stanford University bmacdon@stanford.edu Abstract Methods for generating dense embeddings of words and sentences

More information

BEST PRACTICES FOR RESPONDING TO ACCESS REQUESTS

BEST PRACTICES FOR RESPONDING TO ACCESS REQUESTS BEST PRACTICES FOR RESPONDING TO ACCESS REQUESTS The Freedom of Information and Protection of Privacy Act (FOIP) and The Local Authority Freedom of Information and Protection of Privacy Act (LA FOIP) grant

More information

Policy Framework for the Regional Biometric Data Exchange Solution

Policy Framework for the Regional Biometric Data Exchange Solution Policy Framework for the Regional Biometric Data Exchange Solution Part 10 : Privacy Impact Assessment: Regional Biometric Data Exchange Solution REGIONAL SUPPORT OFFICE THE BALI PROCESS 1 Attachment 9

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

The California Voter s Choice Act: Managing Transformational Change with Voting System Technology

The California Voter s Choice Act: Managing Transformational Change with Voting System Technology The California Voter s Choice Act: Shifting Election Landscape The election landscape has evolved dramatically in the recent past, leading to significantly higher expectations from voters in terms of access,

More information

Maps and Hash Tables. EECS 2011 Prof. J. Elder - 1 -

Maps and Hash Tables. EECS 2011 Prof. J. Elder - 1 - Maps and Hash Tables - 1 - Outline Ø Maps Ø Hashing Ø Multimaps Ø Ordered Maps - 2 - Learning Outcomes Ø By understanding this lecture, you should be able to: Ø Outline the ADT for a map and a multimap

More information

LEXIS -NEXIS Political Universe User Guide for Professional, Deep Research

LEXIS -NEXIS Political Universe User Guide for Professional, Deep Research LEXIS -NEXIS Political Universe User Guide for Professional, Deep Research Using Incredible Power to Transform Your Web-based Research When you want a single political product that offers a broad scope,

More information

USPTO Patent Prosecution Research Data: Unlocking Office Action Traits

USPTO Patent Prosecution Research Data: Unlocking Office Action Traits U.S. Patent and Trademark Office OFFICE OF THE CHIEF ECONOMIST OFFICE OF THE CHIEF TECHNOLOGY OFFICER Economic Working Paper Series USPTO Patent Prosecution Research Data: Unlocking Office Action Traits

More information

National Labor Relations Board

National Labor Relations Board National Labor Relations Board Submission of Professor Martin H. Malin and Professor Jon M. Werner in response to the National Labor Relations Board s Request for Information Regarding Representation Election

More information