Skip to content

Commit 9d088a1

Browse files
committed
Changed author name to brand name
1 parent c68b81d commit 9d088a1

File tree

4 files changed

+47
-47
lines changed

4 files changed

+47
-47
lines changed

public/data/css.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"description": "Adjusts font size based on viewport width.",
88
"code": ["h1 {", " font-size: calc(1.5rem + 2vw);", "}"],
99
"tags": ["css", "font", "responsive", "typography"],
10-
"author": "dostonnabotov"
10+
"author": "technoph1le"
1111
},
1212
{
1313
"title": "Letter Spacing",
1414
"description": "Adds space between letters for better readability.",
1515
"code": ["p {", " letter-spacing: 0.05em;", "}"],
1616
"tags": ["css", "typography", "spacing"],
17-
"author": "dostonnabotov"
17+
"author": "technoph1le"
1818
}
1919
]
2020
},
@@ -36,7 +36,7 @@
3636
"}"
3737
],
3838
"tags": ["css", "layout", "footer", "sticky"],
39-
"author": "dostonnabotov"
39+
"author": "technoph1le"
4040
},
4141
{
4242
"title": "Equal-Width Columns",
@@ -53,7 +53,7 @@
5353
"}"
5454
],
5555
"tags": ["css", "flexbox", "columns", "layout"],
56-
"author": "dostonnabotov"
56+
"author": "technoph1le"
5757
}
5858
]
5959
},
@@ -79,7 +79,7 @@
7979
"}"
8080
],
8181
"tags": ["css", "button", "hover", "transition"],
82-
"author": "dostonnabotov"
82+
"author": "technoph1le"
8383
},
8484
{
8585
"title": "3D Button Effect",
@@ -101,7 +101,7 @@
101101
"}"
102102
],
103103
"tags": ["css", "button", "3D", "effect"],
104-
"author": "dostonnabotov"
104+
"author": "technoph1le"
105105
}
106106
]
107107
},
@@ -118,7 +118,7 @@
118118
"}"
119119
],
120120
"tags": ["css", "blur", "background", "effects"],
121-
"author": "dostonnabotov"
121+
"author": "technoph1le"
122122
},
123123
{
124124
"title": "Hover Glow Effect",
@@ -136,7 +136,7 @@
136136
"}"
137137
],
138138
"tags": ["css", "hover", "glow", "effects"],
139-
"author": "dostonnabotov"
139+
"author": "technoph1le"
140140
}
141141
]
142142
}

public/data/javascript.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"console.log(slugify(title, \"_\")); // Output: 'hello_world_this_is_a_test'"
2525
],
2626
"tags": ["javascript", "string", "slug", "utility"],
27-
"author": "dostonnabotov"
27+
"author": "technoph1le"
2828
},
2929
{
3030
"title": "Remove Duplicates",
@@ -37,7 +37,7 @@
3737
"console.log(removeDuplicates(numbers)); // Output: [1, 2, 3, 4, 5]"
3838
],
3939
"tags": ["javascript", "array", "deduplicate", "utility"],
40-
"author": "dostonnabotov"
40+
"author": "technoph1le"
4141
},
4242
{
4343
"title": "Flatten Array",
@@ -50,7 +50,7 @@
5050
"console.log(flattenArray(nestedArray)); // Output: [1, 2, 3, 4]"
5151
],
5252
"tags": ["javascript", "array", "flatten", "utility"],
53-
"author": "dostonnabotov"
53+
"author": "technoph1le"
5454
}
5555
]
5656
},
@@ -67,7 +67,7 @@
6767
"console.log(capitalize('hello')); // Output: 'Hello'"
6868
],
6969
"tags": ["javascript", "string", "capitalize", "utility"],
70-
"author": "dostonnabotov"
70+
"author": "technoph1le"
7171
},
7272
{
7373
"title": "Reverse String",
@@ -79,7 +79,7 @@
7979
"console.log(reverseString('hello')); // Output: 'olleh'"
8080
],
8181
"tags": ["javascript", "string", "reverse", "utility"],
82-
"author": "dostonnabotov"
82+
"author": "technoph1le"
8383
}
8484
]
8585
},
@@ -96,7 +96,7 @@
9696
"console.log(formatDate(new Date())); // Output: '2024-12-10'"
9797
],
9898
"tags": ["javascript", "date", "format", "utility"],
99-
"author": "dostonnabotov"
99+
"author": "technoph1le"
100100
},
101101
{
102102
"title": "Get Time Difference",
@@ -113,7 +113,7 @@
113113
"console.log(getTimeDifference(date1, date2)); // Output: 365"
114114
],
115115
"tags": ["javascript", "date", "time-difference", "utility"],
116-
"author": "dostonnabotov"
116+
"author": "technoph1le"
117117
}
118118
]
119119
},
@@ -135,7 +135,7 @@
135135
"times(randomFunction, 3); // Logs 'Function called!' three times"
136136
],
137137
"tags": ["javascript", "function", "repeat", "utility"],
138-
"author": "dostonnabotov"
138+
"author": "technoph1le"
139139
},
140140
{
141141
"title": "Debounce Function",
@@ -153,7 +153,7 @@
153153
"window.addEventListener('resize', debounce(() => console.log('Resized!'), 500));"
154154
],
155155
"tags": ["javascript", "utility", "debounce", "performance"],
156-
"author": "dostonnabotov"
156+
"author": "technoph1le"
157157
},
158158
{
159159
"title": "Throttle Function",
@@ -183,7 +183,7 @@
183183
"document.addEventListener('scroll', throttle(() => console.log('Scrolled!'), 1000));"
184184
],
185185
"tags": ["javascript", "utility", "throttle", "performance"],
186-
"author": "dostonnabotov"
186+
"author": "technoph1le"
187187
}
188188
]
189189
},
@@ -203,7 +203,7 @@
203203
"toggleClass(element, 'active');"
204204
],
205205
"tags": ["javascript", "dom", "class", "utility"],
206-
"author": "dostonnabotov"
206+
"author": "technoph1le"
207207
},
208208
{
209209
"title": "Smooth Scroll to Element",
@@ -218,7 +218,7 @@
218218
"smoothScroll(target);"
219219
],
220220
"tags": ["javascript", "dom", "scroll", "ui"],
221-
"author": "dostonnabotov"
221+
"author": "technoph1le"
222222
}
223223
]
224224
},
@@ -237,7 +237,7 @@
237237
"addToLocalStorage('user', { name: 'John', age: 30 });"
238238
],
239239
"tags": ["javascript", "localStorage", "storage", "utility"],
240-
"author": "dostonnabotov"
240+
"author": "technoph1le"
241241
},
242242
{
243243
"title": "Retrieve Item from localStorage",
@@ -253,7 +253,7 @@
253253
"console.log(user); // Output: { name: 'John', age: 30 }"
254254
],
255255
"tags": ["javascript", "localStorage", "storage", "utility"],
256-
"author": "dostonnabotov"
256+
"author": "technoph1le"
257257
},
258258
{
259259
"title": "Clear All localStorage",
@@ -267,7 +267,7 @@
267267
"clearLocalStorage(); // Removes all items from localStorage"
268268
],
269269
"tags": ["javascript", "localStorage", "storage", "utility"],
270-
"author": "dostonnabotov"
270+
"author": "technoph1le"
271271
}
272272
]
273273
}

