rulu ruru

post Using online dictionary and regular expression to find nice domain names

December 27th, 2007

Filed under: links to remember, web, web 2.0 — starenka @ 16:49
Tags: , , , ,

I found a nice tool for those hunting for some cute “web 2.0″ domain names such as del.icio.us or last.fm. Sometimes you may stuck for couple minutes thinking about some kickass word but none would show up. This is the right time to get inspired with this cool dictionary with regular expression search. Getting the possible domain names list with such a dictionary is a cakewalk then. Examples?

.it:

^.{3,}it$

.us:

^.{3,}us$

.am:

^.{3,}am$

Those are just dumb searches matching any string equal or longer than 3 character before the TLD. Those searches will result in hundreds or thousand matches so you might be better specifying the word by some more modifiers or at least specify the part of speech (pronouns, adverb etc..).

Feel free to stick nice domains you found (and better registered ;) ) into comments. Good luck!

post Last.fm + YouTube

December 23rd, 2007

Filed under: music, social, web 2.0 — starenka @ 21:51
Tags: , , ,

What happens when you get the list of your favourite artists from Last.fm and search YouTube for their videos? And how about making a personal music TV? Well then you are just one click far from realizing that.

YouTube-last.fm mashup

post Custom fonts on web pages

December 23rd, 2007

Filed under: flash, links to remember, web, web 2.0 — starenka @ 15:34
Tags: , , ,

Do you think that using custom fonts at your webpages is imposibble? Me too. Why?

  • you can’t use custom fonts in CSS, because you don’t know if target client has such font installed
  • if you use images, the content won’t be indexed by Google

However I came across the sIFR (Rich Accessible Typography for the Masses) project some time ago, which uses Flash to render the headings. What’s the point? Well, let’s see…

  1. A page is requested and loaded.
  2. Javascript detects if Flash 6 or greater is installed.
  3. If no Flash is detected, the page is drawn as normal.
  4. If Flash is detected, the HTML element of the page is immediately given the class “hasFlash”. This effectively hides all text areas to be replaced but keeps their bounds intact. The text is hidden because of a style in the stylesheet which only applies to elements that are children of the html.hasFlash element.
  5. The javascript traverses through the DOM and finds all elements to be replaced. Once found, the script measures the offsetWidth and offsetHeight of the element and replaces it with a Flash movie of the same dimensions.
  6. The Flash movie, knowing its textual content, creates a dynamic text field and renders the text at a very large size (96pt).
  7. The Flash movie reduces the point size of the text until it all fits within the overall size of the movie.

Enough chit-chat… go and see the demo :)

ruldrurd
© starenka 2oo7, cute alien monster by noizcut, original theme by Laurentiu Piron - customized by starenka | proudly powered by WordPress