Angular 14正式リリース。Typed Angular FormsやStandalone Componentsなど新機能 Webアプリケーションフレームワーク「Angular」の最新版となる「Angular 14」が正式にリリースされました。 Angular v14 is here#ngUpdate includes: Strictly typed forms! Streamlined page title accessibility CLI autocomplete a de…
[スタパ齋藤の「スタパトロニクスMobile」] iPad mini 6で、うわさの“ほぼ裸ケース”こと「THE FROST AIR」を使う
[スタパ齋藤の「スタパトロニクスMobile」] iPad mini 6で、うわさの“ほぼ裸ケース”こと「THE FROST AIR」を使う
(async) Rust doesn’t have to be hard
An article titled Rust Is Hard, Or: The Misery of Mainstream Programming came out today and it’s getting a lot of attention. I have a feeling that it’s viewed in a wrong context, so I’d like to comment on the issue raised there. A lot of the comments to the article are in a tone of "this is preci…
Rustでわかる! WebAssemblyのメリット~処理速度の違いを、サンプルを作りながら体験しよう
本連載では、Webブラウザー上でJavaScriptとともに動作できるバイナリ形式のプログラムファイル「WebAssembly」を、Rustプログラミング言語で実装する方法を説明していきます。前回はRust言語の基礎を説明しました。今回はいよいよ、Rust言語でWebAssemblyを実装していきます。また実装したサンプルを利用して、WebAssem…
バッファロー版「nasne」の録画をWindowsでBD-Rに書き込む【自宅Wi-Fiの“わからない”をスッキリ!】
バッファロー版「nasne」の録画をWindowsでBD-Rに書き込む【自宅Wi-Fiの“わからない”をスッキリ!】
Monorepos in JavaScript & TypeScript
Follow on FacebookThis is a comprehensive tutorial on Monorepos in JavaScript/TypeScript — which is using state of the art tools for these kind of architectures in frontend applications. You will learn about the following topics from this tutorial: What is a monorepo?How to structure a monorepo…
富士通が考える、量子コンピューティングの今後
富士通が考える、量子コンピューティングの今後
「AIを特許の発明者として認めるべきだ」と専門家が主張
オーストラリアのニューサウスウェールズ大学の2人の学者が「世界各国の政府は、AIに特許の発明者であることを認めるように知的財産法を制定すべき」と主張する論文を発表し、AIを発明者として認めないことは経済や社会に長期的な影響を与える可能性があるとしています。 Artificial intelligence is breaking patent la…
iPhoneの「録音機能」をもっと便利に使う裏技 | iPhoneの裏技
初代iPhoneから搭載され続けている「ボイスメモ」。iOSの進化に伴い、機能は徐々にアップデートされています(筆者撮影) ボイスレコーダーの専用機が発売され続けていることからもわかるように、録音のニーズは、根強く残っている。もっとも、多くの場合、今はスマホでも代用することが可能だ。iPhoneにも「ボイスメモ…
React大好き侍が、「もうSolidJSでいいじゃん…//」ってなったワケ。 – Qiita
const Counter = () => { const [count, setCount] = createSignal(0) createEffect(() => { console.log(`Count: ${count()}`) }) //第2引数はありません。SolidJSが勝手に依存している状態を感知してくれます。 return (