this repo has no description
0
fork

Configure Feed

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

at main 81 lines 2.5 kB view raw
1<template> 2 <section> 3 <h2>My projects</h2> 4 5 <ul> 6 <li> 7 <a 8 href="https://failwell.io" 9 target="_blank" 10 rel="noopener noreferrer" 11 >Fail Well</a 12 >: a tool designed to help developers and knowledge workers understand 13 the gap between their expectations and reality. 14 </li> 15 <li> 16 <a 17 href="https://thinking-people-system.house/" 18 target="_blank" 19 rel="noopener noreferrer" 20 >Thinking People System</a 21 > 22 is a website with exploration in mind. The TPS is a framework to satisfy 23 the client with the growth of people making the product. I still have to 24 understand it - in the process, I make explorable article about the 25 concepts like 26 <a 27 href="https://thinking-people-system.house/pull-system" 28 target="_blank" 29 rel="noopener noreferrer" 30 >the Pull System</a 31 >. 32 </li> 33 <li> 34 <a 35 href="https://litenote.space/" 36 target="_blank" 37 rel="noopener noreferrer" 38 >Lite note</a 39 >: highly inspired by 40 <a 41 href="https://notes.andymatuschak.org/About_these_notes" 42 target="_blank" 43 rel="noopener noreferrer" 44 >Andy Matuschak notes' website</a 45 >, I wanted to have a clean design where I can explore my notes I take 46 on VS Code. 47 </li> 48 49 <li> 50 <a 51 href="https://www.npmjs.com/package/retrobus" 52 target="_blank" 53 rel="noopener noreferrer" 54 >retrobus</a 55 >: an event bus lib I made for fun with a little extra retroactive 56 feature. 57 </li> 58 59 <li> 60 <a 61 href="https://marketplace.visualstudio.com/items?itemName=jcalixte.doc-jit" 62 target="_blank" 63 rel="noopener noreferrer" 64 >Doc-JIT</a 65 >: <i>just in time</i> documentation. It displays the right 66 documentation when you need it. Doc-JIT is a VS Code extension for 67 developers to open the most relevant documentation when coding features. 68 </li> 69 70 <li> 71 <a 72 href="https://www.npmjs.com/package/vue-pwa-asset-generator" 73 target="_blank" 74 rel="noopener noreferrer" 75 >Vue PWA Asset generator</a 76 >: a cli command (now a bit out of date) that generates the multiple 77 favicons needed for a Progressive Web App. 78 </li> 79 </ul> 80 </section> 81</template>