Meeting of the Technical Steering Committee (TSC) Board

Size: px
Start display at page:

Download "Meeting of the Technical Steering Committee (TSC) Board"

Transcription

1 Meeting of the Technical Steering Committee (TSC) Board Tuesday, January 8 th 11:00am ET

2 Meeting Logistics United States : +1 (510) (No PIN needed).

3 Antitrust Policy Notice Linux Foundation meetings involve participation by industry competitors, and it is the intention of the Linux Foundation to conduct all of its activities in accordance with applicable antitrust and competition laws. It is therefore extremely important that attendees adhere to meeting agendas, and be aware of, and not participate in, any activities that are prohibited under applicable US state, federal or foreign antitrust and competition laws. Examples of types of actions that are prohibited at Linux Foundation meetings and in connection with Linux Foundation activities are described in the Linux Foundation Antitrust Policy available at If you have questions about these matters, please contact your company counsel, or if you are a member of the Linux Foundation, feel free to contact Andrew Updegrove of the firm of Gesmer Updegrove LLP, which provides legal counsel to the Linux Foundation. 3

4 Agenda Some year end usage stats Review Cycle #5 Quick Change of Status Update Rsync server for OpenHPC repository System Registration Page Continue the RPM dependency discussion from last time... 4

5 Updated Usage/Access Statistics (thru 2017) Build Server Access: Unique Visitors # of Unique Visitors v1.0 Releases v1.0.1 v1.1 v1.1.1 v1.2 v1.2.1 v1.3 v1.3.2 v1.3.1 v1.3.3 Stats for build/repo server (tracking # of unique visitors per month and amount of data downloaded): 0 Jul-15 Oct-15 Jan-16 May-16 Aug-16 Nov-16 Mar-17 Jun-17 Sep-17 Dec-17 ~16 TB downloaded in 2017 Data Transfer Amount (GiB) Build Server Access: Data Downloaded v1.0 v1.1 v1.2 v1.3 v1.3.2 Releases v1.0.1 v1.1.1 v1.2.1 v1.3.1 v Jul-15 Oct-15 Jan-16 May-16 Aug-16 Nov-16 Mar-17 Jun-17 Sep-17 Dec Average # of vistors/month

6 Updated Usage/Access Stats (thru 2017) OpenHPC Package Repo Access 900 These stats monitor access specifically to package repository metadata (typically expected to be via yum/zypper) # Unique Visitors Repo access binned by minor version Nov-15 Dec-15 Jan-16 Feb-16 Mar-16 Apr-16 May-16 Jun-16 Jul-16 Aug-16 Sep-16 Oct-16 Nov-16 Dec-16 Jan-17 Feb-17 Mar-17 Apr-17 May-17 Jun-17 Jul-17 Aug-17 Sep-17 Oct-17 Nov-17 Dec-17

7 PEARC 17 tutorial (thru 2017) Recall we made the PEARC slides available in July 2017 after the tutorial Pointer from our GitHub site provides majority of referrers unique accesses in 2017

8 Review Cycle #5 openhpc / submissions Review #5 No due date 0% complete 6 Open 0 Closed Open UCX #27 opened 7 days ago by shamisp 9 of 21 slurm-spank-x11: x11 forwarding plugin for srun #28 opened 23 hours ago by adrianreber 10 of 22 MFEM #29 opened 15 hours ago by acfisher 10 of 21 GEOPM - Global Extensible Open Power Manager #25 opened on Nov 11 by cmcantalupo 10 of 22 DMTCP for openhpc #26 opened 27 days ago by shlomiya 10 of 22 LBNL NHC #24 opened on Oct 9 by novosirj 10 of 22 Edit milestone New issue From last time, our proposed reviewer deadline was January 5 th - Had a request for one extension - Also, looks like a number of folks could are still working on their reviews - Can we try to shoot for completion by next Monday, January 15th?

9 Status Update from Karl I am planning on returning to academia at UT Austin as a research faculty in mid-february Committed to serving my TSC term - might possibly need cancel a meeting or two during the transition Please feel free to voice any concerns you might have here - can also ping Jeff 9

10 Rysnc Server At SC 17 BoF, we had a question asking if we could enable rsync for mirroring of OpenHPC repositories We have control over the back end, so have enabled rsync access to: Followed up with the requesting user who tested it out satisfactorily Note: one concern we had was the ability to track downloads via this mechanism - other downloads thru yum/zypper log entries with web server - rsync has separate protocol - have updated the logging infrastructure on build server so we can track downloads made thru rsync Any objection to advertising this capability on ohpc wiki? - typical mirror (avoiding src RPMs) looks like: $ rsync -avzh --exclude src --exclude repocache --delay-updates rsync://build.openhpc.community/openhpc/1.3/

11 System Registration Page Recall, system registration page now published on wiki: Question that came up on TSC discussion list: - do we want to extend the current form to ask about architecture? (e.g. aarch64 or x86_64) 11

12 Renew RPM dependency discussion... 12

13 RPM dependencies Recall previous TSC discussion where we discussed the fact that we currently have some namespace collision with base OS packages with respect to.so libraries: # repoquery --whatprovides "libopenblas.so.0()(64bit)" openblas-0: el7.x86_64 openblas-gnu7-ohpc-0: ohpc.x86_64 # repoquery --whatprovides "libltdl.so.7()(64bit)" libtool-ltdl-0: el7_3.x86_64 libtool-ohpc-0: x86_64 This can lead to *base* system package installation breakage in that most ohpc provided.so s are not automatically included in ld search path Adrian discussed a potential remedy that involved disabling RPM s internal dependency generator and override with scripts to provide smaller Provides/Requires conditions leveraging our modules configuration 13

14 RPM dependencies Have spent some additional time diving more into this and wanted to share some of the things I ve learned and show another potential alternative - there are multiple dependency generators associated with RPM - will sometimes see them referred to as internal vs external dependency generator The external tools are apparently the old mechanism and are scripts that get called after the build completes: /usr/lib/rpm/find-requires /usr/lib/rpm/find-provides The internal tools are the new default. They are binaries, e.g. /usr/lib/rpm/rpmdeps /usr/lib/rpm/elfdeps 14

