-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 3.47 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>inversepolarity</title>
<link rel="stylesheet" href="reset.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="ip.css" />
<!-- <script src="https://unpkg.com/[email protected]/css-doodle.min.js"></script> -->
</head>
<body>
<div class="flex justify-center">
<div class="flex-col w-96">
<div class="mast h-10 leading-none text-white border sticky top-0 shadow-md">
<div class="flex gap-2">
<img src="ip.png" alt="inversepolarity" width="30px" />
<div class="flex-col">
<p class="text-md">inversepolarity</p>
<p class="text-xs tagline">nobody's computer</p>
</div>
</div>
</div>
<div class="flex-col underline-offset-2">
<div class="flex-col justify-between h-[100vh]">
<div class="mt-8 flex-col gap-8 shadow-md p-4">
<p class="text-md item-title mb-2">richpip</p>
<p class="text-xs item-text">
De-Googled Picture-in-Picture Chrome Extension (with subtitle support)
</p>
<p class="text-xs item-text mt-4">
By default, Chrome ships with a picture-in-picture extension that:
<ul class="list-disc list-inside space-y-2 item-text mt-4">
<li class="text-xs font-medium">Collects data on videos watched</li>
<li class="text-xs font-medium">Provides no subtitle support</li>
</ul>
</p><br />
<p class="text-xs item-text mb-4">
RichPip aims to fix these.
</p>
<a href="https://github.com/inversepolarity/richpip">github</a>
</div>
<div class="mt-8 flex-col gap-8 shadow-md p-4">
<p class="text-md item-title mb-2">video-asks-questions</p>
<p class="text-xs item-text">
Given an MP4 video, and a set of questions with options that are
initialised before the script make-interactive.js is called, the
video turns interactive with current playback time depending on
the user input.
</p><br />
<a href="https://github.com/inversepolarity/video-questions">github</a>
<a target="_blank" href="https://bit.ly/3Yi3K1V">demo</a>
</div>
<div class="mt-8 flex-col gap-8 shadow-md p-4">
<p class="text-md item-title mb-2">babel-prop-name-value-shorthand</p>
<p class="text-xs item-text">
babel plugin for convenient passing of props that have identical
names as their variables.
</p><br />
<a href="https://www.npmjs.com/package/babel-prop-name-value-shorthand">npm</a>
</div>
<div class="mt-8 flex-col gap-8 shadow-md p-4">
<p class="text-md item-title mb-2">tfhe-apple-prebuilt</p>
<p class="text-xs item-text">
<a href="https://tfhe.github.io/tfhe/">tfhe</a> binary prebuilt
for macOS/clang 15.0
</p><br />
<a href="https://github.com/inversepolarity/tfhe-appleclang-prebuilt">github</a>
</div>
</div>
</div>
</div>
</div>
<footer class="sticky bottom-0 text-white p-4 flex justify-center ">
Copyright © 2024 <a href="https://surajsharma.github.io">evenzero</a>
</footer>
</body>
</html>