Skip to content

Commit 94d6ce1

Browse files
committed
AI In Action For Spellling Mistake and other Stuff Fixing
1 parent 6af631c commit 94d6ce1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1652
-396
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# Instruction For Setup Project and Start Working On Local Machine
1+
# Project Setup Instructions for Local Development
22

33
## Windows
44

5-
> Require Winget So Download And Install
5+
> Winget is required, so download and install it first
66
77
```link
88
https://aka.ms/getwinget
99
```
1010

11-
> Install Powershell From [here](https://apps.microsoft.com/detail/9mz1snwt0n5d?hl=en-US&gl=US)
11+
> Install PowerShell from [here](https://apps.microsoft.com/detail/9mz1snwt0n5d?hl=en-US&gl=US)
1212
1313
```link
1414
https://apps.microsoft.com/detail/9mz1snwt0n5d?hl=en-US&gl=US
1515
```
1616

1717
### For Windows
1818

19-
> Open Terminal Paste below code From [here](https://learn.microsoft.com/en-us/windows/package-manager/winget/) or belo snippet
19+
> Open Terminal and paste the code below from [here](https://learn.microsoft.com/en-us/windows/package-manager/winget/) or use the snippet below
2020
2121
```shell
2222
$progressPreference = 'silentlyContinue'
@@ -203,14 +203,14 @@ draft: true #make this false to publicly Available
203203
---
204204
```
205205

206-
#### for relate Linking of another page use below code for reference [SKiaSharp]({{< relref "blog/skiasharp/basic.md" >}})
206+
#### for related Linking of another page use below code for reference [SKiaSharp]({{< relref "blog/skiasharp/basic.md" >}})
207207

208208
```md
209209
[Basic Setup]({{< relref "blog/skiasharp/basic.md" >}})
210210
```
211211

212212

213-
## Some Of Comman Commands
213+
## Some Of Common Commands
214214

215215
### Run the Application In development Mode where draft is also visible
216216

@@ -263,7 +263,7 @@ Dummy Code For Setup Replace Youtube id with appropriate youtubeid
263263
### Install .NET SDK
264264
- [Visit Here And Install .NET SDK](https://dotnet.microsoft.com/en-us/download)
265265
- It is Straight forward for all platform.
266-
- For Window user Follow below video for more
266+
- For Windows user Follow below video for more
267267

268268
{{< youtube EqD1H4T340A >}}
269269

@@ -277,17 +277,17 @@ Dummy Code For Setup Replace Youtube id with appropriate youtubeid
277277
- [Download From Official Website](https://visualstudio.microsoft.com/)
278278

279279
- Available Only for Windows User
280-
- Alternative is [Rider0](https://www.jetbrains.com/rider/) For Cross platform not free as of Now
280+
- Alternative is [Rider](https://www.jetbrains.com/rider/) For Cross platform not free as of Now
281281

282282

283-
- For Installiation Process of Visual Studio IDE on window Follow below video
283+
- For Installation Process of Visual Studio IDE on Windows Follow below video
284284

285285
{{< youtube EqD1H4T340A >}}
286286

287287
### Install Visual Studio Code
288-
- [Visit Here And Install .NET SDK](https://code.visualstudio.com/)
288+
- [Visit Here And Install Visual Studio Code](https://code.visualstudio.com/)
289289
- It is Straight forward for all platform.
290-
- For Window user Follow below video for more
290+
- For Windows user Follow below video for more
291291

292292
{{< youtube EqD1H4T340A >}}
293293

content/application/httpclient/jsontotree.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "Json to C sharp class"
2+
title: "Convert JSON to Tree Structure in C#"
33
author: "PrashantUnity"
44
weight: 110
55
date: 2025-02-24
66
lastmod: 2025-02-25
77
dateString: February 2025
8-
description: "Just a hack for json parsing to JsonDocument to Tree"
8+
description: "Learn how to parse dynamic JSON structures into tree nodes in C# for handling variable property names with consistent depth levels"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url
@@ -17,7 +17,7 @@ keywords: [ "NET", "codefrydev", "C sharp", "CFD","JSON"]
1717
---
1818

1919

20-
# Suppose you have json text which changes it's name each time ? but depth level remains same, What would you do ?
20+
# Handling Dynamic JSON with Variable Property Names
2121

2222
## Here is one way you can solve it 😁.
2323

content/application/ocr/google-lens-ocr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "Google Lense For OCR "
2+
title: "Google Lens OCR Integration in .NET"
33
author: "PrashantUnity"
44
weight: 100
55
date: 2024-06-15T00:00:00-07:00
66
lastmod: 2024-06-15T23:59:59-07:00
77
dateString: June 2024
8-
description: "Library to use Google Lens OCR for free, via API used in Chromium. This doesn't require running a headless browser. It's set up to work without any options, there's no need to be authorized (no need for Google account!)."
8+
description: "Learn how to integrate Google Lens OCR into .NET applications for free text extraction from images without requiring Google account authentication"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url

content/application/pdf/imagetopdf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "IMAGE TO PDF"
2+
title: "Convert Images to PDF Using C# and PdfSharp"
33
author: "PrashantUnity"
44
weight: 100
55
date: 2024-06-10T11:57:15+05:30
66
lastmod: 2024-06-20T23:59:59-07:00
77
dateString: June 2024
8-
description: "Step-by-Step Guide to Converting Images to PDF using VS Code and Polyglot Notebooks"
8+
description: "Complete guide to converting images to PDF documents using C#, PdfSharp library, and Polyglot Notebooks with step-by-step instructions"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url

content/blog/SkiaSharp/basic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "Getting Started With Skia Sharp"
2+
title: "Getting Started with SkiaSharp Graphics Library"
33
author: "PrashantUnity"
44
weight: 100
55
date: 2024-06-14T00:00:00-07:00
66
lastmod: 2024-06-14T23:59:59-07:00
77
dateString: June 2024
8-
description: "SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images."
8+
description: "Complete beginner's guide to SkiaSharp - a cross-platform 2D graphics library for .NET with setup instructions and basic drawing examples"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url

content/blog/SkiaSharp/circleandpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "Circle and Points And Lines"
2+
title: "Dynamic Circle and Line Patterns in SkiaSharp"
33
author: "PrashantUnity"
44
weight: 104
55
date: 2024-08-03
66
lastmod: 2024-08-03
77
dateString: August 2024
8-
description: "Dynamically Generating Bunch of Circle and line and Points on Canvass"
8+
description: "Learn how to create dynamic geometric patterns with circles, points, and lines using SkiaSharp with mathematical calculations and trigonometry"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url
@@ -16,7 +16,7 @@ tags: [ "CSharp", "SkiaSharp","Polygon","Trigonometry"]
1616
keywords: [ "NET", "codefrydev", "C sharp", "CFD", "SkiaSharp","Trigonometry","Polygon","Math"]
1717
---
1818

19-
## Importing Skiasharp Library from nuget package
19+
## Setting Up SkiaSharp
2020

2121
```csharp
2222
#r "nuget:SkiaSharp"

content/blog/SkiaSharp/cover.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 101
55
date: 2024-06-14T00:00:00-07:00
66
lastmod: 2024-06-14T23:59:59-07:00
77
dateString: June 2024
8-
description: "In this Article I am Going To Give you Code Snippet of how i Generate Cover Image for this Website Using SkiaSharp Library"
8+
description: "Learn how to create custom cover images and thumbnails using SkiaSharp with text, shapes, gradients, and professional design elements"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url
@@ -17,7 +17,7 @@ keywords: [ "NET", "codefrydev", "C sharp", "CFD", "SkiaSharp","Generate Thumbna
1717
---
1818

1919

20-
## Generate Thumbnail/Cover With SkiaSharp
20+
## Creating Cover Images with SkiaSharp
2121

2222
Cover on this website is generated using SkiaSharp Only
2323

content/blog/SkiaSharp/image.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: "Use Image Inside In SkiaSharp"
2+
title: "Import and Use Images in SkiaSharp Canvas"
33
author: "PrashantUnity"
44
weight: 102
55
date: 2024-07-20T00:00:00-07:00
66
lastmod: 2024-07-20T23:59:59-07:00
77
dateString: JUl 2024
8-
description: "In this Article I am Going To show you how to use SkiaSharp to to Import Image Into Canvas"
8+
description: "Learn how to import, load, and manipulate images in SkiaSharp canvas with file handling, scaling, and drawing techniques"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url
@@ -16,7 +16,7 @@ tags: [ "C sharp", "SkiaSharp","Use Image","Skia","Image"]
1616
keywords: [ "NET", "codefrydev", "C sharp", "CFD", "SkiaSharp","Use Image","Skia","Import Image"]
1717
---
1818

19-
## Requirement
19+
## Requirements
2020

2121
- VS Code with Polyglot Notebook
2222
- .Net Installed
@@ -25,7 +25,7 @@ keywords: [ "NET", "codefrydev", "C sharp", "CFD", "SkiaSharp","Use Image","Skia
2525

2626
- create new File Image.ipynb
2727

28-
### Import Skiasharp Library
28+
### Import SkiaSharp Library
2929

3030
- Open Image.ipynb File select .Net Interactive as Kernel
3131
- Create cell inside File

content/blog/SkiaSharp/logo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 102
55
date: 2024-06-17T00:00:00-07:00
66
lastmod: 2024-06-17T23:59:59-07:00
77
dateString: June 2024
8-
description: "In this Article I am Going To show you Code Snippet of how I used SkiaSharp to Generate CFD LOGO for this Website Using SkiaSharp Library"
8+
description: "Learn how to create custom logos using SkiaSharp with step-by-step guide to generating the CodeFryDev logo with text, shapes, and styling"
99
#canonicalURL: "https://canonical.url/to/page"
1010
cover:
1111
image: "cover.jpg" # image path/url
@@ -17,7 +17,7 @@ keywords: [ "NET", "codefrydev", "C sharp", "CFD", "SkiaSharp","Generate LOGO","
1717
---
1818

1919

20-
## Generate LOGO With SkiaSharp
20+
## Creating Logos with SkiaSharp
2121

2222
LOGO on this website is generated using SkiaSharp Only
2323

content/blog/SkiaSharp/mandlebrot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 102
55
date: 2024-06-18T00:00:00-07:00
66
lastmod: 2024-06-18T23:59:59-07:00
77
dateString: June 2024
8-
description: "In this Article I am Going To show you Code Snippet of how I used SkiaSharp to Generate Mandelbrot"
8+
description: "Learn how to generate the famous Mandelbrot fractal using C# and SkiaSharp graphics library with mathematical algorithms and color mapping"
99

1010
#canonicalURL: "https://canonical.url/to/page"
1111
cover:
@@ -82,9 +82,9 @@ for (int y = 0; y < height; y++)
8282
}
8383
}
8484
}
85-
SKFileWStream fs = new("mandlebrot.jpg");
85+
SKFileWStream fs = new("mandelbrot.jpg");
8686
bmp.Encode(fs, SKEncodedImageFormat.Jpeg, quality: 50);
8787
bmp.Display();
8888
```
8989

90-
![images](./mandlebrot.jpg)
90+
![images](./mandelbrot.jpg)

0 commit comments

Comments
 (0)