naming things prepared by Jenny Bryan for Reproducible Science Workshop
|
|
|
- Barrie Ball
- 8 years ago
- Views:
Transcription
1 naming things prepared by Jenny Bryan for Reproducible Science Workshop
2 Names matter
3 NO myabstract.docx Joe s Filenames Use Spaces and Punctuation.xlsx figure 1.png fig 2.png JW7d^(2sl@deletethisandyourcareerisoverWx2*.txt YES _abstract-for-sla.docx joes-filenames-are-getting-better.xlsx fig01_scatterplot-talk-length-vs-interest.png fig02_histogram-talk-attendance.png _raw-data-from-challenger-o-rings.txt
4 three principles for (file) names machine readable human readable plays well with default ordering
5 awesome file names :)
6 machine readable regular expression and globbing friendly - avoid spaces, punctuation, accented characters, case sensitivity easy to compute on - deliberate use of delimiters
7 Excerpt of complete file listing: Example of globbing to narrow file listing: Jennifers-MacBook-Pro-3: jenny$ ls *Plasmid* _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A01.csv _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A02.csv _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A03.csv _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_B01.csv _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_H03.csv _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_platefile.csv
8 Same using Mac OS Finder search facilities:
9 Same using R s ability to narrow file list by regex: > list.files(pattern = "Plasmid") %>% head [1] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A01.csv" [2] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A02.csv" [3] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A03.csv" [4] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_B01.csv" [5] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_B02.csv" [6] " _BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_B03.csv"
10 Deliberate use of _ and - allows us to recover metadata from the filenames. > flist <- list.files(pattern = "Plasmid") %>% head > stringr::str_split_fixed(flist, "[_\\.]", 5) [,1] [,2] [,3] [,4] [,5] [1,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A01" "csv" [2,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A02" "csv" [3,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A03" "csv" [4,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B01" "csv" [5,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B02" "csv" [6,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B03" "csv" date assay sample set well This happens to be R but also possible in the shell, Python, etc.
11 > flist <- list.files(pattern = "Plasmid") %>% head > stringr::str_split_fixed(flist, "[_\\.]", 5) [,1] [,2] [,3] [,4] [,5] [1,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A01" "csv" [2,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A02" "csv" [3,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "A03" "csv" [4,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B01" "csv" [5,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B02" "csv" [6,] " " "BRAFWTNEGASSAY" "Plasmid-Cellline-100-1MutantFraction" "B03" "csv" _ underscore used to delimit units of meta-data I want later - hyphen used to delimit words so my eyes don t bleed
12 machine readable easy to search for files later easy to narrow file lists based on names easy to extract info from file names, e.g. by splitting new to regular expressions and globbing? be kind to yourself and avoid - spaces in file names - punctuation - accented characters - different files named foo and Foo
13 human readable name contains info on content connects to concept of a slug from semantic URLs
14 human readable Jennifers-MacBook-Pro-3:analysis jenny$ ls -1 01_marshal-data.md 01_marshal-data.r 02_pre-dea-filtering.md 02_pre-dea-filtering.r 03_dea-with-limma-voom.md 03_dea-with-limma-voom.r 04_explore-dea-results.md 04_explore-dea-results.r 90_limma-model-term-name-fiasco.md 90_limma-model-term-name-fiasco.r Makefile figure helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r tmp.txt 01.md 01.r 02.md 02.r 03.md 03.r 04.md 04.r 90.md 90.r Makefile figure helper01.r helper02.r helper03.r helper04.r tmp.txt Which set of file(name)s do you want at 3a.m. before a deadline?
15 human readable 01_marshal-data.r 02_pre-dea-filtering.r 03_dea-with-limma-voom.r embrace the slug 04_explore-dea-results.r 90_limma-model-term-name-fiasco.r helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r
16 human readable easy to figure out what the heck something is, based on its name
17 plays well with default ordering put something numeric first use the ISO 8601 standard for dates left pad other numbers with zeros
18 plays well with default ordering chronological order logical order 01_marshal-data.r 02_pre-dea-filtering.r 03_dea-with-limma-voom.r 04_explore-dea-results.r 90_limma-model-term-name-fiasco.r helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r
19 plays well with default ordering 01_marshal-data.r 02_pre-dea-filtering.r 03_dea-with-limma-voom.r 04_explore-dea-results.r 90_limma-model-term-name-fiasco.r helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r put something numeric first
20 plays well with default ordering use the ISO 8601 standard for dates YYYY-MM-DD
21
22 Comprehensive map of all countries in the world that use the MMDDYYYY format
23 left pad other numbers with zeros 01_marshal-data.r 02_pre-dea-filtering.r 03_dea-with-limma-voom.r 04_explore-dea-results.r 90_limma-model-term-name-fiasco.r helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r if you don t left pad, you get this: 10_final-figs-for-publication.R 1_data-cleaning.R 2_fit-model.R which is just sad
24 plays well with default ordering put something numeric first use the ISO 8601 standard for dates left pad other numbers with zeros
25 three principles for (file) names machine readable human readable plays well with default ordering
26 three principles for (file) names easy to implement NOW payoffs accumulate as your skills evolve and projects get more complex
27 go forth and use awesome file names :) 01_marshal-data.r 02_pre-dea-filtering.r 03_dea-with-limma-voom.r 04_explore-dea-results.r 90_limma-model-term-name-fiasco.r helper01_load-counts.r helper02_load-exp-des.r helper03_load-focus-statinf.r helper04_extract-and-tidy.r
NaviCell Data Visualization Python API
NaviCell Data Visualization Python API Tutorial - Version 1.0 The NaviCell Data Visualization Python API is a Python module that let computational biologists write programs to interact with the molecular
Creating Codes with Spreadsheet Upload
Creating Codes with Spreadsheet Upload Ad-ID codes are created at www.ad-id.org. In order to create a code, you must first have a group, prefix and account set up and associated to each other. This document
Notepads Import File Specification
s Import File Specification To import a notepad file, select the file using the Browse button then click on the Automatic import link: 1. Select the file to import 2. Click on the Automatic Import link
Filemaker Go 12/13 pre-installed (available free of charge from the App Store)
OVERVIEW Logbook9.fmp12 is a data file that can be run interchangeably on an iphone, ipad, ipod touch, PC or Mac. It can be used to collect information about clinical cases that may subsequently be collated
CashManager OnLine Positive Pay Set-Up Information
CashManager OnLine Positive Pay Set-Up Information Branch Banking and Trust Company, Member FDIC. Only deposit products are FDIC insured. 2015, Branch Banking and Trust Company. All rights reserved. Revised:
PowerPoint Presentation to Accompany. Chapter 3. File Management. Copyright 2014 Pearson Educa=on, Inc. Publishing as Pren=ce Hall
PowerPoint Presentation to Accompany Chapter 3 File Management Objectives 1. Create folders to organize files. 2. Explain the importance of file extensions. 3. Explain the importance of backing up files.
Using the HFSD journal for deleted file recovery
available at www.sciencedirect.com journal homepage: www.elsevier.com/locate/diin Using the HFSD journal for deleted file recovery Aaron Burghardt*, Adam J. Feldman Booz Allen Hamilton, Herndon, VA 20171,
Score Management Software User Guide Addendum
Score Management Software User Guide Addendum July 2007 Score Management Software User Guide Addendum July 2007 Writing: Daniel Lieberson and Bryan Woerner Editing and proofreading: Jeannie Rennie Review:
Demographic Batch Search (DBS)
British Isles Network of Congenital Anomaly Registers BINOCAR Standard Operating Procedure for Demographic Batch Search (DBS) Instructions for the Registration and Surveillance of Congenital Anomalies
SIX Trade Repository AG
May 2016 Please note: The SIX Trade Repository (SIX TR) has not yet been registered with FINMA. It is therefore not yet an authorized Swiss trade repository. The content of this documentation is without
Command Line - Part 1
Command Line - Part 1 STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat Course web: gastonsanchez.com/teaching/stat133 GUIs 2 Graphical User Interfaces
Welcome Computer System Validation Training Delivered to FDA. ISPE Boston Area Chapter February 20, 2014
Welcome Computer System Validation Training Delivered to FDA ISPE Boston Area Chapter February 20, 2014 1 Background Training Conducted on April 24, 2012 Food & Drug Administration Division of Manufacturing
CHAD TILBURY. [email protected]. http://forensicmethods.com @chadtilbury
CHAD TILBURY [email protected] 0 Former: Special Agent with US Air Force Office of Special Investigations 0 Current: Incident Response and Computer Forensics Consultant 0 Over 12 years in the trenches
CORPORATE RECORDS MANAGEMENT STANDARDS - STANDARD NAMING CONVENTIONS FOR ELECTRONIC FILES, FOLDERS AND RECORDS 1
CORPORATE RECORDS MANAGEMENT STANDARDS - STANDARD NAMING CONVENTIONS FOR ELECTRONIC FILES, FOLDERS AND RECORDS 1 SUMMARY OF PRINCIPAL CHANGES General changes This document has been revised to reflect the
Ad Hoc Reporting: Data Export
Ad Hoc Reporting: Data Export Contents Ad Hoc Reporting > Data Export... 1 Export Format Options... 3 HTML list report (IMAGE 1)... 3 XML (IMAGE 2)... 4 Delimited Values (CSV)... 4 Fixed Width (IMAGE 10)...
AAFCO Check Sample Program New Data Reporting Website Manual Date of Issue: March 1 st 2014
Victoria S. Siegel, Ph.D., Chair Collaborative Check Sample Program Committee AAFCO Check Sample Program New Data Reporting Website Manual Date of Issue: March 1 st 2014 1. Registered participants in any
The following features have been added to FTK with this release:
FTK 2.0.2 Readme The following sections present information on the new features, resolved issues, and known issues with the FTK 2.0.2 release. NEW FEATURES The following features have been added to FTK
Installing Hortonworks Sandbox 2.1 VirtualBox on Mac
Installing Hortonworks Sandbox 2.1 VirtualBox on Mac Getting Ready to install on Mac using Oracle VirtualBox Use this section to prepare for your installation. Prerequisites To use the Hortonworks Sandbox
Downloading & Using Data from the STORET Warehouse: An Exercise
Downloading & Using Data from the STORET Warehouse: An Exercise August 2012 This exercise addresses querying or searching for specific water resource data, and the respective methods used in collecting
1001ICT Introduction To Programming Lecture Notes
1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 3 A First MaSH Program In this section we will describe a very
Kaseya 2. User Guide. Version 7.0. English
Kaseya 2 Log Parsers User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS
User s Guide for the Texas Assessment Management System
User s Guide for the Texas Assessment Management System Version 8.3 Have a question? Contact Pearson s Austin Operations Center. Call 800-627-0225 for technical support Monday Friday, 7:30 am 5:30 pm (CT),
File Management Where did it go? Teachers College Summer Workshop
File Management Where did it go? Teachers College Summer Workshop Barbara Wills University Computing Services Summer 2003 To Think About The Beginning of Wisdom is to Call Things by the Right Names --
FTP Service Reference
IceWarp Unified Communications Reference Version 11.3 Published on 1/6/2015 Contents... 3 About... 4 Reference... 5 General Tab... 5 Dialog... 6 FTP Site... 6 Users... 7 Groups... 11 Options... 14 Access...
VMware vcenter Log Insight User's Guide
VMware vcenter Log Insight User's Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
Setting Up the TCP/IP Scanner
Setting Up the TCP/IP Scanner The TCP/IP Scanner tab in the New Connection window helps you find and connect to remote computers, even when you don t know their IP addresses, by browsing your local network
FTP Service Reference
IceWarp Server FTP Service Reference Version 10 Printed on 12 August, 2009 i Contents FTP Service 1 V10 New Features... 2 FTP Access Mode... 2 FTP Synchronization... 2 FTP Service Node... 3 FTP Service
How To Test The Bandwidth Meter For Hyperv On Windows V2.4.2.2 (Windows) On A Hyperv Server (Windows V2) On An Uniden V2 (Amd64) Or V2A (Windows 2
BANDWIDTH METER FOR HYPER-V NEW FEATURES OF 2.0 The Bandwidth Meter is an active application now, not just a passive observer. It can send email notifications if some bandwidth threshold reached, run scripts
BRAIN ASYMMETRY. Outline
2 BRAIN ASYMMETRY 3 Outline Left Brain vs. Right Brain? Anatomy of the Corpus Callosum Split Brain The Left Hemisphere The Right Hemisphere Lateralization of Emotion 1 Questionnaire 4 1. When you work
Package fimport. February 19, 2015
Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,
Creating Geospatial Metadata. Kim Durante Geo4Lib Camp
Creating Geospatial Metadata Kim Durante Geo4Lib Camp Overview Metadata requirements for geospatial data Workflows for creating layer-level ISO metadata Auto-generating metadata using templates, XSL, Python,
Naming Conventions for Digital Documents
Department of Education & Early Development DIVISION OF LIBRARIES, ARCHIVES & MUSEUMS Alaska State Archives Records & Information Management Service (RIMS) 141 Willoughby Avenue P.O. Box 110571 Juneau,
PROGRAMMING FOR BIOLOGISTS. BIOL 6297 Monday, Wednesday 10 am -12 pm
PROGRAMMING FOR BIOLOGISTS BIOL 6297 Monday, Wednesday 10 am -12 pm Tomorrow is Ada Lovelace Day Ada Lovelace was the first person to write a computer program Today s Lecture Overview of the course Philosophy
A computer running Windows Vista or Mac OS X
lab File Management Objectives: Upon successful completion of Lab 2, you will be able to Define the terms file and folder Understand file and memory storage capacity concepts including byte, kilobyte,
Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF
1 Version Control with Svn, Git and git-svn Kate Hedstrom ARSC, UAF 2 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last
VMware vrealize Log Insight User's Guide
VMware vrealize Log Insight User's Guide vrealize Log Insight 2.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
Nuix Forensic Focus 2014 Webinar Accelerating investigations using advanced ediscovery techniques 6 th March 2014
Nuix Forensic Focus 2014 Webinar Accelerating investigations using advanced ediscovery techniques 6 th March 2014 All rights reserved 2014. Nuix Software ABOUT THE PRESENTERS Paul Slater Director of Forensic
Sharing Files and Printers. Mac/PC Compatibility: QuickStart Guide for Business
Sharing Files and Printers Mac/PC Compatibility: QuickStart Guide for Business 2 Sharing Files and Printers QuickStart Guide for Business The Basics Users often need to exchange files with colleagues who
Introduction to Mac OS X
Introduction to Mac OS X The Mac OS X operating system both a graphical user interface and a command line interface. We will see how to use both to our advantage. Using DOCK The dock on Mac OS X is the
Big Data and Analytics by Seema Acharya and Subhashini Chellappan Copyright 2015, WILEY INDIA PVT. LTD. Introduction to Pig
Introduction to Pig Agenda What is Pig? Key Features of Pig The Anatomy of Pig Pig on Hadoop Pig Philosophy Pig Latin Overview Pig Latin Statements Pig Latin: Identifiers Pig Latin: Comments Data Types
Norwex Office Suite: The Consultant Experience
Norwex Office Suite: The Consultant Experience This document describes what you, as a consultant, will experience when you log onto your Norwex Office Suite website. You will be required to access your
Electronic Remittance Advice (ERA) Processor
Electronic Remittance Advice (ERA) Processor Users Guide Brief description of the Electronic Remittance Advice (835) or Electronic EOB A Remittance Advice (RA) is a notice of payments and adjustments sent
Research Data Archival Guidelines
Research Data Archival Guidelines LEROY MWANZIA RESEARCH METHODS GROUP APRIL 2012 Table of Contents Table of Contents... i 1 World Agroforestry Centre s Mission and Research Data... 1 2 Definitions:...
Programming Languages CIS 443
Course Objectives Programming Languages CIS 443 0.1 Lexical analysis Syntax Semantics Functional programming Variable lifetime and scoping Parameter passing Object-oriented programming Continuations Exception
Guidelines for Data Collection & Data Entry
Guidelines for Data Collection & Data Entry Theresa A Scott, MS Vanderbilt University Department of Biostatistics [email protected] http://biostat.mc.vanderbilt.edu/theresascott Theresa A Scott,
Rapid Game Development Using Cocos2D-JS
Rapid Game Development Using Cocos2D-JS An End-To-End Guide to 2D Game Development using Javascript Hemanthkumar and Abdul Rahman This book is for sale at http://leanpub.com/cocos2d This version was published
Parallels Virtualization SDK ReadMe -------------------------------------------------------------------------------- CONTENTS:
Parallels Virtualization SDK ReadMe CONTENTS: 1. About Parallels Virtualization SDK 2. System Requirements 2.1. Mac OS Client Computers 2.2. Windows Client Computers 2.3. Linux Client Computers 3. Network
THE ARCHIVAL SECTOR IN DW2.0 By W H Inmon
The fourth sector of the DW2.0 environment is the archival sector. Fig arch.1 shows the architectural positioning of the archival sector. Fig arch.1 The archival sector All data that flows into the archival
BusinessObjects XI Release 2. Separated Values (CSV) Exporting
BusinessObjects XI Release 2 Separated Values (CSV) Exporting Overview Contents This document describes enhancements to the Separated Values (CSV) Export functionality available in BusinessObjects Enterprise
DEBT COLLECTION SYSTEM ACCOUNT SUBMISSION FILE
CAPITAL RESOLVE LTD. DEBT COLLECTION SYSTEM ACCOUNT SUBMISSION FILE (DCS-ASF1107-7a) For further technical support, please contact Clive Hudson (IT Dept.), 01386 421995 13/02/2012 Account Submission File
Archiving Your Photo Collection I
Archiving Your Photo Collection I August 2006 Statistics tell us that, once we switch to digital, we take three times as many shots compared to film. Handling this flood of digital data has become a major
Fast track to HTML & CSS 101 (Web Design)
Fast track to HTML & CSS 101 (Web Design) Level: Introduction Duration: 5 Days Time: 9:30 AM - 4:30 PM Cost: 997.00 Overview Fast Track your HTML and CSS Skills HTML and CSS are the very fundamentals of
Computer Forensic Capabilities
Computer Forensic Capabilities Agenda What is computer forensics? Where to find computer evidence Forensic imaging Forensic analysis What is Computer Forensics? The preservation, identification, extraction,
UNIX Operating Environment
97 CHAPTER 14 UNIX Operating Environment Specifying File Attributes for UNIX 97 Determining the SAS Release Used to Create a Member 97 Creating a Transport File on Tape 98 Copying the Transport File from
Chapter 7. Using Hadoop Cluster and MapReduce
Chapter 7 Using Hadoop Cluster and MapReduce Modeling and Prototyping of RMS for QoS Oriented Grid Page 152 7. Using Hadoop Cluster and MapReduce for Big Data Problems The size of the databases used in
Version Control with Git. Kate Hedstrom ARSC, UAF
1 Version Control with Git Kate Hedstrom ARSC, UAF Linus Torvalds 3 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last
Applies to Version 6 Release 5 X12.6 Application Control Structure
Applies to Version 6 Release 5 X12.6 Application Control Structure ASC X12C/2012-xx Copyright 2012, Data Interchange Standards Association on behalf of ASC X12. Format 2012 Washington Publishing Company.
CatDV Pro Workgroup Serve r
Architectural Overview CatDV Pro Workgroup Server Square Box Systems Ltd May 2003 The CatDV Pro client application is a standalone desktop application, providing video logging and media cataloging capability
Using Oracle Data Integrator with Essbase, Planning and the Rest of the Oracle EPM Products
Using Oracle Data Integrator with Essbase, Planning and the Rest of the Oracle EPM Products Edward Roske [email protected] BLOG: LookSmarter.blogspot.com WEBSITE: www.interrel.com TWITTER: ERoske 2 4
www.apacheviewer.com Apache Logs Viewer Manual
Apache Logs Viewer Manual Table of Contents 1. Introduction... 3 2. Installation... 3 3. Using Apache Logs Viewer... 4 3.1 Log Files... 4 3.1.1 Open Access Log File... 5 3.1.2 Open Remote Access Log File
your Apple warranty; see http://www.drivesavers.com/. There are two main failure modes for a mirrored RAID 1 set:
48981c03.qxd 12/6/07 8:56 PM Page 142 142 File Systems RAID set creation takes only a few moments, and once it s complete, you should see new RAID set volume in the Disk Utility list and in the Finder.
FREQUENTLY ASKED QUESTIONS ABOUT ELECTRONIC DATA TRANSMISSION
FREQUENTLY ASKED QUESTIONS ABOUT ELECTRONIC DATA TRANSMISSION for the Revised: July 2014 NEW YORK STATE DEPARTMENT OF HEALTH Bureau of Narcotic Enforcement 1-866-811-7957 www.health.ny.gov/professionals/narcotic
Xerox Standard Accounting Import/Export User Information Customer Tip
Xerox Standard Accounting Import/Export User Information Customer Tip July 23, 2012 Overview Xerox Standard Accounting (XSA) software is a standard feature that resides locally on the device. It provides
Identity Finder: Managing Your Results
Identity Finder: Managing Your Results The most important part of running Identity Finder is determining the most effective and secure way of managing the search results. Be sure to carefully read and
Introduction to IBM SPSS Statistics
CONTENTS Arizona State University College of Health Solutions College of Nursing and Health Innovation Introduction to IBM SPSS Statistics Edward A. Greenberg, PhD Director, Data Lab PAGE About This Document
Dyalog for Mac OS Installation and Configuration Guide
The tool of thought for expert programming Dyalog for Mac OS Installation and Configuration Guide Version 14.1 Dyalog Limited Minchens Court, Minchens Lane Bramley, Hampshire RG26 5BH United Kingdom tel:
MY WORLD GIS. Installation Instructions
MY WORLD GIS Version 4.1 Installation Instructions Copyright 2007 by Northwestern University. All rights reserved. Created August 15, 2002 Last Revised April 14, 2008 2. Launching the Installer On the
MDT-ASD chip and mezz card naming conventions 28 August 2003
1. MDT mezzanine board serial numbers and subfields... 2 1.1 Board identifier... 2 1.2 Assembly revision... 2 1.3 Serial number... 2 1.4 Check sum... 3 2. Parts lists... 4 2.1 Chamber type identifier...
Electronic Data Transmission Guide For International Mailers
Electronic Data Transmission Guide For International Mailers Version 1.2.1 November 5 th, 2012 UPS Mail Innovations Revision History Version Date Reviser Notes 1.0 6/11/2012 Brian Tomazic Initial Release
CS 2112 Lab: Version Control
29 September 1 October, 2014 Version Control What is Version Control? You re emailing your project back and forth with your partner. An hour before the deadline, you and your partner both find different
ITP 101 Project 3 - Dreamweaver
ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with
April 2012 Setup, Configuration and Use. Document Version: Product Version: SAP Version: Localization: 1.1.0 8.80.103 8.
April 2012 Setup, Configuration and Use Document Version: Product Version: SAP Version: Localization: 1.1.0 8.80.103 8.8 All regions Enprise Bank 2012 Enprise Solutions All rights reserved. No parts of
Associate Professor, Department of CSE, Shri Vishnu Engineering College for Women, Andhra Pradesh, India 2
Volume 6, Issue 3, March 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Special Issue
Mac OS X for Unix Geeks. Hit The Ground Running
Mac OS X for Unix Geeks Hit The Ground Running Overview 1. System Architecture 2. System Administration 3. GUI Tricks 4. Command line tricks 5. Docs & Resources Architecture -1- Directory Layout / /Applications
Unix Scripts and Job Scheduling
Unix Scripts and Job Scheduling Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh [email protected] http://www.sis.pitt.edu/~spring Overview Shell Scripts
FileMaker 12. ODBC and JDBC Guide
FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
Best Practices for Document Naming Conventions
An Applied Knowledge Group, Inc. Whitepaper 2100 Reston Parkway Suite 400 Reston, Virginia 20191 703.860.1145 www.akgroup.com Best Practices for Document Naming Conventions Best Practices and Strategy
Payment Page Extensions. Online Payment Processing for Businesses Worldwide. www.telr.com
Payment Page Extensions Online Payment Processing for Businesses Worldwide www.telr.com Page 2 of 13 Contents About this guide... 3 Copyright... 3 Introduction... 3 Using an extension... 4 Additional information
vmprof Documentation Release 0.1 Maciej Fijalkowski, Antonio Cuni, Sebastian Pawlus
vmprof Documentation Release 0.1 Maciej Fijalkowski, Antonio Cuni, Sebastian Pawlus January 23, 2016 Contents 1 Introduction 1 1.1 Requirements............................................... 1 1.2 Installation................................................
Digital Forensics with Open Source Tools
Digital Forensics with Open Source Tools Cory Altheide Harlan Carvey Technical Editor Ray Davidson AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO
Matching Service Adapter
What is the Matching Service Adapter? Matching Service Adapter What does the Matching Service Adapter do? Table of contents Benefits of using the Matching Service Adapter Disadvantages of using the Matching
Chapter 2 Text Processing with the Command Line Interface
Chapter 2 Text Processing with the Command Line Interface Abstract This chapter aims to help demystify the command line interface that is commonly used in UNIX and UNIX-like systems such as Linux and Mac
There are many useful and free tools available for working with digital materials. Here are some I use...
There are many useful and free tools available for working with digital materials. Copy & Transfer Tools Rename Tools Integrity & Fixity Tools File Editing Tools File Format Tools Here are some I use...
A Basic Guide To Onsite SEO
A Basic Guide To Onsite SEO Table of Contents Introduction A Web Page Deconstructed Keyword Research Page Content Page Heading Page URL Title Tag Meta Description Tag Images A Few Further Points Mobile
SQL 2012 Installation Guide. Manually installing an SQL Server 2012 instance
SQL 2012 Installation Guide Manually installing an SQL Server 2012 instance Fig 1.2 Fig 1.1 Installing SQL Server Any version and edition of Microsoft SQL Server above 2000 is supported for use with the
