Skip to content

Instantly share code, notes, and snippets.

View karszawa's full-sized avatar
🐈

Hiroaki KARASAWA karszawa

🐈
View GitHub Profile
@zr-tex8r
zr-tex8r / bxexpl3ptex.sty
Last active December 19, 2018 02:43
LaTeX: To correct the engine detection of expl3 in using pLaTeX
% bxexpl3ptex.sty
%% package declaration
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{bxexpl3ptex}[2015/07/28 v0.3]
%% hack for \ifpdfprimitive
\let\bxqxp@postproc\relax
\expandafter\ifx\csname ifpdfprimitive\endcsname\relax
\expandafter\@firstofone
@repeatedly
repeatedly / d_master.md
Last active July 16, 2024 17:07
D言語基礎文法最速マスター

他の言語をある程度知っている人はこれを読めばD言語の基礎をマスターでき,D言語の氷山の一角くらいは知ることができると思います.対象バージョンはdmd 2.059です.

1. 基礎

ソースファイル

ASCIIかUTFしか受け付けません.それ以外の文字コードで書くとコンパイルエラーになります.

main

D言語のmainはCとは違い以下のようなシグネチャです.

@repeatedly
repeatedly / downloader.d
Last active October 1, 2015 23:18
D言語でいかにしておっぱい画像をダウンロードするか〜2013
// Written in the D programming language.
/**
* High peformance downloader
*
* Implemented according to <a href="http://yusukebe.com/archives/20120229/072808.html">this implementation</a>.
*
* Example:
* -----
* dmd -L-lcurl -run downloader.d
@dai1741
dai1741 / Makefile
Created December 30, 2011 13:55
Eclipse CDTで競技プログラミングのコードを1プロジェクト内にまとめたうえで個別に実行できるようにするGNU Makefile
# ファイル構成:
# root
# |- src :*.cppが入っている
# |- bin :ここに*.exeが生成される
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
CPPS = $(wildcard src/*.cpp)
OBJS = $(CPPS:.cpp=.o)
@draftcode
draftcode / gist:1357281
Created November 11, 2011 05:35
構文解析 Howto

構文解析 Howto

Author: draftcode
Date: 2011-11-11T13:18:07+09:00
ID:289a0136-0c1c-11e1-a06b-040ccee352e6

こうぶん、かいせきー