This file contains 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 EL_RAYMARCH_BASE_CGINC | |
#define EL_RAYMARCH_BASE_CGINC | |
#include "ELRaycastBase.cginc" | |
float2 ELMap(float3 objectPos); | |
float3 ELRaymarchNormal(in float3 objectPos) | |
{ | |
static const float2 e = fixed2(0.000001, -0.000001); |
This file contains 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 "../Common/ELRaycastBase.cginc" | |
#include "../Common/ELRaycastFunctions.cginc" | |
//////////////////////////////////////////////////////////////////////////////// | |
// Input / Output Data Structures | |
struct FragmentInput | |
{ |
This file contains 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
bool isVR() { | |
// USING_STEREO_MATRICES | |
#if UNITY_SINGLE_PASS_STEREO | |
return true; | |
#else | |
return false; | |
#endif | |
} | |
bool isVRHandCamera() { |
This file contains 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
import java.net.Authenticator; | |
import java.net.HttpURLConnection; | |
import java.net.PasswordAuthentication; | |
import java.net.URL; | |
public class AuthenticationLeakBugDemo | |
{ | |
public static void main(String[] args) throws Exception | |
{ | |
// User 1 |
This file contains 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
<html> | |
<head> | |
<title>Han Unification Test</title> | |
<style type="text/css"> | |
* { font-family: 'Noto Serif CJK JP'; } | |
</style> | |
</head> | |
<body> | |
<ul> | |
<li>zh-CN: <span lang="zh-CN">次</span></li> |
This file contains 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
import java.awt.BorderLayout; | |
import java.awt.Dimension; | |
import java.io.File; | |
import javax.swing.JFrame; | |
import javax.swing.JMenuBar; | |
import javax.swing.JPanel; | |
import javax.swing.SwingUtilities; | |
import javax.swing.UIManager; |
This file contains 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
def commonCrap = copySpec { | |
from('dir1') { | |
include '**/*.jar' | |
} | |
from('dir2') { | |
include '**/*.dll' | |
} | |
} | |
task copy1(type: Copy) { |
This file contains 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
pipeline { | |
// ... | |
stages { | |
// ... | |
customMatrix { | |
matrix [name: 'debian', prettyName: 'Debian'], | |
[name: 'ubuntu', prettyName: 'Ubuntu'], | |
[name: 'centos', prettyName: 'CentOS'], | |
[name: 'macos', prettyName: 'macOS'], | |
[name: 'windows', prettyName: 'Windows'] |
This file contains 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
#!/usr/bin/env python3 | |
# | |
# TootsExporter.py | |
# - Another Mastodon Toots Exporter in Python 3. | |
# | |
# Dependency: | |
# - pip(3) install "requests[socks]" | |
# | |
# License: MIT |
This file contains 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
public interface Converter<T> | |
{ | |
String toString(T thing); | |
T fromString(String string); | |
} |