Yun Sang Bae
저는 윤드림입니다. 하하하하. 회사다니면서 놀고 있습니다. 클라우드 관련 일을 하고 있고 있습니다. 관심사도 클라우드
HTML5 자바스크립트 API. # 4.1.1 Audio와 Video 요소 지원 브라우저 : HTML5에서는 새로운 미디어 요소인 <audio>와 <video> 요소를 지원한다.
이 요소들을 이용하여 별도의 브라우저 플러그인을 이용하지 않고 미디어를 웹 페이지에 쉽게 추가 할 수 있다. 그리고 스크립트를 이용하여 미디어를 직접 제어할 수 있다. HTML5를 지원하지 않는 브라우저라라도 크게 걱정할 필요없다. 미디어를 스크립트로 다루는 일은 <video> 요소와 <audio> 요소를 구분할 필요없이 동일하게 취급할 수 있다. <video> 요소의 마크업 웹 페이지에 비디오 요소와 외부 컨트롤을 위한 요소를 작성한다. 플랫폼 또는 브라우저 벤더에 따라 지원하는 비디오 포맷이 조금씩 다르다. 스크립트를 이용한 미디어 제어 playPause 함수의 내용은 다음과 같다. function playPause() { var myVideo = document.getElementsByTagName('video')[0]; if (myVideo.paused) myVideo.play(); else myVideo.pause();} 다양한 이벤트를 등록하여 미디어의 재생 상황을 모니터링하고 대응할 수 있다. myVideo.addEventListener('ended', function () { alert('video playback finished')}); 데모: demo/video.html 만약, 스크립트만으로 오디오를 재생하고 싶다면 다음과 같이 작성해도 무방하다. var audio = new Audio("song.mp3");audio.play(); 브라우저에서 비디오 요소를 지원하는지를 검사하는 방법은 다음과 같다. !!
그리고 브라우저가 지원하는 코덱을 검사할 수도 있다. 미디어 요소의 이벤트들 위 표는 MDC로부터 발췌한 이벤트 목록이다. . # 4.1.2 Canvas 요소. Bossies 2012: The Best of Open Source Software Awards. Ruby - Using Sinatra for larger projects via multiple files. Hui Cheng’s slideshows on SlideShare. Ko/LiveCDCustomization. 우분투 데스크탑(라이브) CD 를 다음과 같이 개인화 할 수 있습니다.
자신만의 리눅스/우분투 배포판 만들기 특정 프로그램 강조하기 특정 언어에 맞게 로케일 설정하기 프로그램 패키지 제거하기 프로그램 패키지 추가하기 프로그램 패키지 업데이트하기 시스템 기본값 변경하기(테마, 아이콘, 데스크탑 배경, 패널, 웹브라우저 홈페이지 등) 이 문서는 데스크탑/라이브 CD 를 위한 안내서입니다. 얼터네이티브(Alternative)나 서버 설치 CD 에 대해서는 다른 페이지를 참조하십시오. 3-5GB 이상의 하드 디스크 여유 공간 512MB 메모리와 1GB 이상의 스왑(권장) squashfs-tools genisoimage : mkisofs 제공 squashfs 을 지원하는 우분투 커널(우분투 6.06 이후 버전) QEMU/KVM, 테스트를 위한 VirtualBox 또는 VMware(선택 사항) 먼저 필요한 프로그램들이 설치되어 있는지 확인합니다. sudo apt-get install squashfs-tools genisoimage squashfs 모듈을 로드합니다. sudo modprobe squashfs 에서 공식 데스크탑 CD 를 내려받습니다. (참고: 여기서는 ubuntu-8.10-desktop-i386.iso 데스크탑 CD를 사용합니다.) 내려받은 CD 이미지를 빈 디렉토리로 옮기거나 복사합니다. Creating your own CentOS 6.2 LiveDVD - Eric Stewart: Running Off At The Mouth. First, the caveats: I had a working CentOS 6.2 install to work from.There’s really nothing new here; it just provides the steps I used and puts a lot of information that’s available out there into one place.As per my usual disclaimer, it’s very possible that there are easier, smarter ways to do this.
I am not a genius (I don’t even play one on TV).I leave it up to you to figure out how to create a LiveDVD ISO for an architecture other than the one you’re currently running. To: Customize your Ubuntu Live CD. Live CD are great, they let you try out a distribution without installing it.
Clone HDD image and install using PXE boot. MEMDISK - Syslinux Wiki. MEMDISK is meant to allow booting legacy operating systems.
MEMDISK can boot floppy images, hard disk images and some ISO images. MEMDISK simulates a disk by claiming a chunk of high memory for the disk and a (very small - 2K typical) chunk of low (DOS) memory for the driver itself, then hooking the INT 13h (disk driver) and INT 15h (memory query) BIOS interrupts. MEMDISK is an auxiliary module used in conjunction with a boot loader that can load linux kernels (EXTLINUX/ISOLINUX/PXELINUX/SYSLINUX, grub, grub4dos grub2, ...). You need a disk image as well as the memdisk file itself. As far as the bootloader is concerned, MEMDISK is the "kernel" and disk image is the initial ramdisk (initrd).
How to setup a Linux based PXE server to distribute Windows 7. AWS CloudFormation 도움말 및 자습서. AWS CloudFormation을 이용하면 Amazon EC2 인스턴스, Amazon RDS 데이터베이스 인스턴스, Elastic Load Balancer 등 애플리케이션을 실행하는 데 필요한 리소스를 쉽게 생성할 수 있습니다. 템플릿에는 사용자에게 필요한 리소스와 AWS CloudFormation이 원활하고 예측 가능한 방식으로 이 리소스를 프로비저닝하는 방법, 장애나 문제 발생 시 이를 처리하고 복구하는 방법이 설명되어 있습니다. AWS CloudFormation이 모든 리소스 프로비저닝을 처리해준다고는 하지만 애플리케이션 소프트웨어가 Amazon EC2에서 어떻게 배포되고, 구성되고, 실행되는지에 관한 문제는 아직 남아 있습니다.
여기에는 많은 옵션이 있는데 새 소프트웨어 버전 배포와 관련해 애플리케이션이 얼마나 빨리 준비되는지 그리고 얼마나 많은 유연성을 가질 수 있는지는 공통적인 숙제입니다. 자세히 보기... AWS CloudFormation을 이용하면 애플리케이션을 쉽게 구성 및/또는 설치할 수 있을 뿐 아니라 기존 환경에서 이미 사용하고 있는 배포 및 관리 도구를 부트스트랩하는 데에도 도움이 됩니다. SPEC - Standard Performance Evaluation Corporation. Google's MapReduce in 98 Lines of Python. MapReduce is the magic sauce that makes Google run. Not just search but a large part of their infrastructure is programmed in this paradigm. If you want to see how this can be implemented in python, read on. Lately I've been not only learning more python but also learning about the MapReduce algorithm. Social Plugins - Facebook 개발자.
Programming. Monitering. Cloud.