Skip to content

Instantly share code, notes, and snippets.

View hakanai's full-sized avatar
⚔️
Battling i16n demons

Hakanai hakanai

⚔️
Battling i16n demons
View GitHub Profile
@hakanai
hakanai / ELRaymarchBase.cginc
Created May 28, 2020 08:49
Implementing raycast abstraction by defining a raymarch abstraction
#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);
@hakanai
hakanai / MagicDieV3.cginc
Created May 28, 2020 07:21
Shader code reuse prototype
#include "../Common/ELRaycastBase.cginc"
#include "../Common/ELRaycastFunctions.cginc"
////////////////////////////////////////////////////////////////////////////////
// Input / Output Data Structures
struct FragmentInput
{
@hakanai
hakanai / WhichCamera.cginc
Created October 11, 2019 05:09
Stashing this for safekeeping
bool isVR() {
// USING_STEREO_MATRICES
#if UNITY_SINGLE_PASS_STEREO
return true;
#else
return false;
#endif
}
bool isVRHandCamera() {
@hakanai
hakanai / AuthenticationLeakBugDemo.java
Created September 26, 2019 00:35
Demonstration of Java's HTTP client caching credentials when you don't want it
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
@hakanai
hakanai / han-unification.html
Created August 26, 2019 06:26
Quick test of differing renderings of the same Unicode character based on the language being rendered.
<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>
@hakanai
hakanai / Main.java
Created June 6, 2019 07:50
Small JxBrowser example for crash reproduction
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;
@hakanai
hakanai / example.groovy
Created May 28, 2019 05:59
Reusing file sets in Gradle builds
def commonCrap = copySpec {
from('dir1') {
include '**/*.jar'
}
from('dir2') {
include '**/*.dll'
}
}
task copy1(type: Copy) {
@hakanai
hakanai / Jenkinsfile-fragment.groovy
Last active May 24, 2019 06:40
Is it possible to do _this_ in Jenkins pipeline?
pipeline {
// ...
stages {
// ...
customMatrix {
matrix [name: 'debian', prettyName: 'Debian'],
[name: 'ubuntu', prettyName: 'Ubuntu'],
[name: 'centos', prettyName: 'CentOS'],
[name: 'macos', prettyName: 'macOS'],
[name: 'windows', prettyName: 'Windows']
@hakanai
hakanai / TootsExporter.py
Last active April 29, 2019 11:07
Another Mastodon Toots Exporter in Python 3.
#!/usr/bin/env python3
#
# TootsExporter.py
# - Another Mastodon Toots Exporter in Python 3.
#
# Dependency:
# - pip(3) install "requests[socks]"
#
# License: MIT
@hakanai
hakanai / Converter.java
Created March 28, 2019 05:33
Example usage of Guava's `TypeToInstanceMap` for maps of non-trivial types
public interface Converter<T>
{
String toString(T thing);
T fromString(String string);
}