type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
Shader "Custom/Stencilled" { | |
Properties { | |
_StencilMask("Stencil mask", Int) = 0 | |
_Color ("Color", Color) = (1,1,1,1) | |
_MainTex ("Albedo (RGB)", 2D) = "white" {} | |
_Glossiness ("Smoothness", Range(0,1)) = 0.5 | |
_Metallic ("Metallic", Range(0,1)) = 0.0 | |
} | |
SubShader { | |
Tags { "RenderType"="Opaque" } |
Shader "Custom/StencilMask" { | |
Properties { | |
_StencilMask("Stencil mask", Int) = 0 | |
} | |
SubShader { | |
Tags { | |
"RenderType" = "Opaque" | |
"Queue" = "Geometry-100" | |
} |
internal static Bounds GetBound(GameObject go) | |
{ | |
Bounds b = new Bounds(go.transform.position, Vector3.zero); | |
var rList = go.GetComponentsInChildren(typeof(Renderer)); | |
foreach (Renderer r in rList) | |
{ | |
b.Encapsulate(r.bounds); | |
} | |
return b; | |
} |
export default (request) => { | |
console.log('--------------------------------------------START') | |
//////////////////////////////// | |
// ---------- external modules | |
// sha256 | |
function SHA256(s){ | |
var chrsz = 8; |
var private_key = postman.getEnvironmentVariable('private_key'); | |
var public_key = postman.getEnvironmentVariable('public_key'); | |
var method = request.method; | |
var content_type = 'application/json'; | |
var content_md5 = ''; | |
var request_url = request.url; | |
var request_uri = request_url.replace(/^.*\/\/[^\/]+/, '') | |
var timestamp = (new Date()).toGMTString(); |
using System.Collections; | |
using System.Text; | |
using UnityEngine; | |
using UnityEngine.Events; | |
using UnityEngine.UI; | |
public class TextRevealer : MonoBehaviour | |
{ | |
[UnityEngine.Header("Configuration")] | |
public int numCharactersFade = 3; |
# =============== # | |
# Unity generated # | |
# =============== # | |
[Tt]emp/ | |
[Oo]bj/ | |
[Bb]uild | |
/[Bb]uilds/ | |
/[Ll]ibrary/ | |
sysinfo.txt | |
*.stackdump |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
from boto.cloudfront.distribution import Distribution | |
from cryptography.hazmat.primitives.asymmetric import padding | |
from cryptography.hazmat.primitives import serialization | |
from cryptography.hazmat.backends import default_backend | |
from cryptography.hazmat.primitives import hashes | |
import base64 | |
class BetterThanBoto(Distribution): | |
def sign_rsa(self, message): |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class MeshCut | |
{ | |
private static Plane blade; | |
private static Transform victim_transform; | |
private static Mesh victim_mesh; |