This is my personal website
1
fork

Configure Feed

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

update README.md and deps.ts, add server start message

+16 -3
+9 -1
README.md
··· 2 2 3 3 [![ci](https://github.com/tsirysndr/me/actions/workflows/deploy.yml/badge.svg)](https://github.com/tsirysndr/me/actions/workflows/deploy.yml) 4 4 5 - This is my personal website. I'm a software engineer and I'm passionate about technology and innovation. I'm also a fan of entrepreneurship and I'm always looking for new opportunities to learn and grow. 5 + This is my personal website. I'm a software engineer and I'm passionate about technology and innovation. I'm also a fan of entrepreneurship and I'm always looking for new opportunities to learn and grow. I'm currently working on a few projects and I'm always looking for new opportunities to collaborate with other people. 6 + 7 + See this website live at [tsiry-sandratraina.com](https://tsiry-sandratraina.com). 8 + 9 + ## Usage 10 + 11 + ```bash 12 + deno run -A main.tsx 13 + ```
+1
deno.lock
··· 24 24 "https://deno.land/std@0.190.0/async/retry.ts": "c9248325ec08cc2cceb7618472e77589a51a25cee460e07b6096be34966c2ead", 25 25 "https://deno.land/std@0.190.0/async/tee.ts": "47e42d35f622650b02234d43803d0383a89eb4387e1b83b5a40106d18ae36757", 26 26 "https://deno.land/std@0.190.0/http/server.ts": "1b23463b5b36e4eebc495417f6af47a6f7d52e3294827a1226d2a1aab23d9d20", 27 + "https://deno.land/std@0.192.0/fmt/colors.ts": "d67e3cd9f472535241a8e410d33423980bec45047e343577554d3356e1f0ef4e", 27 28 "https://deno.land/x/htm@0.2.1/html.tsx": "afcf0500d9199e8efe6877d9e7bf4f7907d0bba09906b6036cfe5e90458083b3", 28 29 "https://deno.land/x/htm@0.2.1/jsx.ts": "2dfbc2b208981b9348aee02494ba064eac72f686d2e5ecc19d7f3fcdb9734e3d", 29 30 "https://deno.land/x/htm@0.2.1/mod.ts": "d930056a7c8c645bea5f9c116d65bc309d12cfebafa8db98f7c406e1984caaec"
+1
deps.ts
··· 3 3 export { html, h }; 4 4 import dayjs from "npm:dayjs"; 5 5 export { dayjs }; 6 + export { cyan } from "https://deno.land/std@0.192.0/fmt/colors.ts";
+5 -2
main.tsx
··· 1 1 /** @jsx h */ 2 - import { serve, html, h, dayjs } from "./deps.ts"; 2 + import { serve, html, h, dayjs, cyan } from "./deps.ts"; 3 3 import { github } from "./src/github.tsx"; 4 4 import { linkedin } from "./src/linkedin.tsx"; 5 5 import { twitter } from "./src/twitter.tsx"; ··· 100 100 ), 101 101 }); 102 102 103 - serve(handler); 103 + serve(handler, { 104 + onListen: () => 105 + console.log(`Server started on ${cyan("http://localhost:8000")} 🚀`), 106 + });