15 RPM dependencies The older find-requires/find-provides scripts are convenient to use as starting templates to modify for local needs However, one thing that confused me initially is that they can t reproduce all the dependencies found with newer tool - new tool embeds additional color information - Can see this explicitly with our gcc packaging: - old style generator (find-requires) calls out 38 dependencies for our gcc build - new style (rpmdeps) calls out 57 dependencies Example dependency with old style generator: - libquadmath.so.0()(64bit) And example with new generator: - libquadmath.so.0()(64bit) - libquadmath.so.0(quadmath_1.0)(64bit) 15

16 RPM dependencies The new dependency tool has a plugin infrastructure which allows you to call out to your own dependency generator on a per path (and per file type basis) An alternative approach we might consider (approach #2) is to use this functionality to append an additional color delimiter of our choosing (e.g. ohpc ) to all.so s contained in a non-standard path - i.e. our packages that install into /opt/ohpc This would avoid any namespace collision with distro packages Have a prototype in place on our OBS system. This approach adds 3 new files to our ohpc-buildroot package which is currently needed to build any of our packages - /usr/lib/rpm/fileattrs/ohpc.attr - /usr/lib/rpm/ohpc-find-provides - /usr/lib/rpm/ohpc-find-requires 16

17 RPM dependencies (Alternative approach #2) Let s look at ohpc.attr % ohpc_provides /usr/lib/rpm/ohpc-find-provides -r ohpc % ohpc_requires /usr/lib/rpm/ohpc-find-requires %{buildroot} % ohpc_path ^%{OHPC_HOME} % elf_exclude_path ^%{OHPC_HOME} % ohpc_magic % ohpc_flags ^ELF (32 64)-bit.*$ magic_and_path General approach here is to trigger these scripts for any build that has ELF binaries found in /opt/ohpc The scripts use the native rpm dependency tool (/usr/bin/rpm/elfdeps) to scan the dependencies as usual, and then augment the strings if necessary: - Provides logic: any.so found in /opt/ohpc has the (ohpc) color string appended - Requires logic: any.so found in the build (or coming in as BuildRequires) that lives in /opt/ohpc has matching (ohpc) color string appended. Otherwise, dependencies belonging to packages outside of OpenHPC maintain default string. 17

18 RPM dependencies: Alternative approach #2 Let s look at some of the resulting Provides: differences for gcc using this approach. Essentially, every.so detected in /opt/ohpc has delimiter appended # rpm -q --provides gnu7-compilers-ohpc egrep libgomp OHPC RPM Build with Approach #2 libgomp.so.1()(64bit) libgomp.so.1(goacc_2.0)(64bit) libgomp.so.1(goacc_2.0.1)(64bit) libgomp.so.1(gomp_1.0)(64bit) libgomp.so.1(gomp_2.0)(64bit) libgomp.so.1(gomp_3.0)(64bit) libgomp.so.1(gomp_4.0)(64bit) libgomp.so.1(gomp_4.0.1)(64bit) libgomp.so.1(gomp_4.5)(64bit) libgomp.so.1(gomp_plugin_1.0)(64bit) libgomp.so.1(gomp_plugin_1.1)(64bit) libgomp.so.1(oacc_2.0)(64bit) libgomp.so.1(omp_1.0)(64bit) libgomp.so.1(omp_2.0)(64bit) libgomp.so.1(omp_3.0)(64bit) libgomp.so.1(omp_3.1)(64bit) libgomp.so.1(omp_4.0)(64bit) libgomp.so.1(omp_4.5)(64bit) libgomp.so.1()(64bit)(ohpc) libgomp.so.1(goacc_2.0)(64bit)(ohpc) libgomp.so.1(goacc_2.0.1)(64bit)(ohpc) libgomp.so.1(gomp_1.0)(64bit)(ohpc) libgomp.so.1(gomp_2.0)(64bit)(ohpc) libgomp.so.1(gomp_3.0)(64bit)(ohpc) libgomp.so.1(gomp_4.0)(64bit)(ohpc) libgomp.so.1(gomp_4.0.1)(64bit)(ohpc) libgomp.so.1(gomp_4.5)(64bit)(ohpc) libgomp.so.1(gomp_plugin_1.0)(64bit)(ohpc) libgomp.so.1(gomp_plugin_1.1)(64bit)(ohpc) libgomp.so.1(oacc_2.0)(64bit)(ohpc) libgomp.so.1(omp_1.0)(64bit)(ohpc) libgomp.so.1(omp_2.0)(64bit)(ohpc) libgomp.so.1(omp_3.0)(64bit)(ohpc) libgomp.so.1(omp_3.1)(64bit)(ohpc) libgomp.so.1(omp_4.0)(64bit)(ohpc) libgomp.so.1(omp_4.5)(64bit)(ohpc) 18

19 RPM dependencies: Alternative approach #2 Let s look at some of the resulting Requires: differences for gcc using this approach. # rpm -q --requires gnu7-compilers-ohpc egrep libc.so libgc OHPC RPM Build with Aproach #2 libgcc_s.so.1()(64bit) libgcc_s.so.1(gcc_3.0)(64bit) libgcc_s.so.1(gcc_3.3)(64bit) libgcc_s.so.1(gcc_4.2.0)(64bit) libgcc_s.so.1(gcc_4.3.0)(64bit).so s contained within ohpc gcc build libgcc_s.so.1()(64bit)(ohpc) libgcc_s.so.1(gcc_3.0)(64bit)(ohpc) libgcc_s.so.1(gcc_3.3)(64bit)(ohpc) libgcc_s.so.1(gcc_4.2.0)(64bit)(ohpc) libgcc_s.so.1(gcc_4.3.0)(64bit)(ohpc) libc.so.6()(64bit) libc.so.6(glibc_2.10)(64bit) libc.so.6(glibc_2.11)(64bit) libc.so.6(glibc_2.14)(64bit) libc.so.6(glibc_2.16)(64bit) libc.so.6(glibc_2.17)(64bit) libc.so.6(glibc_2.2.5)(64bit) libc.so.6(glibc_2.3)(64bit) libc.so.6(glibc_2.3.2)(64bit) libc.so.6(glibc_2.3.3)(64bit) libc.so.6(glibc_2.6)(64bit) libc.so.6(glibc_2.7)(64bit).so s required from base OS supplied packages libc.so.6()(64bit) libc.so.6(glibc_2.10)(64bit) libc.so.6(glibc_2.11)(64bit) libc.so.6(glibc_2.14)(64bit) libc.so.6(glibc_2.16)(64bit) libc.so.6(glibc_2.17)(64bit) libc.so.6(glibc_2.2.5)(64bit) libc.so.6(glibc_2.3)(64bit) libc.so.6(glibc_2.3.2)(64bit) libc.so.6(glibc_2.3.3)(64bit) libc.so.6(glibc_2.6)(64bit) libc.so.6(glibc_2.7)(64bit) 19

20 RPM dependencies: Alternative approach #2 Full comparison for openblas RPM OHPC RPM: Requires Requires: Approach #2 gnu7-compilers-ohpc >= libc.so.6()(64bit) libc.so.6(glibc_2.2.5)(64bit) libc.so.6(glibc_2.3.2)(64bit) libc.so.6(glibc_2.3.4)(64bit) libc.so.6(glibc_2.6)(64bit) libc.so.6(glibc_2.7)(64bit) libgfortran.so.4()(64bit) libgfortran.so.4(gfortran_7)(64bit) libgomp.so.1()(64bit) libgomp.so.1(gomp_4.0)(64bit) libgomp.so.1(omp_1.0)(64bit) libm.so.6()(64bit) libm.so.6(glibc_2.2.5)(64bit) libpthread.so.0()(64bit) libpthread.so.0(glibc_2.2.5)(64bit) ohpc-filesystem gnu7-compilers-ohpc >= libc.so.6()(64bit) libc.so.6(glibc_2.2.5)(64bit) libc.so.6(glibc_2.3.2)(64bit) libc.so.6(glibc_2.3.4)(64bit) libc.so.6(glibc_2.6)(64bit) libc.so.6(glibc_2.7)(64bit) libgfortran.so.4()(64bit)(ohpc) libgfortran.so.4(gfortran_7)(64bit)(ohpc) libgomp.so.1()(64bit)(ohpc) libgomp.so.1(gomp_4.0)(64bit)(ohpc) libgomp.so.1(omp_1.0)(64bit)(ohpc) libm.so.6()(64bit) libm.so.6(glibc_2.2.5)(64bit) libpthread.so.0()(64bit) libpthread.so.0(glibc_2.2.5)(64bit) ohpc-filesystem OHPC RPM: Provides libopenblas.so.0()(64bit) openblas-gnu7-ohpc = openblas-gnu7-ohpc(x86-64) = Provides: Approach #2 libopenblas.so.0()(64bit)(ohpc) openblas-gnu7-ohpc = openblas-gnu7-ohpc(x86-64) =

21 RPM dependencies: Alternative approach #2 Net result is that we no longer conflict with OS provides.so s, and we maintain automatic dependencies for OS packages and OpenHPC pre-requisites. # repoquery --whatprovides "libopenblas.so.0()(64bit)" openblas-0: el7.x86_64 # repoquery --whatprovides "libopenblas.so.0()(64bit)(ohpc)" openblas-gnu7-ohpc-0: ohpc.x86_64 21

22 RPM dependencies Benefits - no change to current.spec files - maintains color capability of the current default RPM dependency analysis tool (e.g. ABI version of.so) - uses newer plugin infrastructure of RPM deps tool to isolate analysis to items in OHPC path - isolates ohpc packaging via explicit delimiter on.so s (similar in spirit to the RPM naming convention) - does not require us to call out all base OS dependencies Thoughts going forward - regardless of the approach, are people generally in favor of trying to implement a change to avoid collision with OS packages? - If so, thoughts on the first two approaches? 22

Meeting of the Technical Steering Committee (TSC) Board

Meeting of the Technical Steering Committee (TSC) Board http://openhpc.community Meeting of the Technical Steering Committee (TSC) Board Tuesday, December 5th th 11:00am ET Antitrust Policy Notice Linux Foundation meetings involve participation by industry

More information

Meeting of the Technical Steering Committee (TSC) Board

Meeting of the Technical Steering Committee (TSC) Board http://openhpc.community Meeting of the Technical Steering Committee (TSC) Board Tuesday, July 31 th 2018 11:00am ET Meeting Logistics https://zoom.us/j/556149142 United States : +1 (646) 558-8656 -Meeting

More information

Meeting of the Technical Steering Committee (TSC) Board

Meeting of the Technical Steering Committee (TSC) Board http://openhpc.community Meeting of the Technical Steering Committee (TSC) Board Tuesday, October 17th 11:00am ET Meeting Logistics https://www.uberconference.com/jeff_ef United States : +1 (510) 224-9559

More information

ERS IT Portfolio Report

ERS IT Portfolio Report Administration and Operations Committee ERS IT Portfolio Report January 21 st, 2014 1 Agenda Information Technology Projects Summary 2013 End of Year Metrics Project Management Office CMERS Website Applications

More information

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version:

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version: HPE Security Data Security HPE SecureData Product Lifecycle Status End of Support Dates Date: April 20, 2017 Version: 1704-1 Table of Contents Table of Contents... 2 Introduction... 3 HPE SecureData Appliance...

More information

NIR February JPNIC Updates. Hiroki Kawabata Japan Network Information Center (JPNIC) Copyright 2016 Japan Network Information Center

NIR February JPNIC Updates. Hiroki Kawabata Japan Network Information Center (JPNIC) Copyright 2016 Japan Network Information Center NIR SIG@APNIC41 February 2016 JPNIC Updates Hiroki Kawabata Japan Network Information Center (JPNIC) Contents Statistics IPv4 IPv6 ASN transfer Activities IPv6 Policy and Internet Governance RPKI Reverse

More information

SME License Order Working Group Update - Webinar #3 Call in number:

SME License Order Working Group Update - Webinar #3 Call in number: SME License Order Working Group Update - Webinar #3 Call in number: Canada Local: +1-416-915-8942 Canada Toll Free: +1-855-244-8680 Event Number: 662 298 966 Attendee ID: check your WebEx session under

More information

Overview of ITU capacity building activities

Overview of ITU capacity building activities Europe Centers of Excellence Steering Committee Meeting Copenhagen, Denmark 12 December 2017 Overview of ITU capacity building activities Mike Nxele Senior Human Capacity Building Officer, Human Capacity

More information

Opera Web Browser Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Opera Web Browser Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.opera.com Description Opera Web Browser Archive Country United States Scan Date 04/Nov/2015 Total Dirs 1,557 Total Files 2,211 Total Data 43.83 GB Top 20 Directories Sorted

More information

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down.

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down. # Name Duration 1 Project 2011-INT-02 Interpretation of VAR-002 for Constellation Power Gen 185 days Jan Feb Mar Apr May Jun Jul Aug Sep O 2012 2 Start Date for this Plan 0 days 3 A - ASSEMBLE SDT 6 days

More information

Monthly SEO Report. Example Client 16 November 2012 Scott Lawson. Date. Prepared by

Monthly SEO Report. Example Client 16 November 2012 Scott Lawson. Date. Prepared by Date Monthly SEO Report Prepared by Example Client 16 November 212 Scott Lawson Contents Thanks for using TrackPal s automated SEO and Analytics reporting template. Below is a brief explanation of the

More information

e-sens Nordic & Baltic Area Meeting Stockholm April 23rd 2013

e-sens Nordic & Baltic Area Meeting Stockholm April 23rd 2013 e-sens Nordic & Baltic Area Meeting Stockholm April 23rd 2013 Objectives of the afternoon parallel tracks sessions 2 Meeting objectives High level: Identification of shared interests with emphasis on those

More information

MRCP. Installation Manual. Developer Guide. Powered by Universal Speech Solutions LLC

MRCP. Installation Manual. Developer Guide. Powered by Universal Speech Solutions LLC Powered by Universal Speech Solutions LLC MRCP Installation Manual Developer Guide Revision: 39 Last updated: August 28, 2017 Created by: Arsen Chaloyan Universal Speech Solutions LLC Overview 1 Table

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

XS4ALL Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

XS4ALL Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space XS4ALL Networks - FTP Site Statistics Property Value FTP Server ftp.xs4all.nl Description XS4ALL Networks Country Netherlands Scan Date 11/May/2014 Total Dirs 181 Total Files 877 Total Data 2.63 GB Top

More information

Control Center Release Notes

Control Center Release Notes Control Center Notes 1.5.1 Zenoss, Inc. www.zenoss.com Control Center Notes Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks or registered trademarks

More information

software.sci.utah.edu (Select Visitors)

software.sci.utah.edu (Select Visitors) software.sci.utah.edu (Select Visitors) Web Log Analysis Yearly Report 2002 Report Range: 02/01/2002 00:00:0-12/31/2002 23:59:59 www.webtrends.com Table of Contents Top Visitors...3 Top Visitors Over Time...5

More information

ICANN Contractual Compliance. IPC Mee(ng. Tuesday, 25 March 2014 #ICANN49

ICANN Contractual Compliance. IPC Mee(ng. Tuesday, 25 March 2014 #ICANN49 ICANN Contractual Compliance IPC Mee(ng Tuesday, 25 March 2014 1 Agenda! Compliance General Update! Q&A session! Contractual Compliance Update! Ø Global presence in Singapore and Turkey" Ø Completed 2013

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

WHAT ARE MOBILE PHONE SHOPPERS SEARCHING ONLINE?

WHAT ARE MOBILE PHONE SHOPPERS SEARCHING ONLINE? WHAT ARE MOBILE PHONE SHOPPERS SEARCHING ONLINE? Data Centric Insights on Mobile Phone Brands Considered by Shoppers August 2018 Sparkwinn Research The Smart Shopper Insights Report June 2018 has been

More information

Overview of DIR Reporting Requirements, P2P Reconciliation, and Reconciliation Exclusion Process

Overview of DIR Reporting Requirements, P2P Reconciliation, and Reconciliation Exclusion Process Overview of DIR Reporting Requirements, P2P Reconciliation, and Reconciliation Exclusion Process Part D Webinar June 10, 2014 10:00 a.m. 12:00 p.m. 1 Agenda Direct and Indirect Remuneration (DIR) Reporting

More information

More Binary Search Trees AVL Trees. CS300 Data Structures (Fall 2013)

More Binary Search Trees AVL Trees. CS300 Data Structures (Fall 2013) More Binary Search Trees AVL Trees bstdelete if (key not found) return else if (either subtree is empty) { delete the node replacing the parents link with the ptr to the nonempty subtree or NULL if both

More information

Status of the Project

Status of the Project Status of the Project Florian Effenberger Michael Meeks Italo Vignoli 1 TDF Members 2 Conference Attendees 3 OSB Alliance 4 Advisory Board: CIB 5 Advisory Board: Munich 6 7 Aug 15 Jul 15 Jun 15 May 15

More information

Section 1.2: What is a Function? y = 4x

Section 1.2: What is a Function? y = 4x Section 1.2: What is a Function? y = 4x y is the dependent variable because it depends on what x is. x is the independent variable because any value can be chosen to replace x. Domain: a set of values

More information

GWDG Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

GWDG Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space GWDG Software Archive - FTP Site Statistics Property Value FTP Server ftp5.gwdg.de Description GWDG Software Archive Country Germany Scan Date 18/Jan/2016 Total Dirs 1,068,408 Total Files 30,248,505 Total

More information

More BSTs & AVL Trees bstdelete

More BSTs & AVL Trees bstdelete More BSTs & AVL Trees bstdelete if (key not found) return else if (either subtree is empty) { delete the node replacing the parents link with the ptr to the nonempty subtree or NULL if both subtrees are

More information

Fixed and wireless broadband mapping in Belgium

Fixed and wireless broadband mapping in Belgium Belgian Institute for Postal Services and Telecommunications Fixed and wireless broadband mapping in Belgium Broadband mapping Conference in Warsaw, Poland, 11-12 April, 2016 BIPT Agenda Objectives Roadmap

More information

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK)

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK) BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) DAY Soci-Economic and Political History of Bangladesh PART I (COURSE WORK) 1 ST SEMESTER 2 ND SEMESTER

More information

ACTIVE MICROSOFT CERTIFICATIONS:

ACTIVE MICROSOFT CERTIFICATIONS: Last Activity Recorded : August 03, 2017 Microsoft Certification ID : 2069071 JESSE WIMBERLEY 5421 33RD CT SE LACEY, Washington 98503 US jesse.wimberley@gmail.com ACTIVE MICROSOFT CERTIFICATIONS: Microsoft

More information

Putting Customers at the Heart of our Business

Putting Customers at the Heart of our Business Putting Customers at the Heart of our Business Expertise at Work Our commitment to service excellence - ITIL PSU follows the globally recognised ITIL (Information Technology Infrastructure Library) best

More information

Decision Making Information from Your Mobile Device with Today's Rockwell Software

Decision Making Information from Your Mobile Device with Today's Rockwell Software Decision Making Information from Your Mobile Device with Today's Rockwell Software PUBLIC Rockwell Automation TechED 2016 @ROKTechED #ROKTechED Copyright 2016 Rockwell Automation, Inc. All Rights Reserved.

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.3.0 Zenoss, Inc. www.zenoss.com Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States

More information

ISE Cyber Security UCITS Index (HUR)

ISE Cyber Security UCITS Index (HUR) ISE Cyber Security UCITS Index (HUR) Why Cybersecurity is important Data breaches have become almost commonplace in the last few years Cybersecurity focuses on protecting computers, networks, programs,

More information

June 2012 First Data PCI RAPID COMPLY SM Solution

June 2012 First Data PCI RAPID COMPLY SM Solution June 2012 First Data PCI RAPID COMPLY SM Solution You don t have to be a security expert to be compliant. Developer: 06 Rev: 05/03/2012 V: 1.0 Agenda Research Background Product Overview Steps to becoming

More information

Dashboard. Jan 13, Jan 8, 2012 Comparing to: Site. 12,742 Visits % Bounce Rate. 00:05:26 Avg. Time on Site.

Dashboard. Jan 13, Jan 8, 2012 Comparing to: Site. 12,742 Visits % Bounce Rate. 00:05:26 Avg. Time on Site. Dashboard 3 3 15 15 Jan 17 Feb 18 Mar 22 Apr 23 May 25 Jun 26 Jul 28 Aug 29 Sep 3 Nov 1 Dec 3 Ja Site Usage 12,742 4.3% Bounce Rate 39,496 Pageviews :5:26 Avg. Time on Site 3.1 Pages/Visit 61.73% % New

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2018 Live Online Information version 8 last updated 04/05/18 Please note information and dates are subject to change. Premium Learning Partner 2018 CIMA Cert BA Course Overview

More information

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju 0 - Total Traffic Content View Query This report is based on sampled data. Jun 1, 2009 - Jun 25, 2010 Comparing to: Site 300 Unique Pageviews 300 150 150 0 0 Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec

More information

ANNUAL GENERAL MEETING Tuesday, March 3, 2015, Novotel Mitte, Berlin

ANNUAL GENERAL MEETING Tuesday, March 3, 2015, Novotel Mitte, Berlin ANNUAL GENERAL MEETING 2015 Tuesday, March 3, 2015, 14.00 17.30 Novotel Mitte, Berlin AGENDA 14.00 14.15: 1. Opening of the Meeting 14.15 15.00: 2. Presentation of Annual Reports and Accounts 2014 15.00

More information

jamf Nation - London Roadshow

jamf Nation - London Roadshow jamf Nation - London Roadshow Sachin Parmar Workplace Technology Manager 17 May 2018 About Just Eat Our vision Creating the world s greatest food community 3 About Me About Me Sachin Parmar 8+ years professionally

More information

A strategy for Inexpensive Automated Containment of Infected or Vulnerable Systems

A strategy for Inexpensive Automated Containment of Infected or Vulnerable Systems A strategy for Inexpensive Automated Containment of Infected or Vulnerable Systems Steven Sim Kok Leong Assistant Manager Infocomm Security Group, NUSCERT Computer Centre National University of Singapore

More information

How to Design a Program Repair Bot? Insights from the Repairnator Project

How to Design a Program Repair Bot? Insights from the Repairnator Project How to Design a Program Repair Bot? Insights from the Repairnator Project Simon Urli, Zhongxing Yu, Lionel Seinturier, Martin Monperrus simon.urli@inria.fr February, 26 th, 2018 Inria & University of Lille

More information

SCI - software.sci.utah.edu (Select Visitors)

SCI - software.sci.utah.edu (Select Visitors) SCI - software.sci.utah.edu (Select Visitors) Web Log Analysis Yearly Report 2004 Report Range: 01/01/2004 00:00:00-12/31/2004 23:59:59 www.webtrends.com Table of Contents Top Visitors...3 Top Visitors

More information

ICANN Contractual Compliance. ALAC Mee(ng. Sunday, 23 March 2014 #ICANN49

ICANN Contractual Compliance. ALAC Mee(ng. Sunday, 23 March 2014 #ICANN49 ICANN Contractual Compliance ALAC Mee(ng Sunday, 23 March 2014 1 Agenda! Compliance General Update! Clarification of ALAC statement! Q&A session! Contractual Compliance Update! Ø Global presence in Singapore"

More information

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND BYTES PEOPLE SOLUTIONS Bytes Business Park 241 3rd Road Halfway Gardens Midrand Tel: +27 (11) 205-7000 Fax: +27 (11) 205-7110 Email: gauteng.sales@bytes.co.za

More information

UK Link Committee Meeting. Xoserve Report Pack. Meeting Date: 12 th January 2017 Reporting Month: December 2016

UK Link Committee Meeting. Xoserve Report Pack. Meeting Date: 12 th January 2017 Reporting Month: December 2016 UK Link Committee Meeting Xoserve Report Pack Meeting Date: 12 th January 2017 Reporting Month: December 2016 Authors (for this version): Amjad Hussain Version: V1.0 Date: 10 th January 2017 Xoserve Reports

More information

DATE OF BIRTH SORTING (DBSORT)

DATE OF BIRTH SORTING (DBSORT) DATE OF BIRTH SORTING (DBSORT) Release 3.1 December 1997 - ii - DBSORT Table of Contents 1 Changes Since Last Release... 1 2 Purpose... 3 3 Limitations... 5 3.1 Command Line Parameters... 5 4 Input...

More information

Control Center Release Notes

Control Center Release Notes Release 1.4.1 Zenoss, Inc. www.zenoss.com Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States

More information

Open Source s Role in CONNECTing the Nation s Healthcare Community. Lauren Thompson, PhD Director, Federal Health Architecture

Open Source s Role in CONNECTing the Nation s Healthcare Community. Lauren Thompson, PhD Director, Federal Health Architecture Open Source s Role in CONNECTing the Nation s Healthcare Community Lauren Thompson, PhD Director, Federal Health Architecture Federal Health Architecture: Advancing National Health IT Federal Health Architecture

More information

Vienna University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Vienna University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Vienna University of Technology - FTP Site Statistics Property Value FTP Server gd.tuwien.ac.at Description Vienna University of Technology Country Austria Scan Date 23/May/2015 Total Dirs 434,622 Total

More information

All King County Summary Report

All King County Summary Report September, 2016 MTD MARKET UPDATE Data Current Through: September, 2016 18,000 16,000 14,000 12,000 10,000 8,000 6,000 4,000 2,000 0 Active, Pending, & Months Supply of Inventory 15,438 14,537 6.6 6.7

More information

UAE PUBLIC TRAINING CALENDAR

UAE PUBLIC TRAINING CALENDAR UAE 102-R8.3 Primavera P6 Professional Fundamentals Rel 8.3 5 Abu Dhabi 4-Jan 8-Jan 19.5 106-R8.3 Primavera P6 Professional Advanced Rel8.3 3 Dubai 18-Jan 20-Jan 13.0 PMI-SP01 SP) Certification) 5 Abu

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner.

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner. Training for Database & Technology with Modeling in SAP HANA Courses Listed Beginner HA100 - SAP HANA Introduction Advanced HA300 - SAP HANA Certification Exam C_HANAIMP_13 - SAP Certified Application

More information

The State of the Raven. Jon Warbrick University of Cambridge Computing Service

The State of the Raven. Jon Warbrick University of Cambridge Computing Service The State of the Raven Jon Warbrick University of Cambridge Computing Service jw35@cam.ac.uk Corvus corax Raven photo used under the terms of the GNU Free Documentation License. Author Pcb21. Raven Web

More information

Privacy and Proxy Service Provider Accreditation. ICANN58 Working Meeting 11 March 2017

Privacy and Proxy Service Provider Accreditation. ICANN58 Working Meeting 11 March 2017 Privacy and Proxy Service Provider Accreditation ICANN58 Working Meeting 11 March 2017 Agenda 13:45-15:00 15:00-15:15 15:15-16:45 Timeline Check; Policy Document Update; Third- Party Requests Break PSWG

More information

Heilbronn University - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Heilbronn University - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Heilbronn University - FTP Site Statistics Property Value FTP Server ftp.fh-heilbronn.de Description Heilbronn University Country Germany Scan Date 16/May/2014 Total Dirs 8,120 Total Files 124,014 Total

More information

HugeServer Networks Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

HugeServer Networks Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server mirror.lax.hugeserver.com Description HugeServer Networks Software Archive Country United States Scan Date 28/Dec/2015 Total Dirs 3,510 Total Files 162,243 Total Data 365.86 GB

More information

Freddie Salas Manager Passport Nominations and Scheduling Jesse Battle Manager Business Process

Freddie Salas Manager Passport Nominations and Scheduling Jesse Battle Manager Business Process www.kindermorgan.com Freddie Salas Manager Passport Nominations and Scheduling Jesse Battle Manager Business Process Conversion Update Agenda Passport2DART Timeline Customer Training Plan Topic specific

More information

The Insider s Guide To Transfers. John Sweeting - Senior Director, Registration Services Cathy Clements Transfer Services Manager

The Insider s Guide To Transfers. John Sweeting - Senior Director, Registration Services Cathy Clements Transfer Services Manager The Insider s Guide To Transfers John Sweeting - Senior Director, Registration Services Cathy Clements Transfer Services Manager Overview Transfer Basics M&A Transfer Procedure & Tips Specified Recipient

More information

Pushing the Limits. ADSM Symposium Sheelagh Treweek September 1999 Oxford University Computing Services 1

Pushing the Limits. ADSM Symposium Sheelagh Treweek September 1999 Oxford University Computing Services 1 Pushing the Limits ADSM Symposium Sheelagh Treweek sheelagh.treweek@oucs.ox.ac.uk September 1999 Oxford University Computing Services 1 Overview History of ADSM services at Oxford October 1995 - started

More information

Undergraduate Admission File

Undergraduate Admission File Undergraduate Admission File June 13, 2007 Information Resources and Communications Office of the President University of California Overview Population The Undergraduate Admission File contains data on

More information

Schedule/BACnet Schedule

Schedule/BACnet Schedule Object Dictionary 1 Schedule/BACnet Schedule Introduction Note: The Johnson Controls Schedule object is considered a BACnet Schedule object because it supports BACnet functionality. In addition, this object

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary September, 2016 MTD MARKET UPDATE Data Current Through: September, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary Active, Pending, & Months Supply of Inventory 5,000 4,500 4,000 3,500 4,091

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary October, 2016 MTD MARKET UPDATE Data Current Through: October, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary Active, Pending, & Months Supply of Inventory 4,500 4,000 3,500 4,197 4,128

More information

Banner 9 Upgrade Schedule As of: 8/21/2017

Banner 9 Upgrade Schedule As of: 8/21/2017 Establish Upgrade Organization Complete Date Dependent on Current Description Complete the Banner 9 Upgrade Plan Complete 100% G 3/30/2017 Determine implementation/upgrade team Complete 100% G Apr 2017

More information

SCI - NIH/NCRR Site. Web Log Analysis Yearly Report Report Range: 01/01/ :00:00-12/31/ :59:59.

SCI - NIH/NCRR Site. Web Log Analysis Yearly Report Report Range: 01/01/ :00:00-12/31/ :59:59. SCI - NIH/NCRR Site Web Log Analysis Yearly Report 2003 Report Range: 01/01/2003 00:00:00-12/31/2003 23:59:59 www.webtrends.com Table of Contents General Statistics...5 Page Views Over Time...8 Top Pages

More information

Rzeszow University Of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Rzeszow University Of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ns2.prz-rzeszow.pl Description Rzeszow University Of Technology Country Poland Scan Date 02/Aug/2014 Total Dirs 1,124 Total Files 13,092 Total Data 48.96 GB Top 20 Directories

More information

Performance Engineering as a Competitive Differentiator May 11, 2016

Performance Engineering as a Competitive Differentiator May 11, 2016 Performance Engineering as a Competitive Differentiator May 11, 2016 http://bit.ly/vivitpe Brought to you by Vivit Worldwide Performance Engineering Special Interest Group HPE Todd DeCapua @AppPerfEng

More information

xlc.c or or or or vac.c or or

xlc.c or or or or vac.c or or NAME DESCRIPTION README.aix - Perl version 5 on IBM Unix (AIX) systems This document describes various features of IBM's Unix operating system (AIX) that will affect how Perl version 5 (hereafter just

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary November, 2016 MTD MARKET UPDATE Data Current Through: November, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary 4,000 3,500 3,000 2,500 2,000 1,500 1,000 500 0 Active, Pending, & Months

More information

Obtaining and Managing IP Addresses. Xavier Le Bris IP Resource Analyst - Trainer

Obtaining and Managing IP Addresses. Xavier Le Bris IP Resource Analyst - Trainer Obtaining and Managing IP Addresses Xavier Le Bris IP Resource Analyst - Trainer In This Talk 2 Getting IPv4 and IPv6 IPv4 Transfers Protecting Your Resources The RIPE Policy Development Process (PDP)

More information

University of Osnabruck - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

University of Osnabruck - FTP Site Statistics. Top 20 Directories Sorted by Disk Space University of Osnabruck - FTP Site Statistics Property Value FTP Server ftp.usf.uni-osnabrueck.de Description University of Osnabruck Country Germany Scan Date 17/May/2014 Total Dirs 29 Total Files 92

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.1.9 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

Federated Identity Management

Federated Identity Management Federated Identity Management SWITCHaai Team aai@switch.ch Agenda What is Federated Identity Management? 2 What is a Federation? The SWITCHaai Federation Interfederation Evolution of Identity Management

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.3.2 Zenoss, Inc. www.zenoss.com Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States

More information

High Performance Computing

High Performance Computing High Performance Computing MPI and C-Language Seminars 2009 Photo Credit: NOAA (IBM Hardware) High Performance Computing - Seminar Plan Seminar Plan for Weeks 1-5 Week 1 - Introduction, Data Types, Control

More information

REFINING YOUR E-DISCOVERY REPORTING. How to cut through the noise and produce relevant reporting

REFINING YOUR E-DISCOVERY REPORTING. How to cut through the noise and produce relevant reporting REFINING YOUR E-DISCOVERY REPORTING How to cut through the noise and produce relevant reporting INTRODUCTIONS Scott M. Cohen Daniel Meyers Scott Reents David Smith James A. Sherer Director, ediscovery

More information

Paper SAS Managing Large Data with SAS Dynamic Cluster Table Transactions Guy Simpson, SAS Institute Inc., Cary, NC

Paper SAS Managing Large Data with SAS Dynamic Cluster Table Transactions Guy Simpson, SAS Institute Inc., Cary, NC Paper SAS255-2014 Managing Large Data with SAS Dynamic Cluster Table Transactions Guy Simpson, SAS Institute Inc., Cary, NC ABSTRACT Today's business needs require 24/7 access to your data in order to

More information

Federated Identity Management

Federated Identity Management Federated Identity Management SWITCHaai Team aai@switch.ch Agenda What is Federated Identity Management? What is a Federation? The SWITCHaai Federation Interfederation 2 Evolution of Identity Management

More information

Google Analytics: A Worm's-Eye View & DigitalCommons Usage Reports

Google Analytics: A Worm's-Eye View & DigitalCommons Usage Reports University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Library Conference Presentations and Speeches Libraries at University of Nebraska-Lincoln 4-1-2010 Google Analytics: A Worm's-Eye

More information

Freedom of Information Act 2000 reference number RFI

Freedom of Information Act 2000 reference number RFI P. Norris By email to: xxxxxxxxxxxxxxxxxxxxxx@xxxxxxxxxxxxxx.xxm 02 November 2011 Dear P. Norris Freedom of Information Act 2000 reference number RFI20111218 Thank you for your request under the Freedom

More information

Payflow Implementer's Guide FAQs

Payflow Implementer's Guide FAQs Payflow Implementer's Guide FAQs FS-PF-FAQ-UG-201702--R016.00 Fairsail 2017. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced, disclosed, or used

More information

Banner 9 Overview and Transition timeline August Edgar Coronel Paddy Wong

Banner 9 Overview and Transition timeline August Edgar Coronel Paddy Wong Banner 9 Overview and Transition timeline August 2018 Edgar Coronel Paddy Wong v1 Banner Basics Banner 9 Overview Single Sign On Begin Transition! Using Banner 9 Demo Agenda Banner Basics Banner Forms

More information

CS Programming I: Arrays

CS Programming I: Arrays CS 200 - Programming I: Arrays Marc Renault Department of Computer Sciences University of Wisconsin Madison Fall 2017 TopHat Sec 3 (PM) Join Code: 719946 TopHat Sec 4 (AM) Join Code: 891624 Array Basics

More information

Ohio Department of Transportation. SMS Update. District Bridge Engineers. Amjad Waheed, PE. Engineering Division Office of Structural Engineering

Ohio Department of Transportation. SMS Update. District Bridge Engineers. Amjad Waheed, PE. Engineering Division Office of Structural Engineering Ohio Department of Transportation John R. Kasich, Governor Jerry Wray, Director SMS Update District Bridge Engineers Amjad Waheed, PE Engineering Division Office of Structural Engineering March 12, 2014

More information

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.ie.xemacs.org Description XEmacs Project Archive Country Ireland Scan Date 31/Oct/2014 Total Dirs 677 Total Files 4,166 Total Data 4.40 GB Top 20 Directories Sorted by Disk

More information

Improving Perforce Performance At Research In Motion (RIM)

Improving Perforce Performance At Research In Motion (RIM) Improving Perforce Performance At Research In Motion (RIM) Perforce User Conference il 2008 Tim Barrett 1 Agenda RIM s Environment RIM s Perforce performance problems Project approach and major initiatives

More information

IT Updates. Maryland Health Benefit Exchange Board Meeting April 15, Presented by: Isabel FitzGerald Secretary, DoIT

IT Updates. Maryland Health Benefit Exchange Board Meeting April 15, Presented by: Isabel FitzGerald Secretary, DoIT IT Updates Maryland Health Benefit Exchange Board Meeting April 15, 2014 Presented by: Isabel FitzGerald Secretary, DoIT A service of Maryland Health Benefit Exchange Agenda Overview of process for CT

More information

Porting FreeBSD to AArch64

Porting FreeBSD to AArch64 Porting FreeBSD to AArch64 Andrew Turner andrew@fubar.geek.nz 12 June 2015 About me Source committer focusing on ARM Freelance Software Engineer Status of arm64 (AArch64) Support to boot in QEMU committed

More information

University of the Free State - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

University of the Free State - FTP Site Statistics. Top 20 Directories Sorted by Disk Space University of the Free State - FTP Site Statistics Property Value FTP Server mirror.ufs.ac.za Description University of the Free State Country South Africa Scan Date 13/Jun/2014 Total Dirs 444,986 Total

More information

National Aeronautics and Space Admin. - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

National Aeronautics and Space Admin. - FTP Site Statistics. Top 20 Directories Sorted by Disk Space National Aeronautics and Space Admin. - FTP Site Statistics Property Value FTP Server ftp.hq.nasa.gov Description National Aeronautics and Space Admin. Country United States Scan Date 26/Apr/2014 Total

More information

University of Valencia - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

University of Valencia - FTP Site Statistics. Top 20 Directories Sorted by Disk Space University of Valencia - FTP Site Statistics Property Value FTP Server ftp.uv.es Description University of Valencia Country Spain Scan Date 30/Apr/2014 Total Dirs 423 Total Files 2,010 Total Data 4.46

More information

The power of ratings Ross Murray. What the world thinks of Sheffield and how everyone can get the most out of it!

The power of ratings Ross Murray. What the world thinks of Sheffield and how everyone can get the most out of it! The power of ratings Ross Murray What the world thinks of Sheffield and how everyone can get the most out of it! Agenda o o o o o TripAdvisor Overview UK insights on TripAdvisor Sheffield insights on TripAdvisor

More information

Grid Security Policy

Grid Security Policy CERN-EDMS-428008 Version 5.7a Page 1 of 9 Joint Security Policy Group Grid Security Policy Date: 10 October 2007 Version: 5.7a Identifier: https://edms.cern.ch/document/428008 Status: Released Author:

More information

Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms r

Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms r ACHIEVA Cafe Steve McDonell Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms remotely Not much content

More information

Internet Addressing and the RIR system (part 2)

Internet Addressing and the RIR system (part 2) Internet Addressing and the RIR system (part 2) 12 February 2004 Phnom Penh, Cambodia Paul Wilson, APNIC Overview Part 2 Allocation statistics Asia Pacific Internet Resource statistics Global Internet

More information

North American Portability Management, LLC Transition Oversight Manager. TOEP Webcast December 12, 2017

North American Portability Management, LLC Transition Oversight Manager. TOEP Webcast December 12, 2017 North American Portability Management, LLC Transition Oversight Manager TOEP Webcast December 12, 2017 Welcome to today s webcast Submit Questions for Q&A Webcast Issues Click the Q&A widget at the bottom

More information

SF Current Cumulative PTF Package. I B M i P R E V E N T I V E S E R V I C E P L A N N I N G I N F O R M A T I O N

SF Current Cumulative PTF Package. I B M i P R E V E N T I V E S E R V I C E P L A N N I N G I N F O R M A T I O N SF98720 Current Cumulative PTF Package I B M i P R E V E N T I V E S E R V I C E P L A N N I N G I N F O R M A T I O N Copyright IBM Corporation 1993, 2017 - The information in this document was last updated:

More information

Contract-based Programming in Ada 2012 A Tutorial

Contract-based Programming in Ada 2012 A Tutorial Contract-based Programming in Ada 2012 A tutorial on how to use the Ada 2012 features for specifying detailed, checked contracts for types and subprograms 1. Contracts document constraints on how types

More information

Spiegel Research 3.0 The Mobile App Story

Spiegel Research 3.0 The Mobile App Story Spiegel Research 3.0 The Mobile App Story The effects of adopting and using a brand s mobile application on purchase behaviors SU JUNG KIM THE PROJECT Smartphone penetration in the U.S. has reached 68

More information

MISO PJM Joint and Common Market Cross Border Transmission Planning

MISO PJM Joint and Common Market Cross Border Transmission Planning MISO PJM Joint and Common Market Cross Border Transmission Planning May 30, 2018 1 Coordinated System Plan Study 2 Using information from the March 30 Annual Issues Review, the JRPC has decided to perform

More information