This document has a more accessible location, here:
http://nickporcino.com/posts/last_mile_interchange.html
I'll maintain a copy here too, this is a nice place to support discussion.
| using UnityEngine; | |
| public class Dragger : MonoBehaviour { | |
| private Vector3 _dragOffset; | |
| private Camera _cam; | |
| [SerializeField] private float _speed = 10; | |
| void Awake() { |
This document has a more accessible location, here:
http://nickporcino.com/posts/last_mile_interchange.html
I'll maintain a copy here too, this is a nice place to support discussion.
| 10 B$="PRE-COMPUTER" | |
| 20 PRINT "I AM "; B$ | |
| 30 INPUT "WHAT IS YOUR NAME"; N$ | |
| 40 PRINT "HELLO "; N$ | |
| 50 INPUT "HOW OLD ARE YOU"; A | |
| 60 PRINT "SO "; N$; " YOU ARE" | |
| 70 PRINTA; "YEARS OLD" | |
| 80 PRINT "I HOPE" : PRINT "WE HAVE FUN!!" | |
| 90 END |
Branch A has commits (X,Y) that also need to be in Branch B. The cherry-pick operations should be done in the same chronological order that the commits appear in Branch A.
cherry-pick does support a range of commits, but if you have merge commits in that range, it gets really complicated
git checkout branch-B
git cherry-pick X
git cherry-pick Y
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element or the /deep/ path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {git stash savegit checkout -b xxxgit stash popwhere xxx is the new branch name
| /** | |
| * Reversing animation on mouse-out | |
| * Issues: Animation will also play in the beginning | |
| */ | |
| @keyframes test { | |
| from { background: white } | |
| to { background: black } | |
| } |
| /** | |
| * Convert selected elements to library items | |
| * @author Dave Stewart | |
| * @url www.xjsfl.com | |
| */ | |
| // variables | |
| var dom = document, timeline, element, names = [], name; | |
| // create a new movieclip in which to do our conversion |