Google’s Project Zero demonstrates a new zero-click exploit for the Pixel 10 phones, showing a full escalation from remote to kernel without user interaction. During the investigation Project Zero found …read more
Google’s Project Zero demonstrates a new zero-click exploit for the Pixel 10 phones, showing a full escalation from remote to kernel without user interaction. During the investigation Project Zero found …read more
皆様、Claude Code使ってますか? CLIで利用されている方が大多数だと思いますが、VSCodeの拡張も悪くないよ、というお話です。 いつのころからか、左右にパネルが出るような構成になっています。 右側が通常(?)のチャット欄で左が過去のセッション一覧みたいな感じです。 左側にある「New session」をクリックすると...
submitted by nemeski to vscode
4 points | 1 comments
https://github.blog/changelog/2026-03-06-github-copilot-in-visual-studio-code-v1-110-february-release/
If you are anything like me, you might have given Google Antigravity a go, as I did in a recent post, and decided that there is not yet any WSL support given the extension marketplace specifically says This extension is not compatible with Antigravity. However… it turns out that even if this is the case, the Remote-WSL: Connect to WSL option ... Read more
VSCodeで新規ファルを開く時、常にマークダウンで開きたいと常々思ってきた。
setting.jsonで下記のように書けば常にマークダウンで開くようになる。
How to use WezTerm's hyperlink rules to open files in VS Code from Zellij
Windows間のアプリ移行が簡単だった
VS Code の拡張機能「Ascii Tree Generator」
インストール
ディレクトリ構造など面倒なツリーを#タグを使って簡単に書けるようにしてれる拡張機能。
Githubのドキュメントに詳しい説明がある。
使用方法
↑ のように作成し選択、Ctrl+Shift+Pでコマンドを開き、Pre-Formatted Tree Stringを選択する。
そうすると上記のように展開される。
WordPressの記事管理に頭を悩ませてきた。
で、行きついた先が、今後のことを考え、WordPressの記事をGitで管理しGithubに一元管理することにしただったのだが、色々運用を決めていくとどうにも面倒で仕方なくなってきた。
Githubでの運用方法
という手順を自らに課したせいで、更新が億劫で仕方なかった。
そんなときに救世主であるWordPress PostというVSCodeの拡張機能にであった。
WordPress Postとは?
この Visual Studio
Code 拡張機能は、WordPress…
そもそもER図とは?
ER図とは「データベース設計における代表的な設計図のこと」らしい。そして「作成したER図がそのまま物理データベース上に変換できることから、データベース設計手法におけるデファクトスタンダード」とのこと。
つまりたぶん、ER図を書くという技術は必要不可欠っぽい。
データモデル
ER図はシステムの上流工程の中で段階的に設計するらしく、各工程で作成するER図の状態のことを「データモデル」というらしい。
概念モデル
要件定義工程で作成するデータモデル。
最初にシステム全体における「もの」や「できごと」をエンティティ、リレーションシップとして洗い出し、概要を表したもの。
論理モデル
基本設計工程で作成するデータモデル
特定のデータベースに依存しないレベルで具体化した状態を表したもの。
物理モデル
詳細設計工程で作成するデータモデル
Oracle…
Sometimes fixing a TypeScript or eslint error in VS Code can feel impossible. Here's what I do when I have exhausted all my resources.
Extracting types from a JavaScript object is a common task in TypeScript. This post shows how to do it with VS Code.