Skip to content

Commit 258f53a

Browse files
committed
2 parents c0b5e2d + 5a3058f commit 258f53a

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

_posts/2023-10-27-microsoft-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Mocrosoft Open-Source Projects"
2+
title: "Microsoft Open-Source Projects"
33
date: 2023-10-27
44
---
55

6-
# This page contains the list of microsoft project that can change your life :)
6+
# This page contains the list of Microsoft project that can change your life :)
77

88
- [Presidio](https://microsoft.github.io/presidio/)
99
- [RulesEngine](https://microsoft.github.io/RulesEngine/)

_posts/2024-02-21-containers.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ Try this link in order to install Docker on Windows 10
1515
1. Set environmental variable HTTP_PROXY
1616
2. Restart the server
1717

18-
``` PS
18+
``` bash
1919
Restart-Service docker
2020
```
2121

2222
## How run login
23-
``` PS
23+
``` bash
2424
docker login
2525
```
2626

@@ -153,8 +153,7 @@ docker pull microsoft/nanoserver
153153
docker pull genocscontainerregistry.azurecr.io/solomonbesearch:60
154154

155155
# Run the image
156-
docker run genocscontainerregistry.azurecr.io/solomonbesearch:60 -p 80:5001
157-
156+
docker run -p 80:5001 giulionocco/bayes:1.0.0
158157

159158
# Before start check if the network exist
160159
# otherwise remove it or
@@ -176,7 +175,7 @@ docker exec -it redis bash
176175
docker build -t genocs.qrcode .
177176

178177
# Create the image tag
179-
docker tag genocs.qrcode genocs/identity
178+
docker tag genocs.qrcode genocs/qrcode
180179
```
181180

182181
### Push the images to the remote repository (Docker Hub)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: "Multi Agent useful function"
3+
date: 2025-06-24
4+
---
5+
6+
# Introduction
7+
8+
This file contains useful stuff in case of you want to use LLM agents to build software solutions
9+
10+
11+
12+
Use following command to display folder structure that you can pass to LLM like Claude.
13+
14+
``` bash
15+
find . -maxdepth 1 -not -path './\.*' -not -path '*/node_modules*' | sort | sed -e 's/[^-][^\/]*\// |/g' -e 's/|\([^ ]\)/|\1/'
16+
```

0 commit comments

Comments
 (0)