DOWNLOAD PDF LEARN C ON THE MAC

Size: px
Start display at page:

Download "DOWNLOAD PDF LEARN C ON THE MAC"

Transcription

1 Chapter 1 : How should i learn C++ on a mac? Yahoo Answers Dave Mark is a longtime Mac developer and author who has written a number of books on Mac and ios development, including Beginning iphone 4 Development (Apress, ), More iphone 3 Development (Apress, ), Learn C on the Mac (Apress, ), The Macintosh Programming Primer series (Addison-Wesley, ), and Ultimate Mac Programming (Wiley. Choose what works best for you â the familiar light appearance or the new Dark Mode. Introducing two new time-shifting desktops that match the hour of the day wherever you are. Slide to see how the Dynamic Desktop changes throughout the day. Stacks keeps your desktop free of clutter by automatically organizing your files into related groups. Arrange by kind to see images, documents, spreadsheets, PDFs, and more sort themselves. You can also group your work by date. And if you tag files with project-specific metadata, like client names, sorting by stacks becomes a powerful way to manage multiple jobs. To scrub through a stack, use two fingers on a trackpad or one finger on a Multi-Touch mouse. To access a file, click to expand the stack, then open what you need. Now you can quickly locate a file by how it looks. And perform Quick Actions on files without ever opening an app. So finding that image of the smiling girl by the Ferris wheel or the PDF with a colorful pie chart has never been faster. Rotate images, create PDFs, trim video, and more â without having to open an app or rename and save your file. You can even apply them to multiple files at once, or create a custom Quick Action based on an Automator workflow. Complete Metadata Metadata provides the key details of any file. Quick Look Work on a file without even opening it. Now a tap of your space bar provides more than just a quick look at a file. So you can mark up a PDF, rotate and crop an image, even trim audio and video. Just launch the new Screenshot utility or press Shift-Command Take a screenshot and a thumbnail of it animates to the corner of the screen. You can drag it directly into a document or click it to mark it up and share it right away â without having to save a copy. Page 1

2 Chapter 2 : Learn C - Free Interactive C Tutorial Learn C on the Mac is a relatively simple read. The author does not assume that you're already a C programmer and therefore takes you step-by-step from the beginning through important topics that apply to many different languages. What is C Programming Language? C is a general-purpose programming language used for wide range of applications from Operating systems like Windows and ios to software that is used for creating 3D movies. C programming is highly efficient. Standard C programs are portable. The source code written in one system works in another operating system without any change. If you know C programming, you will not just understand how your program works, but will also be able to create a mental picture on how a computer works. More information on C Language. Assembly languages are low-level programming languages that are specific to a particular computer architecture. They are hard to write and understand. Johnson decided to rewrite the system in B language. A large part of Unix was then rewritten in C. By, C was powerful enough to be used in Unix Kernel. Dennis Ritchie and Stephen C. Johnson made further changes to the language for several years to make it portable in Unix Operating system. The first edition of the book provided programmers informal specification of the language. This version is commonly popular as C This is commonly known as C It will help you learn the language the way it was intended. Features of C Programming Language A procedural language. In procedural languages like C, a list of predefined instructions are carried out step by step. A typical C program may contain one or more procedures functions to perform a task. If you are new to programming, you might think this is the only way all programming languages work. However, there are other programming paradigms as well. One of the commonly used paradigms is Object-oriented programming OOP which allows developers to create objects to solve the given task. If you are interested, check out the differences between procedural and object oriented languages. C programs are fast. Newer languages like Python and Java offer more features garbage collection, dynamic typing than C programming. However, the performance lowers due to additional processing. C language trusts programmers and allows direct manipulation of the computer hardware. This is not possible in most high-level programming languages. Well-written standard C programs are portable, meaning, programs written in one system e. Windows 7 can be compiled in another system e. Mac OS without any change. You can store sections of C code in the form of libraries for future use. This concept is known as modularity. C itself can do very little on its own. The power of C language comes from its libraries. C comes with standard libraries to solve common problems. C is a statically typed language. This means that the type of a variable is checked during the compile time but not in the run-time. This helps in detection of errors during the software development cycle. Also, the statically typed languages are faster than dynamically typed language in general. Despite being old, C is used in variety of applications from system programming to photo editing softwares. Some of the applications where C programming is used are as follows: Personally speaking, I love C programming. It is a good language to start your programming journey if you are a newbie. Even if you are an experienced programmer, I recommend you to learn it at some point; it will certainly help. What will you gain if you learn C? Sure, your application works fine and all. You will understand how a computer works. If you know C, you will not only know how your program works but, you will be able to create a mental model on how a computer works including memory management and allocation. You will learn to appreciate the freedom that C provides unlike Python and Java. Understanding C allows you to write programs that you never thought were possible before or at the very least, you will have a broader understanding of computer architecture and programming as a whole. C is the lingua franca of programming. Almost all high-level programming languages like Java, Python, JavaScript etc. Opportunity to work on open source projects that impact millions of people. At first, you may overlook the fact that C is an important language. Then, where is C programming? Python is used for making wide range for applications. And, C is used for making Python. If you want to contribute to Python, you need to know C programming to work on Python interpreter that impacts millions of Python programmers. This is just one example. A large number of softwares that you use today is powered by C. You will write better programs. To be honest, this statement may not be true all the Page 2

3 time. However, knowing how computer works and manage memory gives you insight on how to write efficient code in other programming languages. You will find it much easier to learn other programming languages. Reasons not to learn C programming You can create awesome softwares without knowing C programming at all. Jeff Atwood, one of the creators of Stackoverflow. Also, if you are a newbie and want to start learning programming with an easier language C is not the easiest of language to learn, you can start with Python. Verdict on whether to learn C programming or not For newbie: For many, C programming is the best language to start learning programming. However, if you want to start with an easier language which is clean and easier to grasp, go for Python. You can learn it when you have free time and want to expand your programming skills. However, you should learn C eventually. Compile and run C programming on your OS There are numerous compilers and text editors you can use to run C programming. These compilers and text editors may differ from system to system. Run C program Online There are several sites that allows you to run C programming online. The one I prefer is ideone. To run C programming in Ideone. Click the download Xcode link. When download is completed, open Xcode and follow the wizard to install it. You might want to put the Xcode in Applications for future use. Provide the Product Name, for example: And, choose C under Language section. Choose the location where you want to save the project in your Mac. You can uncheck Create Git repository button and click create. Change the code as you wish. By default you will see the output at the bottom of your screen. Or, you can download text editor of your choice. Open the terminal and issue the following command. For Ubuntu and Debian distribution: To verify if gcc compiler is installed, issue the command. Open the text editor of your choice and save a file with. If you are a Linux wizard, feel free to use vim or emacs. Switch to the directory where the file is located. And, issue the following command. And, name-of-your-choice can be any name you prefer. In my case, I issued the following command. Page 3

4 Chapter 3 : Learn C the Hard Way Mastering the C programming language - a classic code environment used to build software, apps, and whole operating systems - is a great skill, and Mac OS X makes it easy to learn. About the Desktop The desktop is the background area of your screen. It can display icons for hard disks, CDs, and any servers connected to your computer. You can also store files and folders directly on your desktop for quick access. Using System Preferences, you can customize the appearance of your desktop and choose the types of items shown on the desktop. Navigating the desktop The desktop shows icons for everything it contains, such as your hard disk, folders, documents, and image files. When you open a folder on the desktop, a new Finder window opens automatically. To navigate the desktop: To move to the desktop, press VO-Shift-D. To quickly move to an item on the desktop, type the first letter of the item. To move around items on the desktop, press the arrow keys. To open the selected item on the desktop, press Command-O. About the Finder The Finder is the program that manages your files, applications, disks, network connections, and devices such as printers. The top-left corner of a Finder window contains three colored buttons used to close the window, send the window to the Dock minimize, or change the window to its previous size zoom. Under the buttons, along the top of the window, is a toolbar used to navigate, change the view, find items, and perform other actions. Use the view buttons to choose how to display the contents of your hard disk and folders in Finder. You can choose icon, list, column, or Cover Flow view. Use the Action pop-up menu to choose commands for the item selected in the Finder window. Use the search field to type a word or phrase to locate an item. Search results appear in the view browser. You can use the buttons below the search field to focus the search to a particular location. Sidebar and view browser Use the sidebar to display a list of items that you frequently use, including disks, servers, and folders. The list is organized into sections. The Places section has icons for folders you use most frequently, including your home folder and some folders inside it, such as Documents, Music, and Pictures. The Downloads folder is the default location for any software or files you download from the Internet. The Search For section includes Smart Folders that collect items meeting specific criteria, such as all files, folders, and applications you used yesterday, or all PDF documents. Use the view browser to view the contents of the folder selected in the sidebar. You can use a toolbar button to view the contents in icon, list, column, or Cover Flow views. Navigating the Finder Finder windows display the items on your computer. You use VoiceOver commands or gestures to open and navigate Finder windows. You can use Finder shortcuts to work with selected files and folders. The instructions below assume that cursor tracking is on, and the VoiceOver cursor and keyboard focus are tracking each other. To open a Finder window: Then navigate to the Finder, which is the first item in the Dock. Choose Finder in the Application Chooser. If a Finder window was open, you go to that window. Otherwise, you go to the desktop. Then use the Right Arrow key to navigate to the Finder menu. To navigate a Finder window: Press VO-Right Arrow key until you hear the view you want to use. You can choose from icon, list, column, or Cover Flow view. In Cover Flow view, the browser is split horizontally into two sections. The top section is a graphical view of each item, such as folder icons or a preview of the first page of a document. The bottom section is a list view of the items. When you hear the item you want, jump to it in the view browser; you can interact with it. To jump, press VO-J. Use the arrow keys to move to the item you want. To move down the list rows, press VO-Down Arrow. Or press VO-R to hear the entire row read at once. To move down the list until you find the folder or file you want, use the Down Arrow key. To move into subfolders, press the Right Arrow key. To flip through the items in the top section and move automatically through the corresponding list rows in the bottom section, press the Left Arrow or Right Arrow key. When you find the file or folder you want to open, use the Finder shortcut Command-O or Command-Down Arrow to open it. To use Finder shortcuts: You can use Finder shortcuts to work with selected files or folders. To move to the parent of the selection such as the folder that contains a subfolder you have selected, press Command-Up Arrow. To add the selection to the Finder sidebar, press Command-T. To add the selection to the Favorites folder, press Control-Command-T. To add the selection to the Dock, press Shift-Command-T. You can temporarily hide the toolbar and sidebar in a Page 4

5 Finder window to make it easier to navigate. To hide or show the toolbar and sidebar, click the button in the upper-right corner of the window. About the Dock You use the Dock to open applications, documents, folders, and more. By default, it appears across the bottom of the screen. The Dock comes with icons for some applications, such as Mail and itunes; you can add others. Each item in the Dock has a shortcut menu that gives you quick access to commands for that item. You can customize the Dock by changing its magnification, repositioning it, and more. Using the Dock Use the Dock to open applications, documents, folders, or stacks. To navigate the Dock: To move in the Dock, use the arrow keys. You can also navigate in the Dock by starting to type the name of an application or folder. For example, to move to Mail, start typing its name; the VoiceOver cursor moves to the Mail icon and VoiceOver announces it. To use items in the Dock: To move an item in the Dock, hold down the Option key and use the arrow keys to move the item. Each arrow key press moves it one place. To open an item in the Dock, press VO-Space bar. To open a shortcut menu for an item, press VO-Shift-M, and then use the arrow keys to move up and down the shortcut menu. To close the shortcut menu without making a selection, press the Escape key. To add an item to the Dock, navigate to the item in Finder or on the desktop and then press Command-Shift-T. The item is added next to the Trash icon. Press the Escape key. To make the Dock visible again without moving the mouse pointer, press VO-D. About menus and the menu bar The menu bar at the top of the screen contains the Apple menu, application menus, status menus, and the Spotlight menu. The Apple menu at the left end of the menu bar is always available. It contains commands to get information about your computer and to set system preferences, among others. Application menus change to match the active application but typically include File, Edit, Format, Window, and Help menus. Status menus display information and provide shortcuts to system and application settings, such as the volume slider, battery level indicator, or Universal Access menu. The Spotlight menu is at the right end of the menu bar. Use Spotlight to search your computer for documents, music, and more. You can search for an application and open it from Spotlight. For example, to open a new Finder window, you open the File menu and choose New. Hearing alternative functions for menu items You can learn whether a menu item uses modifier keys such as the Control or Command keys to provide alternative functions. To hear if an item has alternative functions: Move the VoiceOver cursor to a menu command. Press a modifier key and listen. If an alternative function exists when that modifier is used, VoiceOver speaks it. As you move from one item to another, VoiceOver clears the modifier key you pressed and speaks the default function for the item. About files and folders Most of the information in your computer is stored in files. Files include documents, images, applications, and so on. Folders are simply a collection of files. Each file or folder is represented by an icon with its name below or to the right of the icon. Chapter 4 : macos - Learn C# on mac? - Stack Overflow Learn Objective-C on the Mac: For OS X and ios, Second Edition updates a best selling book and is an extensive, newly updated guide to Objective-C. Objective-C is a powerful, object-oriented extension of C, making this update the perfect follow-up to Dave Mark's bestselling Learn C on the Mac. Chapter 5 : Learn Objective-C on the Mac [Book] Learn Objective-C on the Mac by Scott Knaster, Mark Dalrymple Take your coding skills to the next level with this extensive guide to Objective-C, the native programming language for developing sophisticated software applications for Mac OS X. Objective-C is a powerful, object-oriented extension of C, making this book the perfect follow. Chapter 6 : Learn Objective-C on the Mac For OS X and ios, 2nd Edition - pdf - Free IT ebooks Download This book update should continue the strong selling success of the first edition, Learn C on the Mac. Dave Mark is a recognized Apple Mac and iphone expert. C makes learning Objective-C much easier, as the key language behind the ios SDK - a hot tech and book market area. Considered a classic by an. Page 5

6 Chapter 7 : blog.quintoapp.com: Customer reviews: Learn Objective-C on the Mac: For OS X and ios I first read Learn C on a Mac and then read this book. My intentions were to learn how to develop on the iphone. I had a very minimum background in programming and and after reading the first book, I felt confident in taking everything in and the most important part, getting it. Chapter 8 : Learn C the Hard Way Yes, it's as good a place to learn C++ as anything else. You have a few options for getting set up: 1. Apple's XCode is free from the Mac App Store. This is a complete development environment, including a C++ compiler. Chapter 9 : New to Mac - Official Apple Support The classic beginning C book for the Mac THE gateway book for learning to program on both the Mac and iphone! Approachable and aimed squarely at people new to C and the Mac Considered a classic by an entire generation of Mac programmers, this popular guide has been updated for Mac OS X. Don't know. Page 6

Finder windows To open a new Finder window, click the Finder icon in the Dock, then select File > New Window.

Finder windows To open a new Finder window, click the Finder icon in the Dock, then select File > New Window. https://support.apple.com/en-us/ht201732 Mac Basics: The Finder organizes all of your files The Finder in OS X provides access to your files, folders, and drives, and helps you to keep them organized.

More information

Touring the Mac. S e s s i o n 1 : G e t t i n g Familiar With The Mac

Touring the Mac. S e s s i o n 1 : G e t t i n g Familiar With The Mac Touring the Mac S e s s i o n 1 : G e t t i n g Familiar With The Mac Touring_the_Mac_Session-1_Sep-28-2010 1 A Map of Your Mac (Chapter 1) After turning on your computer, the screen that appears on your

More information

Use the Apple menu to change settings, get Mac OS X software, open recent items, and restart or shut down your computer.

Use the Apple menu to change settings, get Mac OS X software, open recent items, and restart or shut down your computer. Welcome to Mac OS X Aqua makes using your Mac easier than ever. Its color, depth, and motion guide you through your tasks, while the Finder and Dock provide easy access to your computer and network. Aqua

More information

Organizing Screens with Mission Control

Organizing Screens with Mission Control 7 Organizing Screens with Mission Control If you re like a lot of Mac users, you like to do a lot of things at once. No matter how big your screen may be, it can still feel crowded as you open and arrange

More information

Mac OS X Handbook MacBook Westhampton Beach School District

Mac OS X Handbook MacBook Westhampton Beach School District Mac OS X Handbook MacBook Westhampton Beach School District www.westhamptonbeach.k12.ny.us Table of Contents Features and Design! 3 The Downloads Stack! 4 Customization! 5 Finder! 6 Cover Flow! 7 Icons!

More information

Mac OSX Basics. Spring 2014

Mac OSX Basics. Spring 2014 Mac OSX Basics Spring 2014 Objectives By the end of this tutorial, you will be able to: move confidently around the Mac s desktop and menus. locate any program installed on the Mac. manipulate windows

More information

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1 Lesson Using Adobe Bridge What you ll learn in this lesson: Navigating Adobe Bridge Using folders in Bridge Making a Favorite Creating metadata Using automated tools Adobe Bridge is the command center

More information

Created by Eugene Stephens 2015

Created by Eugene Stephens 2015 Mac OS X (10.9) Hardware Power cable - Magsafe adapter has 3 states: o Off Not plugged in, not charging o Amber Charging o Green Fully charged o NOTE: Because the port on the laptop is magnetized, small

More information

Where Did I Save That File?

Where Did I Save That File? Note: This discussion is based on MacOS, 10.13.6 (High Sierra). Some illustrations may differ when using other versions of macos or OS X. Illustrations are from screenshots on my imac. As I mentioned in

More information

Apple is rightfully proud of the user interface design incorporated into

Apple is rightfully proud of the user interface design incorporated into Customizing OS X Apple is rightfully proud of the user interface design incorporated into the Macintosh OS X family of operating systems. The interface is easy to use, and it s also easy to customize so

More information

Tabbing Between Fields and Control Elements

Tabbing Between Fields and Control Elements Note: This discussion is based on MacOS, 10.12.6 (Sierra). Some illustrations may differ when using other versions of macos or OS X. The capability and features of the Mac have grown considerably over

More information

Introducing OS X El Capitan 7

Introducing OS X El Capitan 7 Contents Contents 3 Introducing OS X El Capitan 7 About OS X El Capitan 8 Installing OS X El Capitan 9 The OS X Environment 0 About Your Mac About System Preferences 6 Changing the Appearance 7 Changing

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

PDF Expert for ipad User guide

PDF Expert for ipad User guide PDF Expert for ipad User guide 2011 Readdle Inc. 2 Contents Introduction Chapter 1: Copying documents to PDF Expert USB file transfer using itunes File Sharing Saving attachments from Mail and other ipad

More information

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module.

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module. OS X Welcome to the OS X Basics Learning Module. This module will teach you the basic operations of the OS X operating system, found on the Apple computers in the College of Technology computer labs. The

More information

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

Guide to Parallel Operating Systems with Windows 7 and Linux

Guide to Parallel Operating Systems with Windows 7 and Linux Guide to Parallel Operating Systems with Windows 7 and Linux Chapter 3 Using the Graphical User Interface Objectives Use the Start menu and Applications menu Tailor the desktop Access data on your computer

More information

New to Mac. Viewing Options in Finder:

New to Mac. Viewing Options in Finder: New to Mac Finder Preferences Finder helps you find and organize your files. To set Finder preferences, click on your desktop > Click Finder on the top left menu > Preferences. General Check External Hard

More information

Apple is rightfully proud of the user interface design incorporated into

Apple is rightfully proud of the user interface design incorporated into Customizing OS X Apple is rightfully proud of the user interface design incorporated into the Macintosh OS X family of operating systems. The interface is easy to use, and it s also easy to customize so

More information

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION Module 1 Using Windows Welcome! Microsoft Windows is an important part of everyday student life. Whether you are logging onto an NSCC computer or

More information

Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X. [Type here]

Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X. [Type here] [Type here] Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X This guide is aimed at those who are new to using Mac s. It assumes that you have prior knowledge of using a computer, probably a PC. The

More information

The First-Time Login Must Be On-Campus using Ethernet Cable

The First-Time Login Must Be On-Campus using Ethernet Cable Mac OS X Configuration Tips & Resources Information Technology Services The First-Time Login Must Be On-Campus using Ethernet Cable September 8, 2016 1. Before your start up your new (or re-imaged) Mac

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

Intro to the Apple Macintosh Operating System, OSX

Intro to the Apple Macintosh Operating System, OSX Intro to the Apple Macintosh Operating System, OSX Introduction. The Apple Macintosh Operating system or OS, is one of the oldest operating systems in use on a personal computer 1. It has been designed

More information

Introducing Mountain Lion 7

Introducing Mountain Lion 7 Contents Contents Introducing Mountain Lion 7 About OS X Mountain Lion 8 Installing Mountain Lion 9 The OS X Environment 0 Aqua Interface About Your Mac About System Preferences 7 Changing the Background

More information

QromaTag for Mac. User Guide. v1.0.5

QromaTag for Mac. User Guide. v1.0.5 QromaTag for Mac User Guide v1.0.5 About QromaTag v1 QromaTag for Mac is a new way to create and embed industry standard photo metadata into your digital images using Natural Language Tagging. Unlike traditional

More information

Trash in the Dock. May 21, 2017, Beginners SIG The Dock (Part 3 of 3)

Trash in the Dock. May 21, 2017, Beginners SIG The Dock (Part 3 of 3) Note: This discussion is based on MacOS, 10.12.4 (Sierra). Some illustrations may differ when using other versions of macos or OS X. Credit: http://tidbits.com/e/17088 ( macos Hidden Treasures: Dominate

More information

DOWNLOAD PDF START A BASIC C PROGRAMS FOR BEGINNERS

DOWNLOAD PDF START A BASIC C PROGRAMS FOR BEGINNERS Chapter 1 : C programs Programming Simplified C Programming Examples This page contains a collection examples on basic concepts of C programming like: loops, functions, pointers, structures etc. Feel free

More information

Keynote Basics Website:

Keynote Basics Website: Keynote Basics Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages. If you

More information

Task Bar and Start Menu

Task Bar and Start Menu LEC. 8 College of Information Technology / Software Department.. Computer Skills I / First Class / First Semester 2017-2018 Task Bar and Start Menu The Windows 8.1 desktop Most of the elements that make

More information

Menu Symbols. Menu Symbol. Key on Keyboard

Menu Symbols. Menu Symbol. Key on Keyboard Menu Symbols Menu Symbol Key on Keyboard Command/Apple Key (like Control on a PC) Also written as Cmd Option (like Alt on a PC) Shift Control (Control-click = Right-click) Tab Return Enter (on Number Pad)

More information

Mac OS X keyboard shortcuts Learn about common Mac OS X keyboard shortcuts.

Mac OS X keyboard shortcuts Learn about common Mac OS X keyboard shortcuts. Mac OS X keyboard shortcuts Learn about common Mac OS X keyboard shortcuts. Startup Keystroke Press X during startup Press Option-Command-Shift- Delete!during startup Press C during startup Press N during

More information

Covering the Basics. Lesson 1

Covering the Basics. Lesson 1 Lesson 1 Covering the Basics This lesson demonstrates a few fundamentals of Mac OS X (Panther) to prepare you to work with Final Cut Express 2. It shows you how to view the contents of your hard drive

More information

Caja File Manager. Desktop User Guide

Caja File Manager. Desktop User Guide Caja File Manager Desktop User Guide Desktop User Guide» Working with Files This chapter describes how to use the Caja file manager. Introduction Spatial Mode Browser Mode Opening Files Searching For Files

More information

Welcome to Mac OS X, the world s most advanced operating system. This book helps you start using Mac OS X. First install the software, then discover h

Welcome to Mac OS X, the world s most advanced operating system. This book helps you start using Mac OS X. First install the software, then discover h Welcome to Mac OS X Welcome to Mac OS X, the world s most advanced operating system. This book helps you start using Mac OS X. First install the software, then discover how easy it is to use. 2 Installing

More information

OS X keyboard shortcuts

OS X keyboard shortcuts OS X keyboard shortcuts Summary Learn about common OS X keyboard shortcuts. A keyboard shortcut is a way to invoke a function in OS X by pressing a combination of keys on your keyboard. Original source:

More information

Mac Tips & Tricks Phil Davis 2018

Mac Tips & Tricks Phil Davis 2018 Mac Tips & Tricks Phil Davis 2018 Ponder these thoughts 1. Computers should help you, not other way around 2. Your computer is only as smart as its user 3. Anticipate problems -- always have a Plan B TOPICS

More information

AT That s Free. By Andrew Leibs. Accessibility Built Into Microsoft Windows & Office

AT That s Free. By Andrew Leibs. Accessibility Built Into Microsoft Windows & Office AT That s Free By Andrew Leibs Before the digital age, assistive technology was hard to miss, and hard to buy. Classmates would see a sight-impaired student s boxy video magnifier or hear her computer

More information

The Start menu (overview)

The Start menu (overview) The Start menu (overview) The Start menu is the main gateway to your computer's programs, folders, and settings. It's called a menu because it provides a list of choices, just as a restaurant menu does.

More information

Keynote. New Keynote Presentation. Keynote Window. Open Keynote icon in the dock.

Keynote. New Keynote Presentation. Keynote Window. Open Keynote icon in the dock. KMS IMOVIE 09 TUTORIAL GRADE LEVEL: 7-8 Keynote New Keynote Presentation 1. Open Keynote icon in the dock. 2. In the Theme Chooser window that appears, select a theme by highlighting the theme and clicking

More information

Mac: Beyond Basics. Window 2 (Microsoft Word) Window 1 (folder contents)

Mac: Beyond Basics. Window 2 (Microsoft Word) Window 1 (folder contents) Mac: Beyond Basics Working with windows When you open a file or application, you will see a window. This window is your working area. It is possible to have many windows open at the same time. This allows

More information

PhoneView Product Manual

PhoneView Product Manual PhoneView Product Manual PhoneView is a Mac application for accessing iphone, ipad or ipod touch imessages, SMS/MMS, WhatsApp messages, recent calls, contacts, voicemails, shared app data, Safari web bookmarks

More information

Hello. Quick Start Guide

Hello. Quick Start Guide Hello. Quick Start Guide Welcome to your new MacBook Pro. Let us show you around. This guide shows you what s on your Mac, helps you set it up, and gets you up and running with tips for the apps you ll

More information

Apps Every College Student Should Have

Apps Every College Student Should Have Apps Every College Student Should Have Evernote Evernote makes it easy to remember things big and small from your everyday life using your computer, phone, tablet and the web. (All Platforms) myhomework

More information

GETTING TO KNOW YOUR MACBOOK PRO. Equipment. 1. Ports LEFT SIDE RIGHT SIDE

GETTING TO KNOW YOUR MACBOOK PRO. Equipment. 1. Ports LEFT SIDE RIGHT SIDE GETTING TO KNOW YOUR MACBOOK PRO Equipment 1. Ports LEFT SIDE RIGHT SIDE USB 3, Headphone/speaker Jack 2. Thunderbolt Dongle (laptop to VGA for projector) 3. Power Cord & Power Button - connect AC Power

More information

MAC BASICS. 125 S. Prospect Avenue, Elmhurst, IL (630) elmhurstpubliclibrary.org. Start Using Computers, Tablets, and Internet

MAC BASICS. 125 S. Prospect Avenue, Elmhurst, IL (630) elmhurstpubliclibrary.org. Start Using Computers, Tablets, and Internet MAC BASICS WHAT IS MAC? Introduction What We ll Cover While many users are only familiar with Windows computers, working on a Mac is both extremely user friendly and offers a variety of included creative

More information

The PCC CIS etutorial to Windows

The PCC CIS etutorial to Windows The PCC CIS etutorial to Windows Table of Contents What do I see when I start my computer?...3 What is the desktop?...4 What is the start menu?...5 How do I adjust my windows?...6 How do I minimize a window?...6

More information

The ultimate guide to Mac keyboard shortcuts

The ultimate guide to Mac keyboard shortcuts The ultimate guide to Mac keyboard shortcuts Whether you're a newbie or an experienced Apple user, this guide will show you how to let your fingers do the walking around your Mac. The fastest way to navigate

More information

Introducing macos High Sierra 7

Introducing macos High Sierra 7 Contents 3 Contents Introducing macos High Sierra 7 About macos High Sierra 8 Installing macos High Sierra 9 The macos Environment 0 About Your Mac About System Preferences 6 Search Options 7 Using Siri

More information

Section 1. System Technologies and Implications. Modules. Introduction to computers. File management. ICT in perspective. Extended software concepts

Section 1. System Technologies and Implications. Modules. Introduction to computers. File management. ICT in perspective. Extended software concepts Section 1 System Technologies and Implications Modules 1.1 Introduction to computers 1.2 Software 1.3 Hardware 1.4 File management 1.5 ICT in perspective 1.6 Extended software concepts 1.7 Extended hardware

More information

Mac OS X Part 3. The University of Utah Student Computing Labs Macintosh Support

Mac OS X Part 3. The University of Utah Student Computing Labs Macintosh Support Mac OS X Mac OS X Part 3 The University of Utah Student Computing Labs Macintosh Support mac@scl.utah.edu Basic overview of Mac OS X s interface Finding files/folders Basic overview of directory structure

More information

Page 1 of 6 Mac OS X keyboard shortcuts Summary Learn about common Mac OS X keyboard shortcuts. A keyboard shortcut is a way to invoke a function in Mac OS X by pressing a combination of keys on your keyboard.

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Proloquo2Go (ipad, iphone and ipod touch). In this tutorial you will learn how to create, export and import backups with itunes File Sharing using the

More information

Meeting your new mac

Meeting your new mac Meeting your new mac by Robin Shostack, Harvard, Jan 31, 2005 Why mac? Desktop Web browsing Mac mail Burning CDs Getting help Topics Why move to macs? Mac OS X (macintosh operating system version 10) easy

More information

Computer Basics. Hardware. This class is designed to cover the following basics:

Computer Basics. Hardware. This class is designed to cover the following basics: Computer Basics This class is designed to cover the following basics: computer hardware software computer s operating system different kinds of storage devices you can use to save files using a mouse what

More information

2018 imovie High Sierra

2018 imovie High Sierra 2018 imovie High Sierra 1 Create a Movie Open imovie. Select the Projects button from the top menu. Click Create New. Next, Click Movie. You will see a sidebar of libraries and events, browser window with

More information

Unit III: Working with Windows and Applications. Chapters 5, 7, & 8

Unit III: Working with Windows and Applications. Chapters 5, 7, & 8 Unit III: Working with Windows and Applications Chapters 5, 7, & 8 Learning Objectives In this unit, you will: Launch programs and navigate the Windows task bar. Perform common windows functions. Customize

More information

Accessibility on the Mac Website:

Accessibility on the Mac Website: Website: http://etc.usf.edu/te/ The Mac operating system includes several assistive technologies designed to make it easier for a person with a disability to use the computer. Whether you have difficulty

More information

College of Pharmacy Windows 10

College of Pharmacy Windows 10 College of Pharmacy Windows 10 Windows 10 is the version of Microsoft s flagship operating system that follows Windows 8; the OS was released in July 2015. Windows 10 is designed to address common criticisms

More information

Windows 10: Part 1. Updated: May 2018 Price: $2.00

Windows 10: Part 1. Updated: May 2018 Price: $2.00 Windows 10: Part 1 Updated: May 2018 Price: $2.00 A Special Note on Terminology Windows 10 accepts both mouse and touch commands. This means that you could use either mouse clicks or touch gestures interchangeably.

More information

Macintosh OS X 10.4 Tips

Macintosh OS X 10.4 Tips Macintosh OS X 10.4 Tips Copyright 2005 Oliver Jovanovic Mail Tips Mail ~/Library/Mail stores most mail files and mailboxes ~/Library/Mail/LSMMap file stores junk mail training ~/Library/Mail/Mailboxes

More information

iphoto 06 Basics Website:

iphoto 06 Basics Website: iphoto 06 Basics Website: http://etc.usf.edu/te/ iphoto is the photo management application included with ilife 06. In addition to letting you import, organize and share your photos, iphoto includes a

More information

Windows Movie Maker / Microsoft Photo Story Digital Video

Windows Movie Maker / Microsoft Photo Story Digital Video Windows Movie Maker / Microsoft Photo Story Digital Video http://intranet/technology/index.html TRC HELP DESK X5092 April 2006 Photo Story and Movie Maker Microsoft Photo Story 3 allows you to create fantastic

More information

Bluetooth Keyboard Commands with VoiceOver on the ipad

Bluetooth Keyboard Commands with VoiceOver on the ipad Bluetooth Keyboard Commands with VoiceOver on the ipad ios 9.2 Chapter 3: General Navigation using Bluetooth Keyboard Commands (Quick Nav is ON) Module Objectives 3.1 Mainstream Bluetooth Keyboard Shortcut

More information

Universal Access features ipad incorporates numerous accessibility features, including: VoiceOver screen reader

Universal Access features ipad incorporates numerous accessibility features, including: VoiceOver screen reader Accessibility 24 Universal Access features ipad incorporates numerous accessibility features, including: VoiceOver screen reader Zoom magnification Large Text White on Black Speak Selection Speak Auto-text

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2003 Email User s Guide Revision 1.0 11/10/2007 This document covers how to use Microsoft Outlook 2003 for accessing your email with the NCMail Exchange email system. The syntax

More information

This document explains several types of Mac OS X assistance available for people with visual, dexterity, or hearing impairments.

This document explains several types of Mac OS X assistance available for people with visual, dexterity, or hearing impairments. This document explains several types of Mac OS X assistance available for people with visual, dexterity, or hearing impairments. For people with low vision............ 2 Increase the visiblity of the items

More information

Microsoft PowerPoint 2007 Tutorial

Microsoft PowerPoint 2007 Tutorial Microsoft PowerPoint 2007 Tutorial Prepared By:- Mohammad Murtaza Khan I. T. Expert Sindh Judicial Academy Contents Getting Started... 5 Presentations... 5 Microsoft Office Button... 5 Ribbon... 6 Quick

More information

This book will help you quickly create your first documents, spreadsheets, and slideshows.

This book will help you quickly create your first documents, spreadsheets, and slideshows. Getting Started Welcome to iwork 08 Preface This book will help you quickly create your first documents, spreadsheets, and slideshows. iwork 08 includes three applications that integrate seamlessly with

More information

User s Guide. Attainment s. GTN v4.11

User s Guide. Attainment s. GTN v4.11 Attainment s User s Guide A printable PDF of this user guide is available from the Attainment Company website: https://www.attainmentcompany.com/gotalk-now Contents 1 Getting Started with GoTalk NOW 1

More information

APPLE MAIL ESSENTIALS. by Ruth Davis Mac2School

APPLE MAIL ESSENTIALS. by Ruth Davis Mac2School APPLE MAIL ESSENTIALS by Ruth Davis Mac2School Customizing Apple Mail Preferences... 5 General... 5 Accounts... 6 Mailbox Behaviors... 7 Server Settings... 8 Junk Mail... 8 Fonts and Colors... 9 Viewing...

More information

Macintosh OS X 10.3 Tips

Macintosh OS X 10.3 Tips Macintosh OS X 10.3 Tips Copyright 2004 Oliver Jovanovic Mail Tips Mail ~/Library/Mail stores most mail files ~/Library/Mail/LSMMap file stores junk mail training ~/Library/Mail/Mailboxes stores mail (can

More information

imovie 10 Workshop #1 from basics to badass

imovie 10 Workshop #1 from basics to badass imovie 10 Workshop #1 from basics to badass interface importing open / save previewing selecting 1) The Project Area shows how your clips are arranged in your project 2) The Viewer allows you to preview

More information

Hello. Quick Start Guide

Hello. Quick Start Guide Hello. Quick Start Guide Welcome to your new MacBook Pro. Let us show you around. This guide shows you what s on your Mac, helps you set it up, and gets you up and running with tips for the apps you ll

More information

EnSight 10 for Mac. Uniquely Mac Features tucked into EnSight 10. Friday, February 17, 12

EnSight 10 for Mac. Uniquely Mac Features tucked into EnSight 10. Friday, February 17, 12 EnSight 10 for Mac Uniquely Mac Features tucked into EnSight 10 The List No more X11 required Native Open Dialog Native Save Dialog Native Print Dialog Drag and Drop onto GUI or App Icon Native Cocoa UI

More information

iphones for beginners

iphones for beginners iphones for beginners This handout uses text and images from gcflearnfree.org. Check out www.gcflearnfree.org/iphonebasics for more information! The parts of the iphone: Note: The headphone jack was removed

More information

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview:

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview: Computer Basics I Handout Objectives: 1. Control program windows and menus. 2. Graphical user interface (GUI) a. Desktop b. Manage Windows c. Recycle Bin d. Creating a New Folder 3. Control Panel. a. Appearance

More information

Macintosh OS X Lion Tips v.2 published in June 1, 2012 ComputorEdge by Barry Fass-Holmes

Macintosh OS X Lion Tips v.2 published in June 1, 2012 ComputorEdge by Barry Fass-Holmes Macintosh OS X Lion Tips v.2 published in June 1, 2012 ComputorEdge by Barry Fass-Holmes Mac OS X Lion s marquee new features Auto Save, File Vault 2, Full Screen, gestures, LaunchPad, Mission Control,

More information

Windows XP. A Quick Tour of Windows XP Features

Windows XP. A Quick Tour of Windows XP Features Windows XP A Quick Tour of Windows XP Features Windows XP Windows XP is an operating system, which comes in several versions: Home, Media, Professional. The Windows XP computer uses a graphics-based operating

More information

Select Icons p. 75 Work with Aliases p. 78 Open Files, Folders, and Applications p. 80 Move Files and Folders p. 82 Copy Files and Folders p.

Select Icons p. 75 Work with Aliases p. 78 Open Files, Folders, and Applications p. 80 Move Files and Folders p. 82 Copy Files and Folders p. Acknowledgments p. xv Introduction p. xvii Get Started with Mac OS X What's New in Tiger p. 3 Find Anything with Spotlight p. 4 Get Quick Info with Dashboard p. 6 View News Headlines with Safari RSS p.

More information

ibooks Author: An Instructional Guide for Educators

ibooks Author: An Instructional Guide for Educators USING IBOOKS AUTHOR ibooks Author: An Instructional Guide for Educators ETEC533 - MANNY LOYLA SECTION 1 Before you Begin This section provides information on how to download and install the ibooks Author

More information

What will I learn today?

What will I learn today? What will I learn today? What s New My Old Adobe did it this way Navigation Pane Tools Pane Comments Pane Share Pane Using Action Wizard Comparing PDF Documents Insert Pages Delete Pages Replace Pages

More information

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET Quick Summary A program is a set of instructions that a computer uses to accomplish a task, such as word processing, accounting,

More information

The Institute of Computer Accountants 27, N. S. Road, 4th & 5th Floor, Kolkata Windows 10 Updates

The Institute of Computer Accountants 27, N. S. Road, 4th & 5th Floor, Kolkata Windows 10 Updates The Institute of Computer Accountants 27, N. S. Road, 4th & 5th Floor, Kolkata-700001 Windows 10 Updates New Features in Windows 10 Windows 10 is the latest version of Microsoft's operating system for

More information

New to the Mac? Then start with this lesson to learn the basics.

New to the Mac? Then start with this lesson to learn the basics. Mac 101: Mac essentials If you're brand new to the world of computers and are just starting to get up and running, relax using a Mac is simple. This lesson introduces you to the basic principles of interacting

More information

Argosy University Online Programs, Version 7.0. digital bookshelf. Student User Guide

Argosy University Online Programs, Version 7.0. digital bookshelf. Student User Guide Argosy University Online Programs, Version 7.0 digital bookshelf Student User Guide 1 Take your ebooks with you! Download the Bookshelf app. If you own an iphone, ipad, or ipod Touch, you can download

More information

PhoneView Product Manual

PhoneView Product Manual PhoneView Product Manual PhoneView is a Mac application which allows you to store files on your iphone or ipod Touch. It also provides access to the iphone or ipod Touch itunes media, photos, notes, SMS

More information

DOWNLOAD PDF HOW CAN I EDIT A UMENT ON A MAC

DOWNLOAD PDF HOW CAN I EDIT A UMENT ON A MAC Chapter 1 : Google Docs - create and edit documents online, for free. Click, then click.; Click Create Signature, then choose one of these options: If you have a trackpad, sign your name with your finger.

More information

Browse the internet, send and receive s and text messages, play music and movies, take and display photos and videos, and more.

Browse the internet, send and receive  s and text messages, play music and movies, take and display photos and videos, and more. What is an ipad? The ipad is a tablet computer designed and sold by Apple Inc. What can it do? Browse the internet, send and receive emails and text messages, play music and movies, take and display photos

More information

Camtasia Studio 5.0 PART I. The Basics

Camtasia Studio 5.0 PART I. The Basics Camtasia Studio 5.0 Techsmith s Camtasia Studio software is a video screenshot creation utility that makes it easy to create video tutorials of an on screen action. This handout is designed to get you

More information

Photoshop World 2018

Photoshop World 2018 Photoshop World 2018 Lightroom and the Cloud: The Lightroom CC Workflow with Rob Sylvan Lightroom CC gives you access to your growing photo library across all your devices, so you can keep creating no

More information

Getting to Know Keynote on ipad

Getting to Know Keynote on ipad Getting to Know Keynote on ipad This guide will give you the basic instruction of how to use the Keynote App on ipad. Get to Know Keynote Step 1 To create new presentations and find the ones you ve worked

More information

Discover the Start screen.

Discover the Start screen. Discover the Start screen. Your Start screen has all of the information that matters most to you. Live tiles keep you up to date. Your favorite apps, such as Office apps, People, News, and more are front

More information

NEW FEATURES IN WINDOWS 7

NEW FEATURES IN WINDOWS 7 Page1 NEW FEATURES IN WINDOWS 7 START MENU Users have much more control over the programs and the files that appear on the Start menu. blank slate that you can organize and customize to suit your preferences.

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS CREATING AN ALL Hyperstudio is an easy to use but powerful multimedia authoring tool that lets you and your students create a series of linked cards, called a stack. Each card can contain text, graphics,

More information

21 keyboard shortcuts Mac users need to know - Computerworld

21 keyboard shortcuts Mac users need to know - Computerworld 21 keyboard shortcuts Mac users need to know - Computerworld This collection of keyboard shortcuts for macos can users get the most from their imacs, MacBook Pro and MacBook laptops. I m sure most Mac

More information

Student eedition About Student eedition

Student eedition About Student eedition User Manual Student eedition About Student eedition The Student eedition includes online versions of the following NG Science student books: Big Ideas Books for Grades 1-5 Become an Expert for kindergarten

More information

Primal s 3D Human Anatomy and Physiology on Anatomy.tv

Primal s 3D Human Anatomy and Physiology on Anatomy.tv USER GUIDE Primal s 3D Human Anatomy and Physiology on Anatomy.tv Welcome to our user guide to 3D Human Anatomy and Physiology on Anatomy.tv. Please read on, or select one of the links opposite to jump

More information

Digital Content e-reader Features Overview

Digital Content e-reader Features Overview Digital Content e-reader Features Overview Announcing the launch of our new digital content e-reader. This brief overview will demonstrate some of the most important features of our new e-reader. Once

More information

1 Interface Fundamentals

1 Interface Fundamentals 1 Interface Fundamentals Windows The Media Composer interface is focused on three primary windows: the Composer, the Timeline and the Project. The Composer window contains the source and record monitors

More information