I hereby claim:
- I am crilleengvall on github.
- I am crillst (https://keybase.io/crillst) on keybase.
- I have a public key ASBbab1QYRaiTBpot2XStN2-1hIOhWrFLi2mBRxho1rhRQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| using UnityEngine; | |
| using System.Collections; | |
| public class StuckSheepCheck : MonoBehaviour { | |
| public GameObject Sheep; | |
| public GameObject SheepTwo; | |
| private Rigidbody2D SheepRigidbody2D; | |
| private Rigidbody2D SheepTwoRigidbody2D; |
| 8368 10:31:54 ERROR Application error. | |
| Exception: System.ArgumentOutOfRangeException | |
| Message: The UTC time represented when the offset is applied must be between year 0 and 10,000. | |
| Parameter name: offset | |
| Source: mscorlib | |
| at System.DateTimeOffset..ctor(DateTime dateTime) | |
| at Sitecore.Resources.Media.Streaming.Preconditions.IfRangePrecondition.CheckRequestPreconditionAndSetResponseStatus(HttpContext context) | |
| at Sitecore.Resources.Media.Streaming.RangeRetrievalResponse.ExecuteRequest(HttpContext context) | |
| at Sitecore.Resources.Media.MediaRequestHandler.DoProcessRequest(HttpContext context, MediaRequest request, Media media) | |
| at Sitecore.Resources.Media.MediaRequestHandler.DoProcessRequest(HttpContext context) |
| using UnityEngine; | |
| using System.Collections; | |
| public class EnvironmentSpawner : MonoBehaviour { | |
| public GameObject LargeCloud; | |
| void Start() { | |
| StartCoroutine(SpawnLargeClouds()); | |
| } |
| git branch -m <oldbranchname> <newbranchname> | |
| example: | |
| git branch -m feature/humanreadable feature/translation |
| git checkout master |
| git config --global alias.stash-unapply '!git stash show -p | git apply -R' |
| git config --global alias.undo 'reset --soft HEAD^' |
| <?xml version="1.0"?> | |
| <bookstore xmlns="urn:xmlns:25hoursaday-com:bookstore"> | |
| <book> | |
| <title>Lord of the Rings</title> | |
| <author>J.R.R. Tolkien</author> | |
| </book> | |
| </bookstore> |
| <?php | |
| error_reporting(E_ALL); | |
| ini_set('display_errors', TRUE); | |
| ini_set('display_startup_errors', TRUE); |