Build and run data, API, and agentic AI services on the world's most widely adopted actor-based runtime. Scale to millions of TPS Update without downtime Recover from any failure Safety with zero-trust security

この間、virtual DOM読んだついでにReactも読んでみた。 役に立つ話を書くつもりは一切無くて、感想だけ。 React.js 定数だけのファイルとか(まさに*hな感じ)、デザインや使い方について書かれたコメントなど、全般的にC++に類似するstaticなコードの流儀で書かれている。 イケイケな「動的言語最高!」って言わんばかりのJSのコードではなく、明らかにC++の巨大プロジェクトなどに近い。Mozillaの中のJSとか、XPCOMな箇所で少し古いものとかにデジャブを感じる。 もっとも、巨大かつ基盤になるようなプロジェクトはこうせざるを得ないし、小手先のreadable性に頼らずに真っ当に巨大ソフトウェア開発してる趣が個人的な心象は最高に良い。 ただし、本来静的解析フェーズで片付けるべき箇所もカバレッジのためにテストを記述している箇所が有り、ちょっとそこはイケてないと感じるかもし
JavaScriptフレームワークがMVCであろうがMVVMであろうがMVPであろうがこういったことを議論するよりもまずは手を動かそうというのはとても理解できる話だと思います。作っているときに各モジュールをどう構造化するかが悩むことがありますが、その時に「こうやれば効率がいい」というものを見極めることも重要と思います。 MVC vs MVVM vs MVP. What a controversial topic that many developers can spend… 特にエンタープライズでは小川充(HTML5Experts.jp コントリビュータ)氏や酒巻瑞穂(HTML5Experts.jp コントリビュータ)氏が考えている通り、各モジュールをどのように構造化し開発ライフサイクルを運用するかが必要となります。こうした意味合いにおいて「Flux」という考え方が参考になるのではと思い資
http://tech.gilt.com/post/67708037571/sleuthing-and-solving-the-user-logout-bug-on-ios-7Giltがエンジニアブログで、background fetchを利用するとログアウトしてしまうバグを修正した取り組みを紹介してます。 1) 背景 iOS7の新機能background fetchを利用すれば、裏側で定期的にサーバにリクエストをしてデータを取得できるので、ユーザに最新のコンテンツを提供できる。サーバ駆動型のアプリにありがちな、「読み込み中...」という表示も減らせる。毎日ユーザにセール情報を提供するGiltにとっては待望の機能。以前は、ユーザがアプリを立ち上げた後にサーバとの通信を繰返し、新しいデータを取得していたので、せっかくのフラッシュセールの目玉商品がやっと表示されたときには売り切れとなる事態もあ
キーボードショートカット一覧 j次のブックマーク k前のブックマーク lあとで読む eコメント一覧を開く oページを開く ✕
本日、freee自動同期専用のアプリ、Taxnote for freeeがリリースされました。 みなさん、個人事業主やフリーランスに人気のクラウド会計ソフトfreeeをご存知でしょうか? 仕事に使うクレジットカードや銀行口座の明細をネット上でダウンロードし、自動的に確定申告の仕分け処理をしてくれる画期的なサービスです。 ※「freee」ユーザーが10万到達、会計ソフト初心者に刺さって成長(TechCrunch) 領収書を見ながらペチペチと帳簿入力してきた苦痛から解放されるということで、僕の周りのフリーランスの人も使っている人が増えてきました。 しかし、freeeにもやっぱり弱点があるわけです。 現金の手動入力が面倒 カードや銀行口座の明細はクラウド上で処理できるけど、現金の入出金はどうしても手動でやらないといけないのです。 例えば、喫茶店で打ち合わせしたり、事務用品を購入した時が現金払いだ
Tamper is a mitmproxy based devtools extension that lets you edit remote files locally and serve them directly to Chrome. Wait, what's a proxy server? “In computer networks, a proxy server is a server (a computer system or an application) that acts as an intermediary for requests from clients seeking resources from other servers.” Tamper basically sits between Chrome and the web. Whenever Chrome m
Incident Identifier: 4C8A28F2-B38E-4577-8A98-7A6578ADC778 CrashReporter Key: 588db57f190d0cbb5035ddb9b4382acdda5b8305 Hardware Model: iPhone6,1 Process: HBFav [171] Path: /private/var/mobile/Containers/Bundle/Application/9813C1C0-3A91-4A14-AE1E-62100E3CC742/HBFav.app/HBFav Identifier: HBFav Version: 2.7.3 (2.7.3) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2014-11-09 12:04:19.03
React.js is a fantastic library. Sometimes it seems like the best thing since sliced Python. React is only one part of a front-end application stack, however. It doesn’t have much to offer when it comes to managing data and state. Facebook, the makers of React, have offered some guidance there in the form of Flux. Flux is an “Application Architecture” (not a framework) built around one-way data fl
This blog site has been archived. Go to react.dev/blog to see the recent posts. Keep it Simple Pedro Nauck (pedronauck) delivered an impeccably illustrated deck at Brazil’s Front in Floripa conference. Watch him talk about how to keep delivering value as your app scales, by keeping your development process simple. Murilo Pereira (mpereira) tussles with the topic of complexity in this blog post abo
The Flux project is in maintenance mode and there are many more sophisticated alternatives available (e.g. Redux, MobX, Recoil) and we would recommend using them instead. What is Flux?Flux is the application architecture that Facebook uses for building client-side web applications. What does it do?It complements React's composable view components by utilizing a unidirectional data flow. How do I u
Dispatcher is used to broadcast payloads to registered callbacks. This is different from generic pub-sub systems in two ways: Callbacks are not subscribed to particular events. Every payload is dispatched to every registered callback.Callbacks can be deferred in whole or part until other callbacks have been executed.Check out Dispatcher.js for the source code. API #register(function callback): str
Backbone.js with React Views - Server Rendering, Virtual DOM, and More! The document outlines a presentation on integrating Backbone.js with React for a more efficient app development experience. It discusses the advantages of both frameworks, highlights a code organization strategy, and emphasizes server-side rendering as a key benefit. It also encourages the abandonment of jQuery dependencies an
Facebook has been iterating its mobile products, continuing to increase the richness of the content and speed at which it is delivered. In transitioning to become a mobile-first company, Facebook has faced complex issues and opportunities to make its products more innovative, while building abstractions to do so that are powerful, yet simple—all fit for a very large scale. Adam Ernst, an iOS Engi
This blog site has been archived. Go to react.dev/blog to see the recent posts. This round-up is a special edition on Flux. If you expect to see diagrams showing arrows that all point in the same direction, you won’t be disappointed! React And Flux at ForwardJS Facebook engineers Jing Chen and Bill Fisher gave a talk about Flux and React at ForwardJS, and how using an application architecture with
Succeed in Japan.Venture Japan is the leading Japanese company incorporation, market-entry, recruitment, and business support provider. Starting Business in Japan?Successfully start a Japanese company, incorporate a KK kabushiki kaisha or GK godo kaisha, or register a branch-office in Japan. Venture Japan’s Japanese company incorporation and branch-office registration services are secure, confiden
メイクリープスで 請求業務を、 もっとかんたんに。初期費用0円。すべての機能が、30日間 「無料」で試せます! まずは気軽に始めてみませんか? たった1分でお申し込み完了! まずは30日間 無料で試してみる クラウド見積・請求・入金管理サービス メイクリープスでできること 書類作成クラウド上で、見積書・発注書・納品書・請求書・検収書・領収書・支払通知書など10種類の書類を作成。 送付どこからでもワンクリックで電子送付(無料)、郵送代行(1通 195円/税抜)が可能です。 入金管理銀行口座と連動し、自動で入金情報を取得。通帳記帳いらずで、入金消込をさらに効率化。 承認ハンコいらずで外出先から申請・承認が可能!誤送信や改ざんの防止、確実な証跡管理を実現。 すべての機能をみる
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く