Wednesday 21 March 2012

Jazz | 977Music.com



Below is the script that created the above

Oldies | 977Music.com



Below is the script that created the above

Country | 977Music.com

80's | 977Music.com



Below is the script that created the above

Tuesday 20 March 2012

Deleting Your Tweets - it will detete tweets, but still only limited

before i start, i would like to say, i have tried to remove all tweets at any one time, it does work, but its only limited, most will delete 200 at any one go, after you used the site or sites, then you can't remove nomore, i don't know why this happens, its like the site or sites gives up on you after a while or the sites cannot find any of your tweets.
 
http://www.deleteallmytweets.com/ 
Delete All My Tweets is an app which does what it says on the tin.

If you want to delete all tweets from your Twitter account simply sign in with Twitter, autorise the app, click to confirm and sit back as up to 1000 tweets are deleted in one go.  If you need to delete more simply repeat the process.

Users do so at their own risk – once tweets are deleted the process can't be undone.

What is an Iframe

http://en.wikipedia.org/wiki/HTML_element#Frames 

Frames allow a visual HTML Browser window to be split into segments, each of which can show a different document.  This can lower bandwidth use, as repeating parts of a layout can be used in one frame, while variable content is displayed in another.  This comes at a significant usability cost, especially in non-visual user agents.  Because of this cost, frames (excluding the iframe element) are only allowed in HTML 4.01 Frameset.

In HTML 4.01, a document may contain a head and a body or a head and a frameset, but not both a body and a frameset.  However, iframe can be used in a normal document body.


 <frameset>...</frameset>
    Contains the frameset.  The frames layout is given by comma separated lists in the rows and cols attributes.
    Standardized in HTML 4.0 Frameset, obsolete in HTML 5.
<frame> or <frame/>
    Delimits a single frame, or region, within the frameset. A separate document linked with the src attribute appears inside.
    Standardized in HTML 4.0 Frameset, obsolete in HTML 5.
<noframes>...</noframes>
    Contains normal HTML content for user agents that don't support frames.
    Standardized in HTML 4.0 Transitional, obsolete in HTML 5.
<iframe>...</iframe>
    An inline frame places another HTML document in a frame. Unlike an object element, an inline frame can be the "target" frame for links defined by other elements and it can be selected by the user agent as the focus for printing, viewing its source, etc.
    The content of the element is used as alternative text to be displayed if the browser does not support iframes.
    First introduced by Microsoft Internet Explorer in 1997, standardized in HTML 4.0 Transitional, allowed in HTML 5.