This file contains hidden or 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 | |
for f in $(find Assets -type f -name '*.cs' | grep -v Modules); | |
do | |
WIN_LINE_FEED=$(nkf --guess $f | grep "CR") | |
if [ "$WIN_LINE_FEED" != "" ]; then | |
echo $f | |
nkf -Lu --overwrite $f | |
fi |
This file contains hidden or 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 | |
set -ue | |
if [ ! -e $HOME/.umm-config.json ]; then | |
cat <<__CHECK__ | |
ERROR: Cannot find umm-config.json | |
Make sure the file exists on $HOME/.umm-config.json | |
__CHECK__ | |
exit 0 |
This file contains hidden or 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
port | |
port.lock | |
resharper-host/UsageStatistics/ | |
rider.key | |
disabled_plugins.txt | |
tasks/ | |
# options | |
options/recentSolutions.xml | |
options/recentSolutionsConfiguration.xml |
This file contains hidden or 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
//============================================================================== | |
// | |
// Emoji Filtering: unicode magic | |
#if FILTER_EMOJIS_IOS_KEYBOARD | |
static bool StringContainsEmoji(NSString *string) | |
{ | |
__block BOOL returnValue = NO; | |
[string enumerateSubstringsInRange:NSMakeRange(0, string.length) |
This file contains hidden or 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
FROM buildpack-deps:xenial | |
MAINTAINER Takuma Maruyama <[email protected]> | |
# Based on work by Petr Sloup | |
# node setup | |
# ------------------ | |
RUN groupadd --gid 1000 node \ | |
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node |
This file contains hidden or 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
{ | |
"name": "tessera-sample", | |
"version": "0.0.1", | |
"description": "tessera example", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "mattak", | |
"license": "MIT", |
This file contains hidden or 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 System; | |
using Unidux; | |
namespace App.Business | |
{ | |
[Serializable] | |
public class State : StateBase<State> | |
{ | |
public LocationState Location; | |
public LogState Log; |
This file contains hidden or 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 UniRx; | |
using UnityEngine; | |
namespace App.UI | |
{ | |
public class GoalSeRenderer : MonoBehaviour | |
{ | |
public AudioSource AudioSource; | |
void Start() |
This file contains hidden or 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 System.Diagnostics; | |
using App.Business; | |
using Unidux; | |
using UniRx; | |
namespace App.UI | |
{ | |
public partial class Unidux : SingletonMonoBehaviour<Unidux> | |
{ | |
private Store<State> _store; |
This file contains hidden or 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
Shader "Custom/IntensiveLine" | |
{ | |
Properties | |
{ | |
_LineWidth("LineWidth", Range(0,1)) = 0.5 | |
_CenterRadius("CenterRadius", Range(0,1)) = 0.5 | |
} | |
SubShader | |
{ |