Skip to content

Commit a1ffbbc

Browse files
committed
chore: update about page
1 parent 98017e8 commit a1ffbbc

21 files changed

+201
-105
lines changed

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"editor.formatOnPaste": true,
55
"files.trimTrailingWhitespace": true,
66
"files.insertFinalNewline": true,
7-
// Prettier
7+
// Prettier
88
"editor.defaultFormatter": "esbenp.prettier-vscode",
99
"editor.formatOnSave": true,
1010
// Shopify Liquid
@@ -45,13 +45,15 @@
4545
"appsettings",
4646
"aspnet",
4747
"cover.webp",
48+
"cplusplus",
4849
"devcontainer",
4950
"devcontainers",
5051
"endraw",
5152
"favicons",
5253
"Fuks",
5354
"kungfux",
5455
"Photoshop",
56+
"raspberrypi",
5557
"reduxjs",
5658
"signin",
5759
"thisunsafe",
@@ -63,5 +65,5 @@
6365
"WORKDIR",
6466
"wwwroot",
6567
"YARP"
66-
],
68+
]
6769
}

_posts/2012/2012-08-12-website-for-local-commercial-equipment-production-company.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2012-08-12 22:49:02 +0200
55
last_modified_at: 2012-08-12 22:49:02 +0200
66
published: true
77
categories: [Projects, Web, Desktop]
8-
tags: [DotNet/C#, WinForms, PHP, MySQL, HTML, JavaScript]
8+
tags: [DotNet, CSharp, WinForms, PHP, MySQL, HTML, CSS, JavaScript, Windows]
99
mermaid: true
1010
media_subpath: /assets/media/2012/website-for-local-commercial-equipment-production-company/
1111
image: cover.webp

_posts/2013/2013-05-16-aquaculture-management-and-analysis-software.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2013-05-16 01:09:23 +0200
55
last_modified_at: 2013-05-16 01:09:23 +0200
66
published: true
77
categories: [Projects, Desktop]
8-
tags: [DotNet/C#, WinForms, SQLite, InnoSetup, Delphi, Batch Scripting]
8+
tags: [DotNet, CSharp, WinForms, SQLite, InnoSetup, Delphi, Batch Scripting]
99
mermaid: true
1010
media_subpath: /assets/media/2013/aquaculture-management-and-analysis-software/
1111
image: cover.webp

_posts/2013/2013-07-04-creating-a-development-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2013-07-04 00:18:57 +0200
55
last_modified_at: 2013-07-04 00:18:57 +0200
66
published: true
77
categories: [Projects, System Administration]
8-
tags: [Linux, Bash, SVN, Munin, Jenkins, Redmine, PHP, MySQL]
8+
tags: [Linux, Bash, SVN, Munin, Jenkins, Redmine, PHP, MySQL, Apache]
99
mermaid: false
1010
media_subpath: /assets/media/2013/creating-a-development-server/
1111
image: cover.webp

_posts/2015/2015-01-18-resource-limitations-cause-bugs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ My Notes application had only a few lines of code and was written quickly to ser
5858

5959
## Conclusion
6060
- Get your application used every day, not just by QA, but by the entire team. This helps to uncover many issues related not only to functionality, but also to usability, performance, and resource usage.
61-
- As a software developer, be aware of resource constraints. For example, limit the number of objects created, close database connections, etc. to avoid hitting OS/hardware limits.
61+
- As a software developer, be aware of resource constraints. For example, limit the number of objects created, close database connections, etc. to avoid hitting OS/hardware limits.

_posts/2018/2018-08-05-web-application-to-search-for-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2018-08-05 23:11:02 +0300
55
last_modified_at: 2018-08-05 23:11:02 +0300
66
published: true
77
categories: [Projects, Web]
8-
tags: [Java, JSP, JavaScript, Tomcat, Bootstrap, jQuery]
8+
tags: [Java, JSP, JavaScript, Tomcat, Bootstrap, jQuery, HTML, CSS]
99
mermaid: true
1010
media_subpath: /assets/media/2018/web-application-to-search-for-requirements/
1111
image: cover.webp

_posts/2019/2019-03-04-turn-console-application-into-ui-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2019-03-04 21:44:37 +0300
55
last_modified_at: 2019-03-04 21:44:37 +0300
66
published: true
77
categories: [Projects, Desktop]
8-
tags: [DotNet/C#, WinForms, MVC]
8+
tags: [DotNet, CSharp, WinForms, MVC, Windows]
99
mermaid: false
1010
media_subpath: /assets/media/2019/turn-console-application-into-ui-application/
1111
image: cover.webp

_posts/2019/2019-11-14-exploring-the-world-of-electronics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,15 +140,15 @@ DioxideSensor::Data DioxideSensor::getConcentration(){
140140
uart.write(requestGetConcentration, 9);
141141
memset(response, 0, 9);
142142
uart.readBytes(response, 9);
143-
143+
144144
Serial.print(F("MH-Z19B response:"));
145145
for (unsigned char i=0;i<=8;++i){
146146
Serial.print(F(" "));
147147
Serial.print(F("0x"));
148148
Serial.print(response[i], HEX);
149149
}
150150
Serial.println();
151-
151+
152152
if(verifyChecksum()){
153153
short high = (short)response[2];
154154
short low = (short)response[3];
@@ -192,4 +192,4 @@ _Technologies_
192192
## Conclusion
193193
This journey took me about a year and I completely understand why people choose this direction and what it means to be an engineer. I would highly recommend anyone to take this path and explore the world of electronics to better understand how computers work and how to write efficient programs, even if they will not connect their lives with electronics itself.
194194

195-
The knowledge and experience I have gained is hard to overestimate. Some tools and knowledge I can use in my daily life. Others have helped me organize my knowledge. The rest are just for fun and push the boundaries of knowledge and can be used to understand many technical things.
195+
The knowledge and experience I have gained is hard to overestimate. Some tools and knowledge I can use in my daily life. Others have helped me organize my knowledge. The rest are just for fun and push the boundaries of knowledge and can be used to understand many technical things.

_posts/2021/2021-06-14-test-framework-for-microsoft-office-add-in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2021-06-14 18:01:24 +0300
55
last_modified_at: 2021-06-14 18:01:24 +0300
66
published: true
77
categories: [Projects, Desktop, Web]
8-
tags: [DotNet/C#, Selenium, FlaUI, Desktop automation, Web automation]
8+
tags: [DotNet, CSharp, Selenium, FlaUI, Desktop automation, Web automation, Windows]
99
mermaid: true
1010
media_subpath: /assets/media/2021/test-framework-for-microsoft-office-add-in/
1111
image: cover.webp

_posts/2021/2021-09-30-measure-application-startup-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: 2021-09-30 22:16:55 +0200
55
last_modified_at: 2021-09-30 22:16:55 +0200
66
published: true
77
categories: [Projects, Desktop]
8-
tags: [DotNet/C#, FlaUI, Desktop automation, Performance testing]
8+
tags: [DotNet, CSharp, FlaUI, Desktop automation, Performance testing, Windows]
99
mermaid: false
1010
media_subpath: /assets/media/2021/measure-application-startup-performance/
1111
image: cover.webp

0 commit comments

Comments
 (0)