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

UI Collabo のご紹介(λ Kansai 2025 in Summer)

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.
Avatar for motoyak motoyak
August 09, 2025

UI Collabo のご紹介(λ Kansai 2025 in Summer)

◆ UI Collabo (ゆーあいこらぼ) https://uicollabo.com/
・Web制作向けのオンライン校正ツール
・Webサイトのキャプチャが簡単(複数画面幅対応+履歴管理)
- 他のツール使わなくてよい
- 画像アップもOK
・コメントがわかりやすい(赤入れ+コメント+ステータス管理)
- 意思疎通ばっちり!
・サイトストラクチャに従ったページ管理
- 大規模サイトでもOK!
・Web制作以外にも、PDFの校正にも対応してます
・アプリのUI開発にも!

Avatar for motoyak

motoyak

August 09, 2025
Tweet

Other Decks in Technology

Transcript

  1. 自己紹介
 年齢:0x32歳 所属: 株式会社ポテンシャルユナイテッド ( https://www.p-united.com/ ) 来歴: TCP屋 →

    組み込み屋 → Web屋 搭乗機: MSX → PC-98 → AT互換機 PureScript、Haskell 好き。Ocaml、Scala、F#、Elm、Lispなども気になる。 https://github.com/motoyak/ https://github.com/motoyak/purescript-book/tree/motoyak/0.12.x https://github.com/moto-pu/ AI自動コーディングと静的型付け純粋型関数型言語は相性いいのでは
  2. UI Collabo (ゆーあいこらぼ) https://uicollabo.com/
 
 Web制作向けのオンライン校正ツール
 ・Webサイトのキャプチャが簡単(複数画面幅対応+履歴管理)
 - 他のツール使わなくてよい
 -

    画像アップもOK
 ・コメントがわかりやすい(赤入れ+コメント+ステータス管理)
 - 意思疎通ばっちり!
 ・サイトストラクチャに従ったページ管理
 - 大規模サイトでもOK!
 Web制作以外にも、PDFの校正にも対応してます
 アプリのUI開発にも!

  3. UI Collabo の中身 
 フロントエンド
 React、CSS Component、vite、、、
 サーバサイド
 PHP、SlimPHP、Eloquent、、、
 関数型言語の採用を虎視眈々と狙っている。


    PHPでも関数型に寄せてるとこはあり〼。
 lstrojny/functional-php ( https://github.com/lstrojny/functional-php )
 use function Functional\some; 
 
 public static function hasScope(array $roles, array $scopes) : bool 
 {
 $isMatchedScope = in_array(WorkspaceMember::ROLE_ANY, $scopes, true); 
 
 if (!$isMatchedScope) { 
 $isMatchedScope = some($scopes, fn ($elm, $idx, $col) => in_array($elm, $roles, true)); 
 }
 
 return $isMatchedScope; 
 }