https://youtu.be/A3AdN7U24iU
https://youtu.be/YZomx3Jt4Xs
https://youtu.be/aKLntZcp27M
https://youtu.be/4t1K66dMhWk
https://youtu.be/S53cBvNkPeQ
https://youtu.be/uaZtpZGFyPo
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
$ brew cask install java8 | |
$ brew install groovy |
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
docker swarm init | |
docker service create --name jenkins -p 8080:8080 jenkins/jenkins:lts-alpine | |
docker service inspect jenkins | |
chrome.exe "http://localhost:8080" | |
docker container ls -q -f "label=com.docker.swarm.service.name=jenkins" | |
$id = (docker container ls -q -f "label=com.docker.swarm.service.name=jenkins") | |
echo $id | |
# |
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
#include <iostream> | |
#include <string> | |
#include <cassert> | |
#include <iostream> | |
#include <string> | |
#include <locale> | |
#include <codecvt> |
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
float3 gradient(Texture3D<float4> tex, float3 pos) | |
{ | |
// local sampler | |
SamplerState evile_smp | |
{ | |
Filter = MIN_MAG_MIP_LINEAR; | |
AddressU = Clamp; | |
AddressV = Clamp; | |
AddressW = Clamp; | |
}; |
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
#ifndef __EVILE_QUAD_HPP | |
#define __EVILE_QUAD_HPP | |
//----------------------------------------------------------------------------- | |
// File: Quad.h | |
// | |
// __ | |
// _______ ____ ____________/ /_ | |
// / ___/ / / / / / / ___/ ___/ __ \ | |
// / / / /_/ / /_/ (__ ) /__/ / / / | |
// /_/ \__,_/\__, /____/\___/_/ /_/ |