Blah~Blah~2014. 9. 12. 09:50

https://maps.google.com/maps/ms?msid=213688710441222764291.000501617d531a036a277&msa=0&ll=34.047539,-118.449783&spn=0.498954,0.66124&dg=feature

Posted by Joe.C
DIGITory/.......2014. 9. 1. 10:50

EXAMPLES

       Start development from a known tag


               $ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6

               $ cd my2.6

               $ git branch my2.6.14 v2.6.14   (1)

               $ git checkout my2.6.14


           1. This step and the next one could be combined into a single step with "checkout -b my2.6.14 v2.6.14".


       Delete an unneeded branch


               $ git clone git://git.kernel.org/.../git.git my.git

               $ cd my.git

               $ git branch -d -r origin/todo origin/html origin/man   (1)

               $ git branch -D test                                    (2)


           1. Delete the remote-tracking branches "todo", "html" and "man". The next fetch or pull will create them again unless you configure them not to. See git-fetch(1).

           2. Delete the "test" branch even if the "master" branch (or whichever branch is currently checked out) does not have all commits from the test branch.



Posted by Joe.C
WWWorkin/Webkit2014. 8. 22. 16:49

<div style="text-align:center"> 

  <button onclick="playPause()">Play/Pause</button> 

  <button onclick="makeBig()">Big</button>

  <button onclick="makeSmall()">Small</button>

  <button onclick="makeNormal()">Normal</button>

  <br> 

  <video id="video1" width="420">

    <source src="http://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">

    Your browser does not support HTML5 video.

  </video>

</div> 


<script> 

var myVideo = document.getElementById("video1"); 


function playPause() { 

    if (myVideo.paused) 

        myVideo.play(); 

    else 

        myVideo.pause(); 


function makeBig() { 

    myVideo.width = 560; 


function makeSmall() { 

    myVideo.width = 320; 


function makeNormal() { 

    myVideo.width = 420; 

</script> 


<p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p>

'WWWorkin > Webkit' 카테고리의 다른 글

Links 4 tests  (0) 2014.03.20
Webkit - Chromium port - building  (1) 2012.03.26
Webkit-efl : Build Errors & Script excution Errors  (5) 2012.02.20
[TS] - Error from Gstreamer in Webkit Build  (1) 2012.02.20
webkit efl - Build  (4) 2012.02.16
Posted by Joe.C