Kevin Pedersen - Technology

How-to: Proxy Autoconfiguration

7/14/2010 - I've been testing our proxy auto-config setup on my laptop for the last 5 days and it's working flawlessly. It did take some trial and error to figure out that my Mac cached the proxy auto-config file until I rebooted, but I eventually wrote a short auto-config file that works for 10.10.140.x, *.bolinas-stinson.org and simple hostnames (e.g. do not use proxy when navigating to, e.g. 10.10.140.5, techlab.bolinas-stinson.org or techlab).

It's nice because client configuration only requires checking a box or two, and it automatically provides direct access when not on an MCOE-connected subnet, or when navigating to a local host on the school campus. With automatic proxy configuration there's no need for a client to change network settings/locations when moving their laptop on and off campus, or to manually configure proxy settings.

In Windows (IE 4+), just check Automatically detect settings under Internet Properties > Connections tab > LAN settings button:

Windows Autoconfig


In Mac OS X 10.6.x, just check Auto Proxy Discovery under each interface (AirPort, Ethernet > Advanced > Proxies):

Mac OS X Snow Leopard Autoconfig

On all other operating systems and devices (e.g. 10.3.2–10.5.x, smartphones), just set the automatic proxy configuration script URL or PAC file URL to http://wpad.domainname/wpad.dat, substituting domainname with the domain-name setting assigned by the site's router/DHCP server (e.g. http://wpad.bolinas-stinson.org/wpad.dat in our case, or http://wpad.marin.k12.ca.us/wpad.dat in most other cases).

So that's the client side of things. On the server end, you just need three things:

  1. A world-resolvable subdomain at wpad.domainname (e.g. I went to the DNS registrar and added the subdomain wpad.bolinas-stinson.org as an alias/CNAME to bolinas-stinson.org).
  2. A config file named wpad.dat with Western (Windows Latin 1) encoding (e.g. Windows text file with .dat extension) saved to the root directory of the server located at http://wpad.domainname. You can view/download our proxy auto-config file at http://wpad.bolinas-stinson.org/wpad.dat.
  3. Set the MIME Types on the web server for dat and pac to application/x-ns-proxy-autoconfig (procedure varies for different servers).

This is very well-documented. The first site to look at is at wikipedia:

http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol

http://en.wikipedia.org/wiki/Proxy_auto-config


The wpad.dat (AKA proxy.pac) file used by bolinas-stinson.org:

function FindProxyForURL(url, host) {

// If not on a BSUSD LAN IP address, send traffic direct.
if (!isInNet(myIpAddress(), "10.10.140.0", "255.255.255.0"))
return "DIRECT";

// If URL has no dots in host name, send traffic direct.
if (isPlainHostName(host))
return "DIRECT";

// If URL matches the following, send traffic direct.
if (shExpMatch(url,"*bolinas-stinson.org*"))
return "DIRECT";

// If IP address is internal or hostname resolves to internal IP, send direct.

var resolved_ip = dnsResolve(host);

if (isInNet(resolved_ip, "10.0.0.0", "255.0.0.0") ||
isInNet(resolved_ip, "172.16.0.0", "255.240.0.0") ||
isInNet(resolved_ip, "192.168.0.0", "255.255.0.0") ||
isInNet(resolved_ip, "169.254.0.0", "255.255.0.0") ||
isInNet(resolved_ip, "127.0.0.0", "255.255.255.0"))
return "DIRECT";

// All other http traffic uses proxy.marin.k12.ca.us:80, in fail-over order.
if (url.substring(0, 5) == "http:")
return "PROXY 137.164.143.116:80; PROXY 137.164.143.114:80; DIRECT";

}

View/download our proxy auto-config file at http://wpad.bolinas-stinson.org/wpad.dat.

Notes:
  1. BSUSD uses the 10.10.140.x subnet. Modify the text if (!isInNet(myIpAddress(), "10.10.140.0", "255.255.255.0")) to match the subnet used by your site.
  2. The router/DHCP server at BSUSD assigns the domain-name bolinas-stinson.org. Modify this to match the domain name assigned at your site (e.g. marin.k12.ca.us).
  3. Querying nslookup resolves proxy.marin.k12.ca.us to the IP addresses 137.164.143.116 and 137.164.143.114.

