diff --git a/src/assets/js/script.js b/src/assets/js/script.js
index 9e7637f..9f2c787 100644
--- a/src/assets/js/script.js
+++ b/src/assets/js/script.js
@@ -948,8 +948,7 @@ function scrollToRandomUser() {
playSound("levelUp");
randomCard.classList.add("selected-fancy");
- // Inject the Tracing SVG
- const svgNamespace = "http://www.w3.org/2000/svg";
+ const svgNamespace = "https://www.w3.org/2000/svg";
const svg = document.createElementNS(svgNamespace, "svg");
const rect = document.createElementNS(svgNamespace, "rect");
@@ -961,7 +960,6 @@ function scrollToRandomUser() {
svg.appendChild(rect);
randomCard.appendChild(svg);
- // Remove trace and fancy class after the 7.5s animation ends
setTimeout(() => {
randomCard.classList.remove("selected-fancy");
svg.remove();
@@ -978,13 +976,11 @@ window.toggleScreenshotMode = () => {
const footer = document.querySelector("footer");
const gameStats = document.getElementById("game-stats");
- // Hide everything
[devPanel, header, footer, gameStats].forEach((el) => {
if (el) el.style.opacity = "0";
if (el) el.style.pointerEvents = "none";
});
- // Show a tiny notification that it's active
const toast = document.createElement("div");
toast.style.cssText =
"position:fixed; bottom:20px; left:50%; transform:translateX(-50%); color:var(--text-muted); font-family:monospace; font-size:10px; z-index:9999;";
@@ -1007,26 +1003,17 @@ function renderXP(value) {
const pb = document.getElementById("level-progress");
if (!pb) return;
- // 1. Ensure 'value' is a clean number
const currentXPNum = Number(value) || 0;
- // 2. Calculate percentage (current / 45 * 100)
const percentage = Math.min((currentXPNum / 45) * 100, 100);
- // 3. Apply to style
pb.style.width = `${percentage}%`;
-
- // Debugging: uncomment this to see the math in your console
- // console.log(`XP: ${currentXPNum}, Percent: ${percentage}%`);
}
function showLevelUpToast(rank) {
- // 1. Create the container
const toast = document.createElement("div");
toast.className = "level-up-toast";
- // 2. Build the inner content
- // We use the rank color for the name and emoji to make it feel custom
toast.innerHTML = `
${rank.emoji}
@@ -1039,7 +1026,6 @@ function showLevelUpToast(rank) {
document.body.appendChild(toast);
- // 3. Auto-remove after animation
setTimeout(() => {
toast.classList.add("fade-out");
setTimeout(() => toast.remove(), 500);
@@ -1049,7 +1035,6 @@ function showLevelUpToast(rank) {
function matrixConsoleLog(level) {
const rank = getRank(level);
- // This looks awesome in the F12 Dev Console
console.log(
`%c [SYSTEM] %c LEVEL UP: %c ${rank.name.toUpperCase()} %c [LVL ${level}] `,
"color: #10b981; font-weight: bold; background: #064e3b; padding: 2px;",
@@ -1058,20 +1043,17 @@ function matrixConsoleLog(level) {
"color: #94a3b8; background: #1e293b; padding: 2px;",
);
- // 3. If you have an on-screen Matrix Console element, push there too:
const matrixConsole = document.getElementById("matrix-console-output");
if (matrixConsole) {
const line = document.createElement("p");
line.className = "matrix-line text-xs font-mono mb-1";
line.innerHTML = `
>> Rank Updated:
${rank.name}`;
matrixConsole.appendChild(line);
- // Auto-scroll to bottom
matrixConsole.scrollTop = matrixConsole.scrollHeight;
}
}
document.addEventListener("keydown", (e) => {
- // Check if user pressed 'L' (for Log) and isn't typing in an input field
if (
e.key.toLowerCase() === "l" &&
e.target.tagName !== "INPUT" &&
@@ -1087,53 +1069,38 @@ document.addEventListener("keydown", (e) => {
});
async function addExperience(amount) {
- // 1. Force strict numeric types to prevent "1" + "1" = "11"
const xpToAdd = Number(amount) || 0;
currentXP = Number(currentXP) || 0;
currentLevel = Number(currentLevel) || 0;
const XP_THRESHOLD = 45;
- // 2. Add the new XP
currentXP += xpToAdd;
- // 3. Process Level Ups one by one
- // Using a while loop ensures that if you gain 100 XP,
- // it processes Level 1, then Level 2, with the remainder left over.
while (currentXP >= XP_THRESHOLD && currentLevel < NUM_LEVELS) {
currentXP -= XP_THRESHOLD;
currentLevel++;
- // 1. Trigger the Visual Toast (Top of screen)
if (typeof showLevelUpToast === "function") {
showLevelUpToast(getRank(currentLevel));
}
- // 2. Trigger the "Matrix" Console Log
matrixConsoleLog(currentLevel);
- // --- THE POPUP TRIGGER ---
const badge = document.getElementById("level-badge");
if (badge) {
- // Remove the class if it exists (to reset animation)
badge.classList.remove("animate-badge-pop");
- // Trigger a "reflow" (magic trick to allow re-animation)
void badge.offsetWidth;
- // Re-add the class
badge.classList.add("animate-badge-pop");
}
- // --------------------------
console.log(`Leveled Up to ${currentLevel}!`);
}
- // 4. Persistence: Save clean numbers
localStorage.setItem("userLevel", currentLevel.toString());
localStorage.setItem("userXP", currentXP.toString());
- // 5. Update UI
updateGameUI();
}
function updateInventoryCounts(lvl) {
- // Initialize counts
const counts = {
common: 0,
uncommon: 0,
@@ -1144,8 +1111,6 @@ function updateInventoryCounts(lvl) {
absolute: 0,
};
- // Loop through LEVELS array up to current unlocked level
- // We use i <= lvl because currentLevel is the index reached
for (let i = 0; i <= lvl; i++) {
const levelEntry = LEVELS[i];
if (levelEntry?.rarity) {
@@ -1156,7 +1121,6 @@ function updateInventoryCounts(lvl) {
}
}
- // Inject counts into the Tooltip DOM
const elements = {
"count-common": counts.common,
"count-uncommon": counts.uncommon,
@@ -1174,17 +1138,13 @@ function updateInventoryCounts(lvl) {
}
function updateLevelUI(levelData) {
- // ... your existing code to update level-name and level-number ...
-
const tooltipDesc = document.getElementById("tooltip-desc");
const tooltipRarity = document.getElementById("tooltip-rarity");
const tooltipCard = document.getElementById("level-tooltip");
- // Update Text
tooltipDesc.innerText = levelData.description;
tooltipRarity.innerText = levelData.rarity;
- // Optional: Dynamic Color based on rarity
const rarityColors = {
common: "var(--rarity-common)",
uncommon: "var(--rarity-uncommon)",
@@ -1205,25 +1165,20 @@ function updateGameUI() {
const lvl = Number(currentLevel) || 0;
const rank = getRank(lvl);
- // 1. Update the Description Tooltip
updateLevelUI(rank);
- // 2. Calculate and Update the Inventory Tooltip
updateInventoryCounts(lvl);
- // Update the Name and its Color
const nameLabel = document.getElementById("level-name");
if (nameLabel) {
nameLabel.innerText = rank.name;
nameLabel.style.color = rank.color;
}
- // Update the Badge
const badge = document.getElementById("level-badge");
if (badge) {
badge.innerText = rank.emoji;
badge.style.backgroundColor = rank.color;
- // Set contrast text color for the emoji/background
badge.style.color = getContrastYIQ(rank.color);
}
diff --git a/src/users/0xMRTT.yaml b/src/users/0xMRTT.yaml
index b79de6b..4950aa5 100644
--- a/src/users/0xMRTT.yaml
+++ b/src/users/0xMRTT.yaml
@@ -1,13 +1,13 @@
name: 0xMRTT
-github: 0xMRTT
+github: 0xmrtt
website: https://rubiin.vercel.app/
email: roobin.bhandari@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Universe
location: Earth
role: Web Developer
-languages: js golang ts css sass sh docker
+languages: js go ts css sass sh docker
bio: I love linux, cli, web dev
diff --git a/src/users/Barrerson.yaml b/src/users/Barrerson.yaml
index 92c21a0..8b16e5a 100644
--- a/src/users/Barrerson.yaml
+++ b/src/users/Barrerson.yaml
@@ -1,13 +1,13 @@
name: Barrett Pierson
-github: Barrerson
+github: barrerson
website: https://Barrerson.github.io
email: BarrettPierson@gmail.com
instagram: https://www.instagram.com/barrerson/
-twitter: https://twitter.com/Barrerson
+x: https://x.com/Barrerson
linkedin: https://linkedin.com/in/Barrerson
facebook:
country: Iran
location: 127.0.0.1
role: Web Developer
-languages: js css3 html5
+languages: js css html
bio: Becoming the best version of myself...
diff --git a/src/users/Favourene.yaml b/src/users/Favourene.yaml
index 4af22cb..13f7d66 100644
--- a/src/users/Favourene.yaml
+++ b/src/users/Favourene.yaml
@@ -1,13 +1,13 @@
name: Igbinosa Iwinosa
-github: Favourene
+github: favourene
website:
email: Igbinosaiwinosa01@gmail.com
-instagram: Favoureneosas
-twitter: Favourene4
-linkedin: IgbinosaIwinosa
-facebook: Favourene Osas
+instagram: https://www.instagram.com/Favoureneosas
+x: https://x.com/Favourene4
+linkedin: https://www.linkedin.com/in/IgbinosaIwinosa
+facebook: https://www.facebook.com/Favourene-Osas
country: Nigeria
location: Lagos
role: Frontend Developer, Ui/Ux designer
-languages: Html javascript Css React Scss
+languages: html js css react.js scss
bio: I have experience in building Web Apps and Designing Awesome and Beautiful UIs
diff --git a/src/users/GabrielTheophilo.yaml b/src/users/GabrielTheophilo.yaml
index a0cf6f9..88ba1fa 100644
--- a/src/users/GabrielTheophilo.yaml
+++ b/src/users/GabrielTheophilo.yaml
@@ -1,14 +1,14 @@
name: Gabriel Theophilo
-github: GabrielTheophilo
+github: gabrieltheophilo
website: https://github.com/GabrielTheophilo
email: gabrieltsf10@gmail.com
instagram:
-twitter: twitter.com/theoph1lo
+x: https://x.com/theoph1lo
linkedin: https://www.linkedin.com/in/gabriel-theophilo-32053a110/
facebook:
country: Brazil
location: Rio de Janeiro
role: Web Developer
-languages: c c++ java python postgresql js css3 html5
+languages: c cpp java py postgresql js css html
bio: |
Web developer learning Java/Js and postgresql for the web, C++ in software development and automation with Python
diff --git a/src/users/HammedBabatunde.yaml b/src/users/HammedBabatunde.yaml
index 7f99673..04eba60 100644
--- a/src/users/HammedBabatunde.yaml
+++ b/src/users/HammedBabatunde.yaml
@@ -1,13 +1,13 @@
name: Hammed Babatunde
-github: HammedBabatunde
+github: hammedbabatunde
website:
email: olawale6708@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Nigeria
location: Lagos
role: Project Manager, Data Analyst
-languages: python javascript
+languages: py js
bio: I have experience in building visualizations and cleaning data with excel, python and powerbi.
diff --git a/src/users/HunainAnis.yaml b/src/users/HunainAnis.yaml
index 77326b9..cfadbd0 100644
--- a/src/users/HunainAnis.yaml
+++ b/src/users/HunainAnis.yaml
@@ -1,15 +1,15 @@
name: Muhammad Hunain
-github: HunainAnis
+github: hunainanis
website: https://github.com/HunainAnis
email: hunainmuhammad@rocketmail.com
instagram:
-twitter:
+x:
linkedin: https://linkedin.com/in/hunainanis
facebook:
country: Pakistan
location: Karachi
role: React Frontend Developer
-languages: HTML CSS JavaScript Python
+languages: html css js py
bio: |
A Frontend ReactJS developer, who is pationate about Mastering Javascript.
I am a Freelancer making Dynamic webapps using ReactJS.
diff --git a/src/users/JayantGoel001.yaml b/src/users/JayantGoel001.yaml
index fc1ae9f..5f2de30 100644
--- a/src/users/JayantGoel001.yaml
+++ b/src/users/JayantGoel001.yaml
@@ -1,10 +1,14 @@
name: Jayant Goel
-github: JayantGoel001
+github: jayantgoel001
website: https://JayantGoel001.github.io/
email: jgoel92@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: India
location: Remote
role: Data Science Intern
-languages: C++ python Java Kotlin C HTML5 CSS JavaScript
+languages: cpp py java kotlin c html css js
bio: |
Data Science | Machine Learning | MEAN Stack Web | Android | Competitive Programmer | Data Science Intern @TalentDecrypt | Former Android Developer @theatron
diff --git a/src/users/Leo-Chan01.yaml b/src/users/Leo-Chan01.yaml
index 20767fe..c518be2 100644
--- a/src/users/Leo-Chan01.yaml
+++ b/src/users/Leo-Chan01.yaml
@@ -1,14 +1,9 @@
name: Umunnakwe Ephraim Ekene
-github: Leo-Chan01
-website:
+github: leo-chan01
email: ephraimleo16@gmail.com
-# instagram: your.favourite.developer
-# twitter: u_ephraim
-# linkedin: Ephraim Umunnakwe
-# facebook: Ephraim leo
country: Nigeria
location: Ebonyi
-languages:
role: Mobile Developer
+languages:
bio: |
I have good experience in building mobile apps with authentication integration using firebase, payment methods, NFC and optimizations.
diff --git a/src/users/MaxCkett.yaml b/src/users/MaxCkett.yaml
index 9e15bce..f04b71e 100644
--- a/src/users/MaxCkett.yaml
+++ b/src/users/MaxCkett.yaml
@@ -1,13 +1,13 @@
name: MaximilianBeckett
-github: MaxCkett
+github: maxckett
website: https://maxckett.github.io/
email: MaximilianBeckett@yahoo.com
instagram: https://www.instagram.com/MaxCkett
-twitter: https://twitter.com/MaxCkett
+x: https://x.com/MaxCkett
linkedin: https://www.linkedin.com/in/MaxCkett
facebook:
country: The internet
location: Remote
role: Web Developer
-languages: js css3 html5
+languages: js css html
bio: Just learning
diff --git a/src/users/MaxianEdison.yaml b/src/users/MaxianEdison.yaml
index 01b9783..df603f4 100644
--- a/src/users/MaxianEdison.yaml
+++ b/src/users/MaxianEdison.yaml
@@ -1,13 +1,13 @@
name: MaximilianEdison
-github: MaxianEdison
+github: maxianedison
website:
email: contact@maximilianedison.com
instagram: https://www.instagram.com/MaxianEdison
-twitter:
+x:
linkedin: https://Linkedin.com/in/MaxianEdison
facebook:
country: Iran
location: Kerman
role: Web Developer
-languages: php js css3 html5 bootstrap
+languages: php js css html bootstrap
bio: I want to learn everything !
diff --git a/src/users/MichaelHinrichs.yaml b/src/users/MichaelHinrichs.yaml
index 18867ac..415e7e5 100644
--- a/src/users/MichaelHinrichs.yaml
+++ b/src/users/MichaelHinrichs.yaml
@@ -1,13 +1,13 @@
name: Michael Hinrichs
-github: MichaelHinrichs
+github: michaelhinrichs
website:
email: mchinrichs@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: United States
location: Illinois
role: hobbyist
-languages: c# html5
+languages: c# html
bio: I write small programs to extract from file archives.
diff --git a/src/users/MutanPlex.yaml b/src/users/MutanPlex.yaml
index 0ca1091..6c977d9 100644
--- a/src/users/MutanPlex.yaml
+++ b/src/users/MutanPlex.yaml
@@ -1,9 +1,13 @@
name: Baris AL
-github: MutanPlex
+github: mutanplex
website: https://mutanplex.com/
email: barisal54@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: Turkiye
location: Remote
role: Full Stack Developer
-languages: HTML CSS JavaScript PHP MySQL TSQL TypeScript C C++ C# Go Java Kotlin VBScript Python
+languages: html css js php mysql tsql ts c cpp c# go java kotlin vbscript py
bio: Full Stack Developer @MutanPlex
diff --git a/src/users/NeuroPeakX.yaml b/src/users/NeuroPeakX.yaml
index 87465cb..744d73b 100644
--- a/src/users/NeuroPeakX.yaml
+++ b/src/users/NeuroPeakX.yaml
@@ -1,13 +1,13 @@
name: NeuroPeakX
-github: NeuroPeakX
+github: neuropeakx
website:
email: aidancharlton717@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Poland
location: Warshasawa
role: Full Stack Developer
-languages: c php js css3 html5
+languages: c php js css html
bio:
diff --git a/src/users/NimishKashyap.yaml b/src/users/NimishKashyap.yaml
index 0071153..61bee12 100644
--- a/src/users/NimishKashyap.yaml
+++ b/src/users/NimishKashyap.yaml
@@ -1,13 +1,13 @@
name: Nimish Kashyap
-github: NimishKashyap
+github: nimishkashyap
website:
email: kashyap.nimish8@gmail.com
instagram: https://instagram.com/nimishkashyap
-twitter: https://twitter.com/Nimishkashyap03
+x: https://x.com/Nimishkashyap03
linkedin: https://www.linkedin.com/in/nimish-kashyap/
facebook: https://www.facebook.com/niluplays.mc
country: India
location: Assam
role: Web Developer
-languages: MaterialUI html javascript NodeJS NestJS express mongodb mysql reactjs NextJS markdown js
+languages: materialui html js node.js nest.js express.js mongodb mysql react.js next.js markdown js
bio: Super excited to learn new technologies and meet new people on my journey.
diff --git a/src/users/OrionFable.yaml b/src/users/OrionFable.yaml
index 4e626bf..70e8265 100644
--- a/src/users/OrionFable.yaml
+++ b/src/users/OrionFable.yaml
@@ -1,13 +1,13 @@
name: Ethan Benny
-github: OrionFable
+github: orionfable
website:
email: alexbenny544@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Philippines
location: Pasig
role: Web Developer
-languages: c php js css3 html5
+languages: c php js css html
bio:
diff --git a/src/users/Passion-Over-Pain.yaml b/src/users/Passion-Over-Pain.yaml
index 609c88e..020e71e 100644
--- a/src/users/Passion-Over-Pain.yaml
+++ b/src/users/Passion-Over-Pain.yaml
@@ -1,15 +1,15 @@
name: Tinotenda Mhedziso
-github: Passion-Over-Pain
+github: passion-over-pain
website: https://tinotenda-mhedziso.pages.dev/
email: tinomhedziso21@gmail.com
instagram:
-twitter:
+x:
linkedin: https://za.linkedin.com/in/tinotenda-mhedziso
facebook:
country: South Africa
location: Gqeberha
role: Software Developer
-languages: C# CSS3 HTML5 JS Python MySQL
+languages: c# css html js py sql mysql
bio: |
Final year Bachelor of Information Technology student who has some
experience with Full-stack web development in vanilla JS💻, building
diff --git a/src/users/SushantAdh07.yaml b/src/users/SushantAdh07.yaml
index c02ca91..f47e348 100644
--- a/src/users/SushantAdh07.yaml
+++ b/src/users/SushantAdh07.yaml
@@ -1,14 +1,14 @@
name: Sushant Adhikari
-github: SushantAdh07
+github: sushantadh07
website: https://sushantadh07.github.io/
email: sushantadhikari2075@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Nepal
location: Kathmandu
role: Front End Contributor
-languages: css3 html5
+languages: css html
bio: |
I'm a tech student pursuing the career in the field of CSIT which stands for Computer Science and Information Technology. I have basic knowledge of html, css and python.
diff --git a/src/users/TheGuyDangerous.yaml b/src/users/TheGuyDangerous.yaml
index b640cb6..6f5a160 100644
--- a/src/users/TheGuyDangerous.yaml
+++ b/src/users/TheGuyDangerous.yaml
@@ -1,13 +1,13 @@
name: Sannidhya Dubey
-github: TheGuyDangerous
-website: http://sannidhya.me/
+github: theguydangerous
+website: https://sannidhya.me/
email: sannidhyadubey@gmail.com
instagram: https://www.instagram.com/sannnidhya/
-twitter:
+x:
linkedin: https://www.linkedin.com/in/sannidhyadubey
facebook:
country: India
location: Gorakhpur
role: Flutter Dev
-languages: C++ JavaScript php css html dart mysql Git
+languages: cpp javascript php css html dart mysql git
bio:
diff --git a/src/users/abdorah.yaml b/src/users/abdorah.yaml
index 6b51b57..e9e6caa 100644
--- a/src/users/abdorah.yaml
+++ b/src/users/abdorah.yaml
@@ -3,13 +3,13 @@ github: abdorah
website: https://kotbiabderrahmane.web.app/
email: kotbymo@gmail.com
instagram: https://www.instagram.com/kotbiabderrahmane/
-twitter: https://twitter.com/KotbiAbderrahm1
+x: https://x.com/KotbiAbderrahm1
linkedin: https://www.linkedin.com/in/abderrahmane-kotbi-59470a146/
facebook: https://www.facebook.com/profile.php?id=100010553502928
country: Morocco
location: Rabat
role: Web Developer
-languages: c java js css3 html5
+languages: c java js css html
bio: |
Java Spring developer.
diff --git a/src/users/akajov.yaml b/src/users/akajov.yaml
index c605165..47efa03 100644
--- a/src/users/akajov.yaml
+++ b/src/users/akajov.yaml
@@ -3,12 +3,13 @@ github: ajakov
website: https://aleksandarjakovljevic.com/
email: aleksandarjakovljevic@gmail.com
instagram: https://www.instagram.com/aleksandarjakovljevic/
-twitter: https://twitter.com/aleksandar_sd
+x: https://x.com/aleksandar_sd
linkedin: https://www.linkedin.com/in/ajakov/
+facebook:
country: Serbia
location: Belgrade
role: Backend Web Developer
-languages: php js css3 html5
+languages: php js css html
bio: |
16+ years of experience.
diff --git a/src/users/alifiroozidev.yaml b/src/users/alifiroozidev.yaml
index 70b2172..bfbbddc 100644
--- a/src/users/alifiroozidev.yaml
+++ b/src/users/alifiroozidev.yaml
@@ -2,12 +2,12 @@ name: Ali Firoozi
github: alifiroozidev
website:
email: contact.alifiroozi@gmail.com
-instagram: alifiroozi.art
-twitter:
+instagram: https://www.instagram.com/alifiroozi.art
+x:
linkedin:
facebook:
country:
location:
role: Web Developer
-languages: python php js css3 html5 react nextjs nuxtjs nodejs
+languages: py php js css html react.js next.js nuxt.js node.js
bio:
diff --git a/src/users/an1rxdh664.yaml b/src/users/an1rxdh664.yaml
index 2869e1a..ab26009 100644
--- a/src/users/an1rxdh664.yaml
+++ b/src/users/an1rxdh664.yaml
@@ -3,12 +3,13 @@ github: an1rxdh664
website: https://github.com/an1rxdh664
email: anirudhhh637@gmail.com
instagram: https://instagram.com/_an1rxdh
-twitter: https://x.com/anirxdh14
+x: https://x.com/anirxdh14
linkedin: https://www.linkedin.com/in/anirudh-kushwah-b885483a3/
+facebook:
country: India
location: Gwalior
role: Front-End Developer
-languages: JavaScript Java HTML CSS PHP C
+languages: js java html css php c
bio: |
I am a developer who learns by building projects and figuring things out along the way. I mostly work on the front end using HTML, CSS, JavaScript, and React, focusing on clean layouts and code that actually works.
diff --git a/src/users/anderson-garcia.yaml b/src/users/anderson-garcia.yaml
index 05dfaab..2bd88f5 100644
--- a/src/users/anderson-garcia.yaml
+++ b/src/users/anderson-garcia.yaml
@@ -1,6 +1,5 @@
name: Anderson Steve García
-github: Anderson-Garcia
-website:
+github: anderson-garcia
email: aegiptogt@gmail.com
country: Venezuela
location: Valencia
diff --git a/src/users/anekenonso.yaml b/src/users/anekenonso.yaml
index c854282..5fc3f82 100644
--- a/src/users/anekenonso.yaml
+++ b/src/users/anekenonso.yaml
@@ -1,10 +1,14 @@
name: Okenwa Kenneth
-github: Anekenonso
+github: anekenonso
website: https://codetuts.netlify.app/
email: okenwanonsokenneth@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: Nigeria
location: Enugu
role: Web Developer
-languages: html5 CSS3 JavaScript
+languages: html css js
bio: |
I'm a web developer from Nigeria and my focus is on the Front-end.
diff --git a/src/users/anufdo.yaml b/src/users/anufdo.yaml
index c211289..999417d 100644
--- a/src/users/anufdo.yaml
+++ b/src/users/anufdo.yaml
@@ -3,12 +3,12 @@ github: anufdo
website:
email: anufdo@gmail.com
instagram:
-twitter:
+x:
linkedin: https://www.linkedin.com/in/anuradha-fernando-0b492a97/
facebook:
country: Sri Lanka
location: Minuwangoda
role: Full Stack Developer
-languages: JavaScript TypeScript C# Java
+languages: js ts c# java
bio: |
Exploring new technologies and developing software solutions.
diff --git a/src/users/ayushrana182.yaml b/src/users/ayushrana182.yaml
index 59a011e..28f60d3 100644
--- a/src/users/ayushrana182.yaml
+++ b/src/users/ayushrana182.yaml
@@ -2,13 +2,12 @@ name: Ayush Dhoj Rana
github: ayushrana182
website: https://portfolio-plrgcvrq4-ayushrana182.vercel.app/
email: ayushrana182@gmail.com
-instagram: n/a
-twitter: https://twitter.com/AyushRana7
+x: https://x.com/AyushRana7
linkedin: https://www.linkedin.com/in/ayush-rana-725460135/
country: Nepal
location: Kathmandu
role: Front End Engineer
-languages: JS React TS GraphQL
+languages: js react.js ts graphql
bio: |
2+ years of experience.
diff --git a/src/users/basalumutgazi.yaml b/src/users/basalumutgazi.yaml
index b19e685..e07c62c 100644
--- a/src/users/basalumutgazi.yaml
+++ b/src/users/basalumutgazi.yaml
@@ -1,9 +1,13 @@
name: Umut Gazi BAŞAL
github: basalumutgazi
-website: basalumutgazi.me
+website: https://basalumutgazi.me
email: basalumutgazi@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: France/Türkiye
location: Paris/Istanbul
role: NLP Student & Python Developer
-languages: Python
+languages: py
bio: English French Turkish Translator / Junior Python Developer / NLP Student. Full-stack programmer to be!
diff --git a/src/users/basemax.yaml b/src/users/basemax.yaml
index 2c7085d..b8504e3 100644
--- a/src/users/basemax.yaml
+++ b/src/users/basemax.yaml
@@ -2,9 +2,13 @@ name: Max Base
github: basemax
website: https://maxbase.org/
email: maxbasecode@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: The Internet
location: Remote
role: Software engineer
-languages: c php js css3 html5
+languages: c php js css html
bio: |
@github developer maintainer. Full-Time Open-Sourcerer. Full-stack programmer. In the path of a real computer engineer... (Compiler enthusiast)
diff --git a/src/users/bdadmehr0.yaml b/src/users/bdadmehr0.yaml
index cd3c6f9..e2e3a79 100644
--- a/src/users/bdadmehr0.yaml
+++ b/src/users/bdadmehr0.yaml
@@ -1,14 +1,11 @@
name: Dadmehr Emami
-github: BDadmehr0
-website:
+github: bdadmehr0
email: garfoxteam@gmail.com
instagram: https://instagram.com/dadmehrlife
-twitter:
-linkedin:
country: Iran
location: Maragheh
role: Back-end Developer
-languages: Python Rust C/CPP
+languages: py rust c cpp
bio: |
Hello! I am a passionate and committed software developer with strong experience in programming and technology.
I enjoy solving complex problems and creating innovative solutions that have a meaningful impact.
diff --git a/src/users/cima9642.yaml b/src/users/cima9642.yaml
index c3c3e1a..fad3253 100644
--- a/src/users/cima9642.yaml
+++ b/src/users/cima9642.yaml
@@ -3,10 +3,13 @@ github: cima9642
website: https://github.com/cima9642
email: carlosfxv@gmail.com
instagram: https://instagram.com/cimagraphy
+x:
linkedin: https://linkedin.com/in/carlosfxv
+facebook:
country: USA
+location:
role: Software Engineer
-languages: JavaScript Python React Java
+languages: js py react.js java
bio: |
Texan Frontend Developer with a love for building intuitive,
user friendly experiences. Curiosity drives my experimentation
diff --git a/src/users/dipendrachandel.yaml b/src/users/dipendrachandel.yaml
index 0e39611..3b551ec 100644
--- a/src/users/dipendrachandel.yaml
+++ b/src/users/dipendrachandel.yaml
@@ -1,10 +1,15 @@
name: Dipendra Singh Chandel
github: dipendrachandel
+website:
+email:
+instagram:
+x:
linkedin: https://www.linkedin.com/in/dchandel/
+facebook:
country: India
location: Pune
role: Data Engineer | Cloud & DevOps Enthusiast
-languages: Python SQL JavaScript Linux Git
+languages: py sql js linux git
bio: |
Data-focused engineer with hands-on experience in SQL, Python, and ETL pipelines.
Previously worked at Amazon, where I handled large datasets, quality audits,
diff --git a/src/users/enimiste.yaml b/src/users/enimiste.yaml
index cdabe5f..acb4407 100644
--- a/src/users/enimiste.yaml
+++ b/src/users/enimiste.yaml
@@ -1,10 +1,9 @@
name: Nouni Elbachir
github: enimiste
-website:
email: nouni.elbachir@gmail.com
country: Morocco
location: Internet
role: Software Engineer
-languages: java python php go scala js css3 html5
+languages: java py php go scala js css html
bio: |
Algorithms, programming, backend dev, devops, ...
diff --git a/src/users/eugene4545.yaml b/src/users/eugene4545.yaml
index 8cbaf46..3c34a0c 100644
--- a/src/users/eugene4545.yaml
+++ b/src/users/eugene4545.yaml
@@ -3,12 +3,12 @@ github: eugene4545
website:
email: eugeneonuoha72@gmail.com
instagram:
-twitter: se_sam72
+x: https://x.com/se_sam72
linkedin:
facebook:
country: Nigeria
location: Lagos
role: Web Developer
-languages: javascript typescript python
+languages: js ts py
bio: |
Med student and aspiring Full Stack developer, open source contributor
diff --git a/src/users/gakramx.yaml b/src/users/gakramx.yaml
index c4afb50..c0946bd 100644
--- a/src/users/gakramx.yaml
+++ b/src/users/gakramx.yaml
@@ -3,13 +3,13 @@ github: gakramx
website:
email: akram@riseup.net
instagram:
-twitter:
+x:
linkedin:
facebook:
country: Algeria
location: M'sila
role: Systems programmer
-languages: c c++ assembly python scheme bash
+languages: c cpp assembly py scheme bash
bio: |
I'm a software engineer & Electronic Technician, I have programming experience System Programming and Desktop Software,
Also in embedded systems such as Arduino and Raspberry Pi .. etc.
diff --git a/src/users/hariketsheth.yaml b/src/users/hariketsheth.yaml
index 254c2cc..3776b06 100644
--- a/src/users/hariketsheth.yaml
+++ b/src/users/hariketsheth.yaml
@@ -3,11 +3,11 @@ github: hariketsheth
website: https://hariketsheth.github.io
email: shethhariket@gmail.com
instagram: https://instagram.com/HariketAcoustics
-twitter: https://twitter.com/HariketSheth
+x: https://x.com/HariketSheth
linkedin: https://www.linkedin.com/in/hariketsheth
facebook: https://www.facebook.com/HariketAcoustics
country: India
location: World
role: Web Developer
-languages: bootstrap html javascript php mysql reactjs nodejs markdown js css3 html5
+languages: bootstrap html js php mysql react.js node.js markdown js css
bio: Motivated individual to discover solutions to Real world problems and contribute
diff --git a/src/users/hitman5050.yaml b/src/users/hitman5050.yaml
index d2a90a9..9f597e8 100644
--- a/src/users/hitman5050.yaml
+++ b/src/users/hitman5050.yaml
@@ -1,14 +1,15 @@
name: Daksh Amalseda
-github: HITMAN5050
+github: hitman5050
website: https://runiverse.fit
email: dakshamalseda@gmail.com
instagram: https://instagram.com/runiverse.fit
-twitter: https://twitter.com/runiverse.fit
+x: https://x.com/runiverse.fit
linkedin: https://www.linkedin.com/in/daksh-amalseda-879b7934a/
+facebook:
country: India
location: Ahmedabad, Gujarat
role: Founder & Full-Stack Developer
-languages: JavaScript TypeScript C C++ Python
+languages: js ts c cpp py
bio: |
I’m the founder of Runiverse, an Indian-first running and wellness platform
focused on helping everyday people build sustainable fitness habits.
diff --git a/src/users/iabdr.yaml b/src/users/iabdr.yaml
index dc5253e..059b4fe 100644
--- a/src/users/iabdr.yaml
+++ b/src/users/iabdr.yaml
@@ -1,12 +1,11 @@
name: Abd Ar
github: iabdr
-website:
email: abd.arstiae@gmail.com
-twitter: https://twitter.com/abd_ink
+x: https://x.com/abd_ink
country: Pakistan
location: ATD
role: Web and App Developer
-languages: js css3 html5
+languages: js css html
bio: |
I'm a Student, Developer, Learner and Graphic Designer.
I’m interested in Web & App Development.
diff --git a/src/users/ierfaaan.yaml b/src/users/ierfaaan.yaml
index 8988c9b..b36d94b 100644
--- a/src/users/ierfaaan.yaml
+++ b/src/users/ierfaaan.yaml
@@ -2,12 +2,12 @@ name: Erfan Bbbasi
github: ierfaaan
website:
email: erfan.ab9898@gmail.com
-instagram: ierfaaan
-twitter:
+instagram: https://www.instagram.com/ierfaaan
+x:
linkedin: https://www.linkedin.com/in/erfan-abbasi-237239190/
facebook:
country: Iran
location: Tehran
role: Web Developer
-languages: javaScript PHP HTML CSS React mySql Python C
+languages: js php html css react.js mysql py c
bio: Hi my name is erfan
diff --git a/src/users/itsjoniur.yaml b/src/users/itsjoniur.yaml
index 32066fd..52b6569 100644
--- a/src/users/itsjoniur.yaml
+++ b/src/users/itsjoniur.yaml
@@ -1,12 +1,9 @@
name: Ahmad Amoori
github: itsjoniur
+website:
email: ahmadamoori.dev@gmail.com
-instagram:
-twitter:
-linkedin:
-facebook:
country: Iran
location: Ahvaz
role: Back-end Developer
-languages: python golang bash script
+languages: py go bash script
bio: You can call me Joniur
diff --git a/src/users/jbampton.yaml b/src/users/jbampton.yaml
index 9c102b7..bec48c1 100644
--- a/src/users/jbampton.yaml
+++ b/src/users/jbampton.yaml
@@ -2,6 +2,10 @@ name: John Bampton 🏂 🏄 🎿 ♠️ ♥️ ♣️ ♦️ 💎 🏆 😎
github: jbampton
website: https://john.onelang.workers.dev/
email: jbampton@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: Australia
location: Brisbane
role: Technical Manager and Scrum Master
diff --git a/src/users/kaifansariw.yaml b/src/users/kaifansariw.yaml
index 7fd2636..05f2ff5 100644
--- a/src/users/kaifansariw.yaml
+++ b/src/users/kaifansariw.yaml
@@ -1,14 +1,11 @@
name: Ansari Mohamed Kaif
github: kaifansariw
-website:
email: kaifariz510@gmail.com
-instagram:
-twitter:
linkedin: https://www.linkedin.com/in/mohamed-kaif-ansari-233389369/
country: India
location: Gujarat, Surat
role: Student
-languages: cpp js React expressjs Nodejs tailwindcss css html
+languages: cpp js react.js express.js node.js tailwindcss css html
bio: |
I am an open-source contributor and Computer Science undergraduate passionate about building scalable systems, modern UI/UX, and high-impact community projects.
I have contributed to major programs like Hacktoberfest ’25, Open-Odyssey 2.0 ’25 (Rank 26), GirlScript Summer of Code ’25 (Rank 2043/3400+), and Winter of Code Social ’25.
diff --git a/src/users/kenhorlador.yaml b/src/users/kenhorlador.yaml
index 27baf2f..694cf2f 100644
--- a/src/users/kenhorlador.yaml
+++ b/src/users/kenhorlador.yaml
@@ -3,22 +3,22 @@ github: kenhorlador
website:
email: kenhorlador@gmail.com
instagram: https://instagram.com/kenhorlador
-twitter: https://twitter.com/kenhorlador
+x: https://x.com/kenhorlador
linkedin: https://www.linkedin.com/in/ken-horlador-075024203/
facebook: https://www.facebook.com/kenhorlador
country: Philippines
location: Camarines Sur
role: Software Engineer / UI/UX Designer / Layout Artist
-languages: c c++ js css3 html5 python3.82+ golang scss typescript
+languages: c cpp js css html py go scss ts
bio: |
- I'm **Ken Horlador** from Camarines Sur, Philippines. I enjoy learning programming languages and libraries/frameworks like
ReactJS with
GatsbyJS or
NextJS. I also enjoy wireframing, developing user flows, user interface, user experience and design in general.
+ I'm **Ken Horlador** from Camarines Sur, Philippines. I enjoy learning programming languages and libraries/frameworks like [ReactJS](https://reactjs.org/) with [GatsbyJS](https://www.gatsbyjs.com/) or [NextJS](https://nextjs.org/). I also enjoy wireframing, developing user flows, user interface, user experience and design in general.
- Currently taking Bachelor of Science in Computer Science at
Camarines Sur Polytechnic Colleges.
+ Currently taking Bachelor of Science in Computer Science at [Camarines Sur Polytechnic Colleges](https://cspc.edu.ph/).
- Former Layout Artist at
The USI-Façade | The Official Student Publication of
Universidad de Sta. Isabel [ 2019 - 2020 ]
+ Former Layout Artist at [The USI-Façade | The Official Student Publication](https://www.facebook.com/theusifacade) of [Universidad de Sta. Isabel](https://www.usi.edu.ph/) **[ 2019 - 2020 ]**
- Currently working as a Layout Artist at
TheSpark | The Official Student-Community Publication of
Camarines Sur Polytechnic Colleges [ 2020 - Present ]
+ Currently working as a Layout Artist at [TheSpark | The Official Student-Community Publication](https://www.facebook.com/thesparkpub) of [Camarines Sur Polytechnic Colleges](https://cspc.edu.ph/) **[ 2020 - *Present* ]**
- Personality type:
INTJ ( Introverted, Intuitive, Thinking, Judging )
+ Personality type: **INTJ** ( Introverted, Intuitive, Thinking, Judging )
- Pronouns:
He/Him/His
+ Pronouns: **He/Him/His**
diff --git a/src/users/koolamusic.yaml b/src/users/koolamusic.yaml
index 3a972cb..af9bc3a 100644
--- a/src/users/koolamusic.yaml
+++ b/src/users/koolamusic.yaml
@@ -2,11 +2,9 @@ name: Andrew Miracle
github: koolamusic
website: https://andrewmiracle.com
email: me@andrewmiracle.com
-instagram:
-twitter: https://twitter.com/koolamusic
-linkedin:
+x: https://x.com/koolamusic
country: Nigeria
location: Lagos
role: Software Engineer
-languages: JS React TS GraphQL Golang Solidity Nodejs Vuejs
+languages: js react.js ts graphql go solidity node.js vue.js
bio: Nodejs/Typescript/Golang dev by night, procrastinating UX Designer by day
diff --git a/src/users/mahabub.yaml b/src/users/mahabub.yaml
index 2473fcf..36dd0a7 100644
--- a/src/users/mahabub.yaml
+++ b/src/users/mahabub.yaml
@@ -3,13 +3,13 @@ github: prio101
website: https://www.mahabub.dev/
email: miprio101@gmail.com
instagram:
-twitter: https://twitter.com/prio_mahabub
+x: https://x.com/prio_mahabub
linkedin: https://www.linkedin.com/in/miprio101/
facebook:
country: Bangladesh
location: Sirajganj
role: Web Developer
-languages: ruby elixir js python3 css3 html5
+languages: ruby elixir js py css html
bio: |
Professional Web Developer and Web technology enthusiast. Working with web technology with passion for around 5 years. Here is some key skills I can point out about me,
diff --git a/src/users/majalian.yaml b/src/users/majalian.yaml
index 5d44d51..c3dcec7 100644
--- a/src/users/majalian.yaml
+++ b/src/users/majalian.yaml
@@ -1,14 +1,13 @@
name: Mujahid Al-Majali
-github: Majalian
-website:
+github: majalian
email: mujahid.majalian@gmail.com
instagram: https://www.instagram.com/mujbour/
-twitter: https://mobile.twitter.com/majalian
+x: https://mobile.x.com/majalian
linkedin: https://www.linkedin.com/in/mujahidjbour/
country: Jordan
location: Amman
-languages:
role: Copywriter
+languages:
bio: |
I have been a technical writer for more than eight years in several different settings. I learn remarkably quickly, and my researching skills are outstanding.
diff --git a/src/users/majidabdulred.yaml b/src/users/majidabdulred.yaml
index a895fc5..036dfcc 100644
--- a/src/users/majidabdulred.yaml
+++ b/src/users/majidabdulred.yaml
@@ -2,8 +2,12 @@ name: Abdul Majid
github: majidabdulred
website: https://abdulmajid.home.blog/
email: abdulmajidred@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: India
location: Basti/Uttar_Pradesh
role: Bot Developer
-languages: python html5 css js c
+languages: py html css js c
bio: A freelancer and Pythonista. I love everything that's in Python. My skills are web scraping, Discord bot development, API integration and automation.
diff --git a/src/users/mohammadshaad.yaml b/src/users/mohammadshaad.yaml
index 4b92f2d..e3bda42 100644
--- a/src/users/mohammadshaad.yaml
+++ b/src/users/mohammadshaad.yaml
@@ -3,12 +3,12 @@ github: mohammadshaad
website: https://mohammadshaad.github.io/
email: callshaad@gmail.com
instagram: https://instagram.com/ig.shaad
-twitter: https://twitter.com/MohammadShaadsk
+x: https://x.com/MohammadShaadsk
linkedin: https://www.linkedin.com/in/mohammad-shaad-shaikh/
facebook: https://www.facebook.com/officialshaad/
country: India
location: Chennai
role: MERN + MEVN + NEXTJS FULL STACK DEVELOPER & DESIGNER
-languages: c c++ python go java js css3 html5
+languages: c cpp python go java js css html
bio: |
As a fullstack web developer, UI/UX designer, and avid open source contributor, I've spent countless hours tinkering with code, perfecting designs, and pushing the limits of what's possible on the web. When I'm not busy creating visually stunning and intuitive interfaces, you can find me diving into the world of cloud and DevOps, or using my video editing skills to craft compelling stories. All in all, I'm a tech enthusiast with a passion for constantly learning and improving my skills. Currently, I am doing Bachelor of Technology in Computer Science Engineering from Vellore Institute of Technology, Chennai.
diff --git a/src/users/mohdrash.yaml b/src/users/mohdrash.yaml
index 61f55de..6739dca 100644
--- a/src/users/mohdrash.yaml
+++ b/src/users/mohdrash.yaml
@@ -3,13 +3,13 @@ github: mohdrash
website: https://mohdrash.github.io/myself/
email: iamrasheek00@gmail.com
instagram:
-twitter:
+x:
linkedin: https://in.linkedin.com/in/mohammed-rasheek-m-4358b8191
facebook:
country: India
location: Kerala
role: Software Engineer
-languages: c js css3 html5 c++ nodejs reactjs angularjs solidity moralis nextjs django python
+languages: c js css html cpp node.js react.js angular.js solidity moralis next.js django py
bio: |
I'm a Keralite. From a place of beauty and nature. Since my childhood, i love sports (like football and MMA), hiking mountains, cooking, eating and drawing. I always try to draw stuff with my unique point of view. I also love to create things that can be useful to others.
I started coding since I was in high school. I just got volunteered with a game developers community called 'Gametop' and was part in the development of two games 'sudden strike, sudden strike Iwo Jima' Coding is also an art for me like I love to hike mountains. I was absolute noob when it comes to code html, css, and js during my College time, I'm only familiar with C++ and Arduino. That I even tried to be like broken. It becomes my favourite part when I was joined in Talrop, an Engineers world and later joined with a cyber security team under the mentorship of 'Mr.Gautam Kumawat'. I love it and now I have the opportunity to design along with the coding. My career become more stronger when I joined in Osperb Innovations that I learned a lot and still working. I find it really interesting and I enjoyed the process a lot.
diff --git a/src/users/mujeebshk.yaml b/src/users/mujeebshk.yaml
index 370f804..b47bfe3 100644
--- a/src/users/mujeebshk.yaml
+++ b/src/users/mujeebshk.yaml
@@ -3,11 +3,11 @@ github: mujeebshk
website: https://github.com/mujeebshk/
email: mujeebshk48@gmail.com
instagram: https://www.instagram.com/mujeebshk_/
-twitter: https://twitter.com/mujeebshk2
+x: https://x.com/mujeebshk2
linkedin: https://www.linkedin.com/in/mujeeb-shaik-1a9961224/
facebook:
country: India
location: Andhra Pradesh
role: Web Developer
-languages: Web Design AWS SvelteJs React Figma Git Debugging LINUX Terraform NPM MS Office
+languages: web design aws sveltejs react.js figma git debugging linux terraform npm ms office
bio:
diff --git a/src/users/muntasiractive.yaml b/src/users/muntasiractive.yaml
index e6cc9b0..a615ad9 100644
--- a/src/users/muntasiractive.yaml
+++ b/src/users/muntasiractive.yaml
@@ -3,12 +3,13 @@ github: muntasiractive
website: https://www.muntasir.site
email: message@muntasir.site
instagram: https://instagram.com/muntasiractive
-twitter: https://twitter.com/muntasiractive
+x: https://x.com/muntasiractive
linkedin: https://linkedin.com/in/muntasiractive
+facebook:
country: Bangladesh
location: Dhaka
role: Full Stack Developer
-languages: JavaScript C++ Python Java
+languages: js cpp py java
bio: |
A Branding and Workflow Architect and Web Developer, creating scalable solutions that blend technical expertise with creative problem solving.
diff --git a/src/users/muriturca.yaml b/src/users/muriturca.yaml
index 5de1f56..2a2eeff 100644
--- a/src/users/muriturca.yaml
+++ b/src/users/muriturca.yaml
@@ -1,6 +1,5 @@
name: Hasan Macit
-github: Muriturca
-website:
+github: muriturca
email: hsnmct98@gmail.com
country: Turkey
location: Ankara/Karaman/Antalya
diff --git a/src/users/nikultaka.yaml b/src/users/nikultaka.yaml
index 83cd842..d2e7c5b 100644
--- a/src/users/nikultaka.yaml
+++ b/src/users/nikultaka.yaml
@@ -3,12 +3,13 @@ github: nikultaka
website: https://palladiumhub.com
email: nikultaka@gmail.com
instagram: https://instagram.com/nikul.panchal.37
-twitter: https://twitter.com/nikultako
+x: https://x.com/nikultako
linkedin: https://linkedin.com/nikul-panchal-90795b34
+facebook:
country: India
location: Gujarat, Ahmedabad
role: Software Developer
-languages: PHP Golang React Node
+languages: php go react.js node
bio: |
14+ years of experience in PHP, React.js, Node.js, Golang, and AWS.
Strong background in database design, API development, and cloud infrastructure.
diff --git a/src/users/novalramdhani.yaml b/src/users/novalramdhani.yaml
index 95074d2..2499132 100644
--- a/src/users/novalramdhani.yaml
+++ b/src/users/novalramdhani.yaml
@@ -2,12 +2,12 @@ name: Noval Ramdhani
github: novalramdhani
website: https://novalll.vercel.app/
email: tokisakik950@gmail.com
-instagram: noval.codes
-twitter: codewithval
+instagram: https://www.instagram.com/noval.codes
+x: https://x.com/codewithval
linkedin:
facebook:
country: Indonesia
location: Bekasi
role: Full Stack Web Developer
-languages: HTML CSS Javascript Ruby PHP
+languages: html css js ruby php
bio: I love open source and great organization, experience with Laravel and Ruby On Rails
diff --git a/src/users/pratik-wadhai.yaml b/src/users/pratik-wadhai.yaml
index 27a97ed..cc80c1a 100644
--- a/src/users/pratik-wadhai.yaml
+++ b/src/users/pratik-wadhai.yaml
@@ -3,13 +3,13 @@ github: pratik-wadhai
website:
email: pratikwadhai001@gmail.com
instagram:
-twitter: https://twitter.com/PratikWadhai5
+x: https://x.com/PratikWadhai5
linkedin: https://www.linkedin.com/in/pratik-wadhai/
facebook:
country: India
location: Nagpur
role: Frontend Developer
-languages: javascript python sql html css
+languages: js py sql html css
bio: |
As a recent graduate with a passion for web development, I have acquired skills in HTML, CSS, and JavaScript. My knowledge in UI design and web development can be leveraged to help develop compelling, high-performance user experiences. With a solid foundation in coding, I am eager to bring my knowledge and experience to an exciting opportunity in the field of Frontend Development.
diff --git a/src/users/ps-19.yaml b/src/users/ps-19.yaml
index 3dc472d..d9bcbb5 100644
--- a/src/users/ps-19.yaml
+++ b/src/users/ps-19.yaml
@@ -3,11 +3,11 @@ github: ps-19
website: https://github.com/ps-19
email: priyansh.singh100@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: India
location: Lucknow
role: Web Developer
-languages: c++ c python php js css3 html5
+languages: cpp c py php js css html
bio:
diff --git a/src/users/ra1nbow.yaml b/src/users/ra1nbow.yaml
index 5a492dd..4a42c86 100644
--- a/src/users/ra1nbow.yaml
+++ b/src/users/ra1nbow.yaml
@@ -3,12 +3,12 @@ github: ra1nbow1
website: https://ra1nbow.xyz
email: admin@ra1nbow.xyz
instagram:
-twitter: https://twitter.com/romanov_web
+x: https://x.com/romanov_web
linkedin:
facebook:
country: Russia
location: Moscow
role: Web Developer
-languages: php js css3 html5 python
+languages: php js css html py
bio: |
Hi there! I'm a professional FullStack self-taught developer from Moscow. I truly love web-development and all that it concerns. Making websites is awesome. Follow me if you need some help.
diff --git a/src/users/rjphares.yaml b/src/users/rjphares.yaml
index b6af7c2..de782cd 100644
--- a/src/users/rjphares.yaml
+++ b/src/users/rjphares.yaml
@@ -2,6 +2,10 @@ name: Robert Phares
github: rjphares
website: https://rjphares.github.io/
email: rjphares914@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: United States
location: Georgia
role: Developer
diff --git a/src/users/rtewari056.yaml b/src/users/rtewari056.yaml
index ba703b7..ea10cf9 100644
--- a/src/users/rtewari056.yaml
+++ b/src/users/rtewari056.yaml
@@ -3,13 +3,13 @@ github: rtewari056
website: https://rohittewari.vercel.app/
email: rtewari056@gmail.com
instagram: https://www.instagram.com/rtewari056/
-twitter: https://twitter.com/rtewari056
+x: https://x.com/rtewari056
linkedin: https://www.linkedin.com/in/rtewari056/
facebook:
country: India
location: West Bengal
role: Full-Stack Developer
-languages: C C++ HTML CSS JavaScript Python
+languages: c cpp html css js py
bio: |
About Me:
diff --git a/src/users/sbhatm1213.yaml b/src/users/sbhatm1213.yaml
index a7b566e..43383b2 100644
--- a/src/users/sbhatm1213.yaml
+++ b/src/users/sbhatm1213.yaml
@@ -3,11 +3,11 @@ github: sbhatm1213
website: https://sbhatm1213.github.io/
email: sbhatm1213@gmail.com
instagram:
-twitter:
+x:
linkedin: https://www.linkedin.com/in/sowjanya-r-bhat-56a1a111b/
facebook:
country: India
location: Bangalore
role: Web Developer
-languages: python js html5
+languages: py js html
bio:
diff --git a/src/users/sm4rtdev.yaml b/src/users/sm4rtdev.yaml
index 55d2c4a..183a8da 100644
--- a/src/users/sm4rtdev.yaml
+++ b/src/users/sm4rtdev.yaml
@@ -3,12 +3,12 @@ github: sm4rtdev
website: https://elonscottdev.pro
email: elonscottdev@gmail.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: US
location: Texas
role: Senior Front-End and Web3 Developer
-languages: React Next.js TailwindCSS Node.js Python ethers.js three.js
+languages: react.js next.js tailwindcss node.js py ethers.js three.js
bio: |
I have over 8 years of experience with full stack development, and 4 years of experience with blockchain technology.
diff --git a/src/users/sweetdevil144.yaml b/src/users/sweetdevil144.yaml
index 331a61f..b6985e2 100644
--- a/src/users/sweetdevil144.yaml
+++ b/src/users/sweetdevil144.yaml
@@ -1,14 +1,14 @@
name: Abhinav Pandey
-github: Sweetdevil144
+github: sweetdevil144
website: https://sweetdevil144.github.io/My-Website/
email: abhinavpandey1230@gmail.com
instagram: https://www.instagram.com/abhinav_pandey_1230/
-twitter: https://twitter.com/Abhinav_6996
+x: https://x.com/Abhinav_6996
linkedin: https://www.linkedin.com/in/abhinav-pandey-441504252/
facebook:
country: India
location: Varanasi
role: Software Engineer
-languages: c php js css3 html5 java
+languages: c php js css html java
bio: |
A Software Engineer with experience in Fullstack Development.
diff --git a/src/users/syeddtaha.yaml b/src/users/syeddtaha.yaml
index 53775a6..5a8693e 100644
--- a/src/users/syeddtaha.yaml
+++ b/src/users/syeddtaha.yaml
@@ -1,9 +1,15 @@
name: Syed Muhammad Taha
-github: SyeddTaha
+github: syeddtaha
+website:
+email:
+instagram:
+x:
+linkedin:
+facebook:
country: Pakistan
location: Karachi
role: Full Stack Engineer
-languages: C/C++ JavaScript Python
+languages: c cpp javascript py
bio: |
Full Stack Engineer and Graphic Designer currently pursuing a BSCS degree.
Interested in web development, UI/UX, backend systems, and building full stack applications using React, Node.js, Express, MongoDB, and Next.js.
diff --git a/src/users/tHe-AK.yaml b/src/users/tHe-AK.yaml
index 072ccbf..e525519 100644
--- a/src/users/tHe-AK.yaml
+++ b/src/users/tHe-AK.yaml
@@ -1,13 +1,9 @@
name: Akshay Kapoor
-github: tHe-AK
-website:
+github: the-ak
email: akshay.kapoor392@gmail.com
-instagram:
-twitter:
-linkedin:
country: India
location: Dharamshala
role: Web Developer
-languages: java nodejs js css3 html5 angular
+languages: java node.js js css html angular.js
bio: |
Full stack developer having experience of 3+ years working in Identity & Access Management, Fleet Management domains.
diff --git a/src/users/tanverified.yaml b/src/users/tanverified.yaml
index ec62ad5..0fc0d6f 100644
--- a/src/users/tanverified.yaml
+++ b/src/users/tanverified.yaml
@@ -3,12 +3,12 @@ github: tanverified
website:
email: tanveer7267hy5f2@mailnator.com
instagram:
-twitter:
+x:
linkedin:
facebook:
country: India
location: Mumbai
role: Full Stack Developer
-languages: c php js css3 html5
+languages: c php js css html
bio: |
A short biography and a short text about your technical skills.
diff --git a/src/users/theashishgavade.yaml b/src/users/theashishgavade.yaml
index 0bcae86..02caa0c 100644
--- a/src/users/theashishgavade.yaml
+++ b/src/users/theashishgavade.yaml
@@ -1,13 +1,14 @@
name: Ashish Gavade
-github: Theashishgavade
+github: theashishgavade
website: https://github.com/theashishgavade
email: ashugavade67@gmail.com
instagram: https://www.instagram.com/theashishgavade/
-twitter: https://twitter.com/theashishgavade
+x: https://x.com/theashishgavade
linkedin: https://www.linkedin.com/in/theashishgavade/
facebook: https://facebook.com/theashishgavade
country: India
+location:
role: Web Developer
-languages: c php js css3 html5 Java Python Android
+languages: c php js css html java py android
bio: |
Computer Engineer🖥️ Ethical Hacker 👨🏻💻 Mahamitra of Raigad 👑.
diff --git a/src/users/victoraraica.yaml b/src/users/victoraraica.yaml
index 8cb8142..d8ae8e4 100644
--- a/src/users/victoraraica.yaml
+++ b/src/users/victoraraica.yaml
@@ -1,11 +1,14 @@
name: Víctor Araica
-github: VictorAraica
+github: victoraraica
+website:
email: victoraraica@hotmail.com
instagram: https://www.instagram.com/victor_araica/
+x:
linkedin: https://www.linkedin.com/in/v%C3%ADctor-araica-63766220b/
+facebook:
country: Venezuela
location: Caracas
role: Web Developer
-languages: python js css3 html5
+languages: py js css html
bio: |
Hello, I'm Victor, I'm 19 years old, and I live in Venezuela. I started programming in 2019 with Python as a hobby making games and animations in pygame, and in 2020 I started learning about web development.
diff --git a/src/users/vinfinity7.yaml b/src/users/vinfinity7.yaml
index 5308dcd..73791c2 100644
--- a/src/users/vinfinity7.yaml
+++ b/src/users/vinfinity7.yaml
@@ -3,12 +3,12 @@ github: vinfinity7
website: https://vinfinity7.github.io/Portfolio/page.html
email: misrasaksham9@gmail.com
instagram: https://www.instagram.com/sakzzham/
-twitter: https://twitter.com/vinfinity_7
+x: https://x.com/vinfinity_7
linkedin: https://www.linkedin.com/in/saksham-misra-79334426b/
facebook:
country: India
location: Varanasi
role: Software Engineer
-languages: c++ c js css3 html5
+languages: cpp c js css html
bio: |
A Software Engineer with experience in Frontend Development.
diff --git a/src/users/yadavpreethi.yaml b/src/users/yadavpreethi.yaml
index 12b304f..07ec1c7 100644
--- a/src/users/yadavpreethi.yaml
+++ b/src/users/yadavpreethi.yaml
@@ -1,11 +1,15 @@
name: Preethi Yadav
-github: Yadavpreethi
+github: yadavpreethi
website: https://preethi-yadav-btn1id0.gamma.site/#projects
email: ypreethi56@gmail.com
+instagram:
+x:
+linkedin:
+facebook:
country: India
location: Banglore
role: Student
-languages: HTML Css JavaScript Python
+languages: html css js py
bio: |
Hi! I'm Preethi Yadav, a software engineering student
passionate about building web applications and solving real-world problems with code.
diff --git a/src/users/yazdanhaider.yaml b/src/users/yazdanhaider.yaml
index 01c059e..ea881ca 100644
--- a/src/users/yazdanhaider.yaml
+++ b/src/users/yazdanhaider.yaml
@@ -3,13 +3,13 @@ github: yazdanhaider
website: https://www.yazdanhaider.me/
email: yazdanhaider007@gmail.com
instagram: https://www.instagram.com/yazdan.haider23/
-twitter:
+x:
linkedin: https://www.linkedin.com/in/yazdan-haider
facebook:
country: India
location: Bhopal
role: Full Stack Developer
-languages: C++ JavaScript php css html dart mysql
+languages: cpp js php css html dart mysql
bio: |
I am currently a student of Vellore Institute Of Technology, Bhopal.
💻 Major is Computer Science.
diff --git a/src/users/yhdesai.yaml b/src/users/yhdesai.yaml
index fe022a2..87fe70e 100644
--- a/src/users/yhdesai.yaml
+++ b/src/users/yhdesai.yaml
@@ -3,12 +3,12 @@ github: yhdesai
website: https://yashdesai.dev
email:
instagram: https://www.instagram.com/yhdesai/
-twitter: https://www.twitter.com/yhdesai/
+x: https://x.com/yhdesai/
linkedin: https://www.linkedin.com/in/yhdesai/
facebook:
country: India
location: Jalgaon, Maharashtra
role: React Developer
-languages: html5 css3 js react java kotlin python
+languages: html css js react.js java kotlin py
bio: |
- Indie Maker | Working on
+ Indie Maker | Working on [shipr.dev](https://shipr.dev)