personalweb

Archived
git clone git://git.wimdupont.com/personalweb.git
Log | Files | Refs | README | LICENSE

links.html (3033B)


      1 <!DOCTYPE html>
      2 <html lang="en" xmlns:th="http://www.thymeleaf.org">
      3 <head th:replace="~{header :: head}"></head>
      4 <head>
      5     <title>Links - Wim Dupont</title>
      6 </head>
      7 <body>
      8 <div class="container wrapper">
      9     <header>
     10         <h1>Links</h1>
     11         <div th:insert="~{navigation}"/>
     12     </header>
     13     <p class="subheader">Links to websites on various topics</p>
     14     <ul>
     15         <li><a target="_blank" th:href="@{{baseUrl}/swagger-ui.html(baseUrl=${@serverUrl})}" title="API">
     16             <img alt="OpenAPI" title="API" src="/images/swagger.svg" width="12" height="12">
     17             API</a>
     18             - OpenAPI Swagger page with various operations for random number generation etc.
     19         </li>
     20         <li><a target="_blank" href="https://gitlab.com/users/WimDupont/projects" title="Git">
     21             <img alt="Git" title="Git" src="/images/git.png" width="12" height="12">
     22             Git</a>
     23             - Git page with source code of this website and other projects
     24         </li>
     25         <li><a href="/rss.xml" title="RSS Feed">
     26             <img alt="RSS Feed" title="RSS Feed" src="/images/rssfeed.png" width="12" height="12">
     27             RSS</a>
     28             - Feed of the blog page
     29         </li>
     30     </ul>
     31     <h3>Privacy</h3>
     32     <ul>
     33         <li>
     34             <a target="_blank" href="https://privacyguides.org" title="Privacy Guides">Privacy Guides</a>
     35             - useful information about digital privacy including software recommendations and tips
     36         </li>
     37     </ul>
     38 
     39     <h3>Software</h3>
     40     <ul>
     41         <li>
     42             <a target="_blank" href="https://www.fsf.org/" title="Free Software Foundation">Free Software Foundation</a>
     43             - FSF homepage, great resource to get to know Free/Libre Software and its importance
     44         </li>
     45         <li>
     46             <a target="_blank" href="https://www.vim.org/" title="Vim">Vim</a>
     47             - highly customizable and efficient text editor
     48         </li>
     49         <li>
     50             <a target="_blank" href="https://gnupg.org/" title="GnuPG">GnuPG</a>
     51             - encryption software suite using the OpenPGP standard
     52         </li>
     53         <li>
     54             <a target="_blank" href="https://www.passwordstore.org/" title="Password Store">Password Store</a>
     55             - simple and extensible password manager
     56         </li>
     57         <li>
     58             <a target="_blank" href="https://www.signal.org/" title="Signal">Signal</a>
     59             - encrypted instant messaging service
     60         </li>
     61         <li>
     62             <a target="_blank" href="https://newsboat.org/" title="Newsboat">Newsboat</a>
     63             - CLI RSS/Atom feed reader
     64         </li>
     65         <li>
     66             <a target="_blank" href="https://odysee.com/" title="Odysee">Odysee</a>
     67             - video-sharing website that uses the decentralized LBRY network
     68         </li>
     69         <li>
     70             <a target="_blank" href="https://invidious.io/" title="Invidious">Invidious</a>
     71             - privacy focused open software alternative front-end to YouTube
     72         </li>
     73     </ul>
     74 </div>
     75 </body>
     76 </html>