Skip to content

Instantly share code, notes, and snippets.

View hurutoriya's full-sized avatar
🎯
Focusing

Shunya Ueta hurutoriya

🎯
Focusing
View GitHub Profile
@lukas-h
lukas-h / license-badges.md
Last active May 1, 2024 10:20
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@ghaiklor
ghaiklor / iterm-fish-fisherman-meslo-osx.md
Last active December 5, 2022 11:14
iTerm 2 + fish + fisherman + Material Design + Meslo
@spaghetti-source
spaghetti-source / network.tex
Created November 28, 2014 09:50
pgfplots network drawing sample
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows,calc}
\usepackage{pgfplots}
\begin{document}
%%%
\tikzstyle{node}=[draw=black,circle,inner sep=0,minimum size=10]
\def \nodes {
1/-5/8.6,
@exoego
exoego / 転職先に訊きたいチェックリスト.md
Last active April 16, 2023 03:57
転職活動してて訊きたいことのメモ

制度

  • 有休…
  • 病休…
  • 育休…
  • 年収(月給、賞与など)…
  • 残業代…
  • 早朝/深夜手当…
  • 休出手当…
  • 住宅補助…
@spaghetti-source
spaghetti-source / template.tex
Created December 25, 2013 20:39
my tex template
%{{{
\documentclass[a4paper,11pt]{article} % single column
%\documentclass[a4paper,11pt,twocolumn]{article} % two columns
\usepackage[dvipdfmx]{graphicx}
\usepackage{latexsym}
\usepackage{amsthm,amsmath,amssymb}
\usepackage{enumerate}
\usepackage{multirow}
\usepackage{algorithm,algpseudocode}
@kimitaka
kimitaka / text.md
Created December 7, 2013 13:02
はぐれ学生Advent Calendar 2013 の記事です

"本記事は「はぐれ学生Advent Calendar 2013」 http://www.adventar.org/calendars/131 という企画のひとつです。 本企画では「はぐれ学生」とは、大学などの学校を中退、休学、留年した方、また、仮面浪人やちょっと変わった進路を選んだ方などを指すことにします。"

自己紹介

私は渡邉公隆といいます。筑波大学情報学群情報科学類を2011年3月に卒業し、同4月に筑波大学大学院システム情報工学研究科コンピュータサイエンス専攻に進学しました。 その後、研究が頓挫し、精神的に病んでしまい必修単位を落とし、2012年10月から療養のため休学しました。 翌2013年10月より復学し、無事過程を修了することを目指して頑張っています。 専門はプログラミング論理で、キーワードは型システム、マルチステージプログラミング、定理証明支援系などです。 専門分野の話は別の機会に譲るとして、皆さんにはお金の話を少ししたいと思います。

@shinyaohira
shinyaohira / View Controller Programming Guide for iOS.md
Last active July 19, 2023 13:23
iOS View Controllerプログラミングガイド

storyboard上で、initial view controllerから他のview controllerに対してrelationshipを確立します。同様に、それらのview controllerから他のview controllerにrelationshipを確立します。最終的に、storyboard上のほとんど、あるいは全てのview controllerを一つのグラフに接続します。接続されたview controllerが、iOSによっていつインスタンス化されるかは、relationshipのタイプによって決まります。

@aras-p
aras-p / preprocessor_fun.h
Last active April 28, 2024 15:25
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
@mollifier
mollifier / zshrc_useful.sh
Last active April 9, 2024 06:29
少し凝った zshrc
# 少し凝った zshrc
# License : MIT
# http://mollifier.mit-license.org/
########################################
# 環境変数
export LANG=ja_JP.UTF-8
# 色を使用出来るようにする
@soh-i
soh-i / gist:4482213
Last active December 10, 2015 19:38
Sublime Text2を使ってTexを書いてコンパイルまでする。

動機

  • Sublime Text 2にLaTeXToolsというパッケージがあるがなんかうまくいかずに、わからなかった、というかビルドが最後まで走らなかった。
  • Sublimeにはプログラムをビルドする機能を発見した。だからその拡張を書くことにした。

設定事項

Sublime Textでビルドするための設定ファイル

  • Sublimeを起動し、メニューからTools->BuildSystem->New Build Systemで新規作成し、以下を記述。
  • tex.sublime-buildとかで保存する(場所はデフォルトでいいと思う)。