Skip to content

Instantly share code, notes, and snippets.

View shinchu's full-sized avatar

SHU shinchu

View GitHub Profile
@shinchu
shinchu / sample_strings.txt
Last active March 29, 2021 07:57
Some sample strings for Glyphs.app
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
the quick brown fox jumps over the lazy dog
oooooooooo\nnnnnnnnnnn\nononononon\nOOOOOOOO\nHHHHHHHH\nOHOHOHOH
o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder\nn/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder\nn/Placeholder o/Placeholder n/Placeholder o/Placeholder n/Placeholder o/Placeholder\nabcdefghijklmnopqrstuvwxyz
H/Placeholder H/Placeholder H/Placeholder H/Placeholder H/Placeholder H/Placeholder H/Placeholder\nO/Placeholder O/Placeholder O/Placeholder O/Placeholder O/Placeholder O/Placeholder O/Placeholder\nH/Placeholder O/Placeholder H/Placeholder O/Placeholder H/Placeholder O/Placeholder\nABCDEFGHIJKLMNOPQRSTUVWXYZ
o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder o/Placeholder\nn/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder n/Placeholder\nn/Placeholder o/Placeholder n/Placeholder o/Placehold
@shinchu
shinchu / introduction.tex
Last active June 13, 2019 10:10
XeLaTeX template for the Journal of the Science of Design
%! TEX root = ../jsd.tex
\section{Introduction}
\label{sec:introduction}
Follow this order when typing manuscripts: Title, Authors, Affiliations, Abstract, Keywords, Main text (Introduction, Method, Results and Discussions, and then Conclusion), Acknowledgment, Appendix, References.
Apart from the above example, a different structure of manuscript may be accepted if it is the most suitable and effective style for the contents of the manuscript~\footcite{hillier2006}.
\section{Text}
\subsection{Page margins and font}
@shinchu
shinchu / chp_10.ipynb
Last active July 11, 2019 06:23
Hohoron 2019
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shinchu
shinchu / b2_01.py
Last active March 28, 2019 13:29
Drawing Bézier curves with DrawBot
# Load external packages
import sys
import os
mod_dir = os.path.expanduser('~/.pyenv/versions/3.6.4/lib/python3.6/site-packages')
if mod_dir not in sys.path:
sys.path.append(mod_dir)
import numpy as np