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
defaults write com.apple.finder AppleShowAllFiles -boolean true | |
killAll Finder |
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
kuno-birdman:~ kuno$ defaults write com.apple.screencapture location ~/Documents/Screenshots/ | |
kuno-birdman:~ kuno$ defaults write com.apple.screencapture name "" | |
kuno-birdman:~ kuno$ defaults write com.apple.screencapture type jpg | |
kuno-birdman:~ kuno$ killall SystemUIServer |
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
sudo gem install cocoapods -n /usr/local/bin |
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
// Created by @kunofellasleep on 2019/05/20. | |
//Modules | |
const Diagnostics = require('Diagnostics'); | |
const Materials = require('Materials'); | |
const Textures = require('Textures'); | |
const CameraInfo = require('CameraInfo'); | |
const Shaders = require('Shaders'); | |
const R = require('Reactive'); |
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
// Created by @kunofellasleep on 2019/05/28. | |
const Diagnostics = require('Diagnostics'); | |
const NativeUI = require('NativeUI'); | |
const TouchGestures = require('TouchGestures'); | |
const objectName = "3dText0" | |
const defaultText = "Guest" | |
NativeUI.setText(objectName defaultText); |
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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
/// <summary> | |
/// 連番画像再生 | |
/// </summary> | |
public class RenbanPlayer : MonoBehaviour | |
{ |
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 "Unlit/CastShadowTexture" | |
{ | |
Properties | |
{ | |
[HDR]_Color("Albedo", Color) = (1,1,1,1) | |
_MainTex ("Texture", 2D) = "white" {} | |
[Header(Stencil)] | |
_Stencil ("Stencil ID [0;255]", Float) = 0 | |
_ReadMask ("ReadMask [0;255]", Int) = 255 |
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
sudo /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args -allow-file-access-from-files |
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
const Diagnostics = require('Diagnostics'); | |
const Scene = require('Scene'); | |
const Patches = require('Patches'); | |
const Time = require('Time'); | |
const R = require('Reactive'); | |
let duration = 7800; | |
Time.setInterval((function hoge() { | |
Patches.inputs.setPulse('IntervalPulse',R.once()); |