by ChrisR
7. March 2011 17:31
This simple but amazing video walks through the evolution of the web from it's early days to today. Everytime I see this it gets me excited to create something. Take a look...I'm sure you'll like it: You can also download a higher resolution copy below: Windows Media File (55 MB) | Quicktime File (96 MB)
by ChrisR
2. March 2011 20:10
I can’t think of too many projects I’ve been involved with that didn’t interact with some type of content in one way or another. While it’s ideal to have the final content to use during development, that’s not always possible. The content may not exist yet, or it may be confidential - whatever the case may be I often need to use sample content as a placeholder while developing. While I could always copy and paste some text from a website to use as a placeholder there is a better way that gives me much more control and is just as quick and easy.
In most Microsoft Office apps you can generate a block of sample content by typing =rand() and then pressing enter. If you want more control over the content that is generated there are two parameters you can include. The first parameter is the number of paragraphs to generate. For example =rand(4) will spit out 4 paragraphs. The second parameter is the number of sentences to include in each paragraph. So =rand(2,5) will give you 2 paragraphs with 5 sentences in each.
If you want to generate ‘lorem ipsum’ text you can use =lorem() instead. With =lorem() you can also pass the two parameters control the number of paragraphs and sentences that are generated.