this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

modify links and readme

+8 -8
+4 -2
README.md
··· 3 3 DuckDuckGo's bang redirects are too slow. Add the following URL as a custom search engine to your browser. Enables all of DuckDuckGo's bangs to work, but much faster. 4 4 5 5 ``` 6 - https://unduck.link?q=%s 6 + https://unduck.jnz.ski?q=%s 7 7 ``` 8 8 9 9 ## How is it that much faster? 10 10 11 + Forked from https://github.com/t3dotgg/unduck 12 + 11 13 DuckDuckGo does their redirects server side. Their DNS is...not always great. Result is that it often takes ages. 12 14 13 - I solved this by doing all of the work client side. Once you've went to https://unduck.link once, the JS is all cache'd and will never need to be downloaded again. Your device does the redirects, not me. 15 + Theo solved this by doing all of the work client side. Once you've went to https://unduck.link once, the JS is all cache'd and will never need to be downloaded again. Your device does the redirects, not me.
+1 -1
index.html
··· 26 26 /> 27 27 <script 28 28 defer 29 - data-domain="unduck.link" 29 + data-domain="unduck.jnz.ski" 30 30 src="https://plausible.io/js/script.js" 31 31 ></script> 32 32 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+3 -5
src/main.ts
··· 12 12 <input 13 13 type="text" 14 14 class="url-input" 15 - value="https://unduck.link?q=%s" 15 + value="https://unduck.jnz.ski?q=%s" 16 16 readonly 17 17 /> 18 18 <button class="copy-button"> ··· 21 21 </div> 22 22 </div> 23 23 <footer class="footer"> 24 - <a href="https://t3.chat" target="_blank">t3.chat</a> 25 - 26 - <a href="https://x.com/theo" target="_blank">theo</a> 24 + <a href="https://bsky.app/profile/jnz.ski" target="_blank">jonas</a> 27 25 28 - <a href="https://github.com/t3dotgg/unduck" target="_blank">github</a> 26 + <a href="https://github.com/jnzd/unduck" target="_blank">github</a> 29 27 </footer> 30 28 </div> 31 29 `;