Archive for May 17th, 2007

Net: Code Snippets for web designers

May 17th, 2007

Another quick snippet for today as I’m quite busy – in fact take 25 code snippets for web designers (including Bubble Tool Tips, Box Overs, Ajax Star rating bar, CSS Star Rating Redux, Ajax Contact Form, an online form creation utility called Wufoo, Pretty Accessible Forms, Radio and Checkbox customisations, a text renderer thingy, revised image replacement, the obligatory CSS rounded corners, cool looking CSS Speech Bubbles, even more rounded corners, vertical bar graphs just using CSS and PHP (and another method), a hover light box, Lightbox JS, CSS Image Maps, CSS Image Pop-up, Sliding Doors CSS Navigation tabs, taming lists, a design experiement in the art of navigation, navigation matrix reloaded, light weight css tabs and accessible image tab roll overs.

Phew – so much for this being a snippet on its own!

Techy Snippet: MySQL Database Schema Dump

May 17th, 2007

To extract/export just the schema/design/create tables section of a MySQL table via the command line, you need to use a command such as:

mysqldump –no-data [databasename] [optional table name] -u[user name] -p > extract.sql
(enter the [username] mysql user password)

To import it again, use:

mysql -u [username] -p [databasename] < extract.sql

See also: MySQL Docs: MySQLDump.

gamy-dance