From 1d99879eae5cdd8daea0d287538782a2ba01811e Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 10 Nov 2022 09:17:34 +0000 Subject: [PATCH] sources --- main.ipynb | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 main.ipynb diff --git a/main.ipynb b/main.ipynb new file mode 100644 index 0000000..9e6cb58 --- /dev/null +++ b/main.ipynb @@ -0,0 +1,93 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "9fdeb776-f17c-42a5-84fb-765c19d5c6c3", + "metadata": { + "tags": [] + }, + "source": [ + "# Learning materials, sources, references" + ] + }, + { + "cell_type": "markdown", + "id": "b3969792-c3ea-490b-8f5a-463da33ce0c4", + "metadata": { + "tags": [] + }, + "source": [ + "## Python-specific" + ] + }, + { + "cell_type": "markdown", + "id": "4ada8a3b-89e3-41ca-8748-9c8746b0b563", + "metadata": {}, + "source": [ + "* https://docs.python.org/3/\n", + " * https://docs.python.org/3/tutorial/ \\\n", + " read through this\n", + " * https://docs.python.org/3/library/ \\\n", + " before you start implementing something or looking for pip packages\n", + " * https://docs.python.org/3/library/ctypes.html \\\n", + " to load C-like DLLs\n", + " * https://docs.python.org/3/extending/ \\\n", + " if you need C\n", + "* https://wiki.python.org/moin/FrontPage \\\n", + " at the moment of writing, haven't read much of it" + ] + }, + { + "cell_type": "markdown", + "id": "5a56ce30-37b4-463f-a446-895198dc0db8", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "# Working with files" + ] + }, + { + "cell_type": "markdown", + "id": "fe6dcf16-522a-4b20-99b6-54b92d59e19e", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "# Last section, so the empty cell does not get stuck with previous sections" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8274518c-661b-4907-b249-3da832753646", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}