<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>コードの種</title><description>AI・プログラミング・ゲーム開発・PCやガジェットの読みもの</description><link>https://code-no-tane.pages.dev/</link><language>ja</language><item><title>Python超入門① 最初のプログラムを書いて動かそう</title><description>Pythonで文字を表示し、インデントやコメントなど、最初に知っておきたい書き方を学びます。</description><link>https://code-no-tane.pages.dev/articles/python-first-program/</link><guid>https://code-no-tane.pages.dev/articles/python-first-program/</guid><pubDate>Tue, 01 Sep 2026 14:59:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category><category>開発ツール</category></item><item><title>JavaScript超入門① 最初のプログラムを書いて動かそう</title><description>ブラウザでJavaScriptを実行し、console.log、scriptタグ、コメントの基本を学びます。</description><link>https://code-no-tane.pages.dev/articles/javascript-first-program/</link><guid>https://code-no-tane.pages.dev/articles/javascript-first-program/</guid><pubDate>Tue, 01 Sep 2026 14:58:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category><category>Web制作</category></item><item><title>C言語超入門① 最初のプログラムを書いて動かそう</title><description>C言語の基本形、printf、main関数、コメントを使い、最初のプログラムを動かします。</description><link>https://code-no-tane.pages.dev/articles/c-first-program/</link><guid>https://code-no-tane.pages.dev/articles/c-first-program/</guid><pubDate>Tue, 01 Sep 2026 14:57:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category><category>開発ツール</category></item><item><title>Python超入門② 変数・入力・計算を覚えよう</title><description>Pythonの変数、主なデータ型、inputによる入力、型変換、四則演算を学びます。</description><link>https://code-no-tane.pages.dev/articles/python-variables-input/</link><guid>https://code-no-tane.pages.dev/articles/python-variables-input/</guid><pubDate>Tue, 01 Sep 2026 14:56:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門② 変数・型・計算を覚えよう</title><description>let、const、数値、文字列、真偽値、テンプレートリテラル、主な演算子を学びます。</description><link>https://code-no-tane.pages.dev/articles/javascript-variables-types/</link><guid>https://code-no-tane.pages.dev/articles/javascript-variables-types/</guid><pubDate>Tue, 01 Sep 2026 14:55:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category></item><item><title>C言語超入門② 変数と入力を使おう</title><description>int、double、charによる変数宣言と、printf・scanfを使った入力と計算を学びます。</description><link>https://code-no-tane.pages.dev/articles/c-variables-input/</link><guid>https://code-no-tane.pages.dev/articles/c-variables-input/</guid><pubDate>Tue, 01 Sep 2026 14:54:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門③ if文で条件によって処理を分けよう</title><description>Pythonのif、elif、else、比較演算子、and、or、notを使い、条件に応じた処理を作ります。</description><link>https://code-no-tane.pages.dev/articles/python-conditionals/</link><guid>https://code-no-tane.pages.dev/articles/python-conditionals/</guid><pubDate>Tue, 01 Sep 2026 14:53:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門③ if文で条件によって処理を分けよう</title><description>if、else if、else、厳密等価演算子、論理演算子、switch文を学びます。</description><link>https://code-no-tane.pages.dev/articles/javascript-conditionals/</link><guid>https://code-no-tane.pages.dev/articles/javascript-conditionals/</guid><pubDate>Tue, 01 Sep 2026 14:52:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category></item><item><title>C言語超入門③ if文とswitch文で条件分岐しよう</title><description>if、else、比較演算子、論理演算子、switchを使い、条件によって処理を変える方法を学びます。</description><link>https://code-no-tane.pages.dev/articles/c-conditionals/</link><guid>https://code-no-tane.pages.dev/articles/c-conditionals/</guid><pubDate>Tue, 01 Sep 2026 14:51:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門④ while文とfor文で処理を繰り返そう</title><description>Pythonのwhile、for、range、break、continueを使い、同じ処理を安全に繰り返します。</description><link>https://code-no-tane.pages.dev/articles/python-loops/</link><guid>https://code-no-tane.pages.dev/articles/python-loops/</guid><pubDate>Tue, 01 Sep 2026 14:50:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門④ ループと配列を使おう</title><description>while、for、for...of、配列、push、break、continueを使い、複数の値を順番に処理します。</description><link>https://code-no-tane.pages.dev/articles/javascript-loops-arrays/</link><guid>https://code-no-tane.pages.dev/articles/javascript-loops-arrays/</guid><pubDate>Tue, 01 Sep 2026 14:49:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category></item><item><title>C言語超入門④ while文とfor文で繰り返そう</title><description>while、for、do-while、break、continueを使い、同じ処理を安全に繰り返す方法を学びます。</description><link>https://code-no-tane.pages.dev/articles/c-loops/</link><guid>https://code-no-tane.pages.dev/articles/c-loops/</guid><pubDate>Tue, 01 Sep 2026 14:48:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門⑤ 関数で処理をまとめよう</title><description>def、引数、戻り値、デフォルト引数、変数のスコープを学び、処理を読みやすく分けます。</description><link>https://code-no-tane.pages.dev/articles/python-functions/</link><guid>https://code-no-tane.pages.dev/articles/python-functions/</guid><pubDate>Tue, 01 Sep 2026 14:47:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門⑤ 関数で処理をまとめよう</title><description>function、引数、戻り値、アロー関数、変数のスコープを学びます。</description><link>https://code-no-tane.pages.dev/articles/javascript-functions/</link><guid>https://code-no-tane.pages.dev/articles/javascript-functions/</guid><pubDate>Tue, 01 Sep 2026 14:46:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category></item><item><title>C言語超入門⑤ 関数で処理を分けよう</title><description>関数の定義、引数、戻り値、プロトタイプ宣言、変数の有効範囲を初心者向けに説明します。</description><link>https://code-no-tane.pages.dev/articles/c-functions/</link><guid>https://code-no-tane.pages.dev/articles/c-functions/</guid><pubDate>Tue, 01 Sep 2026 14:45:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門⑥ リストと辞書でデータをまとめよう</title><description>listとdictを使い、複数の値や、名前と値の組み合わせをまとめて扱います。</description><link>https://code-no-tane.pages.dev/articles/python-lists-dictionaries/</link><guid>https://code-no-tane.pages.dev/articles/python-lists-dictionaries/</guid><pubDate>Tue, 01 Sep 2026 14:44:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門⑥ オブジェクトとJSONでデータを整理しよう</title><description>オブジェクト、プロパティ、メソッド、JSON.stringify、JSON.parseを学びます。</description><link>https://code-no-tane.pages.dev/articles/javascript-objects-json/</link><guid>https://code-no-tane.pages.dev/articles/javascript-objects-json/</guid><pubDate>Tue, 01 Sep 2026 14:43:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category></item><item><title>C言語超入門⑥ 配列と文字列を使おう</title><description>複数の値をまとめる配列、添字、文字列、fgets、strlenの基本を短いコードで学びます。</description><link>https://code-no-tane.pages.dev/articles/c-arrays-strings/</link><guid>https://code-no-tane.pages.dev/articles/c-arrays-strings/</guid><pubDate>Tue, 01 Sep 2026 14:42:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門⑦ エラー処理とファイル保存を覚えよう</title><description>try、except、ValueError、with、openを使い、入力エラーへの対応とテキストファイルの読み書きを学びます。</description><link>https://code-no-tane.pages.dev/articles/python-errors-files/</link><guid>https://code-no-tane.pages.dev/articles/python-errors-files/</guid><pubDate>Tue, 01 Sep 2026 14:41:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門⑦ DOMとクリックイベントを使おう</title><description>querySelector、textContent、addEventListenerを使い、ボタンを押すと表示が変わるWebページを作ります。</description><link>https://code-no-tane.pages.dev/articles/javascript-dom-events/</link><guid>https://code-no-tane.pages.dev/articles/javascript-dom-events/</guid><pubDate>Tue, 01 Sep 2026 14:40:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category><category>Web制作</category></item><item><title>C言語超入門⑦ ポインタの基本を理解しよう</title><description>メモリアドレス、&amp;と*、ポインタを使う関数、NULLの意味を初心者向けに整理します。</description><link>https://code-no-tane.pages.dev/articles/c-pointers/</link><guid>https://code-no-tane.pages.dev/articles/c-pointers/</guid><pubDate>Tue, 01 Sep 2026 14:39:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>Python超入門⑧ クイズゲームを完成させよう</title><description>変数、if文、for文、関数、リスト、辞書を組み合わせ、3問のクイズゲームを作ります。</description><link>https://code-no-tane.pages.dev/articles/python-quiz-game/</link><guid>https://code-no-tane.pages.dev/articles/python-quiz-game/</guid><pubDate>Tue, 01 Sep 2026 14:38:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>Python</category><category>コード練習</category></item><item><title>JavaScript超入門⑧ カウンターアプリを完成させよう</title><description>HTML、CSS、変数、関数、if文、DOM、クリックイベントを組み合わせ、数字を増減できるWebアプリを作ります。</description><link>https://code-no-tane.pages.dev/articles/javascript-counter-app/</link><guid>https://code-no-tane.pages.dev/articles/javascript-counter-app/</guid><pubDate>Tue, 01 Sep 2026 14:37:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>JavaScript</category><category>コード練習</category><category>Web制作</category></item><item><title>C言語超入門⑧ 構造体と列挙型を使おう</title><description>struct、typedef、ポインタからのアクセス、enumを使い、関連するデータを分かりやすくまとめます。</description><link>https://code-no-tane.pages.dev/articles/c-structs-enums/</link><guid>https://code-no-tane.pages.dev/articles/c-structs-enums/</guid><pubDate>Tue, 01 Sep 2026 14:36:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>C言語超入門⑨ 成績管理プログラムを作ろう</title><description>変数、入力、条件分岐、繰り返し、関数、配列、ポインタ、構造体を組み合わせて小さなプログラムを完成させます。</description><link>https://code-no-tane.pages.dev/articles/c-score-manager/</link><guid>https://code-no-tane.pages.dev/articles/c-score-manager/</guid><pubDate>Tue, 01 Sep 2026 14:35:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C言語</category><category>コード練習</category></item><item><title>C++超入門① 最初のプログラムを書いて動かそう</title><description>C++の最初の一歩として、画面へ文字を表示するコードを書き、main関数やセミコロンの意味を学びます。</description><link>https://code-no-tane.pages.dev/articles/cpp-first-program/</link><guid>https://code-no-tane.pages.dev/articles/cpp-first-program/</guid><pubDate>Tue, 01 Sep 2026 07:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category><category>開発ツール</category></item><item><title>C++超入門② 変数・型・入力と計算を覚えよう</title><description>intやdoubleなどの型、変数の宣言、キーボード入力、四則演算を使い、簡単な計算プログラムを作ります。</description><link>https://code-no-tane.pages.dev/articles/cpp-variables-input/</link><guid>https://code-no-tane.pages.dev/articles/cpp-variables-input/</guid><pubDate>Tue, 01 Sep 2026 06:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門③ if文で条件によって処理を変えよう</title><description>if、else if、else、比較演算子、論理演算子、switch文を使い、条件によって動きが変わるプログラムを作ります。</description><link>https://code-no-tane.pages.dev/articles/cpp-conditionals/</link><guid>https://code-no-tane.pages.dev/articles/cpp-conditionals/</guid><pubDate>Tue, 01 Sep 2026 05:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門④ while文とfor文で処理を繰り返そう</title><description>while文、for文、do-while文、break、continueを使い、同じ処理を安全に繰り返す方法を学びます。</description><link>https://code-no-tane.pages.dev/articles/cpp-loops/</link><guid>https://code-no-tane.pages.dev/articles/cpp-loops/</guid><pubDate>Tue, 01 Sep 2026 04:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑤ 関数で処理を分けよう</title><description>関数、引数、戻り値、void、変数のスコープを学び、長い処理を役割ごとに分けます。</description><link>https://code-no-tane.pages.dev/articles/cpp-functions/</link><guid>https://code-no-tane.pages.dev/articles/cpp-functions/</guid><pubDate>Tue, 01 Sep 2026 03:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑥ 配列・vector・stringを使おう</title><description>配列、std::vector、std::stringを使い、複数の数字や文字をまとめて扱う方法を学びます。</description><link>https://code-no-tane.pages.dev/articles/cpp-arrays-vector-string/</link><guid>https://code-no-tane.pages.dev/articles/cpp-arrays-vector-string/</guid><pubDate>Tue, 01 Sep 2026 02:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑦ ポインタと参照を理解しよう</title><description>メモリアドレス、ポインタ、参照、nullptrの意味を、短いコードと図に近い考え方で整理します。</description><link>https://code-no-tane.pages.dev/articles/cpp-pointers-references/</link><guid>https://code-no-tane.pages.dev/articles/cpp-pointers-references/</guid><pubDate>Tue, 01 Sep 2026 01:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑧ 構造体とenumでデータを整理しよう</title><description>structとenum classを使い、キャラクター名、HP、状態など、関係するデータをひとまとまりにします。</description><link>https://code-no-tane.pages.dev/articles/cpp-structs-enums/</link><guid>https://code-no-tane.pages.dev/articles/cpp-structs-enums/</guid><pubDate>Tue, 01 Sep 2026 00:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑨ クラスの基本を知ろう</title><description>class、オブジェクト、public、private、コンストラクタ、メンバー関数を使い、データと処理を一つにまとめます。</description><link>https://code-no-tane.pages.dev/articles/cpp-class-basics/</link><guid>https://code-no-tane.pages.dev/articles/cpp-class-basics/</guid><pubDate>Mon, 31 Aug 2026 23:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>C++超入門⑩ 点数管理プログラムを完成させよう</title><description>変数、if文、while文、for文、関数、vector、構造体、参照を組み合わせ、複数人の点数を管理するプログラムを作ります。</description><link>https://code-no-tane.pages.dev/articles/cpp-score-manager/</link><guid>https://code-no-tane.pages.dev/articles/cpp-score-manager/</guid><pubDate>Mon, 31 Aug 2026 22:00:00 GMT</pubDate><category>初心者向け</category><category>プログラミング基礎</category><category>C++</category><category>コード練習</category></item><item><title>AIの基本用語を整理。LLM・トークン・RAGの違い</title><description>生成AIの記事でよく見るLLM、プロンプト、コンテキスト、トークン、RAGなどの意味と違いを説明します。</description><link>https://code-no-tane.pages.dev/articles/ai-basic-terms/</link><guid>https://code-no-tane.pages.dev/articles/ai-basic-terms/</guid><pubDate>Sat, 29 Aug 2026 03:00:00 GMT</pubDate><category>AI</category><category>初心者向け</category><category>用語解説</category><category>生成AI</category></item><item><title>プログラミング基本用語。ライブラリとフレームワークの違い</title><description>ソースコード、ランタイム、パッケージ、ライブラリ、フレームワーク、ビルド、デプロイの違いを整理します。</description><link>https://code-no-tane.pages.dev/articles/programming-basic-terms/</link><guid>https://code-no-tane.pages.dev/articles/programming-basic-terms/</guid><pubDate>Sat, 29 Aug 2026 02:00:00 GMT</pubDate><category>初心者向け</category><category>用語解説</category><category>プログラミング基礎</category><category>開発ツール</category></item><item><title>Git・GitHub用語入門。commit、branch、pushを整理</title><description>GitとGitHubの違いから、リポジトリ、コミット、ブランチ、push、pull、Pull Requestまで説明します。</description><link>https://code-no-tane.pages.dev/articles/git-github-basic-terms/</link><guid>https://code-no-tane.pages.dev/articles/git-github-basic-terms/</guid><pubDate>Sat, 29 Aug 2026 01:00:00 GMT</pubDate><category>初心者向け</category><category>用語解説</category><category>プログラミング基礎</category><category>開発ツール</category><category>Git・GitHub</category></item><item><title>AI・プログラミング初心者向け用語集</title><description>AIコーディングの記事でよく使われる言葉を、短くやさしく説明します。</description><link>https://code-no-tane.pages.dev/articles/ai-programming-glossary/</link><guid>https://code-no-tane.pages.dev/articles/ai-programming-glossary/</guid><pubDate>Sat, 29 Aug 2026 00:00:00 GMT</pubDate><category>AI</category><category>初心者向け</category><category>用語解説</category><category>プログラミング基礎</category><category>AIコーディング</category></item><item><title>Webサイト用語入門。サーバー・ドメイン・APIの違い</title><description>フロントエンドとバックエンド、静的サイトと動的サイト、サーバー、ホスティング、ドメイン、DNS、CDN、APIを整理します。</description><link>https://code-no-tane.pages.dev/articles/web-development-basic-terms/</link><guid>https://code-no-tane.pages.dev/articles/web-development-basic-terms/</guid><pubDate>Sat, 29 Aug 2026 00:00:00 GMT</pubDate><category>初心者向け</category><category>用語解説</category><category>プログラミング基礎</category><category>Web制作</category></item><item><title>ゲーム開発の基本用語。ゲームエンジン・アセット・FPSを整理</title><description>シーン、オブジェクト、コンポーネント、アセット、スプライト、当たり判定、FPSなど、ゲーム制作でよく使う言葉をやさしく整理します。</description><link>https://code-no-tane.pages.dev/articles/game-development-terms/</link><guid>https://code-no-tane.pages.dev/articles/game-development-terms/</guid><pubDate>Fri, 28 Aug 2026 23:00:00 GMT</pubDate><category>初心者向け</category><category>用語解説</category><category>ゲーム開発</category><category>性能・パフォーマンス</category></item><item><title>PCスペックの見方。CPU・GPU・メモリの違い</title><description>CPU、GPU、メモリ、ストレージ、VRAM、解像度、リフレッシュレートなど、パソコン選びでよく見る用語を整理します。</description><link>https://code-no-tane.pages.dev/articles/pc-spec-terms/</link><guid>https://code-no-tane.pages.dev/articles/pc-spec-terms/</guid><pubDate>Fri, 28 Aug 2026 22:00:00 GMT</pubDate><category>初心者向け</category><category>用語解説</category><category>PC・ハードウェア</category><category>性能・パフォーマンス</category></item><item><title>Claude CodeとCodexを比較。はじめて選ぶならどっち？</title><description>2つのAIコーディングツールの違いを、使い方や向いている人の視点から整理します。</description><link>https://code-no-tane.pages.dev/articles/claude-code-vs-codex/</link><guid>https://code-no-tane.pages.dev/articles/claude-code-vs-codex/</guid><pubDate>Fri, 28 Aug 2026 00:00:00 GMT</pubDate><category>AI</category><category>初心者向け</category><category>AIコーディング</category><category>ツール比較</category><category>開発ツール</category></item><item><title>AIコーディングツールの選び方。初心者が見るべき5項目</title><description>料金だけで迷わないために、導入前に比べたいポイントを短くまとめました。</description><link>https://code-no-tane.pages.dev/articles/ai-coding-tools-beginner/</link><guid>https://code-no-tane.pages.dev/articles/ai-coding-tools-beginner/</guid><pubDate>Mon, 24 Aug 2026 00:00:00 GMT</pubDate><category>AI</category><category>初心者向け</category><category>AIコーディング</category><category>ツール比較</category><category>開発ツール</category></item><item><title>Cursor・GitHub Copilot・Claude Codeの違いを整理</title><description>エディタ型とターミナル型の違いから、自分に合う道具を考えます。</description><link>https://code-no-tane.pages.dev/articles/cursor-copilot-claude-code/</link><guid>https://code-no-tane.pages.dev/articles/cursor-copilot-claude-code/</guid><pubDate>Thu, 20 Aug 2026 00:00:00 GMT</pubDate><category>AI</category><category>AIコーディング</category><category>ツール比較</category><category>開発ツール</category></item></channel></rss>