Writing Books Using Open Source Software
|
|
|
- Piers Lyons
- 10 years ago
- Views:
Transcription
1 Writing Books Using Open Source Software Wesley J. Chun EuroPython/PyCon IT Firenze, IT Summer 2011 About the Speaker Software engineer by profession Currently at Google (cloud products) Course instructor: teaching Python since 1998 Private Corporate Training & Public Courses Community volunteer User groups: BayPIGgies and SF Python Meetup Other: Tutor mailing list; Python conferences Author/co-author (books, articles, blog, etc.) Core Python Programming ([2009,]2007, 2001) Python Fundamentals LiveLessons DVD (2009) Python Web Development with Django (2009) 1
2 I Teach I Write 2
3 I Code About The Talk We can write software using open source tools... Can the same be said of writing books? Hypothesis What do you think?!? :-) Proof? Give examples of open source tools used for software Show some of those same tools used for book-writing Discuss some authors and their tools 3
4 Software on the Shelf Books on the Shelf 4
5 About The Speaker Software engineer by profession, also book author Skipped generations of writing tools troff/nroff user but not LaTeX FrameMaker user but not Word Markdown, *wiki user but not DocBook nor Textile rest is next... vi (now vim) user since 1985 Not totally naive; know some emacs too ;) Prefer plain text editing (wonder why?) XML doesn't count... :P About the Development Tools Text editor(s) Syntax, formatting, and layout Versioning and backup Running tests Team communication Issue-tracking Generate for production 5
6 Text Editors: Source Code Text Editors: Manuscript 6
7 Syntax, Formatting, Layout (SFL) Writing software Programming language syntax Python, Perl, Ruby, VB Java, C, C++; PHP Writing books Markup Syntax rest, Markdown, *wiki, Textile DocBook-XML, SGML, LaTeX, *roff SFL: Source Code 7
8 SFL: Manuscript "Source" Versioning and Backup (V&B) Repository system SCCS, RCS, CVS, SVN (Subversion) git, hg (Mercurial), bzr (Bazaar) Backup and recovery cp, rcp, scp/rsync, tar, cpio, dump Amanda, Bacula, Mondo; DirSync, Unison; FlyBack, TimeVault Code vs. Manuscript Both sources are in like formats (plain text) Identical: managing files from repository Backup & recover: works the same for both 8
9 Running Tests Code: Unit and regression tests Question: can you "test" a document? Sure! (to a certain extent) For software, you're testing the code itself For a book, you can test... The code in your book if it is a technical book "Validity" if markup system is "tagged" (XML, etc.) Python "docstrings" really help Python Docstrings & doctest Module 9
10 "Testing" a Manuscript Team Communication Similar for software or book development various Mailing List and Archive Listserv, Majordomo, Mailman Listproc, Lyris, SmartList 10
11 , Mailing List, Archive Issue-Tracking (IT) trac, RT, Bugzilla, Redmine, BitBucket, Google Code 11
12 IT: Code issues New features Bugs Feature enhancements (or removals) Milestones IT: Manuscript "issues" New material "Bugs:" typos, errata Future or outdated material Milestones 12
13 Generate for Production (G4P) For end-user consumption; software & books... Undergo some production/release process More similar than you would think G4P: Code (Possible compilation process) Install on production server Shrinkwrapped software package (Possible printing, boxing, distributing, media) 13
14 G4P: Manuscript HTML, PDF, XML or other formatting "compilation" Proofreading/editing(*) and layout Printing, binding, distributing, perhaps media Just run make (!) 14
15 Case Studies Forcier, Bissex, Chun Ramm, Dangoor, Sayfan Mertz Beazley Martelli Summerfield Chun J. Forcier, P. Bissex, W. Chun 15
16 Python Web Development w/django Editing: vim, emacs, TextMate Format: Markdown Repository: svn Issue-tracking: trac Mailing list: Mailman Conversion: HTML (Markdown) => PS (html2ps) => PDF (ps2pdf) Build: make Miscellaneous: "try_excerpt" tool cuts-n-pastes code snippets; "test_snippets" tool tests code execution in manuscript FUTURE: rest (format), Sphinx (conversion), Redmine (issue-tracking), hg (repository) Irony: publisher import to Word 16
17 A book's makefile M. Ramm, K. Dangoor, G. Sayfan 17
18 Rapid Web Apps with TurboGears Format: Markdown Conversion: HTML (Markdown) => PDF (Adobe InDesign) -- all subsequent edits in InDesign Repository: svn Issue-tracking: trac FUTURE: rest (format), Sphinx (conversion), hg (repository) David Mertz 18
19 Text Processing in Python Preferences Using a plain text editor Extremely minimal markup language Editing: Boxer (OS/2), jedit (plain text editors) Markup: "Smart ASCII" Conversion: LaTeX (Python+shell scripts) => PDF (LaTeX tools) FUTURE: same as above but add repository David Beazley 19
20 Python Essential Reference Editing: emacs Format: plain text (1st edition only) Conversion: imported into Word Miscellaneous Created own indexer in Python Subsequent edits stay in Word Next editions use final master from previous FUTURE: not sure but better be plain-text editable Alex Martelli 20
21 Alex Martelli Python in a Nutshell Editing: Word "EEK, what a nightmare: never EVER again" Python Cookbook Markup: Docbook (XML) Editing: Oxygen (XML editor), vim and gvim Conversion: lots of Python scripts Repository: svn FUTURE: XMLmind (editing), hg (repository) Mark Summerfield 21
22 Mark Summerfield Rapid GUI Programming with Python and Qt Programming in Python 3 Markup: lout Similar to LaTeX but only does PS... no HTML, etc. Editing: vim and gvim Conversion: PS (lout) => PDF (ps2pdf) Miscellaneous: "snip" tool that cuts-n-pastes code snippets Wesley Chun 22
23 Wesley Chun Core Python Programming Masters Thesis (Employers') technical manuals Editing: Adobe FrameMaker Conversion: PS and PDF (FrameMaker) Python Fundamentals Markup: text w/minimal markup for bold & italics Editing: vim and gvim Conversion: imported into Word Conclusion? Introduced our hypothesis Demonstrated tools, usage for writing software & books Gave numerous examples of what authors use today Major outstanding issue Publisher still want.doc They will import your book to Word Manuscript files edited by publisher 23
24 Disconnect Edits/corrections not propagated back to source files Generated HTML imported elsewhere (e.g., into Word) All further editing with new master Authors may do it themselves only... If they insist and there is time If they have time Lucky if publisher has "talent" Editor who does plain text & markup Not applicable for developing software The Future and You Using and/or supporting open source? Considering writing a book? Afraid you can't stick with the tools you're familiar with? Think you can't publish unless you submit files in a proprietary word processor format? Think again 24
25 Future: Problem to solve Publishers still want Word... solutions? rest to doc/x converter? (need both ways though) May have to force publishers to be more flexible Convince publishers to accept other formats? Find editors who are more open to open source tools? Else produce camera-ready PDFs on your own Conclusion Industry Changes Hardware: proprietary *ix OSs to Linux, *BSD, etc. Software: proprietary tools to open source Book writing seems to follow the same trend For open source developers Writing a book in plain text makes you happier Spend less time as a fish out of water Must still deal w/publishers & proprietary tools 25
Software Configuration Management. Slides derived from Dr. Sara Stoecklin s notes and various web sources.
Software Configuration Management Slides derived from Dr. Sara Stoecklin s notes and various web sources. What is SCM? SCM goals Manage the changes to documents, programs, files, etc. Track history Identify
Open Source vs. Collaborative Software: FOSS is Not Enough
Open Source vs. Collaborative Software: FOSS is Not Enough Peter F. Peterson Much of the software at user facilities is developed is released by making the source code available and decorated with one
SA4 Software Developer Survey Survey Specification v2.2
Last updated: 30-06-2009 Activity: SA4 Dissemination Level: PP (Project Participants) Authors: Branko Marović (UoB/AMRES), Cezary Mazurek (PSNC), Gina Kramer (DANTE) Table of Contents 1 Introduction 1
Advanced Computing Tools for Applied Research Chapter 4. Version control
Advanced Computing Tools for Applied Research Jaime Boal Martín-Larrauri Rafael Palacios Hielscher Academic year 2014/2015 1 Version control fundamentals 2 What you probably do now Manually save copies
COS 333: Advanced Programming Techniques
COS 333: Advanced Programming Techniques How to find me bwk@cs, www.cs.princeton.edu/~bwk 311 CS Building 609-258-2089 (but email is always better) TA's: Stephen Beard, Chris Monsanto, Srinivas Narayana,
Documentation and Project Organization
Documentation and Project Organization Software Engineering Workshop, December 5-6, 2005 Jan Beutel ETH Zürich, Institut TIK December 5, 2005 Overview Project Organization Specification Bug tracking/milestones
Maven or how to automate java builds, tests and version management with open source tools
Maven or how to automate java builds, tests and version management with open source tools Erik Putrycz Software Engineer, Apption Software [email protected] Outlook What is Maven Maven Concepts and
Continuous Integration. CSC 440: Software Engineering Slide #1
Continuous Integration CSC 440: Software Engineering Slide #1 Topics 1. Continuous integration 2. Configuration management 3. Types of version control 1. None 2. Lock-Modify-Unlock 3. Copy-Modify-Merge
Introduction to Version Control
Research Institute for Symbolic Computation Johannes Kepler University Linz, Austria Winter semester 2014 Outline General Remarks about Version Control 1 General Remarks about Version Control 2 Outline
Software Sustainability Services. Some vague initial technical thoughts Chris Cannam, March 2010
Software Sustainability Services Some vague initial technical thoughts Chris Cannam, March 2010 What services do we want to offer? Code repository For use by developers of new software and maintainers
THE OPEN SOURCE DEVELOPER REPORT
THE OPEN SOURCE DEVELOPER REPORT 2011 ECLIPSE COMMUNITY SURVEY JUNE 20 11 EXECUTIVE SUMMARY Eclipse is a large, vibrant, well-established open source community with over 200 open source projects, close
Google and Open Source. Jeremy Allison Google Open Source Programs Office [email protected]
Google and Open Source Jeremy Allison Google Open Source Programs Office [email protected] Who Am I? Engineer in Google Open Source Programs Office What do we do? License Compliance Code Release The Summer
Version Control with Subversion
Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one! it is called version control Version control (aka Revision Control System or
Maven the Beautiful City. Healthy, Viable, and Productive Build Infrastructures
Maven the Beautiful City Healthy, Viable, and Productive Build Infrastructures What is Maven? Build tool Similar to Ant but fundamentally different which we will discuss later Dependency management tool
How To Run Linux On Windows 7 (For A Non-Privileged User) On A Windows 7 Computer (For Non-Patty) On Your Computer (Windows) On An Unix Computer (Unix) On Windows) On The Same
Working from Home Tools and Technologies for Improving Your Programming Environment Daniel J. Hood [email protected] Overview Tools for MS Windows (and others OSs) SSH SCP X Windows Tunneling X Connections
CISC 275: Introduction to Software Engineering. Lab 5: Introduction to Revision Control with. Charlie Greenbacker University of Delaware Fall 2011
CISC 275: Introduction to Software Engineering Lab 5: Introduction to Revision Control with Charlie Greenbacker University of Delaware Fall 2011 Overview Revision Control Systems in general Subversion
Theme 1 Software Processes. Software Configuration Management
Theme 1 Software Processes Software Configuration Management 1 Roadmap Software Configuration Management Software configuration management goals SCM Activities Configuration Management Plans Configuration
Software Development Processes For Embedded Development A checklist for efficient development using open-source tools
Software Development Processes For Embedded Development A checklist for efficient development using open-source tools Senior Embedded Software Architect Embedded evolution More processing power available
An Introduction to Mercurial Version Control Software
An Introduction to Mercurial Version Control Software CS595, IIT [Doc Updated by H. Zhang] Oct, 2010 Satish Balay [email protected] Outline Why use version control? Simple example of revisioning Mercurial
DocBook Framework (DBF)
DocBook Framework (DBF) The Apache Velocity Developers V 1.0 Copyright 2006-2007 The Apache Software Foundation Table of Contents 1. Preface... 1 1.1. About this Project... 1 1.2. License Information...
Why this lecture exists ITK Lecture 12: Open Source & Cross Platform Software Development
Why this lecture exists ITK Lecture 12: Open Source & Cross Platform Software Development Methods in Image Analysis CMU Robotics Institute 16-725 U. Pitt Bioengineering 2630 Spring Term, 2006 Successfully
GR A universal framework for visualization applications
Mitglied der Helmholtz-Gemeinschaft GR A universal framework for visualization applications 26. April 2012 73. Koordinierungstreffen J. Heinen GR Layer Structure Fortran C / C++ Objective-C Python Ruby...
Software Configuration Management
Software Configuration Management 1 Software Configuration Management Four aspects Version control Automated build Change control Release Supported by tools Requires expertise and oversight More important
Introduction to OpenTM2 An Open Source Solution for Translators
Introduction to An Open Source Solution for Translators Gerhard Fetz & Michael Schneider October 25, 2012 Version 1.0 Agenda General Overview Strategy & Vision Objectives & Benefits The Global Architecture
Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)
Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and
6 CURRENT JOB OPENINGS:
TO ALL GRADUATING STUDENTS: Looking for an opportunity to enter the exciting Mobile App Development industry? We have the right place for you and we want you! We are Singapore s pioneering mobile app development
Intro etckeeper bup ikiwiki git-annex vcsh mr Zsh Outro. Gitify your life. web, blog, configs, data, and backups
web, blog, configs, data, and backups Richard Hartmann, RichiH@{freenode,OFTC,IRCnet}, [email protected] 2013-05-22 Outline 1 Intro 2 etckeeper 3 bup 4 ikiwiki 5 git-annex 6 vcsh 7 mr 8 Zsh
Source Control Systems
Source Control Systems SVN, Git, GitHub SoftUni Team Technical Trainers Software University http://softuni.bg Table of Contents 1. Software Configuration Management (SCM) 2. Version Control Systems: Philosophy
Software configuration management
Software Engineering Theory Software configuration management Lena Buffoni/ Kristian Sandahl Department of Computer and Information Science 2015-09-30 2 Maintenance Requirements System Design (Architecture,
Version Control Script
Version Control Script Mike Jackson, The Software Sustainability Institute Things you should do are written in bold. Suggested dialog is in normal text. Command- line excerpts and code fragments are in
RAP Software Process Checklist
RAP Software Process Checklist It is recommended that every RAP project fill out the project checklist on a regular basis to make software process a consciousdecision. The purpose of this checklist is
Version Control Tools
Version Control Tools Source Code Control Venkat N Gudivada Marshall University 13 July 2010 Venkat N Gudivada Version Control Tools 1/73 Outline 1 References and Resources 2 3 4 Venkat N Gudivada Version
SOFTWARE DEVELOPMENT BASICS SED
SOFTWARE DEVELOPMENT BASICS SED Centre de recherche Lille Nord Europe 16 DÉCEMBRE 2011 SUMMARY 1. Inria Forge 2. Build Process of Software 3. Software Testing 4. Continuous Integration 16 DECEMBRE 2011-2
Version Control with Git
Version Control with Git Ben Wasserman ([email protected]) 15-441 Computer Networks Recitation 3 1/28 What is version control? Revisit previous code versions Backup projects Work with others Find where
Distributed Version Control with Mercurial and git
OpenStax-CNX module: m37404 1 Distributed Version Control with Mercurial and git Hannes Hirzel This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract
Education. Relevant Courses
and s and s COMM/CS GPA: topsecret Developed application and designed logo: https://play.google.com/- store/apps/details?id=com.teamhex. colorbird Permanent Address 759 East 221 Street Apt. Website: 1B
Software Engineering Practices for Python
Software Engineering Practices for Python Coding Experiences Good development practices help with the following situations: You swear that the code worked perfectly 6 months ago, but today it doesn't,
MSWL Development & Tool. Eclipse IDE
MSWL Development & Tool Eclipse IDE Micael Gallego [email protected] Escuela Técnica Superior de MSWL: Official Master's Program on Libre Ingeniería Informática Software - Development Tools Departamento
Web 2.0 Technology Overview. Lecture 8 GSL Peru 2014
Web 2.0 Technology Overview Lecture 8 GSL Peru 2014 Overview What is Web 2.0? Sites use technologies beyond static pages of earlier websites. Users interact and collaborate with one another Rich user experience
Viewpoint. Choosing the right automation tool and framework is critical to project success. - Harsh Bajaj, Technical Test Lead ECSIVS, Infosys
Viewpoint Choosing the right automation tool and framework is critical to project success - Harsh Bajaj, Technical Test Lead ECSIVS, Infosys Introduction Organizations have become cognizant of the crucial
Taking full advantage of the medium does also mean that publications can be updated and the changes being visible to all online readers immediately.
Making a Home for a Family of Online Journals The Living Reviews Publishing Platform Robert Forkel Heinz Nixdorf Center for Information Management in the Max Planck Society Overview The Family The Concept
Keep it Simple... 7 Transformation-based Development (2013 and Beyond)...7 Less Customization and More Innovation...8 Time to Market...
1 CONtENTS Advances in Technology have Profoundly Changed Publishing...3 Document Management: As It Used to be Done (prior to 2005)...4 The Advent of XML and Native XML Databases (2005 2012)...5 Putting
Traditional Commercial Software Development. Open Source Development. Traditional Assumptions. Intangible Goods. Dr. James A.
Open Source Development Dr. James A. Bednar [email protected] http://homepages.inf.ed.ac.uk/jbednar Traditional Commercial Software Development Producing consumer-oriented software is often done in
What CCPForge does Introduction to SESC and CCPForge Workshop Gemma Poulter [email protected] http://www.softeng-support.ac.
What CCPForge does Introduction to SESC and CCPForge Workshop Gemma Poulter [email protected] http://www.softeng-support.ac.uk What is CCPForge? Software development environment Originally intended
Miguel A. Figueroa Villanueva Xabriel J. Collazo Mojica. ICOM 5047 Capstone Miguel A. Figueroa Villanueva University of Puerto Rico Mayagüez Campus
Document and Information Management: A Software Developer s Perspective Xabriel J. Collazo Mojica Outline Introduction Why should I (you) care? Document management CMS Wiki Aigaion Code and Document Repositories
Software documentation systems
Software documentation systems Basic introduction to various user-oriented and developer-oriented software documentation systems. Ondrej Holotnak Ondrej Jombik Software documentation systems: Basic introduction
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of
DAISY PRODUCER: AN INTEGRATED PRODUCTION MANAGEMENT SYSTEM FOR ACCESSIBLE MEDIA
42 DAISY2009 LEIPZIG Christian Egli DAISY PRODUCER: AN INTEGRATED PRODUCTION MANAGEMENT SYSTEM FOR ACCESSIBLE MEDIA Christian Egli Swiss Library for the Blind and Visually Impaired Zurich Grubenstrasse
BACKUP YOUR SENSITIVE DATA WITH BACKUP- MANAGER
Training course 2007 BACKUP YOUR SENSITIVE DATA WITH BACKUP- MANAGER Nicolas FUNKE PS2 ID : 45722 This document represents my internships technical report. I worked for the Biarritz's Town Hall during
ALERT installation setup
ALERT installation setup In order to automate the installation process of the ALERT system, the ALERT installation setup is developed. It represents the main starting point in installing the ALERT system.
SOFTWARE TESTING TRAINING COURSES CONTENTS
SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software
Version Control with. Ben Morgan
Version Control with Ben Morgan Developer Workflow Log what we did: Add foo support Edit Sources Add Files Compile and Test Logbook ======= 1. Initial version Logbook ======= 1. Initial version 2. Remove
RESPONSES TO QUESTIONS AND REQUESTS FOR CLARIFICATION Updated 7/1/15 (Question 53 and 54)
RESPONSES TO QUESTIONS AND REQUESTS FOR CLARIFICATION Updated 7/1/15 (Question 53 and 54) COLORADO HOUSING AND FINANCE AUTHORITY 1981 BLAKE STREET DENVER, CO 80202 REQUEST FOR PROPOSAL Intranet Replacement
Software Development Tools & Environments
Software Development Tools & Environments Software Development Tools & Environments A tool is a program or application that software developers use to create, debug, or maintain other programs and applications.
Version control with Subversion
Version control with Subversion Davor Cubranic Grad Seminar October 6, 2011 With searching comes loss And the presence of absence: My Thesis not found. Version Control A tool for managing changes to a
My review of Webfaction
My review of Webfaction victor September 17, 2009 One year has past since I bought Webfaction s virtual hosting service. Today, I want to share my experience. Webfaction s virtual hosting is more than
Aaron Evans. [email protected]. 425-242-4304 Software Quality Assurance, Test Automation, SDET, Web Developer
Aaron Evans [email protected] 425-242-4304 Software Quality Assurance, Test Automation, SDET, Web Developer Work Experience Alaska Airlines (consultant with Apex Systems) June 2011 December 2011 Title:
Welcome to CSE 330 Crea0ve Progamming and Rapid Prototyping. Course Informa0on
Welcome to CSE 330 Crea0ve Progamming and Rapid Prototyping 1 Extensible - CSE 330 Creative Networking Programming Platform and Rapid Prototyping 1 Course Informa0on Instructor Todd Sproull [email protected]
Redmine: A project management software tool. January, 2013
Redmine: A project management software tool January, 2013 Outline Introduction to Redmine. Important concepts of Redmine. How to use Redmine. 1 Introduction: What is Redmine? Redmine is a project management
Barely Sufficient Software Engineering: 10 Practices to Improve Your Research CSE Software
Barely Sufficient Software Engineering: 10 Practices to Improve Your Research CSE Software Special Thanks: LDRD NNSA ASC SAND#: 2009-0579 C Michael A. Heroux James M. Willenbring Sandia National Laboratories
TEST AUTOMATION FRAMEWORK
TEST AUTOMATION FRAMEWORK Twister Topics Quick introduction Use cases High Level Description Benefits Next steps Twister How to get Twister is an open source test automation framework. The code, user guide
Two case studies of Open Source Software Development: Apache and Mozilla
1 Two case studies of Open Source Software Development: Apache and Mozilla Audris Mockus, Roy Fielding, and James D Herbsleb Presented by Jingyue Li 2 Outline Research questions Research methods Data collection
Two Best Practices for Scientific Computing
Two Best Practices for Scientific Computing Version Control Systems & Automated Code Testing David Love Software Interest Group University of Arizona February 18, 2013 How This Talk Happened Applied alumnus,
Software Configuration Management Plan
Bachelor Technische Informatica Kroket Kroket Software Configuration Management Plan Project Manager: Sebastiaan Candel Authors: Peter van Heck (0649886) Peter Koymans (0748876) Kay Lukas (0758084) Astrid
What works for us and IT lessons learned
What works for us and IT lessons learned Ģirts Ziemelis Latvian Country Tourism Association Lauku Ceļotājs 22.- 23.11.2011, Kernaves Bajoryne International Workshop on ICT in Rural Tourism LC IT Project
Version Control Systems
Version Control Systems ESA 2015/2016 Adam Belloum [email protected] Material Prepared by Eelco Schatborn Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN
Network monitoring systems & tools
Network monitoring systems & tools Network & Service Monitoring tools Nagios server and service monitor Can monitor pretty much anything HTTP, SMTP, DNS, Disk space, CPU usage,... Easy to write new plugins
Software Development. Overview. www.intland.com
Agile, Waterfall & Hybrid Method Support SAFe Template Git, SVN, Mercurial Integration Release Management DevOps Baselining (Versioning) Integration to Requirements and QA & Testing Overview codebeamer
Datzilla. Error Reporting and Tracking for NOAA Data
Datzilla Error Reporting and Tracking for NOAA Data Overview Datzilla is a web based system used to report and track errors in NOAA datasets and Data Products. It is an adaptation of the software bug tracking
Auto-Generating Documentation & Source Code
Auto-Generating Documentation & Source Code http://d3s.mff.cuni.cz Pavel Parízek [email protected] CHARLES UNIVERSITY IN PRAGUE faculty of mathematics and physics Documentation Nástroje pro vývoj
Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number.
Version control Version control is a powerful tool for many kinds of work done over a period of time, including writing papers and theses as well as writing code. This session gives a introduction to a
Oracle Application Express MS Access on Steroids
Oracle Application Express MS Access on Steroids Jules Lane Principal Consultant Tactical Database Development options Spreadsheets Encourage data duplication and inconsistency, clog
Migrating from Linux to Mac OS X. David Wheeler Kineticode, Inc.
Migrating from Linux to Mac OS X David Wheeler Kineticode, Inc. Why Mac OS X It s Unix It Just Works It runs common productivity applications It Rocks It s a joy to Work with It s Unix Did I mention that
DTWMS Required Software Engineers. 1. Senior Java Programmer (3 Positions) Responsibilities:
DTWMS Required Software Engineers 1. Senior Java Programmer (3 Positions) Responsibilities: Responsible to deliver quality software solutions using standard end to end software development cycle Collaborate
CrownPeak Playbook CrownPeak Hosting with PHP
CrownPeak Playbook CrownPeak Hosting with PHP Version 1.0 2014, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,
