File tree Expand file tree Collapse file tree 3 files changed +22
-7
lines changed Expand file tree Collapse file tree 3 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 11---
2- title : " Mocrosoft Open-Source Projects"
2+ title : " Microsoft Open-Source Projects"
33date : 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/ )
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ Try this link in order to install Docker on Windows 10
15151 . Set environmental variable HTTP_PROXY
16162 . Restart the server
1717
18- ``` PS
18+ ``` bash
1919Restart-Service docker
2020```
2121
2222## How run login
23- ``` PS
23+ ``` bash
2424docker login
2525```
2626
@@ -153,8 +153,7 @@ docker pull microsoft/nanoserver
153153docker 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
176175docker 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)
Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments