Aerialicious Solution

Telerik Bookvar: Nice Free Mindmapping Software

Stunning_ux


  • Rapid and interactive creation of mind maps
    Create mind maps as easily as playing with computer games. You can build your mind maps literally in seconds using handy keyboard shortcuts. You can drag files from your computer and drop them onto the mind map.
  • Stunning User Experience
    Rich UI based on Microsoft's Windows Presentation Foundation (WPF). The built-in Office Fluent Ribbon and 3D animations take the user experience to the next level.
  • Collaboration
    Share ideas with your co-workers or friends. Bookvar lets you create and share mind maps and even discuss them with others thanks to the integrated chat support. All you need is a connection between your computers. Bookvar will take care to uniquely mark the topics of each user so that the topics can be easily recognized by the other users.
  • Extensible Architecture
    Use custom add-ins to extend the functionality. Create custom skins to change the appearance to your own liking.
  • Rich Media Integration
    Add images directly to your topics, embed and play videos or attach other resources (files).
  • Web Aware
    Search for images on the web using Microsoft Live Services. Publish your maps to Microsoft Office SharePoint Server and attach links to web pages directly in your map's topics.
Go to Bookvar project website.

How do you make jQuery ui tabs works with Sammy.js?

I know this topic has been raised before and you can find many workable solution. Some solution does not works with content via ajax and only can support one ui tabs. This solution is to overcome that limitation.

First you must bind select event to ui tabs.

$('#your_tabs_id').tabs({select: function(ev, ui) {
  location.href = "#/ui.tabs/" + $(this).attr("id") + "/" + ui.index;                 
  return true;                   
 }});

With this way, if you select any tab, it will redirect you to url #/ui.tabs/your_tabs_id/your_tabs_currentindex. Now, define routes in your sammy application to handle this url.

var app = $.sammy(function() {             
this.get("#/ui.tabs/:id/:index", function(context){
   $(document.getElementById(this.params["id"])).tabs("select",parseInt(this.params["index"],10));
  });
});

I define routes with :id and :index to capture tabs id and tabs current index into params[“id”] and params[“index”] respectively. So, with this information, we know which tabs index to select. You can also implement this technique on accordion. The concept is similar.

Redcar, Textmate Alternative, Cross-Platform

Media_httpredcaredito_ivhmj

Promising text editor. Textmate themes and snippets are supported. Written in Ruby and runs on jRuby.

Software for Women:Virtual Makeover and Hairstyler Application

I'm sure some women like this software so I decided to share it. It is called jKiwi. By using one photo, jKiwi was specifically designed for helping to instantly find out how you would look in hundreds of haircuts, try different lip colors or eye contact lenses and shadows without paying much attention to the software and instead concentrate on your new look.

I haven't tried it yet and never plan to install it. Don't ask me for review.

Oppss.. I forgot to include the link, this is the link to the application.  http://jkiwi.com/.

Aviary_jkiwi-com_picture_2

Java 1.5 or 1.6 with Coldfusion 7

Java

Trying to upgrade coldfusion jvm directly to java 1.5 or 1.6 will cause "Unsupported major.minor version" and/or "CFCServlet must be initialized". These are the steps I used to get ColdFusion MX7 on windows with embedded JRun working with the Sun JDK 1.5. Haven't tried it on linux. Probably will doing it soon.

  1. Download jrun updater 7 http://www.adobe.com/support/jrun/updaters.html
  2. Stop coldfusion service.
  3. Install jrun updater on runtime folder of your coldfusion MX7. 
  4. Download and install JDK 1.5 or 1.6.
  5. Open jvm.config file found in the runtime\bin folder.
  6. Modify java.home to point to your JDK folder (for example, java.home=C:/Program Files/Java/jdk1.6.0_11)
  7. Open web.xml file found in the wwwroot\WEB-INF folder.
  8. Now the tricky part, change MessageBrokerServlet load order to other than 1. In my case, I change it to 4.
    • Example: from <load-on-startup>1</load-on-startup> to <load-on-startup>4</load-on-startup>
  9. Restart your coldfusion server.
Now you can use your favorite java library with Coldfusion 7. Use it at your own risk.

