Skip to content

Commit c37bcd3

Browse files
committed
Update descriptions for the technologies.
1 parent aec5e6b commit c37bcd3

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

content/technologies/daisy-ui.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Daisy UI"
33
date: 2023-10-02
4+
description: "DaisyUI is a library that enhances Tailwind CSS with pre-built components, making UI design faster and more customizable."
45
tags:
56
- frontend
67
---

content/technologies/grpc.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "gRPC"
33
date: "2023-09-30"
4+
description: "gRPC is a high-performance framework developed by Google for efficient communication in distributed systems, using Protocol Buffers and supporting bidirectional streaming."
45
tags:
56
- backend
67
---

content/technologies/langchain.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Langchain"
33
date: "2023-10-02"
4+
description: "LangChain simplifies NLP development by offering tools for data loading, text splitting, vector storage, memory, and agent creation, allowing developers to build powerful, context-aware, and dynamic language models."
45
tags:
56
- backend
67
- ai

content/technologies/pocketbase.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "PocketBase"
33
date: "2023-10-02"
4+
description: "PocketBase is an open-source backend solution for efficient data management, offering a scalable, secure environment for storing and analyzing data, with easy setup and integration, ideal for prototypes and medium-sized projects."
45
tags:
56
- backend
67
---

content/technologies/skeleton.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Skeleton"
33
date: "2023-10-02"
4+
description: "Skeleton UI is a lightweight, responsive CSS framework that provides a minimalistic structure and grid system, making it easy to create fast, customizable, and mobile-friendly web layouts."
45
tags:
56
- svelte
67
- frontend

content/technologies/websockets.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Websockets"
33
date: "2023-09-30"
4+
description: "Websockets provide a bi-directional, full-duplex connection for real-time communication between clients and servers, ideal for applications like multiplayer games."
45
tags:
56
- backend
67
---
@@ -23,5 +24,11 @@ Looking back on it now, using websockets would be perfect for this as the connec
2324
A long lasting connection is one factor that should be taken into account for websockets as they are more expensive to initiate but each subsequent transfer of information is cheaper than the average HTTP connection.
2425
It would also be faster as it would have the least amount of latency because the server can decide when the round is over and can send an update to all of the clients.
2526

27+
## My Hide and Seek Game
28+
29+
I've been working on a hide and seek game where players are split into seekers and hiders. The game uses Websockets to allow real-time communication between clients and the server, ensuring smooth gameplay. As the hiders try to evade capture, the seekers are notified immediately when they get closer, creating a dynamic and engaging experience. The game is designed to be lightweight yet interactive, providing a fun and seamless multiplayer experience.
30+
31+
Check it out here: [Hide and Seek]({{< ref "/projects/hide-and-seek" >}}).
32+
2633
## Some useful resources
2734
* Amazing YouTube channel from a backend/network engineer guru: https://www.youtube.com/watch?v=2Nt-ZrNP22A&ab_channel=HusseinNasser

0 commit comments

Comments
 (0)