Automatically pulled from Google Starred


Google Internet browser without installation.
Download Portable Google Chrome MultiVersion Online on RapidShare (0.4 MB) (Updated for and 7)
Download Portable Google Chrome 1.0.154.65 on RapidShare (8.3 MB)
(md5: c5623348a26942c871cd2cd3e4d51abb)

In first screen of Chrome MultiVersion Online, enter ver number:
3.0.195.33 for Chrome Stable
4.0.237.0 for Chrome Dev
2.0.172.43 for Chrome Stable


Chromium is the open-source project behind Google Chrome.
Download Portable Chromium Latest Online on RapidShare (0.4 MB) (Updated for Vista and 7)

Latest Online will download latest (you can run also as updater to check if you have latest).


SRWare Iron is based on the Chromium-source and offers the same features as Chrome – but without the critical points that the privacy concern.
Download Portable SRWare Iron 3.0.189.18153 Beta on RapidShare (8.5 MB)
(md5: d3f6886a7f76920f93bd5b085b71f95c)
Download Portable SRWare Iron 2.0.178.15300 on RapidShare (8.3 MB)
(md5: c53c028e3f3ee9ff584deb1701d32c31)


Download Plugins on RapidShare (2.9 MB)

Extract Plugins: Flash 10.0.32.18 & Gears 0.5.32.0.

Extract and run ChromePortable or ChromiumPortable or IronPortable.
If you want to add parameters, start in incognito mode, not set cache in temp, not delete cache or allow multiple instances: edit *Portable.ini.
Example: AdditionalParameters=–app=http://portableappz.blogspot.com
Settings of installed Chrome, Chromium & Iron should be preserved.

Results in Acid3 Test :
Chrome, Chromium & Iron: 100 %

Go to Source

Tags: , , , , , , , , ,

Automatically pulled from Google Starred


  

High quality free Themes have become harder and harder to find in the past year, with the influx of premium themes, more and more designers and developers are selling themes (and rightly so, they do amazing work). However, the quality of freely available themes has improved as well; in fact, some themes are very advanced and professional and can serve as a solid foundation for your next designs.

There are a lot of choices out there for someone wanting to choose a WordPress theme for their blog. But, that aside, the quality is certainly there, and we are sure you will be impressed with this WordPress theme compilation.

You may be interested in the following related posts:

Free High-Quality WordPress Themes

AppCloud Theme
A nice e-commerce WordPress theme with a clean and professional look. Built upon 960.gs, with an integrated slideshow, two layouts (horizontal and vertical) for app/gadget images. The theme also includes sections “Featured products” and “Top Selling” and a categorized products view.

Berita (via ThemeCloset)
Berita is a minimalist corporate theme created for companies to prominently display their logo, but the theme could be used for any type of website. It’s a feature-rich theme with a preview slider on the front page and a robust theme administration page.

Magazeen
Magazeen is a two-column theme released specifically for Smashing Magazine readers. The theme has some subtle enhancements that encourage looking at related and new posts, like a related posts drop-down effect for the category link.

Mainstream Theme (via Wootheme)
You have the option of choosing from five different theme colors with Mainstream. Thumbnails are automatically resided and the sidebar is widgetized.

Rusty Grunge
Rusty Grunge is a simple WordPress theme yet still gives you the “destroyed” look. This theme utilizes a fully-widgetized sidebar and has been downloaded over 28,000 times and is featured as a pre-installed theme on Dreamhost’s default installation of WordPress.

Obscure WordPress Theme
A dark magazine WordPress theme suitable for any site niche; also a good fit for a community-based site.

Paper Wall
Smashing Magazine released the illustrated theme Paper Wall last month. The inspiration behind the Paper Wall theme was a designer’s desk, as designers typically put things on paper. It’s a two-column theme with many elements of paper: paper boards, peeling paper and paper “menus”.

Tags: , , , , , , , , , , ,

Automatically pulled from Google Starred

You've always wanted to learn how to build software yourself—or just whip up an occasional script—but never knew where to start. Luckily, the web is full of free resources that can turn you into a programmer in no time.

