TinyBox – a Lightweight and Standalone Modal Window Script
My Clippings November 16th, 2009 by System
Automatically pulled from Google Starred
TinyBox is a lightweight (3.5kb) and standalone modal window script – does not depend on any JavaScript frameworks.
At only 3.5KB it doesn’t include any slideshow capabilities built-in but allows for any AJAX or HTML content. It can also be used for images and auto hiding alerts. The popups fade in/out and dynamically size based on the content if enabled. The styling is completely customizable through the simple CSS.
Click here for the TinyBox demo
Copyright © Visual-Blast Media 2007 – 2009 | ARTICLE | Visit the site for more Free web resources, Icons, Scripts, Photoshop Tutorials, Flash, CSS …
Tags: cli, css, flash, Google, Javascript, ma, Photo, script, wind
iPhone Apps Design Mistakes: Disregard Of Context
My Clippings November 15th, 2009 by System
Automatically pulled from Google Starred
![]()
The iPhone will always be part of a much bigger picture. How well you address human and environmental factors will greatly determine the success of your product. All too often, iPhone developers create products in isolation from their customers. In order to create really appealing applications, developers must stop focusing only on the mechanisms of the apps. Zoom out: understand the person using the application, as well as the complex environmental factors surrounding that person.
To better understand the context of these design challenges, we’ll highlight several levels of human and environmental factors.
Also consider our related articles:
- iPhone design mistakes: Over-Design
- iPhone App Design Trends
- How to Create Your First iPhone Application
Level 1: You Are Here. To Create An App That Customers Love, Zoom Out
Level 1: The app itself.
This is how many developers view their apps. As a developer, you have a vision of what your product should look like and why customers will turn their attention to it. However, if you observe your product so closely, you may put it in the wrong context and design it for the wrong purposes and for the wrong users. This is why you need to zoom out.

Level 2: A person is using this app.
That person has specific goals and challenges. In the section below we’ll start by exploring some of the most prominent — and most ignored — human factors pertaining to the iPhone. We’ll discuss basic physical ergonomics, visual limitations and common design mistakes.

Level 3: That person is using this app in a specific environment.
Step back and you’ll see that the app is a part of a complex social environment. It plays but a relatively small role in communication between people and helping people accomplish bigger goals. This is where the social components comes into play: networking, community, social-driven websites and applications and many other things create the environment — or the context — in which the application will be used.

