Skip to content

Instantly share code, notes, and snippets.

View applejxd's full-sized avatar

りんごくん applejxd

View GitHub Profile
@applejxd
applejxd / RK4.c
Last active January 16, 2020 05:56
ケプラー運動のRK4の実装例(配列の配列を利用)
#include <stdio.h>
#include <math.h>
#define dt 0.1
void eom(float* x, float* dxdt){
dxdt[0] = x[2];
dxdt[1] = x[3];
float r = x[0]*x[0]+x[1]*x[1];
@applejxd
applejxd / xelatex.tex
Last active February 7, 2020 06:28
XeLaTeX で日本語文書組版
% 古いコマンドとパッケージで警告
\RequirePackage[l2tabu, orthodox]{nag}
\documentclass[
xelatex, % Fast TeX typesetting engine "XeLaTeX"
ja=standard, % zxjatype & zxjafont
%jafont=noto, % for Ubuntu
%jafont=hiragino-pron, % for OS X
]{bxjsarticle}
@applejxd
applejxd / metropolis.tex
Last active September 17, 2023 15:25
Metropolis による Beamer のテンプレート
%%%%%%%%%
% Theme %
%%%%%%%%%
% cf. http://bit.ly/2RFp6Fa
\documentclass[unicode,12pt]{beamer}
% 和文フォント
\usepackage{zxjatype}
\usepackage[noto]{zxjafont}
@applejxd
applejxd / settings.json
Last active June 29, 2020 14:20
Windows Terminal の設定
// This file was initially generated by Windows Terminal 1.0.1401.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@applejxd
applejxd / websuggest.ini
Last active May 26, 2020 14:02
Keypirinha の WebSuggest 機能につかうパーサー(for デ辞蔵)
[item/dejizo]
provider = dejizo
default_action = copy_result
[provider/dejizo]
# ex. http://public.dejizo.jp/NetDicV09.asmx/SearchDicItemLite?Dic=EJdict&Scope=HEADWORD&Match=STARTWITH&Merge=AND&Prof=XHTML&PageSize=5&PageIndex=0&Word=test
api_base = http://public.dejizo.jp/NetDicV09.asmx/SearchDicItemLite
api_method = get
api_args =
Dic EJdict
@applejxd
applejxd / Keypirinha.ini
Created June 17, 2020 13:56
Iceberg Theme for Keypirinha
[gui]
theme = AnthraciteFull, Iceberg
[theme/Iceberg]
opacity_back = 100
satellite_show = always
satellite_pos = topleft
control_margin = 4
textbox_padding = 3
listitem_padding = 1
@applejxd
applejxd / fcr.bat
Last active June 17, 2020 14:19
format clear for clipboard
@echo off
powershell.exe Get-Clipboard | clip.exe
@applejxd
applejxd / clipboard.py
Last active June 17, 2020 14:22
keyhac config by fakeymacs and clipboard search
#########################################
# クリップボード検索
# http://tinyurl.com/y87fxwvx
#########################################
import sys
import os
import datetime
import re
from time import sleep