Update README.md
This commit is contained in:
45
README.md
45
README.md
@@ -1,2 +1,45 @@
|
||||
# .profile
|
||||
### Hi there 👋
|
||||
|
||||
|
||||
## Bio🧑🏻
|
||||
```csharp
|
||||
> Console.WriteLine("Years of experiences: " + (int)itJourneyStart.TotalYears);
|
||||
Years of experiences: 3
|
||||
```
|
||||
|
||||
### **ToolsAndLanguages.cs**
|
||||
```csharp
|
||||
30 using (SKSurface surface = SKSurface.Create(new SKImageInfo(toolsAndLanguages.Count * (imageSize + 10), 60)) {
|
||||
31 SKCanvas canvas = SKSurface.Canvas;
|
||||
32 canvas.Clear(SKColors.Transparent);
|
||||
33
|
||||
34 for (int i = 0; i < toolsAndLanguages.Count; i++) {
|
||||
35 SKBitmap icon = toolsAndLanguages[i].Resize(new SKImageInfo(imageSize, imageSize), SKFilterQuality.High);
|
||||
36 canvas.DrawBitmap(icon, (imageSize + 10) * i, (60 - imageSize) / 2);
|
||||
37 }
|
||||
38
|
||||
39 using (SKImage image = surface.Snapshot())
|
||||
40 using (SKData output = image.Encode(SKEncodedImageFormat.Png, 100))
|
||||
41 RenderImage(output.ToArray());
|
||||
42 }
|
||||
```
|
||||
|
||||
<img src="icons/csharp.svg" title="C#" alt="C#" width="40" height="40"/>
|
||||
<img src="icons/nodejs.svg" title="NodeJS" alt="NodeJS" width="40" height="40"/>
|
||||
<img src="icons/python.svg" title="Python" alt="Python" width="40" height="40"/>
|
||||
<img src="icons/go.svg" title="Go" alt="Go" width="40" height="40"/>
|
||||
<img src="icons/docker.svg" title="Docker" alt="Docker" width="40" height="40"/>
|
||||
<img src="icons/postgresql.svg" title="PostgreSQL" alt="PostgreSQL" width="40" height="40"/>
|
||||
<img src="icons/sqlite.svg" title="SQLite" alt="SQLite" width="40" height="40"/>
|
||||
<img src="icons/vscode.svg" title="VS Code" alt="VS Code" width="40" height="40"/>
|
||||
<img src="icons/nginx.svg" title="Nginx" alt="Nginx" width="40" height="40"/>
|
||||
<img src="icons/fedora.svg" title="Fedora" alt="Fedora" width="40" height="40"/>
|
||||
<img src="icons/git.svg" title="Git" alt="Git" width="40" height="40"/>
|
||||
|
||||
---
|
||||
|
||||
## Stats
|
||||
|
||||
[](https://github.com/TheLanc3)
|
||||
|
||||
[](https://github.com/TheLanc3)
|
||||
Reference in New Issue
Block a user