mizchi / TypeScript Meetup 2
- mizchi / 竹馬光太郎
- フロントエンドと Node.js
| from flask import Flask, render_template | |
| from flask_paginate import Pagination, get_page_args | |
| app = Flask(__name__) | |
| app.template_folder = '' | |
| users = list(range(100)) | |
| def get_users(offset=0, per_page=10): |
| # -*- coding: utf-8 -*- | |
| from datetime import datetime | |
| from calendar import monthrange | |
| def add_month(_date, month_delta): | |
| """{month_delta} ヵ月後の同日の日時を返す | |
| >>> add_month(datetime.datetime(2017, 1, 30, 5, 20, 15), month_delta=1) |
デザインカンプをコーディングするときに困りがちなことや、こうしてもらえると助かることなどをまとめています。デザイナーが他のデザイナーのデザインカンプを引き継ぐこともあるので、誰にとっても使いやすいデザインカンプを作ることは大切なことだと思います。
このドキュメントは指示ではなく、エンジニア目線の提案です。必ずしも正しいとは考えていませんし、このドキュメントをもとに意見を出し合えたらと思っています。
基本的にデザインカンプに残して欲しいとしていますが、共有されているのであればデザインカンプ以外でも構いません。デザイナーの頭の中にだけある状態はさけたいと考えているので、ストックしておく場所としてデザインカンプを選んでいます。
ツーツはPhotoshopを想定しています。これは単純にPhotoshopで作られることが多いからです。違うツールを使っている場合は、読み替えるか、読み飛ばしてください。
| プロパティー | 発音 |
|---|---|
background-attachment |
バックグラウンド・アタッチメント |
background-color |
バックグラウンド・カラー |
background-image |
バックグラウンド・イメージ |
background-position |
バックグラウンド・ポジション |
background-repeat |
バックグラウンド・リピート |
background |
バックグラウンド |
border-collapse |
ボーダー・コラプス |
border-color |
ボーダー・カラー |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body { | |
| font-family: Arial, sans-serif; | |
| text-align: center; | |
| padding-top: 50px; |
| set listchars=tab:→\ ,trail:␣,extends:…,eol:⏎ | |
| set listchars=tab:→\ ,trail:␣,precedes:«,extends:»,eol:⏎ | |
| set listchars=tab:→\ ,trail:·,precedes:«,extends:»,eol:¶ | |
| set listchars=tab:‣\ ,trail:·,precedes:«,extends:»,eol:¬ | |
| set listchars=tab:␋\ ,trail:␠,precedes:«,extends:»,eol: | |
| set listchars=tab:>-,trail:.,precedes:<,extends:>,eol:$ |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.