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

45 total results found

vi editing notes

MacOS, Windows, and Linux Linux and Unix

vi is a Unix text editor that is almost always available, on any Unix or Linux system. Knowing how to edit in it means you’ll always have an editor available, for editing config files or whatever.To convert a unix text file to a windows/dos text file:%s/$/\^M/...

editor
programming
Unix

Usability Testing

Programming and Web Development

Usability testing is something that few programmers or web designers do but it can drastically improve the user experience if done early and often. In an effort to inspire us to take this on, here are some articles and links. Don’t Make Me Think by Steve Krug...

web
programming
usability

Web Developer and Designer Resources

Programming and Web Development

Links UCLA Campus Web Publishers Group 4096 Color Wheel – Pretty useful tool to find web-safe/web-smart colors Standalone versions of IE – This website provides downloads and tutorials on how to install different versions of IE on your computer. Very useful fo...

web
design
programming
web development

XML Resources

Programming and Web Development XML

Books For Learning XML: CodeNotes for XML by Gregory Brill (Editor) ISBN: 0812991915 XML In a Nutshell by Scott Means, Elliotte Harold – O’Reilly and Associates Online Tutorials W3 Schools Good idea to disable popups because there’s a lot of adve...

programming
XML

Web Services Resources for Programmers

Programming and Web Development

Interested in doing web service development? Here are some useful links: Top Ten FAQs for Web Services) – This is a pretty good primer article from the O’Reilly Network (http://www.oreillynet.com) on Web Services. Lots of useful links. Understanding SOAP ...

programming
web services

Where can I find other programmers at UCLA?

Programming and Web Development

Staff and student programmers can list themselves and their areas of expertise and interest in the UCLA Programmers Directory Note that it is restricted to UCLA IP addresses, so you’ll need a VPN from off-campus.If you haven’t added yourself, please do. Right ...

directory
programming

As a UCLA programmer, where do I get data about electronic reserves?

Programming and Web Development

The UCLA Course Management Consortium has worked with the UCLA Library staff to document how to obtains Electronic Reserves data. It is available daily, with SRS numbers. The link below provides the details. http://www.sscnet.ucla.edu/consortium/index.pl?Elec...

campus
instruction
library
programming

How can I grab a website and place it on my server for a faculty member who wants to archive student web projects?

UCLA Tech Resources

Several times I’ve been asked by faculty to copy student web projects over to our server, or in one case to burn a CD. The utility I use is wget and among its advantages, it will rewrite the links in each page to local links so they’ll work on your server. ht...

web
administration
programming

Subversion

Programming and Web Development Git and Version Control

What is Subversion?Subversion is a version control system or SCM (software configuration management) tool. It is open-source and provides a feature set superior to that of CVS and Visual Source Safe. More information can be found at subversion.tigris.org.Too...

SCM
SVN
programming
subversion
tortoiseSVN
version control

Revision Control

Programming and Web Development Git and Version Control

What is Revision Control?Revision control (also called version control or source control) is a method of tracking changes between various versions of a digital document. This is typically used for software code, but can be used for any type of digital documen...

CVS
SCM
SVN
programming
revision control
source control
version control

Revision Control Systems Compared

Programming and Web Development Git and Version Control

Comparison chartsThere is an in-depth Version Control Systems Comparison available that covers many important features you might be looking for.Popular Systems and their Pros/ConsThis list is by no means complete. For more in-depth information, refer to the l...

CVS
SCM
SVN
Source Safe
programming
revision control
source control
subversion
version control

Django

Programming and Web Development

What is Django?According to the Django website “Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.” Django is sometimes compared to Ruby on Rails. The two frameworks have somewhat similar philosophies. ...

CMS
web
django
programming
Python

Web Development Standards - Best Practices

Programming and Web Development

For better or for worse, everyone developing web sites at UCLA abides by different rules. For those of us who build for public consumption, what are the best practices — considerate of time and maintenance limitations — to get a little closer to building bette...

images
media
best practices
CSS
design
flash
HTML
JavaScript
programming
standards
web development

How do I count the number of times a word or phrase occurs in a string?

Programming and Web Development

Assuming that you don’t have a built-in function that does this in one shot…Here is a trick for quickly (i.e. using minimal typing effort) counting the number of times a string occurs in a larger string:Below is some pseudocode for searching for a string calle...

shortcuts
algorithms
PostgreSQL
programming
SQL

How do I obtain SPSS software at UCLA?

UCLA Tech Resources

To obtain SPSS software at UCLA, go to https://softwarecentral.ucla.edu/ibm-spssAnnual licenses restricted to UCLA Faculty or Staff, must be used for UCLA teaching and/or research only and must be paid for with university funds. Students paying with their own...

SPSS
Statistics
computing
programming
software

In a web application, how can I flash an image after a user presses a button?

Programming and Web Development

We needed the ability to display an image for only a quarter of a second. This can be done using javascript. After the tag, add these functionsfunction displayImage(){document.images[0].src = 'flashedImage.jpg'var t = setTimeout("hideImage()",250)}function ...

web
JavaScript
programming

Why NoSQL Matters

Programming and Web Development SQL

Useful survey of NoSQL (and SQL) technologies and a summary of the philosophy…http://blog.heroku.com/archives/2010/7/20/nosqlTaken from email by Jose Hales-Garcia to Campus Web Publishers List

database
MySQL
programming

jQuery Tutorial

Programming and Web Development JavaScript

Learn the basic building blocks of jQuery in a two hour combination of videos, and interactive console challenges. – http://try.jquery.com/Please list any other useful jQuery Tutorials you know of.

JavaScript
programming