Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leandromonaco committed Oct 10, 2024
1 parent 7a93590 commit 3407e59
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 18 deletions.
44 changes: 28 additions & 16 deletions .obsidian/workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,21 @@
"source": false
}
}
},
{
"id": "6af172aa7da2aa88",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "articles/AI/Open AI.md",
"mode": "source",
"source": false
}
}
}
],
"currentTab": 1
"currentTab": 2
}
],
"direction": "vertical"
Expand Down Expand Up @@ -82,7 +94,7 @@
}
],
"direction": "horizontal",
"width": 537.5
"width": 311.5
},
"right": {
"id": "854443f02233b8b9",
Expand All @@ -98,7 +110,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "articles/Database/Useful SQL Server Queries.md",
"file": "articles/AI/Open AI.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
Expand All @@ -111,7 +123,7 @@
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
"useHierarchy": false
}
}
},
Expand All @@ -121,7 +133,7 @@
"state": {
"type": "outline",
"state": {
"file": "articles/Database/Useful SQL Server Queries.md"
"file": "articles/AI/Open AI.md"
}
}
},
Expand Down Expand Up @@ -151,7 +163,7 @@
"state": {
"type": "backlink",
"state": {
"file": "articles/Database/Useful SQL Server Queries.md",
"file": "articles/AI/Open AI.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
Expand All @@ -167,7 +179,7 @@
}
],
"direction": "horizontal",
"width": 300
"width": 239.5
},
"left-ribbon": {
"hiddenItems": {
Expand All @@ -181,12 +193,19 @@
"webpage-html-export:Export Vault to HTML": false
}
},
"active": "10b6c6dba9453fac",
"active": "6af172aa7da2aa88",
"lastOpenFiles": [
"articles/Technology/AI.md",
"articles/Engineering Management/Feature Flag Management.md",
"articles/Engineering Management/Development Strategy.md",
"articles/Engineering Management/Developer Experience.md",
"articles/APIs/Google Calendar API.md",
"articles/AI/Open AI.md",
"articles/AI/ollama.md",
"articles/Database/Useful SQL Server Queries.md",
"articles/Database/Sql Server.md",
"articles/Database/SQL Lite.md",
"articles/Development/Development Environment Setup.md",
"articles/Database/Useful SQL Server Queries.md",
"articles/Database",
"articles/DotNet/ASP.NET.md",
"articles/Engineering Management/Engineering Management.md",
Expand Down Expand Up @@ -220,13 +239,6 @@
"src/Tools/Visual Studio.md",
"src/Tools/Troubleshooting.md",
"src/Tools/Sql Server.md",
"src/Tools/SQL Lite.md",
"src/Tools/Slack CLI.md",
"src/Tools/Redis.md",
"src/Tools/Proxy.md",
"src/Tools/Powershell.md",
"src/Tools/Nuget CLI.md",
"src/Tools/NuGet.md",
"images/Pasted image 20230731083648.png",
"images/Pasted image 20240510085959.png",
"Untitled.canvas",
Expand Down
18 changes: 18 additions & 0 deletions articles/AI/Open AI.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
**Useful Links**
- https://platform.openai.com/docs/overview
- Generate API Key: https://platform.openai.com/api-keys
- Select Available Models for API: https://platform.openai.com/settings/proj_ABtkl6IvMcTADnrDL1jhRkjQ/limits
- API Credits: https://platform.openai.com/settings/organization/billing/overview

**Library**
- https://www.nuget.org/packages/OpenAI
- https://github.com/openai/openai-dotnet

**Snippet**

```csharp
var prompt = @"some prompt";
ChatClient client = new(model: "gpt-4o", "open-api-key");
ChatCompletion completion = client.CompleteChat(prompt);
Console.WriteLine($"{completion.Content[0].Text}");
```
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ Documentation | - [Technical Writing Style Guide](https://docs.microsoft.com/en-
# Tools
https://snyk.io/code-checker

## Feature Flags

[[Feature Flag Management]]

## Logging

Always use *Structured Logging*, which makes it easier to store and query log-events.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**Test Project:** https://github.com/leandromonaco/workbench/tree/a6a4f3fce48edf2e50d75b49260d9d8a831c9863/MicroserviceTemplate/src/FeatureManagement.API
# Objective

To implement a Feature Management solution that allows us to change application behaviour without changing code.
Expand Down
2 changes: 1 addition & 1 deletion articles/Engineering Management/Onboarding.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- [[Development Environment Setup]]
- [[Software Development Strategy]]
- [[Development Strategy]]
- [[Ways of Working]]

## Sources
Expand Down
2 changes: 1 addition & 1 deletion articles/Engineering Management/Ways of Working.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ The Definition of Done creates transparency by providing everyone a shared under

## Strategy
* [Objectives](https://github.com/leandromonaco/Documentation/blob/main/software-development-objectives.md)
- [[Software Development Strategy]]
- [[Development Strategy]]

0 comments on commit 3407e59

Please sign in to comment.