並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 9 件 / 9件

新着順 人気順

C-langの検索結果1 - 9 件 / 9件

  • Go: A Documentary

    Go: A Documentary by Changkun Ou <changkun.de> (and many inputs from contributors) This document collects many interesting (publicly observable) issues, discussions, proposals, CLs, and talks from the Go development process, which intends to offer a comprehensive reference of the Go history. Disclaimer Most of the texts are written as subjective understanding based on public sources Factual and ty

    • The Development of the C Language

      The Development of the C Language* Dennis M. Ritchie Bell Labs/Lucent Technologies Murray Hill, NJ 07974 USA dmr@bell-labs.com ABSTRACT The C programming language was devised in the early 1970s as a system implementation language for the nascent Unix operating system. Derived from the typeless language BCPL, it evolved a type structure; created on a tiny machine as a tool to improve a meager progr

      • My thoughts on writing a Minecraft server from scratch (in Bash)

        My thoughts on writing a Minecraft server from scratch (in Bash) For the past year or so, I've been thinking about writing a Minecraft server in Bash as a thought excercise. I once tried that before with the Classic protocol (the one from 2009), but I quickly realized there wasn't really a way to properly parse binary data in bash. Take the following code sample: function a() { read -n 2 uwu echo

        • 決定木・回帰木に基づくアンサンブル学習の最近

          2018-06-07 16:00 [招待講演]決定木・回帰木に基づくアンサンブル学習の最近 スマートインフォメディアシステム研究会(SIS) https://www.ieice.org/ken/program/index.php?tgs_regid=af34ebc128cfa2fb7204de372de4324d77c39af0fb0174779c959c116196ce9c&lang= Read less

            決定木・回帰木に基づくアンサンブル学習の最近
          • CMakeでGoogleTest(gtest_add_tests vs gtest_discover_tests) - みつきんのメモ

            はじめに CMakeにはCTestというテストランナーがある。 CTestはテスト用の実行ファイル(テストバイナリ)が1つのテストとして認識される。 GoogleTest(GTest)のようなテストフレームワークの場合、1つのテストバイナリに複数のテストケースが含まれることが常となる。 そこでCMakeにはGTestのテストが一つのCTestとして扱われるようにするためのサポート機能がある。 テスト対象のプログラム CMake C++でユニットテスト入門(初級編)で作成した、なんの役にも立たないテストプログラムを使用する。 使用するのは下記のファイル。 hello.cpp hello.h GTest aptでインストール ExternalProjectとかいろいろあるが、まずそれ以外のことを試したいので、googletestのパッケージをaptでインストールする。 $ sudo apt i

              CMakeでGoogleTest(gtest_add_tests vs gtest_discover_tests) - みつきんのメモ
            • Karen (slang) - Wikipedia

              Karen is a term used as slang typically for a middle-class white American woman who is perceived as entitled or excessively demanding.[1] The term is often portrayed in memes depicting middle-class white women who "use their white and class privilege to demand their own way".[1][2] Depictions include demanding to "speak to the manager", being racist, or wearing a particular bob cut hairstyle.[3] I

                Karen (slang) - Wikipedia
              • char型をint型に変換する方法と注意【数値化 キャスト 文字列変換】

                これらのように数字文字の連番が保証されている環境であれば、以下のような数字判定処理を書くこともできます。 bool isDigit(char c) { return c >= '0' && c <= '9'; } isDigit('8'); // true isDigit('a'); // false ctoi関数の実装方法 範囲チェック付きの変換関数です。数字以外の文字が渡された場合には、戻り値のデフォルト値として0を返します。 int ctoi(char c) { if (c >= '0' && c <= '9') { return c - '0'; } return 0; } assert( 0 == ctoi('0') ); assert( 9 == ctoi('9') ); assert( 0 == ctoi('a') ); assert( 0 == ctoi('A') ); 必

                • USB PDとDC電源で動く新型はんだごてを購入

                  概要 DC12-24Vで動くハンダゴテをUSB PD経由で使う概要 購入したまま動作が不安定で放置していたハンダゴテを使える状態にしてみました。モバイルバッテリーを使ってUSB PDで12V出力をさせています。 商品 上記のACアダプタ付きを購入してみました。購入日をみたら去年の春なので1年以上塩漬け...lang-ship.com2023.10.31 前回USB PDをトリガーケーブルを使って12Vや20Vではんだごてを動かしてみました。新型はUSB PDが直接利用できるので、そちらも購入して確かめてみました。このハンダゴテを今後のメインにしようかなと思っています。 製品 1345.0¥ 48% OFF|インテリジェント電気溶接機キットt12,pd 65w,修理ツール,調整可能な温度,ポータブル溶接ステーション,加熱鉛筆| | - AliExpressSmarter Shopping,

                    USB PDとDC電源で動く新型はんだごてを購入
                  • C言語入門第 10 章 構造体

                    C言語プログラミングにおいて、配列はデータの集まりを管理するときにかかせない道具です。本章では、配列と同様、データの集まりを管理するときにはかかせない道具である構造体について説明します。 簡単なスケジュール管理をおこなうプログラムを作成してみましょう。簡単のために、管理する項目は以下の 2 つだけとします。 また管理する最大の予定数は 100 とします。 開始時間(年、月、日)表題 2 つしか項目がないといっても、実際には開始時間は年・月・日・時の 4 つの要素に分かれますし、表題についてもさまざまなパターンが考えられます。また、機能としては以下を実現することにします。 キーボードから新しい予定を入力できること入力した予定を古い順に並べて表示できること このような機能を実現するには、管理する項目をひとまとまりにしておく必要があります。 今まで学んだ内容を振り返ると、これは配列を用いて実現で

                    1