Skip to content

Commit

Permalink
Update index.html of bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrgredowski committed Dec 19, 2024
1 parent 0fcc462 commit 9b905e5
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 37 deletions.
17 changes: 9 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
"request": "launch",
"module": "bucket_of_utils.qr.wifi",
"justMyCode": true,
"args": [
"--ssid",
"my_ssid",
"--password",
"my_password",
"--security",
"wpa"
]
"args": ["--ssid", "my_ssid", "--password", "my_password", "--security", "wpa"]
},
{
"name": "Split PDF",
"type": "python",
"request": "launch",
"module": "bucket_of_utils.pdf.split_pdf.split_pdf",
"justMyCode": true,
"args": []
},
// config for running all tests
{
Expand Down
6 changes: 2 additions & 4 deletions bucket_of_utils/qr/index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<html>

<head>
<title>WIFI QR code generator</title>
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-3.6.2.js"></script>
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.2.min.js"></script>
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.2.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@holoviz/panel@1.5.5/dist/panel.min.js"></script>

<style>

</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">

Expand All @@ -19,7 +17,7 @@

<body>
<div id="loading-spinner"
style="display: flex; justify-content: center; align-items: center; flex-direction: column; height: 50vh;">
style="display: flex; justify-content: center; align-items: center; flex-direction: column; height: 100vh;">
<div class="spinner-border" role="status">
<span class="visually-hidden">Loading...</span>
</div>
Expand Down
54 changes: 29 additions & 25 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
<html>
<head></head>

<body>
<h1>Bucket of utils</h1>
<ul>
<li>
PDF
<ul>
<li>
<a href="bucket_of_utils/pdf/add_title_to_first_page.html"
>Add title to first page of pdf</a
>
</li>
</ul>
</li>
<li>
QR
<ul>
<li>
<a href="bucket_of_utils/qr/index.html"
>Generate QR code for Wifi network</a
>
</li>
</ul>
</ul>
</body>
<head>
<title>Bucket of utils</title>
</head>

<body>
<h1>Bucket of utils</h1>
<ul>
<li>
PDF
<ul>
<li>
<a href="bucket_of_utils/pdf/add_title_to_first_page/index.html">Add title to first page of pdf</a>
</li>
<li>
<a href="bucket_of_utils/pdf/split_pdf/index.html" class="text-muted text-decoration-none"
style="pointer-events: none; cursor: default; color: grey">Split pdf (not implemented yet)</a>
</li>
</ul>
</li>
<li>
QR
<ul>
<li>
<a href="bucket_of_utils/qr/index.html">Generate QR code for Wifi network</a>
</li>
</ul>
</ul>
</body>

</html>

0 comments on commit 9b905e5

Please sign in to comment.