If you intresting in sport buy steroids you find place where you can find information about steroids
Browsing articles in "Extras"
11
Dec

Stacked Bar Graphs With CSS

Stacked bar graphs are very helpful when presenting a comparison of data.

This is a stacked bar graph built with CSS (& based on Pure CSS Data Chart).

It uses “definition lists” in the HTML for presenting the data & “unordered lists” for the labels on axes.

Source files can be downloaded from the author’s website & a demo can be found here.

Requirements: No Requirements
Compatibility: All Major Browsers
Website: http://www.thewojogroup.com/2008/12/css-stacked-bar-…
Demo: http://assets.thewojogroup.com/csschart/

Categories:

Tags:

comments
11
Dec

Create Desktop Apps. With HTML, CSS And JS: Appcelerator Titanium

Appcelerator Titanium is an open source platform that enables you to create rich desktop applications with web technologies like HTML, CSS, Javascript as well as Flash and Silverlight.

Appcelerator SDK is used to create applications or any third-party Ajax library / framework can be used too.

Tip: To make it clear, it is very similar to Adobe AIR but open source.

Titanium also comes with a simple command-line interface (CLI) for creating projects and packaging them into an executable.

The platform has a built-in database, direct file system access, desktop notifications & more.

Titanium apps. currently work in Microsoft Windows and Mac OSX.  Linux support is in the roadmap.

Requirements: Windows or Mac OSX
Website: http://titaniumapp.com/
Demo: http://titaniumapp.com/demos
Download: http://titaniumapp.com/download

11
Dec

IE6 PNG Fix (More Features): DD_belatedPNG

DD_belatedPNG is a fresh IE6 PNG fix script with features where other solutions are missing.

It doesn’t use MSIE AlphaImageLoader filter so, it succesfully renders background-repeat and background-position.

The script also fixes the IE6 grey background problem.

How to use it?

Very simple.

Read the rest of this entry »

11
Dec

Microsoft Encarta 2008 for Mobile Phones

Microsoft Encarta 2008 for Mobile Phones (Java) | 5 MB

Microsof Encarta 2008 is a great encyclopedia that furnishes information on all the Nations of the world.Information, for every Nation..

information, for every Nation, on:

-Flag
-Map
-Introduction
-Geography
-People
-Government
-Economy
-Communications
-Transportation
-Military
-Transnational Issues
Compatible with java phones, At least 6 Mb is required to run.

Download:

Rapidshare

Categories:

Tags:

comments
11
Dec

iGO 8 Build 8.3.2.64873

iGO is eighth revolutionary navigation program c 3d by cartography for the motorists, the tourists and . The chief characteristic of the new version – exploded views of buildings, area relief and other objects. Program makes it possible to turn map to 360 degrees for more convenient mapping onto the screen of navigator. Second uncommon special feature – possibility to use navigation out of the roads of general use, on the bicycles, aerosleighs, motorcycles, on the yachts, launches, in the marches.

Year of the release: 2008
Version: 8.3.2
Developer: NAV N Go
Platform: WM5, WM6
Permissions of the screen: 240×240, 240×320, 240×400, 320×240, 320×320, 400×234, 400×240, 480×234, 480×272, 480×800, 800×480
Language of the interface: only Russian

Read the rest of this entry »

10
Dec

Snapter Ice

Use your digital camera as a mobile scanner to scan documents, business cards, whiteboards, and books.

Snapter is software that lets you use a digital camera as a mobile scanner. The software automatically crops, stretches, flattens, and converts photos of documents, whiteboards, posters, business cards and receipts into more portable images. Whether you are in a library, conference room or classroom, just snap the photo and run it through Snapter to produce images that look as if they have been scanned through a flatbed scanner!

You can download here:

Read the rest of this entry »

10
Dec

BlueCrestStudios GMail Desktop Studio 1.2.0.2

BlueCrestStudios GMail Desktop Studio 1.2.0.2

GMail Desktop Studio brings all the features of GMail to your desktop. With a system tray notification system, a built in browser, and the ability to handle mailto links: GMail Desktop keeps your GMail accounts within a mouse click. GMail Desktop Studio allows you to monitor multiple GMail or Google Apps for your Domain accounts. The system tray notification system allows you to see how many new messages you have without any interaction from you. From the new mail notification window you can click on any of your messages to instantly view.

GMail Desktop Studio is great for those who want quick access to their GMail accounts, and instant notification of new mail.

Features:

* Works with GMail and Google Apps for your Domain accounts
* Built in Email viewer with quick launch features
* Ability to handle mailto links
* Ability to handle multiple accounts
* Color association for accounts
* Monitor different GMail tags
* Custom notification options per account

System Requirements:

* Windows 2K or greater
* IE6 or greater
* 256MB Ram or greater
* 15MB disk or greater
* Pentium 300 or greater

BlueCrestStudios.GMail.Desktop.Studio.v1.2.0.2.Cracked-iMST

Download Rapidshare

Download Mirror

Categories:

comments
9
Dec

UltraFast Website Indexing in 6 Easy Steps!

What was once considered as impossible is now a very real probability. Yes, your website can be indexed in Google’s database within a week’s time after it goes live! How are you supposed to do this?

Google said that you should not bother to submit your website to them. They will find your website, and once they do, they’ll index your web pages. The reason behind this is quite simple. Google uses links to hop from one website to another. If they arrive at a page that is unfamiliar to their database, they will index it… and thus is the method by which your very own website can be a part of their database.

The problem is, there are literally billions of web pages out there. Even with the mechanical precision by which it operates, it will take weeks, if not months, before Google can stumble upon your website for proper indexing. The trick is in expediting this process. And how are you supposed to do that?

Let’s put it this way. If only one website is linking to yours, Google has to crawl through that site before it could discover yours. 1 in 1,000,000,000 is not a favorable ratio. But what if you have 1,000 websites linking to yours? Alas! Your website would have better chances of getting indexed fast!

Read the rest of this entry »

9
Dec

Pass or Fail: The Top 31 Technology Company Homepages

Although there are lots of posts that evaluate different design blogs, I haven’t seen many that focus specifically on corporate websites.

Therefore, I thought it would be fun to take a look at the homepages of the Top 30 technology companies and assign them a PASS or FAIL rating based on the quality of their homepage design.

Click on the screenshots to check out each website.

1. Amazon.com: PASS

Although it may be a little cluttered for my taste, it would be short-sighted to say that the Amazon.com homepage is a FAIL.  Amazon has created a company that has landed at the top of the InfoTech 100, and the fact that one hundred percent of their sales are made online shows that they understand how to use their website to attract and retain customers.

2. Apple: PASS

As an Apple user, I may be a little biased, but I honestly don’t think that anyone could look at the Apple homepage and say that it fails in terms of design.  The homepage is uncluttered, provides easy to use navigation and gracefully showcases several of Apple’s products.

Read the rest of this entry »

8
Dec

Convert a value to pixels with JavaScript

A quick snippet of JavaScript to convert values to pixels from any string. Below is a quick function:

function px(val) {
    return parseInt(val)+"px";
  }
}
To use it, just wrap your string with the function
and it should convert it to pixels for you:
var oldValue = '65';
var newValue = px(oldValue);
Open source icons
Creative and Clean Resume Template