1 comment

Objective Terms

Vocabulary for Computer Class

Dictionary of computer terms may help you with your definitions.

Vocab 1

  1. @ symbol – The @ symbol is what separates the username from the domain in an email address.
  2. Adobe Photoshop – This is a computer program used for editing photos and other computer graphics.
  3. anti-virus software – This protects your computer against malicious programs called viruses.
  4. Bitmap – a bitmap is a collection of dots, or pixels, that makes up the shape of an object or character on the computer screen.
  5. boolean terms (and, or) – Boolean functions can have only two possible values: true and false. The most common Boolean functions are AND, OR and NOT.
  6. Broadband – high speed Internet access (e.g. DSL, cable modem), is referred to as "broadband."
  7. Cable – a cable is a wire that connects two computer components. In the case of Internet access, one can get broadband Internet access via the cable used for their television.
  8. case-sensitive vs. case-insensitive – an email address is case-insensitive. In other words, you can use any cOmBiNatioN of UPPER and lower-case letters you wish. Most passwords are case-sensitive, so you must use the Exact case as the original.
  9. citing online references – online references must be cited with the address of the website (e.g. http://bolinas-stinson.org), the date (e.g. 2/28/2005) and the author (e.g. Kevin Pedersen).
  10. compact disc (CD) – A compact disc is a 12 cm diameter disc that is about 1.5 mm thick and can hold up to 700 MB of data, including text, music, video and any other computer data. Vocab 2
  11. computer hardware - Hardware is a general term referring to the physical parts that make up the computer, such as the drives, the chips and the expansion cards. Computer hardware generally becomes faster over time (it is able to perform more operations per second).
  12. CPU, processor - The CPU is the key piece of computer hardware that does the "thinking." The CPU is the brain of the computer, responsible for millions of basic computations (addition and subtraction of binary numbers) per second that build up to solve more complex problems.
  13. default - A default setting is one that is set originally. A custom setting is anything that modifies the original, default setting on a computer. For example, the desktop in Windows 2000 might be solid blue by default, but I can customize it by changing the color to suit my tastes.
  14. domain - A domain name is used to identify a computer (e.g. bolinas.marin.k12.ca.us, for which bolinas is the computer's hostname and marin.k12.ca.us is the domain name) or computer user (e.g. kevinp@marin.k12.ca.us, for which kevinp is the username and marin.k12.ca.us is the domain name) as members of the same organization on the Internet (e.g. the domain marin.k12.ca.us) Domains are hierarchical and have subdomains. For example, bolinas.marin.k12.ca.us is a hierarchical domain name. The top-level domain is .us (United States), preceded by .ca (California), preceded by k12 (schools grades Kindergarten through 12), preceded by marin (for Marin county), and the sub-sub-sub-domain is bolinas. If you visit http://bolinas.marin.k12.ca.us, you'll see the Bolinas-Stinson Union School district website. If you visit http://marin.k12.ca.us, you'll see the Marin County Office of Education website.
  15. download - To download a file is to retrieve a copy of a file as bits of information that are transferred from a remote location (e.g. a website) to a local location (e.g. your computer's hard drive).
  16. e-mail & e-mail addresses - email addresses are not case-sensitive and must be unique. They are of the format someone@somedomain.net (or .com, .edu, .org, etc.).
  17. e-mail attachments - An attachment is a file that is sent along with an email message. The sender must attach the file to an email message and upload it when the message is sent, and the recipient must then download the attachment once the message is received. Attachments, like all computer files, require certain programs to open them. Sometimes the program to open an attachment may not be on the recipient's computer. Attachments can also contain viruses, so be careful when or if you open them.
  18. electronic spike - An electronic spike is a burst of electricity that can potentially travel along any line that leads into your home or office (e.g. power, phone, or TV cable). If a spike should be allowed to travel along a cable and into electronic devices in your home, those devices can be damaged or ruined. For this reason, it is always a good idea to plug electronics into a surge suppressor which plugs into the wall and can block spikes from passing through it.
  19. ergonomics - ergonomics is the scientific study of the relationship between workers and their environments. Computers are the subject of much ergonomic research because of the ways in which their use can lead to repetitive strain injuries.
  20. file extensions/endings (.au, .htm, .html, .mid, .psd, .snd, .tif, .wav) File extensions denote the type of data that a file contains. For example, a file named Writing.txt would contain plain-text with no formatting, while a file named Writing.doc would be of Microsoft Word format and could contain formatted text and images. A file named filename.wav would be a Windows audio file and a file name filename.psd would be an Adobe Photoshop file. Vocab 3
  21. files vs. folders/directories - A file is a collection of data, analogous to a book or a magazine. A folder or a directory can contain many files, analogous to a bookshelf or a filing cabinet. Files contain information, while folders just help keep files organized. Directory is another name for folder.
  22. floppy disk - A floppy disk is used to store computer data and can be removed to be easily transported to another computer. The two main types of floppy disks are 5-1/4" and 3-1/2"floppies. 5-1/4" (pronounced "five and a quarter inch") floppies contain about 800kB of data on a thin, flexible disc inside a 5-1/4" square, flexible plastic sleeve. 3-1/2" (pronounced "three and a half inch") floppies are smaller, but contain more information: 1.44MB of data on a flexible disc inside a hard plastic enclosure measuring about 3-1/4" square by 1/8" thick.
  23. freeware - Freeware is software that can be downloaded, installed and used for free.
  24. FTP - FTP stands for File Transfer Protocol and it is a way to serve files over a network for people to download.
  25. GIFs vs. JPEGs - These are both file formats used for images on the Internet. Both file formats are ideal for web images because they can compress the image into a smaller file size than other image formats like BMP or PICT. The GIF file format is used for images with few colors and for animations. GIF stands for Graphics Interchange Format. The JPEG format is best used for photographs or other images that have many shades of color. JPEG stands for Joint Photographic Experts Group.
  26. graphic file - A graphic file is a file that contains a drawing, photograph or other image.
  27. hacker - A hacker is one who really excels at computer programming, often finding creative solutions to tricky programming challenges (the solution is often known as a "hack"). The term hacker is also used in a negative light to describe someone who uses their programming skill for illegal purposes, such as to breaking into unauthorized computer systems (another term for breaking into a computer system is "hacking").
  28. hard copy, printout - A hard copy of a file is something you can hold in your hand, such as a piece of paper, as opposed to an electronic computer file that exists only as bits within the computer.
  29. hard disk drive - A hard disk drive is a mechanical device used to store large quantities of information. A hard drive stores its information permanently even when the computer is turned off. Information is only lost when it is intentionally deleted or erased, or when the hard drive fails, which is known as a hard drive crash. Although most hard drives are quite reliable, it is always a good idea to backup a hard drive in case of a crash.
  30. hardware - Hardware is a term generally applied to electronic or computer equipment, but can also be applied to the physical pieces (nuts, bolts, metal, plastic, etc.) of any device or piece of machinery. Vocab 4
  31. install - A program usually must be installed before it can be run. You install a program from a disc (e.g. a CD) or from an installer file that you download from the Internet.
  32. Internet - The Internet is an international network that connects computer systems together. Internet refers to the physical cables and other network connections and used to transmit email, web sites and other computer-related services.
  33. ISP - ISP stands for Internet Service Provider. An Internet Service Provider is a company that provides a means for its customers to connect to the Internet, generally for a monthly fee. Examples of ISPs are Earthlink, AOL, MSN, etc.
  34. legal use of software - Software programs are almost always accompanied by a user license agreement that specifies the legal use of the software. For example, most software allows you to only legally use one copy of it on one computer.
  35. local drive - A local drive is a drive that is physically connected to the computer, either internally or in an external enclosure next to the computer, as opposed to a network drive, which is connected to another computer and accessed via a network connection.
  36. Macintosh (Macs) vs. Windows-based computers - Macintosh computers are made by Apple Computer Company, who make both the hardware and software. Windows-based computers run an operating system made by Microsoft Corporation, and the hardware can be made by many manufacturers.
  37. measurement of CPU speed (gigahertz, megahertz) - Hertz is a unit that represents cycles per second. One megahertz equals a million cycles per second and a gigahertz equals a billion cycles per second. Both terms are used to describe how many cycles of operations a computer can perform in a second, which is one indication of a computer's speed (but not the only indication).
  38. measurement of hard disk drive space (gigabyte, kilobyte, megabyte, terabyte) - A byte is 8 bits, or a collection of eight ones and zeroes, and a byte is the amount of memory required to hold one character (a letter, number, etc.) in a text file.. The prefixes kilo-, mega-, gig- and ter- represent approximately a thousand, million, billion and trillion bytes, respectively. For example, a 20 gigabyte disk could hold about 20 billion bytes (or characters) of data.
  39. Microsoft Excel - Part of Microsoft Office. A spreadsheet program.
  40. Microsoft PowerPoint - Part of Microsoft Office. A presentation program.
  41. Microsoft Word - Part of Microsoft Office. A word processing program. Vocab 5
  42. monitor, screen - Monitor and screen are synonyms for the part of the computer that displays the images. This part is also called the display. For most PCs, the display is a separate part. For computers like iMacs and laptops, the display is built into the computer case.
  43. motherboard - The motherboard is a board inside of the computer that contains most, if not all, of the computer's circuitry. The CPU, RAM, drive cables and expansion cards all plug into the motherboard. The motherboard inside most PC cases can be replaced, or upgraded, along with the CPU, RAM and any other outdated parts. This allows you to get all of the benefits and features of a new computer without having to throw out your old case.
  44. mouse, mice - A mouse is an input device. That is, it allows a person to put commands into the computer by moving a cursor across the screen and clicking on objects via a graphical (visual) interface.
  45. network - A network is any technology that enables computers to be linked together share information and resources. Networks can be connected by various types of cables, radio waves, or even beams of light.
  46. network drive- In Microsoft Windows, a network drive is the name given to a folder or drive from a remote computer that is mapped to appear on the local computer as a lettered drive. For example, look in "My Computer" at BSUSD and you will find the network drive "Public," which corresponds to drive letter P:.
  47. online - To be "online" is to be connected to the Internet.
  48. online chatting - This is to chat with someone across an Internet connection. This is usually done by typing messages back and forth, although audio and video chatting is also possible.
  49. online references - Online references should be given to websites that are used as sources for research papers.
  50. online searching - Online searching is what you're doing when you look up information via a search engine such as Google or Yahoo!
  51. operating systems (Microsoft Windows, Mac OS, Red Hat Linux) - Operating systems are what allow us to use computer hardware to save & open files, run programs, connect to networks and many basic functions. Without an operating system, a computer would not be able to boot and run programs.
  52. peripherals - A peripheral is any device connected to the outside of the computer, such as a mouse, keyboard, printer or scanner. Vocab 6
  53. pirate - a pirate is someone who steals and trades data or code that she or he does not have rights to, e.g. music, software and games.
  54. plugin - a plugin is a piece of software that extends the capabilities of a program. For example, the Flash plugin extends your web browser's capabilities to be able to play Flash videos.
  55. port - there are two usages of the term port. The most common usage for the term port is to describe a connector (usually on the back of the computer) to which one may connect devices, such as a keyboard, mouse and printer. For example, a USB port or an Ethernet port. The other definition of a port is related to certain "channels" over which a service communicates over a network. For example, port 80 is used for HTTP (the web service).
  56. printer - a printer is considered an output device, capable of outputting data, text and images. A printer is connected to a local computer via a parallel, serial or USB cable, or to a local network via Ethernet or Wi-Fi so that all computers on the network may print to it directly via a network connection (wired or wireless).
  57. RAM - RAM is a high speed, temporary memory storage used by programs and the operating system. RAM can be upgraded to allow the computer to run more complex tasks (e.g. open larger documents or have more documents open simultaneously) by installing additional, or higher capacity RAM chips in the computer. RAM stands for Random Access Memory. The contents of RAM are lost when the computer is turned off or loses power.
  58. real time - real time is a term used when a digital effect is applied to source material as the material is being played back. For example, if you could apply a lightning effect (or other special effect) to a video clip real time, you could play the video immediately, without having to wait to see what it looked like. A computer must be very fast to be able to process full screen video in real time.
  59. ROM - the term ROM has two uses. In both cases, ROM stands for Read Only Memory, which implies that information cannot be modified. The most familiar use of the ROM acronym is in CD-ROM or DVD-ROM. These are discs that can be read from, but not recorded to. A CD-ROM or DVD-ROM is used for the type of pre-recorded music CD or DVD movie that you would buy in a store. The second use for the term ROM is to describe a type of permanent memory on a computer chip. For example, your computer might have a ROM chip in it that contains the computer's serial number.
  60. saving documents - saving a document writes the document's contents to permanent memory, such as a hard drive.
  61. scanner - a scanner is considered an input device, capable of scanning (inputting) text and images. A scanner is connected to a local computer via a parallel, SCSI or USB cable, or to a local network via Ethernet or Wi-Fi so that all computers on the network may scan from it to a networked computer. Images are read in via a flat glass pane (flatbed scanner) or a stackable paper tray (sheet feed scanner). After scanning, the photos or other images may be edited on the computer. Text is also scanned as an image, but may be processed with OCR (Optical Character Recognition) software to convert it into a format that can be edited with a word processor.
  62. search engines - a search engine catalogs the contents of numerous websites, then provides a means for searching for keywords or phrases within those sites. For example, the search engine Google could be used to find websites that contain "server" and you might use those pages to define the following term.
  63. server - a server is a computer or device that is connected to a network and shares its resources (e.g. data, printers and other connected devices) with other computers on the network. For example, the computer that hosts this web page is called a web server. Vocab 7
  64. shareware - shareware is software that can be redistributed (i.e. shared with your friends), but usually a license must be purchased to continue using the shareware after an evaluation period, or to enable additional features.
  65. software - the term software is used to describe the operating system and accompanying programs on your computer that allow you to view and edit data. For example, Photoshop is a piece of software that is used for editing image data.
  66. software licensing - software companies sell licenses to use their programs. For example, if you wanted to use Adobe Photoshop on 25 different computers, you would have to purchase 25 licenses from Adobe to legally use their software. Licenses come with terms that you agree to when you install the software.
  67. software program - a software program is a virtual tool that is used for a specific purpose on your computer. For example, Photoshop is a software program that is used for editing photos and other images.
  68. software update - flaws are fixed in software programs and/or new features are added after the programs are installed. A software update allows you to add these fixes/features to your software. Updates are distributed on discs or via files downloaded from the Internet.
  69. sound card - most computers have the ability to play back and record sound built in. If your computer does not have this capability, if you would like to get better quality sound, or if you would like to have additional sound inputs and outputs on your computer, then you can add these features by installing a sound card - if your computer has an available expansion card slot.
  70. sound file - music, voice and other audio can be stored on a computer in a sound file.
  71. surge protectors - a surge protector switches off the electricity to protect connected devices when the incoming power spikes, as in the case of a lightning strike.
  72. system administrator - the system administrator is the person, or computer user login, who has the ability to make changes to the computer; for example to install a software program on the computer.
  73. text file - a text file is a simple data file that contains only text and numbers (i.e. alphanumeric), but does not contain formatting (e.g. bold, italics, font colors, etc.) or other data like images. Lacking formatting, text files are small in size and are good for saving notes or instructions that can be read by anyone, since they do not require a special program like Microsoft Word to open them. Every computer comes with a simple program called a text editor like Notepad (Windows) or TextEdit (Mac OS X).
  74. trojan horse - a trojan horse is a type of malicious computer program that sneaks into your computer through another file. If undetected by antivirus software, a trojan often sits on your computer until a specified date, when it will wreak havoc, deleting files or disabling security software.
  75. types of Internet connections (analog/phone modem, cable modem, DSL, ISDN, T1 line, T3 line) - an analog/phone modem is a device that lets your computer communicate (e.g. connect to the Internet, send a fax, or dial into another computer) over a standard phone line by dialing into an Internet Service Provider via a specified phone number, known as an access number. This type of Internet connection is known as dial-up. A cable modem is a device that connects your computer to the Internet via TV cable. A DSL modem is a device that connects your computer to the Internet via a phone line. DSL differs from dial-up in two ways: it is ten to sixty times faster, and it does not tie up your phone line (i.e. you can talk and use DSL on one phone line simultaneously). Vocab 8
  76. upload - to upload something is to send data from your computer to another system on the local network or Internet.
  77. UPS - UPS stands for Uninterruptible Power Supply. A UPS is a battery backup, so that a power outages will not interrupt the operation of your computer (until the battery runs out of juice).
  78. URL - URL stands for Uniform Resource Locator. A URL is a link, or an address to a site on your local network or the Internet.
  79. URL naming - URLs are named with suffixes such as .com, .org, .net and .edu to classify them as companies, non-profit organizations, tech/Internet companies and higher-level education institutions, respectively.
  80. validity of online information - online information should always be checked against multiple, reputable sources. Because anyone can post information online, it is not always from a reliable source.
  81. virus - a virus is a piece of computer code that can reproduce itself and spread to other computers.
  82. virus prevention - software that prevents your computer from catching viruses.
  83. Web browsers (Microsoft Internet Explorer, Netscape Navigator/Communicator) - web browsers are brograms that allow you to view and "surf" the world wide web.
  84. Web pages vs. home pages
  85. World Wide Web

0 comments

Summer Camp Supplies

We began a summer camp supplies assignment to better learn formulas in Excel.

0 comments

Objective Test Online Diagram

We went over the online diagram posted here.

Group A of the 6th and 8th graders got up to port number 7 and performed an example of the difference between serial and parallel data on the blacktop, each of us performing the part of a bit (a zero or a one).

We went through the entire diagram. Students will have an open note quiz (using their own notes only) on Wednesday, 5/26.

0 comments

TUHSD Computer Proficiency

Computer Proficiency Challenge Exam links

Exam Schedule & Registration Form (pdf)
Supplemental Workshop Schedule (pdf)

SAMPLE TESTS & GRADING CRITERIA
Keyboarding
Objective test
Word processing
Spreadsheet
PowerPoint

PACKET
…get the entireComputer Proficiency Sample Test packet – all the documents above (1.7MB pdf)
…get Adobe Reader

HELPFUL GUIDES
The following teacher’s web page may be helpful in studying for the Exam:
…see http://www.rodmilstead.com/intro

1 comment

Photoshop

Photoshop can be used to create art from scratch, but its primary use is as a tool for editing and enhancing existing photos.

0 comments

Date Formulas

We used the formula =int((today()-b2)/365)
to create a birthday list.

We later edited the formula to =INT((TODAY()-$B2)/365)
The dollar sign was needed to lock in the reference to the birthday cell.

0 comments

Copy & paste, drag

The 4th grade paracticed copy & paste again, this time with command+C, command+V keyboard shortcuts. This trick doesn't work for copying/pasting images from Safari, however, so we learned how to resize windows side-by-side, then drag images from Safari into MS Word.

0 comments

Table Practice

The 5th graders created the attached table using formulas in MS Word to multiply and add the numbers.

1 comment

MS Word Tables to Excel

We took the data table from MS Word used in our data merge invitations and performed some basic table operations in Word.

3 comments

Award Certificate

See below.
The Printed Page, Making an Award Certificate.pdf


1 comment

Menu Bar, Toolbars, Title Bar

The 4th grade reviewed the Menu Bar, Toolbars and Title Bar in MS Word. We also went between the web and MS Word to demonstrate cut, copy & paste using the standard toolbar buttons.

0 comments

Data Merge Manager

Data Merge Manager uses a main form letter and a list of data to generate individualized letters without having to copy and paste.

6 comments

Presentation

Slide Show whiteboard

2 comments

Form Letter Practice Test

Download the following files and move them to a folder inside your Tech folder, e.g. "username/Documents/Tech/Form Letter"
Save this file to your Form Letter folder and open it in Microsoft Word:
Download file "sample.doc"
Assemble the sample document with the above files and the following instructions:
To get an idea of what your final product should look like, check out the sample solution.

2 comments

6-8 - Excel filtering, conditional formatting

Follow Kevin's instructions for downloading and working with the following Excel file.
Download file "User List 2009-2010.xls"

0 comments

Holiday Feast PowerPoint Assignment

Your assignment is to complete a five-page PowerPoint Presentation. The topic should be Holiday Feasts (e.g. Thanksgiving Feast, etc.). If you do not take part in any holiday feasts, then ask Kevin for a suggestion.

Be sure to save often. Save your presentation with a descriptive name (PowerPoint filenames should end with the extension .ppt).

1. Apply a “theme” to all of your slides
on a Mac: FormatSlide Design… (or use the Formatting Palette*)
on a PC: FormatApply Design Template…
To change the layout of the slide titles, pictures, etc.

*Go to the View menu and check Formatting Palette. Select View > Slide Sorter then select a slide to assign different themes to different slides.

FormatSlide Layout…
To change the background color, add a background picture
on a Mac: FormatSlide Background…
on a PC: FormatBackground…

2. Add titles, text & pictures. Either use ClipArt, which is built into PowerPoint, or use Google Image Search (via your web browser, e.g. Safari) and find the pics you want. When you locate the image, click on it, then click See full-size image. Save the image to your Tech folder (File → Save As...). Go back to PowerPoint and:
Insert→Picture→From File… (locate the image you saved, in your Tech folder for example)
Insert→Picture→Clip Art… (for pictures in PowerPoint’s Clip Art)

3. Set up animations for text & pictures
Slide Show→Custom Animation…

4. Add a new slide by going to Insert→New Slide… Choose the layout you want.


GO BACK TO STEP I: With each new slide, repeat I,II and III.
Go on to step V only after you have made five slides.

5. Add transitions by going to Slide Show→Slide Transition…
(easiest when you use slide sorter view).

6. When you finish with all 5 slides, rehearse your slide show by going to
Slide Show→Rehearse Timings. Click the mouse for each animation and transition, then record the time between clicks to make it run automatically.


Grading Table

Category

Points/Pts. Possible

Descriptive filename

/5

Layout and titles for each slide (design template, background
color/pattern, layout, titles) (2 pts./slide)

/10

Images on each slide (3 pts./slide)

/15

Custom Animation on each slide (5 pts./slide)

/25

Slide Transitions between each slide (4 pts./transition)

/20

Did you Rehearse Timings? (2 pts./slide)

/10

Spelling
& Grammar
always counts (2 pts./slide)

/10

Effort


Didn’t try very hard – 1 • 2 • 3 • 4 • 5 – Great
Work!

/5

Total

/100

0 comments

5th Grade - Excel Lists

Follow Kevin's instructions for downloading and working with the following Excel file.
Download file "5th grade.xls"

0 comments

Downloading Pictures

Q: What is the best way to get pictures off of the Internet?

A: First remember that many images on the Internet are copyrighted. Please see this page for how to cite your sources for any formal work. Follow the steps below to save pictures from Safari web browser. Other web browsers (Internet Explorer, Firefox) work in a similar fashion.
  1. Open Safari and perform a Google Image Search for whatever you're looking for. A google image search box is on the school home page, or can be found at http://images.google.com/.
  2. After you locate a picture you want to use, click on its thumbnail image.
  3. Click the See full-size image link. Note the website address where the image is located to cite your source.
  4. Go to File > Save... and navigate to the folder where you wish to save the picture (e.g. your Tech folder, inside Documents).

0 comments

5th Grade

Import some text into Ten Thumbs so that you can type stuff that makes sense.

Here's how:
  1. Download typing.txt. It will be saved inside the Downloads folder inside your home folder. Download file "typing.txt"
  2. If Ten Thumbs isn't already open, open the program, select your name & click OK.
  3. Click the Extra Practice button along the bottom.
  4. Click the Import Text button in the upper-right.
  5. Select the file you saved in step 1 and click Open.

0 comments