Java Regular Expressions
Here is a nice guide for regular expressions in Java:
http://www.vogella.de/articles/JavaRegularExpressions/article.html
Here is a nice guide for regular expressions in Java:
http://www.vogella.de/articles/JavaRegularExpressions/article.html
To open a shared calender you need to have access and the following commands:
https://webmail.iha.dk/owa/<mail address of the calender owner>/?cmd=contents&module=calendar
| Views | Links |
| Calendar View – Default – Daily | https://<server name>/owa/<SMTP address>/?cmd=contents&module=calendar |
| Calendar View – Daily | https://<server name>/owa/<SMTP address>/?cmd=contents&f=Calendar&view=Daily |
| Calendar View – Weekly | https://<server name>/owa/<SMTP address>/?cmd=contents&f=Calendar&view=Weekly |
| Calendar View – Daily – Specific Date by specifying Date, Month and Year | https://<server name>/owa/<SMTP address>/?cmd=contents&f=Calendar&view=Daily&d=3&m=7&y=2009
Where… d=[1-31] |
See more at: http://exchangeshare.wordpress.com/2009/06/15/how-to-open-shared-calendar-in-owa/
I recently had to copy a VirtualBox HD image and didn’t use the build-in support which resulted in problems with UUID’s not matching or being duplicates of each other. To solve this I used the following command to generate and reassign a new UUID to my disk copies.
VBoxManager.exe internalcommands sethduuid image.vdi
for newer versions:
VBoxManage.exe internalcommands sethduuid image.vdi
I recently had the problem with a HTC Desire where a Google account was added but only mail and contacts could be selected for synchronization, there was not abvious way to fix it and none of the clear your google account didnt work for me. The alternative to clearing the Google account was to do a factory defaults on the phone which wasn’t an option.
So the solution was to create and add a second Google account. As soon as it was added the first account fixed it self – the calender suddenly appeared. Then I could just delete and remove the second newly created account from the phone again.
Use full links:
Here is a list of arguments Eclipse, including both command line arguments and properties:
e.g: Changing the default workspace path through a property. If the property is set in the VM then Eclipse will detect that during load:
-Dosgi.instance.area.default=@user.home/Documents/DestecsWorkspace
This nice small tool for windows 7 can do the job. It creates a new access point like a normal router which can be used by any wifi device. The tool also allows sharing through a wifi access point while it self is connected to a wifi router.
Here is a nice plug-in to analysis Java code in Eclipse. It can detect known bad practises and known or possible null pointers, synchronization problems etc.
Eclipse update site: http://findbugs.cs.umd.edu/eclipse
To debug the SWT Framework a tool called Sleak can be used, it is provided by SWT itself.
The tool can be found at: http://www.eclipse.org/swt/tools.php
If you can’t delete a file in windows because it is locked this tool can help you unlock it: Unlocker. Link
To make a symbolic link in Windows 7 use the “mklink” command.
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link refers to.
An example is given at this site using-symlinks-in-windows-vista