import org.jfugue.*

def p = new Player()
def pattern = p.loadMidi( new File("d:/work/midi/canon.mid"))

p.play(pattern)

구글 앱 엔진(Google App Engine) 줄여서 GAE라고들 부른다.
GAE는 파이썬과 자바를 지원한다.
따로 서버 관리가 필요 없기 때문에 개인 개발자는 개발에만 집중하면 되므로 매력적이라고 할 수 있다.

Google App Engine lets you run your web applications on Google's infrastructure.

  • App Engine applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow.
  • With App Engine, there are no servers to maintain:
    • You just upload your application, and it's ready to serve your users.

You can serve your app from your own domain name (such as http://www.example.com/) using Google Apps. Or, you can serve your app using a free name on the appspot.com domain. You can share your application with the world, or limit access to members of your organization.

Google App Engine supports apps written in several programming languages.

  • With App Engine's Java runtime environment, you can build your app using standard Java technologies, including the JVM, Java servlets, and the Java programming language—or any other language using a JVM-based interpreter or compiler, such as JavaScript or Ruby.
  • App Engine also features a dedicated Python runtime environment, which includes a fast Python interpreter and the Python standard library.
  • The Java and Python runtime environments are built to ensure that your application runs quickly, securely, and without interference from other apps on the system.

With App Engine, you only pay for what you use.

  • There are no set-up costs and no recurring fees.
  • The resources your application uses, such as storage and bandwidth, are measured by the gigabyte, and billed at competitive rates.
  • You control the maximum amounts of resources your app can consume, so it always stays within your budget.

App Engine costs nothing to get started.

  • All applications can use up to 500 MB of storage and enough CPU and bandwidth to support an efficient app serving around 5 million page views a month, absolutely free.
  • When you enable billing for your application, your free limits are raised, and you only pay for resources you use above the free levels.

출처: 구글 코드 구글 앱 엔진 소개 페이지

JAR 안의 파일 리스트를 보고 싶을 때가 있다. 이런 경우 jar에 tf 옵션을 주면 볼 수 있다.

  • jar –tf 파일명

자바로 리버스 엔지니어링을 하는 툴들을 찾아 보았다.

  • MaintainJ링크
    • 상용
    • 이클립스 플러그인으로 실행 가능
    • 프로그램을 실행한 후 결과를 시퀀스 다이어그램으로 얻음
  • Altoba UModel 2010 - 링크
    • 상용
    • 클래스 다이어그램, 시퀀스 다이어그램 생성
    • 바이너리 파일도 분석 가능
  • IBM Rational Software Architect링크
    • 상용
  • ArgoUML - 링크
    • 프리 오픈 소스
  • 자바스크립트 AJAX를 자바 언어로 개발
  • Sticky 데모
  • 모든 웹브라우저에서 호환가능함
  • 자바바이트 코드이므로 이클립스에서 디버깅 가능
  • 컴파일이 필요 없음
  • JSON 쉽게 사용 가능
  • 자동으로 최적화함
  • 웹 개발 생산성에 좋음!

+ Recent posts