'프로그래밍' 카테고리의 다른 글
[마소연재] data-p로 열어가는 새로운 세상 (0) | 2013.03.05 |
---|---|
[TERMS]정보통신기술 - ICT (0) | 2013.02.18 |
노트북 업그레이드 - 사용중인 노트북에 SSD 설치하고 싶어요~ (0) | 2012.10.05 |
이클립스 세로 편집 단축키 - 열선택 Alt + Shift + A (0) | 2012.10.05 |
[펌] 좋은 프로그래머가 되는 24가지 방법 (0) | 2012.08.23 |
[마소연재] data-p로 열어가는 새로운 세상 (0) | 2013.03.05 |
---|---|
[TERMS]정보통신기술 - ICT (0) | 2013.02.18 |
노트북 업그레이드 - 사용중인 노트북에 SSD 설치하고 싶어요~ (0) | 2012.10.05 |
이클립스 세로 편집 단축키 - 열선택 Alt + Shift + A (0) | 2012.10.05 |
[펌] 좋은 프로그래머가 되는 24가지 방법 (0) | 2012.08.23 |
Dreampie1.1.1 & Python 3.2 이상 실행시 UTF-8 어쩌고 하는 에러 발생시
attribute Error가 발생하면.
D:\DreamPie\share\dreampie\subp_main.py
의 30번 행을 수정하라.
AS-IS
sys.setdefaultencoding('utf-8')
TO-BE
if sys.version_info[0] < 3:
sys.setdefaultencoding('utf-8')
[Python] 웹 파이썬 shell - http://shell.appspot.com/ (0) | 2013.02.08 |
---|---|
[Python] aptana에 python 셋팅하기 (0) | 2013.02.08 |
[Python] 파이썬 작업툴 - 드림파이 https://launchpad.net/dreampie (0) | 2013.02.06 |
[python] Spring보다 쉽고 빠른 웹 개발 - 파이썬3 기반 웹프레임워크 (Pylatte) (0) | 2013.01.25 |
[python] Can Python be embedded in HTML like PHP and JSP? (0) | 2013.01.23 |
JBoss Portal Platform 6 Beta is now available.
http://www.redhat.com/promo/jpp6/
Many new features are documented there:
However, to developers and architects, one of the first issues and most difficult issue we face in any portal implementation is – what are the best practices to use JavaScripts in a portal platform?
Imagine if you have 2 portlets both using a shared JavaScript, such as jQuery – how would you share the JavaScript between the 2 portlets?
Now, expand this dilemma to not just common JavaScripts libraries, but to all of your application’s JavaScripts!
Oh, and don’t forget, you may also want to minify and combine scripts to reduce latency, to be Content Delivery Network (CDN) friendly, and ultimately, to improve your customer’s browsing experience.
[javascript] jquery와 angulars 같이 사용하기. (0) | 2013.02.13 |
---|---|
[javascript] RequireJS - http://requirejs.org/ . a javascript module loader (0) | 2013.02.13 |
[jQuery] 25+ Excellent jQuery Menu Plugins (0) | 2013.02.05 |
Beginner HTML5, JavaScript, jQuery, Backbone, and CSS3 Resources (0) | 2013.01.30 |
NGINX - node.js (0) | 2013.01.25 |
https://launchpad.net/dreampie
Note: We've moved to GitHub: https:/
window 7 64bit에 설치 했더니 계속 "add interpreter" 가 안된다.
" ~~ --hide-console-window "C:\Python26\python.exe ~~" 에러 발생하는데.
경로를 맞추어 주어도 안된다.
내 파이썬 설치경로는 C:\Python33 인데. ㅋㅋㅋ
dreampie-1.2.1-setup.exe 내려받아서 설치하니까 갑자기 된다.
[Python] 웹 파이썬 shell - http://shell.appspot.com/ (0) | 2013.02.08 |
---|---|
[Python] aptana에 python 셋팅하기 (0) | 2013.02.08 |
[Python] Dreampie1.1.1 & Python 3.2 이상 실행시 UTF-8 어쩌고 하는 에러 발생시 (0) | 2013.02.07 |
[python] Spring보다 쉽고 빠른 웹 개발 - 파이썬3 기반 웹프레임워크 (Pylatte) (0) | 2013.01.25 |
[python] Can Python be embedded in HTML like PHP and JSP? (0) | 2013.01.23 |
: Play 프레임워크가 1.2와 2.0 버전의 큰 차이는 1.2버전의 Python, Ivy를 대신해서
2.0버전에는 sbt(simple build tool)가 빌드 툴로 추가됐고, 스칼라(Scala) 언어가
모듈에서 코어 쪽으로 마이그레이션 됐다는 점이다.
또한 Groovy 템플릿을 대신해 스칼라언어를 사용했으며
비동기 프로그래밍 모델을 지원하기 위해 아카(Akka)가 추가됐다.
2.0버전의 특징
- 실시간 처리를 위한 비동기(Asynchronous) 프로그래밍 지원
- 엔터프라이즈 서버를 위한 타입체크(Type-checked) 템플릿 엔진
- 자바와 스칼라의 네이티브 언어 지원
- Paas 서비스와 쉽게 결합하는 강력한 빌드 시스템
- 데이터 스토어와 모델의 융합
실시간 데이터들의 증가로 비동기로 처리하는 프로그램이 증가하고 있다.
비동기 HTTP프로그래밍 모델을 지원해야 함으로 Short-lived request 중심의 애플리케이션이 아니라
Comet으로 불리는 서버측 Push 또는 Reverse Ajax를 지원하는 Back-end가 있어야 한다.
Comet은 브라우저 기반의 실시간 모니터일과 인스턴트 메시지등에 사용한다.
병렬, 분산 애플리케이션 - 아카(Akka) -http://akka.io/
CAPTCHA - chess CAPTCHA (0) | 2013.03.11 |
---|---|
[WEB] https://c9.io - Cloud9 IDE your code anywhere, anytime (0) | 2013.03.06 |
[WEB] 페이스북 연동을 위한 기본 설정 - 페이스북앱, 페이지 생성, 헤로쿠(Heroku) (2) | 2013.01.31 |
IE7 설치 경로, 인터넷 익스플로러 7 (0) | 2013.01.17 |
[APP] 웹에서 어플(APP) 호출하기 (0) | 2013.01.07 |
25+ Excellent jQuery Menu Plugins
http://creativecan.com/2013/02/jquery-menu-plugins/
MenuStation – Real Unlimited Responsive Menu –
Metro Flexible Navigation –
http://codecanyon.net/item/-metro-flexible-navigation/full_screen_preview/2796746
UberMenu is a user-friendly, highly customizable, responsive Mega Menu WordPress plugin. It works out of the box with the WordPress 3 Menu System, making it simple to get started but powerful enough to create highly customized and creative mega menu configurations.
This plugin features real unlimited menu, responsive design, and many colors to change. it is easy to customize and light weight.
This Menu with CSS3 Effects and Notification Bubbles has everything you need. The functionality is divided in different parts and that makes it very powerful.
Get rid of that ugly tree menu on your site with niceTree. An easy to install JQuery plugin with more options than you’ll ever need. niceTree will take your HTML and turn it into a collapsible menu system with unlimited menus within menus.
The Metro Flexible Navigation is a simple, clean grid layout looking a lot like the new Windows 8 interface. It can be customized to be laid out horizontally or vertically. It’s scrollable and drag-able at the same time and contains useful sliding controls. Icons can be changed, there is a large collection available.
Main features include hide or show menu children, orientation adjustment and control screen width where the plugin activates. This plugin is easy to setup and configure and bundled with configurable CSS.
A small, solid jQuery plugin which is quite easy to use. It’s a menu which can be used with or without JQuery. It has feature so that when visitors are navigating your site, the selected item will stay highlighted.
This is not a menu plugin actually, but it can do some powerful stuff and create a creative navigation on you website. Revolver is a jQuery plugin for creating full screen sliding websites. It can be integrated into any website template.
The animated button & menu jQuery plugin allows you to easily replace <a> links with animated buttons and grouping buttons into a menu (drop down menu).
jAccordion is a complex and responsive jQuery plugin with powerful API, large amount of callbacks and options which let you customize it to suit your needs.
This is a navigation menu that will always follow your cursor. It was generated using CSS and jQuery library, which is easy to configure and implement. The script features CSS styling, 2-level navigation and simple markup.
iPhone inspired drilldown menu. So easy. So powerful.
Stickr WP, a sticky side panel menu WordPress plugin. Inspired by Envato site-switcher, after released as CSS3 +jQuery, due to popular demand I decided to create this WordPress plugin version. The features are similar with jQuery version, only WordPress version has an intuitively easy administration panel, so you don’t have to know the coding behind it.
Inspired by the step by step movements of the shuffle dance and the new Metro UI look, Shuffling Tiles combines elements from both and then some, producing a versatile, animated and compact webpage widget. Use it when you have lot’s of information that you want to fit in a small area, and you want to present it in a lively, original and interactive way.
iNav it’s a jQuery plugin that let you create an amazing animated Menu (even with multiple menus) or Items Showcasing. Inspired by Apple products navigation, iNav can introduce in your website a very powerful javascript navigation! In order to work properly, iNav requires at least jQuery 1.4 or higher.
jQuery Live Menu is a jQuery plugin that allows you to create easily nice and animated menus. Menus are opened on left or right click on the defined target. You can customize layout, effects and the tooltip design by jQuery parameters .
PullOuts allows to grab any piece of content from a web page and display it as a pullout widget. Whether it’s a block of text, images, shopping cart, login, search or subscription form, a video or any other content – you can make it a pullout.
Now with hoverIntent integration. Cross Browser Compliant – IE9 , FF3+,Opera, Safari, Chrome. Mobile Ready – Works in mobile browsers. Sliding Sub menu level items.
Titan Menu, a fresh and powerfull menu solution.
The latest version is version 1.4, made on January of 2012. Custom tab size option was added and the ability for a tab to act as link was improved.
Superfish is a JQuery plugin especially dedicated to menus. It allows many improvement from what you can achieve with HTML and CSS as such as hover support for IE6, animations, keyboard accessibility and more.
Smooth Expandable Menu is the definitive tool for building minimal vertical expandable menus, which can be easily customized due to its 17 built-in config parameters, directly from the html file / script call. The pack includes 3 samples (Serif, San Serif and Tiny), to make easier the integration on any web project. It uses Google Fonts library system, so you won’t need to integrate font files or @fontface scripts. It has been optimized for mobile devices.
jMenu is a jQuery plugin that allows the creation of horizontal navigations with unlimited sub-menus. Besides jQuery, it also requires jQuery UI and supports all the effects of this library (like fadeIn or slideDown). The markup of the menu is pretty clean as it makes use of nested lists.
This is an advanced plugin that gives you total control over the output of your menus. Support shortcodes, widget and template function. Easy to customize, full features. and supports Twitter Bootstrap. Displays a list of menu as links. This plugin is based on the WordPress function: wp_nav_menu()
jPie is a Contextual Circular Menu for jQuery. You can create countless instances and each instance can be fully customizable using the attributes provided by the plugin.
Fancy Typewriter is a jQuery plugin for creating stunning menu effects and much more. Just add the plugin to any tag, which contains text. Check out the preview, which says more than words.
[javascript] RequireJS - http://requirejs.org/ . a javascript module loader (0) | 2013.02.13 |
---|---|
[JBoss] Modularized JavaScript with JBoss Portal Platform 6 – Avoid Conflicts, Promote Re-usability (0) | 2013.02.07 |
Beginner HTML5, JavaScript, jQuery, Backbone, and CSS3 Resources (0) | 2013.01.30 |
NGINX - node.js (0) | 2013.01.25 |
[JAVASCRIPT] Angular.JS - javascript, web app (0) | 2013.01.25 |