*Step 8 will prevent "CFCServlet must be initialized" error from appearing. Why this step fixed that error?. I'm not really sure. If you know why, please share the info with me.

Less.js Will Obsolete CSS

LESS has been implemented in JavaScript. For those who never heard of LESS, it is a css preprocessor which can make your css "programmable". 

Here’s a basic example of LESS code to give you an idea of what it does:

@brand-color: #3879BD;

#header {
    a {
        color: @brand-color;
        &:hover {
            color: #000;
        }
    }
}

In this example, brand-color is declared globally. In normal css, you have to specify it at every css selector where  to make changes of the brand-color, you have to modify it at each css selector which can be tedious if you use it many times. Since this example use LESS, you just have to modify @brand-color at the first line. For more example please visit LESS Official Website or fadeyev.net.

P.S.S. Less.js browser script currently won’t work if you’re using Chrome and the path to your page starts with “file:///” due to a known Chrome issue.

Free Wireframing Kits, UI Design Kits, PDFs and Resources - Smashing Magazine

Media_httpmediasmashi_tqexe

You can visit this website if you are looking for stencil or psd to design your mobile or web application. Smashing Magazine has a great list of free witeframing kits, ui design kits and etc.

Webinaria - Free open source screen recording software

Media_httpwwwwebinari_dghju

So far, this is the only free screen recording software that can combine video from webcam.

The default format is Avi. However you can export it into Flash video or publish it on webinaria website where you can receive ratings and reviews from other webinaria members.

You can also add text at specific interval in case you want to describe something in your video.

jsoup Java HTML Parser, with best of DOM, CSS, and jquery

jsoup: Java HTML Parser

jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods.

  • parse HTML from a URL, file, or string
  • find and extract data, using DOM traversal or CSS selectors
  • manipulate the HTML elements, attributes, and text
  • clean user-submitted content against a safe white-list

jsoup is designed to deal with all varieties of HTML found in the wild; from pristine and validating, to invalid tag-soup; jsoup will create a sensible parse tree.

Open Source Initiative

Open source

jsoup is an open source project distributed under the liberal MIT license. The source code is available at GitHub.

Getting started

  1. Download the jsoup jar
  2. Read the cookbook introduction
  3. Enjoy!

Development and support

If you have any questions on how to use jsoup, or have ideas for future development, please get in touch via the mailing list.

If you find any issues, please file a bug after checking for duplicates. If you're not sure, please ask on the mailing list.

Status

jsoup is in general release.

jQuery-like html parser in Java.

Zen Coding — a new way of writing HTML and CSS code

Zen Coding is an editor plugin for high-speed HTML, XML, XSL (or any other structured code format) coding and editing. The core of this plugin is a powerful abbreviation engine which allows you to expand expressions—similar to CSS selectors—into HTML code. For example:

div#page>div.logo+ul#navigation>li*5>a

...can be converted to

<div id="page">        <div class="logo"></div>        <ul id="navigation">                <li></li>                <li></li>                <li></li>                <li></li>                <li></li>        </ul></div>

Read more about Zen Coding

Officially supported editors

These plugins are developed by Zen Coding team and guarantee to have full support of all Zen Coding latest features.

  • Aptana/Eclipse (crossplatform). 
  • TextMate (Mac). Available in two flavors: basic snippets (Zen HTML and Zen CSS) and full-featured plugin (ZenCoding for TextMate). 
  • Coda (Mac) 
  • Espresso (Mac) 
  • Komodo Edit/IDE (crossplatform) 
  • Notepad++ (Windows).
  • PSPad (Windows). 
  • <textarea> (browser-based).
  • editArea (browser-based).

Third-party supported editors

These plugins are using official Zen Coding engine and developed by third-party developers. Thus, no guarantee that they support all latest ZC features.

  • Dreamweaver (Windows, Mac)
  • Sublime Text (Windows)
  • UltraEdit (Windows)
  • TopStyle (Windows)
  • GEdit (crossplatform)
  • BBEdit/TextWrangler (Mac)
  • Visual Studio (Windows)
  • EmEditor (Windows) 
12
To Posterous, Love Metalab
Related Posts with Thumbnails