- mattak.me+job@gmail.com or twiter:@mustankatti
- ↑だと気付きやすいのでありがたいです 🙏
- お手伝いできることがあれば、お気軽にご相談ください 🙆♀️
業務形態:
| #!/bin/sh | |
| set -eu | |
| VERSION="4.10.1" | |
| JAR_DIR="/tmp/antlr4" | |
| if [ ! -d "$JAR_DIR" ]; then | |
| mkdir -p "$JAR_DIR" |
| #!/usr/bin/ruby | |
| # sample. | |
| # { | |
| # "q" => 0.00187529, | |
| # "j" => 0.00309423, | |
| # "z" => 0.00337553, | |
| # "x" => 0.00407876, | |
| # "v" => 0.0114393, | |
| # "w" => 0.0173465, |
業務形態:
| #!/bin/sh | |
| for f in $(git ls-files | grep '.meta' | grep -v "Assets/Modules/" | egrep '(png|prefab|controller|anim|asset|playable|mp3).meta$') | |
| do | |
| unity_guid=$(cat "$f" | grep 'guid:' | awk '{print $2}') | |
| matches=$(ag -l $unity_guid | wc -l | awk '{print $1}') | |
| if [ $matches -eq 1 ]; then | |
| echo $f | sed 's|.meta$||g' | |
| fi |
| #!/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 |
| #!/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 |
| port | |
| port.lock | |
| resharper-host/UsageStatistics/ | |
| rider.key | |
| disabled_plugins.txt | |
| tasks/ | |
| # options | |
| options/recentSolutions.xml | |
| options/recentSolutionsConfiguration.xml |
| //============================================================================== | |
| // | |
| // Emoji Filtering: unicode magic | |
| #if FILTER_EMOJIS_IOS_KEYBOARD | |
| static bool StringContainsEmoji(NSString *string) | |
| { | |
| __block BOOL returnValue = NO; | |
| [string enumerateSubstringsInRange:NSMakeRange(0, string.length) |
| FROM buildpack-deps:xenial | |
| MAINTAINER Takuma Maruyama <mattak.me@gmail.com> | |
| # Based on work by Petr Sloup | |
| # node setup | |
| # ------------------ | |
| RUN groupadd --gid 1000 node \ | |
| && useradd --uid 1000 --gid node --shell /bin/bash --create-home node |
| { | |
| "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", |