技術記事以外

技術記事以外の振り返りやその日学んだことのちょっとしたメモなどを置く予定です

2020-05-01から1ヶ月間の記事一覧

今日の学習メモ

UX

Daily UX Mobile first is not necessarily popular just because the mobile device arise. It is because we have to focus on the most important information/content when we design for a small screen. Think ahead about what device you will suppo…

今日の学習メモ

GCPUG Spanner Day Spannerの新機能であるバックアップ、もともとexport/importを使えばできたといえばできたけどより手軽にできるようになった。ひっくり返すと、あくまでバックアップ/復元なので、export/importみたいに別のインスタンスに中身移したりに…

今日の学習メモ

レスポンシブサイトを作るときは、パフォーマンスの観点から必要な画像サイズに必要十分な画像をDLするようにするため、複数のサイズバリエーションを用意するのが定石。さじ加減にルールはないが、だいたい3種類が一般的。 解像度が高いRetinaなどのディス…

今日の学習メモ

Daily UX User profile listing the feature of user like sex or age is not useful for UX. In UX context, user profile should be more like what user want to do, what pattern of action user do which we can say NO to some ideas based on it.

今日の学習メモ

<picture>では<source>と<img>を子要素として使うことができる。ブラウザは、<source>のsrcsetやmediaをみて、現在の環境に合うものがあるか確認、あればそれを表示する。なければimgに指定されているものを表示する。肝心なIEが対応してない悲しみ(まあでもその場合imgだけが表示されるら</source></source></picture>…

今日の学習メモ

UX

Daily UX User Research can be done in any time and any steps in the process User Research allows us to collect two type of information: subjective and objective Subjective information is like "what is your favorite?" so there is no correct…

今日の学習メモ

MySQL Relay log is created only in slave when replication is configured. I/O thread receives binary log from master and put it into relay log file. Then, SQL thread picks update info from the logs, apply for DB and delete that log. When th…

今日の学習メモ

Daily UX: Important 5 elements in UX Psychology. It is subconscious. How user feels if they interact with UX. Usability. It is conscious. How easy for user to do something they want to. Design. Copywriting. Analysis. Is it data driven? 52 …

今日の学習メモ

特定のクラス名がついていない要素にスタイルを当てたいときは&:not([className])を使う

今日の学習メモ

Daily US Two types of goals. User goals and Business Goals such as KPIs. How well align these two is important. Business benefits when user achieve what they want. 52 weeks of UX Interaction designer designs so that all interaction should …

今日の学習メモ

Daily UX: UX is not about make users happy, but make it efficient. 52 weeks of UX Goal of design is to communicate the intended message text-align: justifyで均等揃え。使ったことないな text-transform: uppercaseで大文字変換。使ったことないな…

今日の学習メモ

0.0.0.0と127.0.0.1の差は、前者が同じネットワーク内なら別ホストからでもアクセスできるようになるのと違って、 後者はそのホストからしかアクセスできないこと。うん、よく考えたら前職で一時的にローカル共有するのにng serve --host 0.0.0.0使ってた時…

今日の学習メモ

GCP

GAEにデプロイしたアプリの中で使うサービスアカウントをapp.yamlのGOOGLE_APPLICATION_CREDENTIALSで指定している時、そのcredentialが見つからないと500になる。GCPのLoggingみたら明確にエラーが出るけど、クライアント側だとCORSエラーとしてエラーが表…

今日の学習メモ

overflow-x:hiddenがかかっていると、RouterModuleのAnchorScrollingが効かなくなるらしい。起きる条件が限られすぎてて結構時間を溶かしてしまった。[Issue] (https://github.com/angular/angular/issues/34879#issuecomment-576560321) ちなみにoverflowの…

今日の学習メモ

CSS

nth-childはタグ名もクラス名も見ていない。nth-of-typeはタグ名だけ見てる。どっちにしろクラス名は無視されるから、この点意識しておかないと子孫要素で意図しないところまでスタイルがかかることがある。StackOverflow