Since the invention of the internet, programmers have been using it to discuss software development techniques, publish tutorials, and share code samples for others to learn from and use online. If you’re curious about how to become a programmer, you can get off to a running start using tons of great free web-based tutorials and resources.

First Things First: Don’t Get Hung Up on Choosing a Language

A common pitfall for beginners is getting stuck figuring out which programming language is best to learn first. There are a lot of opinions out there, but there's no one "best" language. Here's the thing: In the end, language doesn't matter THAT much. Understanding data and control structures and design patterns does matter very much. Every language—even a simple scripting language—will have elements that you'll use in other languages as well and will help you learn. In classes I took to get my degree in Computer Science, I programmed in Pascal, Assembly, and C—languages I never actually got paid to program in professionally. I taught myself every language I've used in my career, reusing concepts I already knew, and referring to documentation and books to learn its syntax. So, don't get hung up on what language to learn first. Pick the kind of development you want to do, and just get started using one that works.

There are several different kinds of software development you can do for various platforms, from the web to your desktop to your smartphone to a . In this article, we’ll outline some of our favorite starter tutorials and resources for teaching yourself how to program for each major platform. We’re going to assume you’re a savvy user, but a newb when it comes to wrangling code snippets, so we’ll keep things at the beginner level. Even just following through a beginner programming tutorial, you’ll be happy to see how far you can get.

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Automatically pulled from Google Starred

GoogleGo.jpg’s dominated search, online document collaboration, e-mail, telephony, and more, so why not programming, too? The tech giant has announced its own open-source, object-oriented programming language, called Go.

The Google Open Source Blog says that “Go combines the development speed of working in a dynamic language like Python with the performance and safety of a compiled language like C or C++.” (If you don’t know what that means, don’t worry about it.) “Typical builds,” the blog continues, “feel instantaneous; even large binaries compile in just a few seconds. And the compiled code runs close to the speed of C.” Go supports multiprocessing, as well as true closures and reflection.
The Go Web site (golang.org) explains
the rationale behind creating Go, mostly citing the change of the
computer landscape that’s occurred over the past decade or so that’s
seen very few (if any) major systems languages spring up: more powerful
PCs, many of which use multicore processors; increased dependency
management in software that’s not reflected in the “header files” of
C-based languages; the growing desire for dynamically typed languages
(such as Python and ) instead of type systems such as Java
and C++); and the poor support for concepts such as garbage collection
and parallel computation.

Google says that Go takes full
advantage of modern, multicore hardware; that it simplifies dependency
analysis and avoids the overhead present in C-style languages (such as
files and libraries); that Go’s type system has no hierarchy, which
saves the programmer from having to define relationships between types;
and that Go is fully garbage-collected and naturally supports
concurrent execution and communication.

If you’re interested in
getting started with Go, or you just want to learn more about its inner
workings, Golang.org is loaded with tutorials, manuals, FAQs, and other
documentation for easy assimilation. There’s
even a section devoted to C++ programmers who want to learn Go. Also
there to be found are code samples, such as the traditional beginning
to all studies, “Hello, world!”:

05    package main<br>
07 import fmt "fmt" // Package implementing formatted I/O.<br>
09 func main() { 10 fmt.Printf("Hello, world; or ???????? ?????; or ????? ??\n");<br>
11 }

Tags: , , , , , , , , , ,

Automatically pulled from Google Starred

_
_

Tags: , , , , , , ,

Automatically pulled from Google Starred

One of the great things about digital television is also one of the not-so-great things. When you get the signal, it’s crystal clear. When you’ve a weak connection, you’re out of luck. Boost your reception with this monster homemade antenna.

If you live far from urban centers but you’d still like to pick up some over-the-air digital stations, you’re going to need a pretty sizable antenna. Earlier this year we shared a great antenna design with you, based on the Gray-Hoverman model.

The model you see here is what results when a little Gray-Hoverman antenna visits the beach, gets washed into a deep trench outside of Tokyo filled with radioactive waste, and emerges again, ready to wreak havoc on the world. Well, all except for that last part. This massive , based on the Gray-Hoverman model, can pick up signals from around 60 miles away, making it suitable for either boosting your local reception or picking up signals from areas you’ve never called home.