public/data/python.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"print(reverse_string('hello')) # Output: 'olleh'"
1414
],
1515
"tags": ["python", "string", "reverse", "utility"],
16-
"author": "dostonnabotov"
16+
"author": "technoph1le"
1717
},
1818
{
1919
"title": "Check Palindrome",
@@ -27,7 +27,7 @@
2727
"print(is_palindrome('A man a plan a canal Panama')) # Output: True"
2828
],
2929
"tags": ["python", "string", "palindrome", "utility"],
30-
"author": "dostonnabotov"
30+
"author": "technoph1le"
3131
}
3232
]
3333
},
@@ -46,7 +46,7 @@
4646
"print(flatten_list(nested_list)) # Output: [1, 2, 3, 4, 5]"
4747
],
4848
"tags": ["python", "list", "flatten", "utility"],
49-
"author": "dostonnabotov"
49+
"author": "technoph1le"
5050
},
5151
{
5252
"title": "Remove Duplicates",
@@ -59,7 +59,7 @@
5959
"print(remove_duplicates([1, 2, 2, 3, 4, 4, 5])) # Output: [1, 2, 3, 4, 5]"
6060
],
6161
"tags": ["python", "list", "duplicates", "utility"],
62-
"author": "dostonnabotov"
62+
"author": "technoph1le"
6363
}
6464
]
6565
},
@@ -79,7 +79,7 @@
7979
"print(lines)"
8080
],
8181
"tags": ["python", "file", "read", "utility"],
82-
"author": "dostonnabotov"
82+
"author": "technoph1le"
8383
},
8484
{
8585
"title": "Write to File",
@@ -93,7 +93,7 @@
9393
"write_to_file('example.txt', 'Hello, World!')"
9494
],
9595
"tags": ["python", "file", "write", "utility"],
96-
"author": "dostonnabotov"
96+
"author": "technoph1le"
9797
}
9898
]
9999
},
@@ -113,7 +113,7 @@
113113
"print(factorial(5)) # Output: 120"
114114
],
115115
"tags": ["python", "math", "factorial", "utility"],
116-
"author": "dostonnabotov"
116+
"author": "technoph1le"
117117
},
118118
{
119119
"title": "Check Prime Number",
@@ -131,7 +131,7 @@
131131
"print(is_prime(17)) # Output: True"
132132
],
133133
"tags": ["python", "math", "prime", "check"],
134-
"author": "dostonnabotov"
134+
"author": "technoph1le"
135135
}
136136
]
137137
},
@@ -158,7 +158,7 @@
158158
"measure_time(slow_function)"
159159
],
160160
"tags": ["python", "time", "execution", "utility"],
161-
"author": "dostonnabotov"
161+
"author": "technoph1le"
162162
},
163163
{
164164
"title": "Generate Random String",
@@ -175,7 +175,7 @@
175175
"print(random_string(10)) # Output: Random 10-character string"
176176
],
177177
"tags": ["python", "random", "string", "utility"],
178-
"author": "dostonnabotov"
178+
"author": "technoph1le"
179179
}
180180
]
181181
}

0 commit comments

Comments
 (0)