-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.blogs_data.js
More file actions
81 lines (80 loc) · 2.02 KB
/
Copy pathscript.blogs_data.js
File metadata and controls
81 lines (80 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Blog data – add as many objects as you like.
window.blogData = [
{
"title": "Why C# is My Go-To Language",
"image": "",
"link": "blogs/why-csharp.html",
"hashtags": [
"C#",
"Programming",
"Backend"
],
"short": "Discover why C# combines power and simplicity for robust software development."
},
{
"title": "Getting Started with Unreal Engine",
"image": "",
"link": "blogs/unreal-beginners.html",
"hashtags": [
"Unreal Engine",
"Game Dev",
"Tutorial"
],
"short": "A beginner's guide to creating your first game world in Unreal Engine 5."
},
{
"title": "How I Learned to Stop Worrying and Love Python",
"image": "",
"link": "blogs/python-love.html",
"hashtags": [
"Python",
"Scripting",
"Automation"
],
"short": "From scripting to automation, Python became an essential tool in my workflow."
},
{
"title": "The Art of Clean Code",
"image": "",
"link": "blogs/clean-code.html",
"hashtags": [
"Clean Code",
"Best Practices",
"Refactoring"
],
"short": "Simple habits that dramatically improve code readability and maintainability."
},
{
"title": "Why Agile & Scrum Actually Work",
"image": "",
"link": "blogs/agile-scrum.html",
"hashtags": [
"Agile",
"Scrum",
"Project Management"
],
"short": "My real-world experience with Agile teams and why it delivers better software."
},
{
"title": "My First Modding Experience",
"image": "",
"link": "blogs/first-mod.html",
"hashtags": [
"Modding",
"Games",
"Tutorial"
],
"short": "How I started modding and what I learned from building Errant Ghosts."
},
{
"title": "Using AI as a Developer",
"image": "",
"link": "blogs/ai-developer.html",
"hashtags": [
"AI",
"Productivity",
"Coding"
],
"short": "If a blind man suddenly gains sight, will he still walk with his eyes closed? My approach to AI tools."
}
];