Level 4: The environment is part of a greater culture.
Your ability to address the unique needs of different cultures will affect the success of your product. Ignoring them is too expensive, especially if your app sells worldwide. Here it is important to understand that the environment is a part of global networking. You need to be aware of cultural differences, traditions and metaphors in order to create an application that will not only gain popularity in certain local circles, but will also have a global success.
Tags: Apple, blockquote, cli, Extract, Google, Information, IO, ISO, ma, Mac, man, Photo, php, script, video, way, XP
Simply Butons v2 with Javascript Enhancements
My Clippings November 14th, 2009 by System
Automatically pulled from Google Starred
p51Labs came up with the Simply-Buttons v2. Buttons auto resize itself to fit text. There are 3 states: Inactive, Active, and Hover. They look and behave the same way in every browser and operating system. However, the caveats are the outlines on the buttons, the text is selectable. And These buttons are not mobile friendly.
With Simply-Buttons Javascript component provided, you can solve the caveats above as well. You can easily modify the buttons look and feel. You can do this by creating your own stylesheet. If you like this, you might be interested in Simple Round CSS Buttons or Colorful and Scalable Buttons or Beautiful Scalable CSS Buttons as well.
Requirements: -
Demo: http://www.p51labs.com/simply-buttons-v2/
License: License Free
Related Posts
Sponsors
Pixmac: Stock Photos, Royalty Free Pictures and Images
Related posts:Tags: blockquote, css, Google, Javascript, ma, Mac, Photo, script, way
Programmer 101: Teach Yourself How to Code [Programming]
My Clippings November 12th, 2009 by System
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 command line. 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.
Related posts:Tags: Apple, backup, Bookmarklet, Bookmarklets, Build, cli, command line, css, email, flash, Google, Information, IO, Javascript, Linux, ma, Mac, man, Monkey, OSX, php, quick, script, video, way, wind, WordPress, XP
Google Go: An Open-Source Programming Language
My Clippings November 12th, 2009 by System
Automatically pulled from Google Starred
Google’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 JavaScript) 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!”:
Related posts: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: blockquote, Build, Google, IO, Javascript, ma, man, php, script, way, XP
Chromium Installs User Scripts as Extensions, Bodes Great Things for Chrome [User Scripts]
My Clippings November 8th, 2009 by System
Automatically pulled from Google Starred
The nightly builds of Google Chrome’s open-source foundation, Chromium, includes a feature that might mean great things for Greasemonkey fans. Click on a user script 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 way 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.
Tags: Build, Chromium, cli, Google, IO, Linux, ma, Mac, man, Monkey, script, Ubuntu, way, wind
Getting Started With Content Management Systems
My Clippings November 8th, 2009 by System
Automatically pulled from Google Starred
![]()
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 information 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:
- 10 Things To Consider When Choosing The Perfect CMS
Goes over what features to look for when choosing a content management system. - 10 Harsh Truths About Corporate Websites
Explains the mistakes we all make when running our websites. The nature of those mistakes varies depending on the size of your company. As your organization grows, the mistakes change. This post addresses common mistakes of large organizations. - Developers Toolbox
Offers tools and resources to help you achieve your goals at a more hands-on level.
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.
Related posts:Tags: Apple, Build, cli, CURL, Google, Information, IO, ma, man, Microsoft, module, Photo, php, quick, script, security, ssl, video, way, WordPress, XP
XP Quick Fix Plus Repairs Common Windows XP Errors [Downloads]
My Clippings November 7th, 2009 by System
Automatically pulled from Google Starred
Windows XP: If your Windows XP installation is acting up, sometimes a fix is as simple as tweaking a registry key. Rather than muck about in your registry looking for it, use XP Quick Fix Plus to patch things up.
XP Quick Fix Plus is a tiny portable application that presents 40 quick fixes arranged in a push-button chart. Press the button for the problem you’re having like CDs not autoplaying, file associations grayed out, the boot.ini tab missing in MSCONFIG, or any of the other 40 common problems, and XP Quick Fix Plus will patch the registry key for the problem you’re having and get things back in working order.
Not sure if the button covers the problem you’re having? Mousing over the buttons gives you a detailed description of the problem. Have a favorite quick-fix tool to share? Let’s hear about it in the comments. XP Quick Fix Plus is freeware, Windows only.
15+ great Google Chrome extensions
My Clippings November 5th, 2009 by System
Automatically pulled from Google Starred
Filed under: Features, Windows, Macintosh, Linux, Google, Browsers, Lists

We’ve already mentioned other ways to power up Google Chrome. Before extensions arrived on the developer channel, Userscripts and bookmarklets were your only options. Both are still great ways to add some kick-ass functionality to Chrome. If you’re running the stable or beta builds, you may want to stick to them for now.
- 10 handy Userscripts for Google Chrome users
- 15+ handy bookmarklets for Google Chrome (and other browsers, too!)
Now, onto the extensions!
If you have a favorite that I left off, feel free to share it in the comments!
Share
Continue reading 15+ great Google Chrome extensions
15+ great Google Chrome extensions originally appeared on Download Squad on Mon, 02 Nov 2009 07:00:00 EST. Please see our terms for use of feeds.
Permalink | Email this | Comments







![]()
Google Chrome – Google – Linux – Microsoft Windows – Macintosh
Tags: Bookmarklet, Bookmarklets, Build, cli, email, Google, Inc., IO, Linux, ma, Mac, man, Microsoft, php, script, way, wind
Easy Form Validation Requires No Javascript Library
My Clippings November 4th, 2009 by System
Automatically pulled from Google Starred
Validatious 2.0 is an easy form validation with unobtrusive JavaScript. Validatious requires no JavaScript library. However, if you’re already using one, Validatious can easily work with it, and even benefit from it.
There are several settings allow you to control how and when Validatious does validation, how it displays errors and more. If configuring isn’t enough, callbacks and easy overriding gives you complete control.
You can also add custom validators with only a couple of lines of JavaScript. If your site’s language is not english, you probably don’t want error messages in english. There are several ways of changing languages as well.
Requirements: Javascript Enabled
Demo: http://validatious.org/learn/examples
License: BSD License
Related Posts
Sponsors
Dreamhost: Get $50 Off with Coupon Code: WEBAPPERS
Tags: blockquote, Google, IO, Javascript, ma, script, way





