Profile
Achievement
DaveChild's Recent Snippets
- All /
« Prev 1 Next »
Puts a red border around anything with an inline style. Prefix with "javascript:" and paste into the address bar to run on a page directly, or run with a load event.
1
756
posted 15 years ago by DaveChild
This function will add soft hyphens after every 3rd character in words of over 10 characters. It will not leave fewer than three characters following a soft hyphen.
Known bugs: Adds soft hyphens to URLs and within HTML tags.
0
700
posted 15 years ago by DaveChild
This snippet returns a link to twitter for the user to tweet the current page. URL is TinyURLed automatically (and tinyurls are cached indefinitely in assets/cache/tweetthis.txt).
Simply paste code into a new snippet called "TweetThis". Call it li...
3
810
posted 15 years ago by DaveChild
If reading email from a POP box with PHP, you can use this to strip out signatures (ones that are delimited with the proper '--' notation). It will only strip the last signature of an email, in case someone enters a '--' intentionally elsewhere.
0
818
posted 15 years ago by DaveChild
Pass in text and the maximum allowable length and this snippet will return as many full sentences from the text as it can within that length. If no sentences, it will just trim to the maximum length allowed.
1
993
posted 15 years ago by DaveChild
Function replaces all non-alpha-numeric chars and cleans up a text string. Should output a usable URL for almost all text.
1
1009
posted 16 years ago by DaveChild
This script should be run from the "master" database. It will destroy the dev copy of a database and restore from the live copy.
Code slightly modified from original (linked).
0
698
posted 16 years ago by DaveChild
Run from within SQL to get list of items in directory to a table.
1
803
posted 16 years ago by DaveChild
Crops and resizes, maintaining perspective, with a white background.
1
912
posted 16 years ago by DaveChild
Format strings:
* %A - AM or PM
* %a - am or pm
* %m - Month with leading zeroes (01 - 12)
* %n - Month without leading zeroes (1 - 12)
* %F - Month name (January - December)
* %M - Three letter month name (Jan - Dec)
* $d - Da...
0
1312
posted 16 years ago by DaveChild