Skip to content

Instantly share code, notes, and snippets.

View hogesuke's full-sized avatar

Tatsuya Miyado hogesuke

View GitHub Profile
@hogesuke
hogesuke / README頻出英単語.yml
Last active March 3, 2019 18:50
スター数ランキング上位1000リポジトリのREADME頻出英単語
the: 49458
to: 33463
and: 27561
a: 27336
for: 20314
of: 18335
in: 16349
is: 15101
you: 13960
with: 10987
@hogesuke
hogesuke / config.txt
Created August 9, 2016 15:39
Raspberry Pi Zero SHARP 7インチ IGZO-LCDパネル
# SHARP 7" Settings: (KSY)
hdmi_pixel_freq_limit=200000000
hdmi_timings=1200 0 164 8 32 1920 0 12 2 6 0 0 0 60 0 163430000 0
hdmi_drive=2
disable_overscan=1
max_framebuffer_width=1200
max_framebuffer_height=1920
# Landscape (display_rotate=3 for upside down)
display_rotate=1
@hogesuke
hogesuke / macsetup.md
Last active August 29, 2015 14:18
Macのセットアップ

Macのセットアップ

インストールソフトウェア

  • chrome
  • Google日本語入力
  • Seil
    • ひらがな入力と英字入力をかなキーで切り替えられるようにするやつ
  • Skype
  • IntelliJ
@hogesuke
hogesuke / gist:2d4108d6b12b9cbe8069
Created October 23, 2014 23:23
AngularJSとBootstrapの共存
<!-- アンカーのhrefにハッシュを指定している -->
<ul class="nav nav-tabs">
<li class="active"><a href="#new" data-toggle="tab">New</a></li>
<li><a href="#my" data-toggle="tab">My</a></li>
</ul>
<!-- 切り替え先のコンテンツのidにハッシュと同じ名称をつけている -->
<div class="tab-content">
<div class="tab-pane active" id="new" ng-include="'./partials/newVideoList.part.html'"></div>
<div class="tab-pane" id="my" ng-include="'./partials/myVideoList.part.html'"></div>
</div>
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2008 Dec 17
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc
@hogesuke
hogesuke / vimrc
Created December 23, 2013 13:51
vimrc
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2008 Dec 17
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc
@hogesuke
hogesuke / unexpected_html_indent.html
Last active January 1, 2016 01:39
Vimを使用したhtmlのインデントが期待通りにならない。
<!--こうなる-->
<html>
<head>
</head>
<body>
<table>
</table>
</body>
</html>