-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
562 lines (508 loc) · 23.9 KB
/
Copy pathindex.html
File metadata and controls
562 lines (508 loc) · 23.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tools Collection</title>
<link rel="icon" href="https://nuwanjanaka.info/wp-content/uploads/2016/10/cropped-SiteIcon1-180x180.png" type="image/png">
<style>
:root {
--primary-color: #4a6fa5;
--hover-color: #3a5985;
--text-color: #333;
--card-bg: #f9f9f9;
--card-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: #f5f7fa;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.home-menu {
display: flex;
align-items: center;
position: absolute;
top: 20px;
left: 20px;
background-color: white;
padding: 8px 12px;
border-radius: 6px;
box-shadow: var(--card-shadow);
transition: all 0.3s ease;
text-decoration: none;
color: var(--primary-color);
}
.home-menu:hover {
background-color: var(--primary-color);
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.home-menu .icon {
margin-right: 8px;
display: flex;
align-items: center;
}
header {
text-align: center;
margin-bottom: 40px;
padding: 20px 0;
border-bottom: 1px solid #eee;
position: relative;
}
h1 {
color: var(--primary-color);
margin-bottom: 10px;
}
h2 {
color: var(--primary-color);
margin-bottom: 5px;
}
.subtitle {
color: #666;
font-size: 1.1rem;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 30px;
}
.tool-card {
background-color: var(--card-bg);
border-radius: 8px;
box-shadow: var(--card-shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.tool-card a {
display: block;
text-decoration: none;
color: inherit;
padding: 25px 20px;
}
.tool-icon {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
font-size: 3rem;
color: var(--primary-color);
}
.tool-icon svg {
width: 60px;
height: 60px;
}
.tool-name {
font-size: 1.25rem;
font-weight: 600;
text-align: center;
margin-bottom: 10px;
color: var(--primary-color);
}
.tool-description {
color: #666;
text-align: center;
font-size: 0.95rem;
}
.coming-soon {
opacity: 0.6;
position: relative;
}
.coming-soon::after {
content: 'Coming Soon';
position: absolute;
top: 10px;
right: 10px;
background-color: var(--primary-color);
color: white;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: bold;
}
footer {
margin-top: 50px;
text-align: center;
padding: 20px 0;
color: #666;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.tools-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.tool-icon {
font-size: 2.5rem;
}
.tool-icon svg {
width: 50px;
height: 50px;
}
.home-menu {
position: relative;
top: 0;
left: 0;
margin: 0 auto 20px;
width: fit-content;
justify-content: center;
}
}
@media (max-width: 480px) {
body {
padding: 15px;
}
header {
margin-bottom: 30px;
}
.tools-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Home Menu Link -->
<a href="https://nuwanjanaka.info" class="home-menu">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
</span>
<span>Back to Home</span>
</a>
<header>
<h1>Software/Tools Collection</h1>
<p class="subtitle">Useful utilities to enhance your workflow</p>
</header>
<header>
<h2>AR/Smart Glasses Related Tools</h2>
<ul>
<li>
<a href="https://github.com/TOM-Platform" target="_blank" rel="noopener noreferrer">
TOM Platform: A Development Platform For Wearable Intelligent Assistants (Python, Unity, Vue.js, Android)
</a>
</li>
<li>
<a href="https://github.com/Synteraction-Lab/PilotAR" target="_blank" rel="noopener noreferrer">
PilotAR: A toolkit for experimenters to conduct pilot studies more efficiently with AR smart glasses (Python, HoloLens)
</a>
</li>
</ul>
</header>
<header>
<h2>Other Tools</h2>
<ul>
<li>
<a href="https://github.com/janakanuwan" target="_blank" rel="noopener noreferrer">
Personal Repository
</a>
</li>
<li>
<a href="https://github.com/Synteraction-Lab" target="_blank" rel="noopener noreferrer">
Synteraction Lab Repository
</a>
</li>
<li>
<a href="https://github.com/NUS-SSI" target="_blank" rel="noopener noreferrer">
Smart Systems Institute Repository
</a>
</li>
<li>
<a href="https://runzecai.com/tools" target="_blank" rel="noopener noreferrer">
Cai Runze (Inspired the following browser-based tool development)
</a>
</li>
</ul>
</header>
<header>
<h2>
Browser-Based Tools
</h2>
<p class="subtitle">
<strong>Note:</strong> All tools are static web pages that <strong>run locally</strong> in your browser. If preferred, you can also download them as HTML files and run them offline or clone from <a href="https://github.com/janakanuwan/Web-Tools" target="_blank" rel="noopener noreferrer">Web-Tools</a> (MIT License).</p>
<!-- <p class="subtitle">[Acknowledgement: Developing tools were inspired by <a href="https://runzecai.com/tools" target="_blank" rel="noopener noreferrer">https://runzecai.com/tools</a> !]</p>-->
</header>
<div class="tools-grid">
<!-- CSV to BibTeX Converter Tool -->
<div class="tool-card">
<a href="./csv_to_bibtex/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 4h16v2H4zM4 8h16v2H4zM4 12h10v2H4zM4 16h16v2H4z"/>
</svg>
</div>
<h3 class="tool-name">CSV to BibTeX</h3>
<p class="tool-description">Convert CSV reference files into downloadable BibTeX format</p>
</a>
</div>
<!-- Reference Verification Tool -->
<div class="tool-card">
<a href="./reference_verification/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<h3 class="tool-name">Reference Verification (Citation Checking)</h3>
<p class="tool-description">Verify and validate research paper references with automated checks</p>
</a>
</div>
<!-- Merge submission & reviews Excels -->
<div class="tool-card">
<a href="./pcs_excel_merger/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M8 6h13"></path>
<path d="M8 12h13"></path>
<path d="M8 18h13"></path>
<path d="M3 6h.01"></path>
<path d="M3 12h.01"></path>
<path d="M3 18h.01"></path>
<path d="M12 2v20"></path> <path d="M16 14l-4 4-4-4"></path> </svg>
</div>
<h3 class="tool-name">PCS Review Merger</h3>
<p class="tool-description">Merge PCS Submission and Review Excel files locally based on Paper IDs.</p>
</a>
</div>
<!-- Excel File Search Tool -->
<div class="tool-card">
<a href="./search_excel/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<circle cx="10" cy="14" r="2"></circle>
<line x1="20" y1="20" x2="13" y2="13"></line>
</svg>
</div>
<h3 class="tool-name">Excel File Search Tool</h3>
<p class="tool-description">Quickly search and extract data from Excel files</p>
</a>
</div>
<!-- Excel Column Compare Tool -->
<div class="tool-card">
<a href="./compare_excel_columns/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="12" y1="3" x2="12" y2="21"></line>
<line x1="3" y1="9" x2="21" y2="9"></line>
<line x1="3" y1="15" x2="21" y2="15"></line>
</svg>
</div>
<h3 class="tool-name">Column Comparison</h3>
<p class="tool-description">Compare values between columns from two uploaded files to find unique entries.</p>
</a>
</div>
<!-- Excel Sheet Compare Tool -->
<div class="tool-card">
<a href="./compare_excel_sheets/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="3" y1="9" x2="21" y2="9"></line>
<line x1="9" y1="21" x2="9" y2="9"></line>
<path d="M14 14l2 2l4-4"></path>
</svg>
</div>
<h3 class="tool-name">Sheet Comparison Tool</h3>
<p class="tool-description">Compare data cell-by-cell between two Excel/CSV files to detect exact differences.</p>
</a>
</div>
<!-- Qualitative analysis -->
<div class="tool-card">
<a href="./qualitative_analysis/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<circle cx="10" cy="9" r="2"></circle>
</svg>
</div>
<h3 class="tool-name">AI Qualitative Analysis</h3>
<p class="tool-description">Multi-agent thematic analysis, codebook generation, and automated Inter-Rater Reliability computation</p>
</a>
</div>
<!-- Download Papers via Proxy Tool -->
<div class="tool-card">
<a href="./download_papers/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="7 10 12 15 17 10"></polyline>
<line x1="12" y1="15" x2="12" y2="3"></line>
<circle cx="18" cy="8" r="3"></circle>
<path d="M6 2h12"></path>
</svg>
</div>
<h3 class="tool-name">Download Papers via Proxy</h3>
<p class="tool-description">Download academic papers and documents using proxy settings to get access</p>
</a>
</div>
<!-- AI Meeting Summarizer -->
<div class="tool-card">
<a href="./meeting_summary/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-brain-circuit">
<path d="M12 5a3 3 0 1 0-5.993.142"/>
<path d="M18 5a3 3 0 1 0-5.993.142"/>
<path d="M12 12a3 3 0 1 0-5.993.142"/>
<path d="M18 12a3 3 0 1 0-5.993.142"/>
<path d="M12 19a3 3 0 1 0-5.993.142"/>
<path d="M18 19a3 3 0 1 0-5.993.142"/>
<path d="M6 5h.01"/>
<path d="M12 5h.01"/>
<path d="M18 5h.01"/>
<path d="M6 12h.01"/>
<path d="M12 12h.01"/>
<path d="M18 12h.01"/>
<path d="M6 19h.01"/>
<path d="M12 19h.01"/>
<path d="M18 19h.01"/>
<path d="M21 12h-3"/>
<path d="M3 12h3"/>
<path d="M9 5v7"/>
<path d="M15 5v7"/>
<path d="M9 12v7"/>
<path d="M15 12v7"/>
</svg>
</div>
<h3 class="tool-name">AI Meeting Summarizer</h3>
<p class="tool-description">Uses Gemini AI to summarize meeting transcripts with customizable prompts.</p>
</a>
</div>
<!-- Markdown to Latex -->
<div class="tool-card">
<a href="./markdown_to_latex/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<path d="M10 13l-2 2 2 2"></path>
<path d="M14 13l2 2-2 2"></path>
</svg>
</div>
<h3 class="tool-name">Markdown to LaTeX</h3>
<p class="tool-description">Convert Markdown text, headings, lists, and tables into clean academic-ready LaTeX code.</p>
</a>
</div>
<!-- Extend CSV/Excel with BibTex -->
<div class="tool-card">
<a href="./excel_bibtex_extender/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<path d="M12 18v-6"></path>
<path d="M9 15h6"></path>
</svg>
</div>
<h3 class="tool-name">Dataset BibTeX Extender</h3>
<p class="tool-description">Extend an Excel or CSV dataset by adding columns parsed from a BibTeX file</p>
</a>
</div>
<!-- Extract Sheet values -->
<div class="tool-card">
<a href="./extract_sheet_values/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="3" y1="9" x2="21" y2="9"></line>
<line x1="9" y1="21" x2="9" y2="9"></line>
<path d="M14 13l-2 2 2 2"></path>
<path d="M18 13l2 2-2 2"></path>
</svg>
</div>
<h3 class="tool-name">Data Extractor</h3>
<p class="tool-description">Extract secondary and tertiary data based on a list of primary column lookup keys.</p>
</a>
</div>
<!-- PDF Recommendation Tool -->
<div class="tool-card">
<a href="./pdf_recommendation/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
</div>
<h3 class="tool-name">PDF Recommendation Generator</h3>
<p class="tool-description">Generate personalized PDF recommendation letters from Word templates and Excel data</p>
</a>
</div>
<!-- PDF Certificate Generator Tool -->
<div class="tool-card">
<a href="./pdf_certificate/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path>
<polyline points="17 21 17 13 7 13 7 21"></polyline>
<polyline points="7 3 7 8 15 8"></polyline>
<rect x="8" y="15" width="8" height="4" rx="1"></rect>
</svg>
</div>
<h3 class="tool-name">PDF Certificate Generator</h3>
<p class="tool-description">Create PDF certificates based on PowerPoint templates and Excel data</p>
</a>
</div>
<!-- Text to Speech Tool -->
<div class="tool-card">
<a href="./text_to_speech/">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path>
<path d="M19 10v2a7 7 0 0 1-14 0v-2"></path>
<line x1="12" y1="19" x2="12" y2="23"></line>
<line x1="8" y1="23" x2="16" y2="23"></line>
</svg>
</div>
<h3 class="tool-name">Text to Speech Converter</h3>
<p class="tool-description">Convert text to natural-sounding speech using browser APIs or OpenAI</p>
</a>
</div>
<!-- Placeholder for future tools -->
<div class="tool-card coming-soon">
<a href="javascript:void(0)">
<div class="tool-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<line x1="12" y1="8" x2="12" y2="16"></line>
<line x1="8" y1="12" x2="16" y2="12"></line>
</svg>
</div>
<h3 class="tool-name">New Tool</h3>
<p class="tool-description">More tools will be added soon</p>
</a>
</div>
</div>
<footer>
<p>
[2025] Disclaimer: These browser-based tools are developed with the use of GenAI tools. Use them at your own risk — the developer assumes no responsibility for any data loss, errors, or outcomes resulting from their use.
</p>
</footer>
</div>
</body>
</html>