Skip to content

Instantly share code, notes, and snippets.

View t32k's full-sized avatar
:octocat:
Working from home

t32k t32k

:octocat:
Working from home
View GitHub Profile
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);
@t32k
t32k / make.md
Last active February 3, 2022 05:21

コマンド修飾子

  • @ コマンドを表示しない
  • - コマンドのエラーを無視する
  • + just printオプション指定時でも実行する

make変数

  • MAKE_VERSION GNU make のバージョン番号
  • CURDIR 現在実行しているmakeプロセスのカレントディレクトリ
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]
@t32k
t32k / iwate-html.md
Last active September 22, 2015 13:24

講演タイトルと概要

JavaScript/CSS 2015

まるでドッグ・イヤーのごとく変化するフロントエンド開発に疲れていませんか?本セッションでは、BabelやPostCSSの導入の仕方や使い方を解説することによって、次世代の標準仕様であるEcmaScript 6やCSS 3を先取りし、長く使える技術を身につけます。流れの速さに惑わされないようにしましょう。

プロフィール

石本 光司 (いしもと こうじ)

.c-component {
color: green;
}
.c-component-s-subComponent {
color: green;
}
.c-component-m-modifer {
color: green;
}
.u-utility {
@t32k
t32k / I wanna be a front-end engineer.md
Last active December 4, 2019 15:48
フロントエンドエンジニア(仮) 〜え、ちょっとフロントやること多すぎじゃない!?〜

2年前でWebデザイナーだった私がどのようにフロントエンドエンジニアなっていったのか。デザイナーにもなれず、エンジニアにもなれないどっちつかずな職種で自分のアイデンティティを模索し、日々の膨大なタスクに追われながら、フロントエンドのワークフロー(Grunt)、最適化(パフォーマンス)について考えたことを紹介します。

『(仮)が取れた時、運命の技術者に出会える・・・』

自己紹介

@t32k
t32k / Efficient UI Development.md
Last active January 4, 2016 04:59
Frontrend in Fukuoka 2014年1月25日(土)開催!

Efficient UI Development

[D-1] 45MIN. 14:00 - 14:45

Webデザインとは単にページを作るということではなく破綻のない『システム』をデザインしなければなりません。そのためにパターン、コンポーネント といった概念が不可欠です。本セッションでは実際に私が開発しているCSSフレームワークであるMapleにおいて考えたことやコンポーネント化の利点について紹介したいと思います。

t32k

  • bin
  • boot
  • dev
  • etc : システム設定ファイルや起動スクリプト
  • home
  • lib
  • lost+foumd
  • media
  • proc : プロセス情報
  • root
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