{"id":40467040,"url":"https://github.com/kangwonlee/2018pycpp","last_synced_at":"2026-01-20T18:12:36.007Z","repository":{"id":37745537,"uuid":"147880912","full_name":"kangwonlee/2018pycpp","owner":"kangwonlee","description":"2018 Python C++ Training","archived":false,"fork":false,"pushed_at":"2025-09-06T14:03:20.000Z","size":1108,"stargazers_count":2,"open_issues_count":23,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-06T16:06:46.980Z","etag":null,"topics":["bash","cpp","python"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kangwonlee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-09-07T22:33:37.000Z","updated_at":"2025-09-06T14:03:23.000Z","dependencies_parsed_at":"2025-06-05T03:23:33.539Z","dependency_job_id":"68c9a106-ff79-4fdb-b558-ffdd460bd6b1","html_url":"https://github.com/kangwonlee/2018pycpp","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/kangwonlee/2018pycpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kangwonlee%2F2018pycpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kangwonlee%2F2018pycpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kangwonlee%2F2018pycpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kangwonlee%2F2018pycpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kangwonlee","download_url":"https://codeload.github.com/kangwonlee/2018pycpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kangwonlee%2F2018pycpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28608299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","cpp","python"],"created_at":"2026-01-20T18:12:35.403Z","updated_at":"2026-01-20T18:12:35.998Z","avatar_url":"https://github.com/kangwonlee.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/kangwonlee/2018pycpp/actions/workflows/conda_env_test.yml/badge.svg)](https://github.com/kangwonlee/2018pycpp/actions/workflows/conda_env_test.yml)\n\n# Python and C/C++ Tutorial : A Comparative Approach\n\n## Overview\n\n* Audiences : Starting graduate students\n\n* Programming language : Python and C/C++\n\n* Operating system : Linux\n\n\n## Contents\n\n| Ch  | Sec | Subject                           | Linux | Python | C++ |\n|:---:|:---:|:----------------------------------:|:-----:|:------:|:---:|\n|  [00](00.python-c-cpp/)  |  [00](00.python-c-cpp/00.python.ipynb)  | Overview\u003cbr\u003eIntroducing Linux bash |   ✓   |        |     |\n|     |  [10](00.python-c-cpp/10.c-cpp.ipynb)  | Introducing Python\u003cbr\u003eInstalling [Anaconda](https://www.anaconda.com/download/) \u003cbr\u003e`print('Hello World!')`\u003cbr\u003e`python hello.py` |       |   ✓    |     |\n|     |  [20](00.python-c-cpp/20.bash.ipynb)  | Introducing C/C++\u003cbr\u003eInstalling `g++` and `make`\u003cbr\u003e`printf(\"Hello World!\\n\");` / `cout \u003c\u003c \"Hello World\\n\";`\u003cbr\u003e`g++ -Wall hello.cpp -o hello \u0026\u0026 ./hello` |       |        |  ✓  |\n|  [10](10.data-types-and-operators/)  |  [00](10.data-types-and-operators/00.git.ipynb)  | Introducing [git](https://git-scm.com/)\u003cbr\u003e`git clone`, `git config --list`, `git status`, `git log`, `git add -p`, `git commit -m '\u003cmessage\u003e'`, `git push -u \u003cremote\u003e \u003cbranch\u003e`\u003cbr\u003e[github](https://www.github.com), and [travis-ci](https://www.travis-ci.org) |   ✓   |        |     |\n|     |  [10](10.data-types-and-operators/10.types.ipynb)  | Representing Data types \u003cbr\u003e integers and 2's complements \u003cbr\u003e floating point and complex numbers \u003cbr\u003e characters and strings\u003cbr\u003e`list` and `tuple` vs array\u003cbr\u003e`dict` vs `struct` and `union` |       |   ✓    |  ✓  |\n|     |  [20](10.data-types-and-operators/20.operators.ipynb)  | Operating\u003cbr\u003e`+` `-` `*` `/`, `%`, {`++`, `--`}, (`//`, `**`)\u003cbr\u003e`+=` and `*=` vs assembly\u003cbr\u003e`\u003c\u003c`, `\u003e\u003e`, `\\|`, `\u0026` |       |   ✓    |  ✓  |\n|  [20](20.control-flow/)  |  [00](20.control-flow/00.if.ipynb)  | *Control*ling flow : conditional\u003cbr\u003e`if`-`else if`-`else`\u003cbr\u003e`switch`-`case` |       |   ✓    |  ✓  |\n|     |  [10](20.control-flow/10.for-while.ipynb)  | *Control*ling flow : repetition\u003cbr\u003e`for`\u003cbr\u003e`while`\u003cbr\u003e`do while` |       |   ✓    |  ✓  |\n|     |  [20](20.control-flow/20.functions.ipynb)  | Wrapping into Functions and calling by value      |       |   ✓    |  ✓  |\n|  [30](30.pointers-and-memory-management/)  |  [00](30.pointers-and-memory-management/00.pointers.ipynb)  | Interpreting Pointers and *Call*ing *by Reference* |       |        |  ✓  |\n|     |  [10](30.pointers-and-memory-management/10.calloc-free.ipynb)  | Managing memory with `malloc` and `free` |       |        |  ✓  |\n|     |  [20](30.pointers-and-memory-management/20.python.list-reference.ipynb)  | Opening the hood of python : `list` of `list`s and references |       |   ✓    |     |\n|  [40](40.object-oriented-programming/)  |  [00](40.object-oriented-programming/00.module-namespace.ipynb)  | Modularizing and `namespace`s |       |   ✓    |  ✓  |\n|     |  [10](40.object-oriented-programming/10.class.ipynb)  | Instantiating and inheriting `class`es |       |   ✓    |  ✓  |\n|     |  [20](40.object-oriented-programming/20.private-protected-public.ipynb)  | Controlling access to Attributes |       |   ✓    |  ✓  |\n|     |  [30](40.object-oriented-programming/30.state-space-in-class.ipynb)  | State space representation in class |       |   ✓    |     |\n|     |  [40](40.object-oriented-programming/40.dataclasses.dataclass.ipynb)  | Dataclass |       |   ✓    |     |\n|  [50](50.under-the-hood/)  |  [00](50.under-the-hood/00.gdb.ipynb)  | `gdb` debugger |       |        |  ✓   |\n|     |  [10](50.under-the-hood/10.cython.ipynb)  | Bridging between Python \u0026 C/C++ : [`cython`](https://cython.org) |       |   ✓    |  ✓  |\n|     |  [20](50.under-the-hood/20.assembly.md)  | Programming in lower level |       |        |  ✓   |\n|     |  [22](50.under-the-hood/22.working_with_bits_operators.ipynb)  | Working with bits : operators |       |        |  ✓   |\n|     |  [24](50.under-the-hood/24.working_with_bits_operators_results.md)  | Results from \"Working with bits\" |       |        |  ✓   |\n|     |  [28](50.under-the-hood/28.working_with_bits_struct_union.ipynb)  | Working with bits : `struct` and `union` |       |        |  ✓   |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkangwonlee%2F2018pycpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkangwonlee%2F2018pycpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkangwonlee%2F2018pycpp/lists"}