Skip to content

Instantly share code, notes, and snippets.

{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
@mitomex
mitomex / .editorconfig
Created July 17, 2019 14:53
editorconfig
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
@mitomex
mitomex / git-flow.md
Last active December 7, 2021 17:08
git-flowの説明

git-flow

git-flowとは、A successful Git branching modelを簡単に行えるように開発されたツール。

A successful Git branching modelは、効率的にバージョンを管理するために開発されたブランチを活用したモデル。

このモデルに沿って開発していくと、マージ漏れだったり何が最新かわからなくなったり、どこで作業すればよいかわからなくなる、といったことがなくなる。

このモデルでは5つのブランチを利用する。5個のブランチを用意する、ということではなくて5種類のブランチを利用するということ。なのでfeatureブランチが2つある場合もある。

これから重要視されるコンテンツの話をしよう

メモ

  • 長谷川恭久さんの講座
  • バズワードになっている、コンテンツ
  • SEOの方も言っている
  • コカ・コーラのコーポレートサイト、コンテンツを通して体感してもらう
  • コンテンツを作って配信する方向に予算を
  • ここまではマーケ寄り
@mitomex
mitomex / fnsws03.md
Last active November 15, 2015 13:40
Sketch 3

ふにセミ Sketch 3

Sketch 3

基本操作(知っておくと便利なもの)

  • 選択ツールがない。操作を選択していない状態が選択ツール
  • 各操作のショートカットをもう一回押せば、操作の解除になる
  • グループ化すると、左カラムでフォルダとして表示される
  • グループ化解除は、フォルダの外に出せば良い
@mitomex
mitomex / setting_sublime.markdown
Last active December 19, 2015 14:19
Sublime Text 2 を Terminal から使う時の設定

Sublime Text 2

Terminal で subl コマンドを使えるようにするには。

ln -s /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl

注意事項

.bash_profile で PATH に追加が必要。

Bootstrapunch

ソースコードはこちら

Bootstrapunch で Less をいじるときの手順

  1. /bootsrapunch/bower/bootstrap/ディレクトリで、npm installを行う
  2. /bootsrapunch/bower/bootstrap/less/ディレクトリ内の.lessファイルを適宜いじる
  3. いじり終わったら、/bootstrapunch/bower/bootstrap/ディレクトリでmake bootstrapを行う

そうすると、/bootstrapunch/bower/bootstrap/Makefileに記載されているルールに則り、/bootstrapunch/bower/bootstrap/less/にあるファイルが、bootstrapunch/templates/css/に展開される。

ローカルサーバー構築

MAMP XAMPP を使わずにローカルサーバーを構築する。

手順

  1. Apache の起動
  2. バーチャルホストの設定
  3. PHP のインストール
  4. MariaDB のインストール
@mitomex
mitomex / Gruntfile.js
Created February 23, 2013 21:06
Gruntfile.js Stylus
module.exports = function(grunt) {
grunt.initConfig({
stylus: {
compile: {
options: {
compress: false
},
files: {
'./css/style.css': ['./styl/style.styl']
}
@mitomex
mitomex / styledocco.markdown
Created February 22, 2013 16:50
How to Styledocco