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

48 total results found

Eclipse

Programming and Web Development

Eclipse, for most people who use it, is an Integrated Development Environments (IDE). Although it is well-known as a Java IDE, it can be used as an IDE for other languages. Features (Note: These features applies to Eclipse + JDT. Features for other languages...

Ruby
Java
SVN
Eclipse
subversion
Perl
PHP

How to run Eclipse from your USB key?

Applications/Software

Having a runnable copy of Eclipse on your USB drive is very handy. Here is how to set up Eclipse + JDT on your USB key. It assumes that your USB key is inserted as F:Prepare Eclipse Download Eclipse Platform and JDT from http://www.eclipse.org/ Extract the con...

Eclipse
JDT
Java

Where can I use Eclipse on campus

UCLA Tech Resources

Feel free to expand this answer…The computer in SEASnet labs (in Boelter Hall) have Eclipse installed with Java, C/C++ and SVN support. However, SEASnet labs are only available to engineering students.

C
C++
Eclipse
SEASnet
Java

How to disable CD-ROM auto-run in Windows XP

MacOS, Windows, and Linux Windows XP

Run the Registry Editor (regedit.exe) Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom Change the value of the key AutoRun to 0.(Source: http://www.annoyances.org/exec/show/article03-018)A less invasive method for disks without autrun.inf (suc...

autorun
cd-rom
Windows

How to switch to Gmail while using the same BOL e-mail address?

Email

ProblemYou are used to your BOL e-mail address at jbruin@ucla.edu and everyone reach you by this address. One day you decided to switch to Gmail and got yourself jbruin@gmail.comFor some reason (e.g. hard to get everyone to use your new address), you want peop...

BOL
email
Gmail

Notepad replacements

Applications/Software

If Notepad (that comes with Windows) is not a good enough text editor for you, you can try the following: Programmer’s Notepad (freeware) UltraEdit (shareware) Notepad++ (freeware) Notepad2 (freeware)

editor
Notepad
text
Windows

Anti-virus, firewall and Internet security software

Cybersecurity

AVG Anti-virus – free; anti-virus Microsoft Security Essentials – Free anti-virus and anti-spyware from Microsoft. Supercedes Windows Defender (see below). Also, Security Essentials definitions Microsoft Windows Defender – Free anti-spyware from Microsoft. ...

Internet
Sophos
anti-virus
defender
firewall
phishing
security
spam
ZoneAlarm

Phishing protection

Cybersecurity

Applications that offer phishing protection:Standalone Thunderbird (1.5+) – warns you if a e-mail looks like a phishing e-mailWeb-based (Add stuff here)

phishing
scam

What are the differences between POP and IMAP

Email

(Note: The following is really about POP3 and IMAP4.)Basiclly, IMAP is a more complex protocol that is more suitable for users who frequently access their e-mails from more than one machine. POP is a much simpler protocol that basically just supports listing, ...

email
imap
pop

How to share a file among multiple courses in Moodle?

CCLE and Moodle

There are two ways to do it: Place them in the “site files” area. It looks like only the administrator can do this. Also, the file will be viewable by everyone (i.e. don’t put sensitive data there). Use the myFiles module to share the file. (However, someone i...

Moodle

In Moodle, why is a particular page blank or incomplete?

CCLE and Moodle

Does this happen when trying to open a PDF resource?This issue may occur when a user tries to open a PDF resource due to an incompatibility between Moodle and the Adobe Reader plugin on some of the most recent browsers. Generally speaking, refreshing the wind...

Moodle
Moodle Dev
Moodle admin

How to view DBDesigner4 documents in Mac OS X

MacOS, Windows, and Linux

Unfortunately, DBDesigner4 is written in Delphi, which is practically Windows-only, so there is not and probably will not be a Mac OS X version. Also, no other applications are able to show diagrams in this format.DBDesigner is replaced by MySQL workbench. It ...

DBDesigner
Mac OS X
MySQL

Zope/Plone usage statistics

Programming and Web Development Plone

Since a Zope access log (Z2.log) has the same format as an Apache access log, Apache log analyzers will probably work for Zope/Plone too. I have tried AWStats and Webalizer and they both worked w/o needing to set anything special. I prefer Webalizer because: I...

Plone
Zope

Create a PHP unit test case using SimpleTest

Programming and Web Development PHP

You can download SimpleTest at https://sourceforge.net/projects/simpletest/Suppose you have a PHP file called math.php that contains functions that you want to test.<?function square($x) { return $x * $x;}function cube($x) { return $x * $x * $x;}?>Then y...

SimpleTest
PHP
unit test

Backing up and packing Plone's database file (Data.fs)

Programming and Web Development Plone

Backing up the databaseSee “Backup Plone” and “Backup and recover Data.fs in linux” in Plone’s documentation.Additional notes: Recent versions of Repozo can compress (gzip) the backup files in addition to doing incremental backups. When doing full backups, Rep...

back up
pack
plone admin

What kind of test can SimpleTest do?

Programming and Web Development

SimpleTest’s unit tester is designed to test PHP code. Also its web browser component (think of it as a fake browser from the POV of a web server) can be used to test web pages.

SimpleTest
PHP
unit test

PHP error reporting

Programming and Web Development PHP

Error levels name value description example 1 example 2 E_ERROR 1 Fatal run-time errors notdefined(); E_WARNING 2 Run-time warnings 1 / 0; E_PARSE 4 Compile-time parse errors +-; E_eval(‘+-;’); E_NOTICE 8 Run-time notic...

debug
PHP

Using SSL socket in PHP under Windows

Programming and Web Development PHP

ProblemIf you try to open a socket (fsockopen, pfsockopen) with SSL in PHP 4.x under Windows, the operation might fail with the following message: Warning: fsockopen(): no SSL support in this buildThis problem occurs even if phpinfo() shows openssl as loaded ...

SSL
fsockopen
pfsockopen
PHP
socket
Windows