Specify the domain in SMB login strings (and flush cache)

macosxhintsDecember 10, 2003. &nbsp You can specify Workgroup (along with user ID) in the SMB connect-to string. For example:

smb://WORKGROUP;machine.somewhere.com/Share

smb://WORKGROUP;User@machine.somewhere.com/Share

smb://WORKGROUP;User:Password@machine.somewhere.com/Share/

Unrelated hint to clear DNS cache: lookupd -flushcache (might need sudo)

Pure CSS cascading menus

Meyerweb
Multi-level cascading menus without JavaScript using the :hover pseudoproperty of CSS2. Doesn’t work in IE.

Here’s the foundation of this effect:

  li ul {display: none;}

  li:hover ul {display: block;}

Sprinkle a little positioning on top of that, so that the popout menus go where you want them, and you’re in business.

UTF-8+names

Ongoing – Tim Bray “You want to put funny characters in your XML, ones that aren’t on your keyboard. XML has a bunch of ways to do this; some of them require sophisticated software, others are really ugly, and if you want to avoid both the ugliness and the fancy software, you can use a DTD. This set of issues has been darkening the XML skies for years now, but we may have stumbled on a way out of the box.”