Skip to content

Instantly share code, notes, and snippets.

View dudung's full-sized avatar

Sparisoma Viridi dudung

View GitHub Profile
@dudung
dudung / index.html
Last active October 5, 2024 00:31
Entry page of a Hugo site
{{ define "main" }}
<main aria-role="main">
<header class="homepage-header">
<h1>from codes to granular systems</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{ . }}</span>
{{ end }}
</header>
<div class="homepage-content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
@dudung
dudung / hello_world.ipynb
Created September 26, 2024 01:20
Hello world for FI2151
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@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"]