Skip to content

Instantly share code, notes, and snippets.

View dudung's full-sized avatar

Sparisoma Viridi dudung

View GitHub Profile
@dudung
dudung / final_template.ipynb
Created June 15, 2024 02:24
Template for a final assignment
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dudung
dudung / view_data.ipynb
Last active June 12, 2024 21:17
Simple way to access all data in folders for student project
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
(tf) V:\>pip install -r tf\requirements.txt
Collecting absl-py==2.1.0 (from -r tf\requirements.txt (line 1))
Downloading absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)
Collecting anyio==4.3.0 (from -r tf\requirements.txt (line 2))
Downloading anyio-4.3.0-py3-none-any.whl.metadata (4.6 kB)
Collecting argon2-cffi==23.1.0 (from -r tf\requirements.txt (line 3))
Using cached argon2_cffi-23.1.0-py3-none-any.whl.metadata (5.2 kB)
Collecting argon2-cffi-bindings==21.2.0 (from -r tf\requirements.txt (line 4))
Downloading argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl.metadata (6.7 kB)
Collecting arrow==1.3.0 (from -r tf\requirements.txt (line 5))
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

$$ x_{1,2} = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$

flowchart TD;
    B --> I --> o1a
    o1b --> P --> o2a
    o2b --> O --> E
    B(["Begin"])
    I[\"Input"\]
    o1a(("1"))
    o1b(("1"))
 P["Process"]
@dudung
dudung / hello_world.py
Last active July 24, 2023 22:19
hello_world.py
print("Hello, World!")