If you’re put off by the size of it, it is possible to put this style of antenna inside an attic. You’ll lose a bit of reception, but you’ll avoid your neighbors whispering about the mutant antenna on your roof. Check out the full build guide at the link below.


Go to Source

Tags: , , , , , ,

Automatically pulled from Google Starred

Windows/: One of the most irritating things about reinstalling your operating system is installing all the non-OS applications you love. Allmyapps lets you select all your favorite apps and roll them into a bulk installer to make rebuilding easy.

At Allmyapps you can browse over a hundred popular applications in a dozen categories to a master list of applications you want to install. You don’t have to install immediately after building your list, you can save your list for later installation. Check out the below to see how Allmyapps works:

For another great time-saving bulk installation tool, check out previously reviewed Ninite. Have a to get your favorite apps installed quickly? Let’s hear about it in the comments.

Allmyapps is a free web-based service and provides bulk-installation on both Windows and Linux.


Go to Source

Tags: , , , , , , , , , ,

Automatically pulled from Google Starred

The nightly builds of Chrome’s open-source foundation, , includes a feature that might mean great things for Greasemonkey fans. Click on a user file, such as at UserScripts.org, and Chromium asks to install it as a working extension.

Judging from the developers’ discussions at the Chromium wiki, Greasemonkey, or at least some kind of user script support beyond the current, very geeky installation method has been a hot topic. The latest builds tackle user script support by re-mapping them into extensions, automatically activated at their relevant sites. You can give it a test by installing the latest Chromium build in Windows. We’ll assume this feature will make its very soon to those keeping updated on Chromium builds for Mac and Linux.

Before you get too amped, though, it must be said that support is still rudimentary. Scripts that mostly replace one thing on a page with another seem to work fine, but those that pull off custom themes and page manipulations are touch and go. In other words, the more Greasemonkey-specific functions appear in a script, the less likely it is to work in Chromium. That said, it’s reassuring to see some of the great Grease realm opened up to the up-and-coming browser.


Go to Source

Tags: , , , , , , , , , , , , ,

Automatically pulled from Google Starred

Sure you could go buy a USB charger off the shelf, but what fun would that be? Try making one yourself with a little help from a 9V battery and a few extra components.

This simple hack on a standard 9V battery is an easy one to undertake. It’s pretty straight forward, and all it requires is a solder to finish things up. It will give you power on the go and a sense of accomplishment for the day upon completing it. Hit up tech weblog anythingbutipod for the simple diagram to make your own.

The battery-powered USB charger isn’t an altogether new idea. We’d be remiss not to point out previously mentioned Minty Boost, the classic Altoids-tin-cum-battery-powered charger.


Go to Source

Tags: , , , , , ,

Automatically pulled from Google Starred

Smashing-magazine-advertisement in Getting Started With Content Management Systems
 in Getting Started With Content Management Systems  in Getting Started With Content Management Systems  in Getting Started With Content Management Systems

Spacer in Getting Started With Content Management Systems

The need to update websites faster to keep content fresh has been ever growing. Ever since the first business owner wanted their Web designer to update their website faster, content management systems have played an important role on the Web. Why does this matter to you? How do you know if your company is ready?

In this article, we will look at how to tell if your organization needs a content management system. We will also give you on the abilities of content management systems to help you better understand what they can do. While content management systems may seem complex, their entire purpose is to streamline your workflow and make your life easier.

A content management system allows you to create, manage, store and edit massive amounts of content without any HTML programming skill. Because you are able to edit your content from any computer with an Internet connection, you no longer have to rely on third-party developers or companies to keep your website up to date. Sounds good, doesn’t it? Every company would like to reduce costs and increase productivity.

Also consider our previous articles:

1. What Is A Content Management System?

If you have never heard the term before, a content management system (CMS) is a Web-based solution that makes it easy for a company to manage website updates internally. For many companies, updating a website is not something to look forward to because it can be a lengthy and, over time, expensive process. Most companies search for easier means of accomplishing their goals. The solution that many large and small companies have found is a CMS. The easy-to-use application allows your company to control its online identity with little to no knowledge of Web design.

Tags: , , , , , , , , , , , , , , , , , , , ,