This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
usage() { | |
echo Usage: $0 [OPTIONS] DIRECTORY FILEPATTERN | |
echo; | |
echo "\t\tOPTIONS equivalent to OPTIONS of sed" | |
} | |
case "$#" in | |
2) find $1 -name $2 | xargs sed -e 's/[^\x00-\x7E]//g' | less;; | |
3) find $2 -name $3 | xargs sed $1 's/[^\x00-\x7E]//g';; | |
*) usage;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo %0: Running. | |
set PWD=%~dp0 | |
cd %PWD% | |
if "%HOME%" equ "" ( | |
echo %0: Error. Please set HOME. | |
goto FAIL | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A { | |
module B { | |
class Fuga { | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class Hoge : MonoBehaviour | |
{ | |
public List<Vector3> Points; | |
// Use this for initialization | |
void Start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
public class #SCRIPTNAME# : MonoBehaviour | |
{ | |
#region inner classes, enum, and structs | |
#endregion | |
#region constants | |
#endregion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<CodeTemplates version="3.0"> | |
<CodeTemplate version="2.0"> | |
<Header> | |
<_Group>UnityC#</_Group> | |
<Version /> | |
<MimeType>text/x-csharp</MimeType> | |
<Shortcut>B_</Shortcut> | |
<_Description /> | |
<TemplateType>Unknown</TemplateType> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class HogeComponent : MonoBehaviour | |
{ | |
public enum Fuga | |
{ | |
Foo, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <SenTestingKit/SenTestingKit.h> | |
@interface UZUPracticeTest : SenTestCase | |
@end |
OlderNewer