Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

1352 total results found

How to Import Scans of 35mm Slides into a PowerPoint Presentation

Applications/Software Microsoft Office

Older versions of PowerPoint cannot rotate imported scans. If you are using an older PowerPoint version, you’ll need to use image manipulation software to correct any pictures that are not properly oriented, before attempting to bring them into your presentat...

photographic services
PowerPoint

Free photo-sharing sites

Useful Links

There are many different free photo-sharing sites on the web. This 2007 article from the N.Y. Times by David Pogue compares 8 of them.Find images on Google that you can reuse – Google Support articleSome major sites: Flickr 500px Imgur Photobucket Instagram Im...

photos web

How to disable auto resize of fonts within body text in PowerPoint

Applications/Software Microsoft Office

By default, PowerPoint will automatically adjust the font size of your body text on each slide depending on the amount of text. This can create inconsistent font sizes for each slide if one slide’s body text only has a few lines of text and another slide’...

PowerPoint

A guide to college podcasts

Useful Links

Audio interview: a guide to college podcasts from Chronicle.com – Today’s News Daniel Colman, director and associate dean of Stanford University’s continuing-studies program, runs a blog tracking podcasts made by colleges and professors. In an audio interview,...

podcasts

Rubrics

Applications/Software

Produced by Reazon Systems, Inc., rCampus.com is an online resource for students and faculty. Rubric is one of the website’s free tools.Through this feature, instructors can design rubrics online. Like traditional hard copy rubrics, they are constructed by th...

rubrics

MS Word Replacing Characters with Line Breaks

Applications/Software Microsoft Office

You can use the Find and Replace in MS Word to replace any characters with a Line Break or other special characters or properties (i.e. creating a page break, em dash, column break, etc.) by using the Find and Replace with “Special” function.…Microsoft Word ha...

SSC Novell Client Installation for Windows Vista

UCLA Tech Resources Social Sciences Center for Education, R...

Updated Instructions for Installing the Novell Client Version 1.0 on Windows Vista (SSC) Choose Custom Installation Do not install ANY additional services (uncheck NMAS, etc) Go to Novell Properties Advanced Login Clear Connections > Turn to On Forgotte...

Novell
Novell Client
Windows Vista

How to make a Favicon.ico

Programming and Web Development

You may have noticed in your web browser that some web sites have a little icon in the address bar to the left of the URL. Favicon – Wikipedia Tutorial on what it is and how to make one Tutorial for creating Favicon Free Photoshop plug-in to save as .ico In...

favicon

Description and guidelines on creating system service agent accounts on Mac OS X (Tiger)

MacOS, Windows, and Linux

For any system service agent that you want to create in Mac OS X, you would do the following:sudo dscl localhost -create /NetInfo/root/Groups/system_groupnamesudo dscl localhost -create /NetInfo/root/Groups/system_groupname gid group_idsudo dscl localhost -cre...

dscl
Mac OS X
system accounts
Unix

What are the differences between addslashes(), mysql_escape_string() and mysql_real_escape_string()

Programming and Web Development PHP

addslashes() escapes single quote (’), double quote ("), backslash (\) and NUL (\x00).mysql_escape_string() and mysql_real_escape_string() escapes the characters above plus: CR (\r), LF (\n) and EOF (\x1a). Apparently (according to the manual), MySQL wants the...

escape
MySQL
PHP

Passing command-line arguments into PHP

Programming and Web Development PHP

Say you have a PHP script and you want to pass command-line arguments into the script, e.g. calling the script like this:php script.php datafile.txt 10 100PHP stores all command-line arguments in an array:$argv 0 => “script.php”$argv 1 => “datafile.txt”$...

argument
command line
parameter
PHP

Passing command-line argument into a DOS (including Windows) batch file

Programming and Web Development

You can use these variables in a batch file:%0 – the batch file’s name%1 – the 1st argument%2 – the 2nd argument%3 – the 3rd argument…%9 – the 9th argumente.g. Support the content of test.bat is as follows:@echo offecho param0: %0echo param1: %1echo param2: %2...

How to merge data from Microsoft Excel into Microsoft Word

Applications/Software Microsoft Office

“In addition to the features and functions of Excel that make your database useful, you can also use the database to merge information into Word for large mailings. This means that you will not have to duplicate information you already have in your Excel datab...

Excel

How do I get started with designing new/existing layouts in Plone?

Programming and Web Development Plone

Taken from various posts on the Plone mailing list (http://www.nabble.com/Plone-f6741.html)Stan McFarland wrote:“The short answer is that you can make Plone look any way you want with a combination of template customization and CSS. You just need to learn h...

plone css design

Switching between Operating Systems in Mac

MacOS, Windows, and Linux

Choose OS while starting upYou can select which operating system to use during startup by holding down the Option key. This displays icons for all available startup disks, and lets you override the default setting for the startup disk in Startup Disk preferenc...

boot camp
Mac OS X
Windows

How do I login as a user in Moodle (for troubleshooting purposes)?

CCLE and Moodle

If you’re an administrator to a Moodle class site, you can actually login in as a user to duplicate the error the user is experiencing. You won’t need Moodle wide admin access, just admin access to the course (note, only admins can do this function, not cours...

Moodle
administration
troubleshooting
user

Modifying Roles in Moodle

CCLE and Moodle

Sometimes roles set at the site-level may not properly work because they are over-riden by a system-level setting. For example, see the following exchange on the Moodle forums:Q: “I’m using Moodle 1.8. I went to Users → Permissions → Define roles and for both ...

Moodle

OpenSSH "permission denied" error

Internet and Web Browsers

If your private key file (e.g. ~/.ssh/id_rsa) has too much permission, OpenSSH will complain “permission denied” and not work. By default, the permission might be something like 644 or 700. You need to set it to 600. (Got the solution from this article)