Using the Doc filter in Chrome seems to merge entries during redirects, losing info. Instead, use the Filter input.
- Chrome:
mime-type: text/html - FireFox:
cause: document
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using UnityEditor; | |
| using UnityEditor.Compilation; | |
| using UnityEngine; | |
| [InitializeOnLoad] | |
| public class AsmdefDebug | |
| { |
| /************************************************************************************ | |
| Content : First-person view test application for Oculus Rift | |
| Created : 19th June 2015 | |
| Authors : Tom Heath | |
| Copyright : Copyright 2015 Oculus, Inc. All Rights reserved. | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at |
| #!/usr/bin/env bash | |
| set -e | |
| CONTEXT="$1" | |
| if [[ -z ${CONTEXT} ]]; then | |
| echo "Usage: $0 KUBE-CONTEXT" | |
| exit 1 | |
| fi |
| using UnityEngine; | |
| using System; | |
| using System.Collections; | |
| using VRTK; | |
| public class IK : MonoBehaviour | |
| { | |
| Animator avatar; // アバター | |
| public Transform lookAt = null; // 見る対象 |
| public bool MatchesPattern(string pattern, string text) | |
| { | |
| pattern = pattern.Replace("%", @".+"); | |
| pattern = pattern.Replace("_", @"."); | |
| Regex regex = new Regex(pattern); | |
| if (regex.IsMatch(text)) | |
| { | |
| return true; |
| # Version key/value should be on his own line | |
| PACKAGE_VERSION=$(cat package.json \ | |
| | grep version \ | |
| | head -1 \ | |
| | awk -F: '{ print $2 }' \ | |
| | sed 's/[",]//g') | |
| echo $PACKAGE_VERSION |
| using System.Data.SqlClient; | |
| using System.Reflection; | |
| namespace HorribleThingsInHere | |
| { | |
| /// <summary> | |
| /// Workaround completely test-unfriendly sql error classes. | |
| /// Copy-paste from http://stackoverflow.com/a/1387030/10245 | |
| /// Adjusted with updates in comments | |
| /// Adjusted to not use ctor indexes |