Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Discovered Something New?

Discovered Something New?

builderscon tokyo 2017のLT資料です!

Avatar for HASEGAWA Tomoki

HASEGAWA Tomoki

August 04, 2017
Tweet

More Decks by HASEGAWA Tomoki

Other Decks in Technology

Transcript

  1. ライフワーク: Web / iOSアプリ開発, ビール, 電子工作,
 サッカー観戦, レンタルカートレース, … 長谷川

    智希 Web / iOS App Development, Beer, IoT, Watch soccer match, Rental Kart Racing, … デジタルサーカス株式会社 副団長CTO Digital Circus, Inc. Vice-master CTO Tokyo, Japan Lifeworks: @tomzoh
  2. public function normalizeTwitter($string) { $string = str_replace('https://', '', $string); $string

    = str_replace('http://', '', $string); $string = str_replace('mobile.twitter.com/', '', $string); $string = str_replace('twitter.com/', '', $string); if (substr($string, 0, 1) === '@'){ $string = substr($string, 1); } if (substr($string, -1, 1) === '/'){ $string = substr($string, 0, -1); } return $string; }
  3. SNSアイコン推奨サイズ •今回の名札、40mm x 40mm 
 (= 1.6inch x 1.6inch) •350dpi

    = 350 dots per inch •560px x 560px あると理想的だった!