- 短期間(2〜3ヶ月)でWebサービスを立ち上げた後にサイクルを回して中長期的に育てるという運用実績や、エンタープライズ向けの開発・支援実績
- TypeScript(NestJS・Vue・React)、Python(Django)、Java(Struts/Spring/Hadoop/etc…)、PHP(CakePHP)の経験はそれぞれ3年以上、インフラはAWS歴が長いですが現在はGCP、その他GolangやRuby(Rails)などは短期でアーキテクチャをキャッチアップして開発した経験
- シニアなメンバーで構成される最大10名のチームの開発責任者・マネージャーとして開発方針の策定や4拠点からなるフルリモートメンバーの多い開発チームの立ち上げ、継続的なスキルトランスファー、技術的難易度の高い課題の対応(パフォーマンスチューニングやFW開発、アーキテクチャ設計や開発サイクル設計)の実績
- スタートアップの創業期(数名~10名)から拡大期(全社で60名規模)まで一通り経験し、マネージャーとして多くの失敗や実体験としてのHARD THINGSの経験
- CTO・経営者・シニアなエンジニアといった層とのつながりが多く、採用難易度の高い企業にてエンジニア採用の立ち上げや組織風土の改善などに貢献
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select registered_date, count(*) as registered_cnt from ( | |
select (YEAR(user_registered) * 10000 + MONTH(user_registered) * 100 + DAY(user_registered)) as registered_date from wp_users) as tmp | |
group by registered_date | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import Image | |
img = Image.new('RGB', (480, 480), (0xff, 0xff, 0xff)) | |
a = Image.open('A.bmp') | |
b = Image.open('B.bmp') | |
a.thumbnail((240, 240), Image.ANTIALIAS) |