@
コマンドを表示しない-
コマンドのエラーを無視する+
just printオプション指定時でも実行する
MAKE_VERSION
GNU make のバージョン番号CURDIR
現在実行しているmakeプロセスのカレントディレクトリ
const getFormattedDate = date => { | |
return new Intl.DateTimeFormat("ja", { | |
year: "numeric", | |
month: "2-digit", | |
day: "2-digit", | |
hour: "2-digit", | |
minute: "2-digit", | |
second: "2-digit", | |
timeZone: "Asia/Tokyo" | |
}).format(date); |
package main | |
import "fmt" | |
func main() { | |
array := []int{5, 14, 100, 1, 2, 3} | |
max := array[0] | |
for i := 0; i < len(array); i++ { | |
if max < array[i] { | |
max = array[i] |
.c-component { | |
color: green; | |
} | |
.c-component-s-subComponent { | |
color: green; | |
} | |
.c-component-m-modifer { | |
color: green; | |
} | |
.u-utility { |
Published: Mon Mar 24 2014 01:37:14 GMT+0900 (JST)
Paths: http://t32k.me/static/blog/skelton.css
Generator: t32k/stylestats // GitHub
Metrics | Result |
---|---|
Stylesheets |
2年前でWebデザイナーだった私がどのようにフロントエンドエンジニアなっていったのか。デザイナーにもなれず、エンジニアにもなれないどっちつかずな職種で自分のアイデンティティを模索し、日々の膨大なタスクに追われながら、フロントエンドのワークフロー(Grunt)、最適化(パフォーマンス)について考えたことを紹介します。
『(仮)が取れた時、運命の技術者に出会える・・・』
Webデザインとは単にページを作るということではなく破綻のない『システム』をデザインしなければなりません。そのためにパターン、コンポーネント といった概念が不可欠です。本セッションでは実際に私が開発しているCSSフレームワークであるMapleにおいて考えたことやコンポーネント化の利点について紹介したいと思います。
setDOMElement | |
Sets the attribute of a DOM element that is required for the next event to complete successfully. The measurement will not complete until the DOM element appears or the action times out. Additionally, the time when the DOM element appears will be recorded in the results. | |
Browser Support: IE, Chrome, Firefox | |
usage: setDOMElement <attribute=value> | |
example: setDOMElement name'loginId | |
<attribute=value> - DOM element to wait for |