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
text-align: justify; | |
text-justify: inter-ideograph; | |
-ms-text-justify: inter-ideograph; | |
text-autospace: ideograph-alpha; | |
-webkit-hyphens: auto; | |
-moz-hyphens: auto; | |
-ms-hyphens: auto; | |
hyphens: auto; |
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
typ1 Ä pCFMAØd¿® "CID Ød¿® L ∆RLBLØd¿® 4 HnameØd¿® | M G ∞ Z %!PS-Adobe-3.0 Resource-Font | |
%ADOResourceSubCategory: RearrangedFont | |
%%DocumentNeededResources: ProcSet CIDInit | |
%%+ Font KozGoPr6N-Regular-UniJIS-UTF16-H | |
%%+ Font KozGoPr6N-Regular-UniJIS-UTF16-H | |
%%+ Font KozGoPr6N-Regular-UniJIS-UTF16-H | |
%%+ Font KozGoPr6N-Regular-UniJIS-UTF16-H | |
%%+ Font MyriadPro-Regular-UniJIS-UTF16-H | |
%%+ Font MyriadPro-Regular-UniJIS-UTF16-H | |
%%+ Font HiraginoSansGB-W3-UniCNS-UTF16-H |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
<style> | |
@font-face { | |
font-family: 'arkpunctuation'; | |
src: url("/iconic-punctuation/DroidSerif.eot"); | |
src: url("/iconic-punctuation/DroidSerif.eot#iefix") format('embedded-opentype'), url("/iconic-punctuation/DroidSerif.woff") format('woff'), url("/iconic-punctuation/arkpunctuation_v2.ttf") format('truetype'), url("/iconic-punctuation/arkpunctuation_v2.svg#arkicons") format('svg'); |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# This script helps removing Git branches. | |
# Run it from a git repo dir. It will open the Git branches list | |
# in your favorite editor. Delete some branches from the list. | |
# Save and close the file. The script applies the changes to the repo. | |
from subprocess import call, Popen, PIPE | |
from os import getenv |
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
@"i386" on 32-bit Simulator | |
@"x86_64" on 64-bit Simulator | |
@"iPod1,1" on iPod Touch | |
@"iPod2,1" on iPod Touch Second Generation | |
@"iPod3,1" on iPod Touch Third Generation | |
@"iPod4,1" on iPod Touch Fourth Generation | |
@"iPod7,1" on iPod Touch 6th Generation | |
@"iPhone1,1" on iPhone | |
@"iPhone1,2" on iPhone 3G | |
@"iPhone2,1" on iPhone 3GS |
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 "Custom/Transparent/DiffuseRoad" { | |
Properties { | |
_Color ("Main Color", Color) = (1,1,1,1) | |
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {} | |
_MinDistance ("Min Distance", Float) = 3.2 | |
_MaxDistance ("Max Distance", Float) = 4.0 | |
} | |
SubShader { | |
Tags {"Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent"} |
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
body { | |
background: url(javascript:alert('haha')); | |
} |
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
#!/usr/bin/env /usr/local/bin/node | |
var http = require('http') | |
var icon = '♒︎' | |
function get(url) { | |
return new Promise((resolve, reject) => { | |
return http.get(url, res => { | |
var body = '' |
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
// ==UserScript== | |
// @name Ugly journalists | |
// @description Caught You. | |
// @namespace https://houkanshan.com/ | |
// @version 0.1.2 | |
// @author Houkanshan | |
// @match https://*/* | |
// @match http://*/* | |
// @grant none | |
// @run-at document-end |
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
// ==UserScript== | |
// @name google sheet read. | |
// @namespace https://houkanshan.com | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Houkanshan | |
// @match https://docs.google.com/spreadsheets/* | |
// @grant none | |
// ==/UserScript== |