Skip to content

Instantly share code, notes, and snippets.

View kkeeth's full-sized avatar
🎨
riotjs book in japanese publish!!

Keeth Kuwahara kkeeth

🎨
riotjs book in japanese publish!!
View GitHub Profile
@kkeeth
kkeeth / todo-2019.md
Last active January 7, 2019 16:45
2019年やることリスト

2019年に学びたい技術、読んでみたい本、完成させるGitHubリポジトリなどをピックアップ。
随時追加・更新する予定。 ※最終更新日:2019/01/05

Technology

技術名 進捗 備考
(ざっくり)デザインの理論 未着手
(ざっくり)経営論 未着手
(ざっくり)組織論 着手
Laravel 着手 主にAPI開発、テスト
@kkeeth
kkeeth / todo-2018.md
Last active January 5, 2019 13:52
2018年やることリスト

2018年に学びたい技術、読んでみたい本、完成させるGitHubリポジトリなどをピックアップ。
随時追加・更新する予定。 ※最終更新日:2019/01/05

Technology

技術名 進捗 備考
ディープラーニング 中止
(ざっくり)デザインの理論 中止
(ざっくり)経営論 一部進行
Angular5 中止 6,7 が出たので学び直す
@kkeeth
kkeeth / directory_structure.txt
Last active April 9, 2018 15:24
gulpハンズオン用
- app
├- node_modules
├- package.json
├- src
│ ├- js
│ ├- scss
│ └- images
└- dist
├- js
@kkeeth
kkeeth / bbs.ejs
Last active September 2, 2017 15:53
nodejs勉強会用ファイルリスト
<!doctype html>
<html lang="ja">
<head>
<title>BBS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="stylesheet" media="all" href="/css/style.css">
</head>
<body>
<h2>Chat App by Node.js!</h2>
@kkeeth
kkeeth / papers.html
Last active June 14, 2017 10:42
css3で遊んだものリスト
<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
body {
background-color: bisque;
}
#container {
position: relative;
@kkeeth
kkeeth / tools.md
Last active June 12, 2017 01:23
フレームワーク、ライブラリ、その他ツールなどのメモ
@kkeeth
kkeeth / .vimrc
Created May 15, 2017 06:47
オレオレvimrcの設定
"#######################
" 表示系
"#######################
" set number "行番号表示
set showmode "モード表示
set title "編集中のファイル名を表示
set ruler "ルーラーの表示
set showcmd "入力中のコマンドをステータスに表示する
set showmatch "括弧入力時の対応する括弧を表示

目にした、耳にしたけど頭に入っていないワードのメモ。頭に入ったものにチェックを付ける。

  • LGTM(Look Good To Me)
  • FYI(For Your Information)
  • DRY(Don't Repeat Yourself)原則
    • 重複したコードを書かないこと。
    • その考えに基づいて設計すること。
      • 適用範囲はコードだけではない。
  • KISS(Keep It Simple, Stupid)の原則
  • YAGNI(You Aren't Going to Need It)
@kkeeth
kkeeth / gulpfile.js
Last active June 13, 2017 07:39
ES6(ES2015)用のサンプル集
/** gulpの設定例 **/
const gulp = require("gulp"),
buble = require("gulp-buble")
gulp.task('buble', () => {
gulp.src('./es6/*.js')
.pipe(buble())
.pipe(gulp.dest('./js/'))
});
@kkeeth
kkeeth / js_bind_demo.js
Last active April 13, 2017 09:37
JavaScript質問会サンプル集
/** bind関数のサンプル **/
/** サンプル1(thisを束縛) **/
var context = function() {
console.info(this)
}
context() // Window
var obj = {
x: 123,
y: 'hoge'