Skip to content

Commit 05e49b3

Browse files
committed
Merge branch 'main' into feature/vitest-test-suite
2 parents ef33bf2 + 12f893e commit 05e49b3

File tree

6 files changed

+150
-2
lines changed

6 files changed

+150
-2
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
* @Mathys-Gasnier
55

66
# Code maintainers
7-
/src/ @psychlone77 @saminjay
7+
/src/ @psychlone77 @saminjay @Mathys-Gasnier
88

99
# Snippets maintainers
10-
/snippets @Mathys-Gasnier
10+
/snippets @majvax @Mathys-Gasnier
11+
/snippets/javascript @psychlone77 @saminjay
12+
/snippets/python @psychlone77 @saminjay
13+
/snippets/cpp @saminjay
1114

1215

1316
# ---------- What is a maintainer ----------

public/consolidated/javascript.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,24 @@
7777
}
7878
]
7979
},
80+
{
81+
"categoryName": "Color Manipulation",
82+
"snippets": [
83+
{
84+
"title": "RGB to Hex Color",
85+
"description": "Converts RGB color values to hexadecimal color code.",
86+
"author": "jjcantu",
87+
"tags": [
88+
"javascript",
89+
"color",
90+
"conversion",
91+
"utility"
92+
],
93+
"contributors": [],
94+
"code": "function rgbToHex(r, g, b) {\n const toHex = (n) => {\n const hex = n.toString(16);\n return hex.length === 1 ? '0' + hex : hex;\n };\n \n return '#' + toHex(r) + toHex(g) + toHex(b);\n}\n\n// Usage:\nconsole.log(rgbToHex(255, 128, 0)); // Output: \"#ff8000\"\nconsole.log(rgbToHex(0, 255, 0)); // Output: \"#00ff00\"\n"
95+
}
96+
]
97+
},
8098
{
8199
"categoryName": "Date And Time",
82100
"snippets": [
@@ -384,6 +402,19 @@
384402
],
385403
"contributors": []
386404
},
405+
{
406+
"title": "Format File Size",
407+
"description": "Converts bytes into human-readable file size format.",
408+
"author": "jjcantu",
409+
"tags": [
410+
"javascript",
411+
"format",
412+
"size",
413+
"utility"
414+
],
415+
"contributors": [],
416+
"code": "function formatFileSize(bytes) {\n if (bytes === 0) return '0 Bytes';\n \n const k = 1024;\n const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];\n const i = Math.floor(Math.log(bytes) / Math.log(k));\n \n return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];\n}\n\n// Usage:\nconsole.log(formatFileSize(1234)); // Output: \"1.21 KB\"\nconsole.log(formatFileSize(1234567)); // Output: \"1.18 MB\"\n"
417+
},
387418
{
388419
"title": "Format Number with Commas",
389420
"description": "Formats a number with commas for better readability (e.g., 1000 -> 1,000).",
@@ -470,6 +501,19 @@
470501
],
471502
"contributors": []
472503
},
504+
{
505+
"title": "Deep Clone Object",
506+
"description": "Creates a deep copy of an object or array without reference.",
507+
"author": "jjcantu",
508+
"tags": [
509+
"javascript",
510+
"object",
511+
"clone",
512+
"utility"
513+
],
514+
"contributors": [],
515+
"code": "function deepClone(obj) {\n if (obj === null || typeof obj !== 'object') return obj;\n \n const clone = Array.isArray(obj) ? [] : {};\n \n for (let key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n clone[key] = deepClone(obj[key]);\n }\n }\n \n return clone;\n}\n\n// Usage:\nconst original = { a: 1, b: { c: 2 }, d: [1, 2, 3] };\nconst cloned = deepClone(original);\nconsole.log(cloned); // Output: { a: 1, b: { c: 2 }, d: [1, 2, 3] }\n"
516+
},
473517
{
474518
"title": "Filter Object",
475519
"description": "Filter out entries in an object where the value is falsy, including empty strings, empty objects, null, and undefined.",
@@ -709,6 +753,18 @@
709753
],
710754
"contributors": []
711755
},
756+
{
757+
"title": "Generate UUID",
758+
"description": "Generates a UUID (v4) string.",
759+
"author": "jjcantu",
760+
"tags": [
761+
"javascript",
762+
"uuid",
763+
"utility"
764+
],
765+
"contributors": [],
766+
"code": "function generateUUID() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n const r = Math.random() * 16 | 0;\n const v = c === 'x' ? r : (r & 0x3 | 0x8);\n return v.toString(16);\n });\n}\n\n// Usage:\nconsole.log(generateUUID()); // Output: \"a1b2c3d4-e5f6-4g7h-8i9j-k0l1m2n3o4p5\"\n"
767+
},
712768
{
713769
"title": "Mask Sensitive Information",
714770
"description": "Masks parts of a sensitive string, like a credit card or email address.",
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: RGB to Hex Color
3+
description: Converts RGB color values to hexadecimal color code.
4+
author: jjcantu
5+
tags: color,conversion
6+
---
7+
8+
```js
9+
function rgbToHex(r, g, b) {
10+
const toHex = (n) => {
11+
const hex = n.toString(16);
12+
return hex.length === 1 ? '0' + hex : hex;
13+
};
14+
15+
return '#' + toHex(r) + toHex(g) + toHex(b);
16+
}
17+
18+
// Usage:
19+
console.log(rgbToHex(255, 128, 0)); // Output: "#ff8000"
20+
console.log(rgbToHex(0, 255, 0)); // Output: "#00ff00"
21+
```
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Format File Size
3+
description: Converts bytes into human-readable file size format.
4+
author: jjcantu
5+
tags: format,size
6+
---
7+
8+
```js
9+
function formatFileSize(bytes) {
10+
if (bytes === 0) return '0 Bytes';
11+
12+
const k = 1024;
13+
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
14+
const i = Math.floor(Math.log(bytes) / Math.log(k));
15+
16+
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
17+
}
18+
19+
// Usage:
20+
console.log(formatFileSize(1234)); // Output: "1.21 KB"
21+
console.log(formatFileSize(1234567)); // Output: "1.18 MB"
22+
```
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: Deep Clone Object
3+
description: Creates a deep copy of an object or array without reference.
4+
author: jjcantu
5+
tags: object,clone
6+
---
7+
8+
```js
9+
function deepClone(obj) {
10+
if (obj === null || typeof obj !== 'object') return obj;
11+
12+
const clone = Array.isArray(obj) ? [] : {};
13+
14+
for (let key in obj) {
15+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
16+
clone[key] = deepClone(obj[key]);
17+
}
18+
}
19+
20+
return clone;
21+
}
22+
23+
// Usage:
24+
const original = { a: 1, b: { c: 2 }, d: [1, 2, 3] };
25+
const cloned = deepClone(original);
26+
console.log(cloned); // Output: 'original' but cloned
27+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Generate UUID
3+
description: Generates a UUID (v4) string.
4+
author: jjcantu
5+
tags: uuid, generate, string
6+
---
7+
8+
```js
9+
function generateUUID() {
10+
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
11+
const r = Math.random() * 16 | 0;
12+
const v = c === 'x' ? r : (r & 0x3 | 0x8);
13+
return v.toString(16);
14+
});
15+
}
16+
17+
// Usage:
18+
console.log(generateUUID()); // Output: "a1b2c3d4-e5f6-4g7h-8i9j-k0l1m2n3o4p5"
19+
```

0 commit comments

Comments
 (0)