Advanced Search
Search Results
48 total results found
Eclipse
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...
How to run Eclipse from your USB key?
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...
Where can I use Eclipse on campus
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.
How to disable CD-ROM auto-run in 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...
How to switch to Gmail while using the same BOL e-mail address?
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...
Notepad replacements
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)
Anti-virus, firewall and Internet security software
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. ...
Phishing protection
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)
What are the differences between POP and IMAP
(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, ...
How to share a file among multiple courses in 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...
In Moodle, why is a particular page blank or incomplete?
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...
How to view DBDesigner4 documents in Mac OS X
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 ...
Zope/Plone usage statistics
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...
Create a PHP unit test case using SimpleTest
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...
Backing up and packing Plone's database file (Data.fs)
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...
What kind of test can SimpleTest do?
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.
PHP error reporting
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...
Using SSL socket in PHP under Windows
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 ...