From 5e31ae8937b0dba526103f6b6d27370e8ba2305f Mon Sep 17 00:00:00 2001 From: Kevin Lewis Date: Sat, 15 Feb 2025 20:20:58 +0100 Subject: [PATCH 1/9] Adding Kevin Lewis --- src/data.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/data.js b/src/data.js index 42cdb9e1..4ecea750 100644 --- a/src/data.js +++ b/src/data.js @@ -4204,6 +4204,17 @@ module.exports = [ 'Next.js', ], }, + { + name: 'Kevin Lewis', + description: 'I am a developer relations person who loves community and education. Brit in Germany.', + url: 'https://lws.io/blog/uses', + bluesky: 'lws.io', + emoji: '๐Ÿ’ž', + country: '๐Ÿ‡ฉ๐Ÿ‡ช', + computer: 'apple', + phone: 'iphone', + tags: ['Developer', 'Education', 'Dad', 'Open Source Software', 'JavaScript', ], + }, { name: 'Bill Sullivan', description: From a4b2b9f2dd3813137efc725157ea6db9b59bafd0 Mon Sep 17 00:00:00 2001 From: Michael DeMarco Date: Sat, 15 Feb 2025 14:54:55 -0800 Subject: [PATCH 2/9] feat: adding michael demarco --- src/data.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/data.js b/src/data.js index 42cdb9e1..7b0302f0 100644 --- a/src/data.js +++ b/src/data.js @@ -6362,6 +6362,23 @@ module.exports = [ 'CSS', ], }, + { + name: 'Michael DeMarco', + description: 'Toolmaker, tinkerer, and teacher.', + url: 'https://www.michaeldemar.co/uses', + twitter: '@michaelfromyeg', + country: '๐Ÿ‡จ๐Ÿ‡ฆ', + emoji: '๐Ÿข', + computer: 'linux', + phone: 'android', + tags: [ + 'Engineer', + 'TypeScript', + 'Front End', + 'React', + 'CSS' + ] + }, { name: 'Caro Appleby', description: From 73e0f1c513700a19d19aa4df8a38bea0a141a67d Mon Sep 17 00:00:00 2001 From: Sayak Mukhopadhyay Date: Thu, 20 Feb 2025 13:16:17 +0530 Subject: [PATCH 3/9] feat: add Sayak Mukhopadhyay --- src/data.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/data.js b/src/data.js index 42cdb9e1..10467e09 100644 --- a/src/data.js +++ b/src/data.js @@ -11481,6 +11481,38 @@ module.exports = [ 'Scheme', ], }, + { + name: 'Sayak Mukhopadhyay', + description: 'Software Developer, Platform Engineer', + url: 'https://sayakm.me/uses/', + twitter: '@defineSayak', + emoji: '๐Ÿค˜๐Ÿผ', + country: '๐Ÿ‡ฎ๐Ÿ‡ณ', + computer: 'windows', + phone: 'android', + tags: [ + 'Software Developer', + 'Java', + 'Go', + 'Javascript', + 'Typescript', + 'Python', + 'VueJS', + 'NodeJS', + 'Back End', + 'Full Stack', + 'Docker', + 'Kubernetes', + 'Windowa', + 'Linux', + 'Ubuntu', + 'WSL', + 'GitOps', + 'AI', + 'GitHub', + 'Open Source Software', + ], + }, { name: 'Josiah Wiebe', description: 'Designer & developer, lifelong learner.', From 56f99a2ed4ac8bd47ce38f2cf78b0752253e732e Mon Sep 17 00:00:00 2001 From: Tetri Mesquita Neto Date: Fri, 25 Apr 2025 14:17:01 -0300 Subject: [PATCH 4/9] update country property to use flag emoji for Brazil --- src/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.js b/src/data.js index 42cdb9e1..b182820d 100644 --- a/src/data.js +++ b/src/data.js @@ -87,7 +87,7 @@ module.exports = [ url: 'https://iagobruno.is-a.dev/uses', twitter: '@iagotico', emoji: '๐Ÿณ๏ธโ€๐ŸŒˆ', - country: 'BR', + country: '๐Ÿ‡ง๐Ÿ‡ท', computer: 'windows', phone: 'iphone', tags: [ From 9a0d2ca32589db40472f537160899b4ab7da8cdc Mon Sep 17 00:00:00 2001 From: Blake Campbell Date: Thu, 21 Aug 2025 16:58:35 -0400 Subject: [PATCH 5/9] Updating github pipelines --- .github/workflows/data-validate.yml | 6 +++--- .github/workflows/populate-readme.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/data-validate.yml b/.github/workflows/data-validate.yml index 81e20dc8..61633c6e 100644 --- a/.github/workflows/data-validate.yml +++ b/.github/workflows/data-validate.yml @@ -11,13 +11,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16.x - name: Cache/Restore node modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/populate-readme.yml b/.github/workflows/populate-readme.yml index f9f3305d..557e0579 100644 --- a/.github/workflows/populate-readme.yml +++ b/.github/workflows/populate-readme.yml @@ -14,13 +14,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 16.x - name: Cache/Restore node modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} From f60cf83a2c65501d4186381a7449f011e0d20d82 Mon Sep 17 00:00:00 2001 From: Blake Campbell Date: Fri, 22 Aug 2025 08:55:36 -0400 Subject: [PATCH 6/9] Updating node version to 18 --- .github/workflows/data-validate.yml | 2 +- .github/workflows/populate-readme.yml | 2 +- .node-version | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/data-validate.yml b/.github/workflows/data-validate.yml index 61633c6e..1b426b33 100644 --- a/.github/workflows/data-validate.yml +++ b/.github/workflows/data-validate.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x - name: Cache/Restore node modules uses: actions/cache@v4 diff --git a/.github/workflows/populate-readme.yml b/.github/workflows/populate-readme.yml index 557e0579..6215dd5a 100644 --- a/.github/workflows/populate-readme.yml +++ b/.github/workflows/populate-readme.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x - name: Cache/Restore node modules uses: actions/cache@v4 diff --git a/.node-version b/.node-version index 07c142ff..a9d08739 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -16.13.1 +18.19.0 diff --git a/package.json b/package.json index e9e6d0de..44cbadf5 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ ] }, "engines": { - "node": ">= 16" + "node": ">= 18" }, "dependencies": { "@actions/core": "^1.10.0", From fe61a3e3b6e3138f0b87a6b4b34405a260efaaa8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 22 Aug 2025 13:19:38 +0000 Subject: [PATCH 7/9] chore: generate `readme.md`, lint `src/data.js` --- readme.md | 1 + src/data.js | 27 +++++++++++++++++---------- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/readme.md b/readme.md index 056f8c23..e97e59df 100644 --- a/readme.md +++ b/readme.md @@ -194,6 +194,7 @@ This readme is auto-generated from the data.js file, so please don't PR this fil * [Dale Larroder](https://www.dalelarroder.com/uses) โ€” Software Engineer, React, TypeScript and Mechanical Keyboards! * [Salma Alam-Naylor](https://whitep4nth3r.com/uses) โ€” I write code for your entertainment. * [Luke Oliff](https://lukeocodes.dev/uses) โ€” I am a seasoned Developer Experience Engineer with a rich background in Software Development. +* [Kevin Lewis](https://lws.io/blog/uses) โ€” I am a developer relations person who loves community and education. Brit in Germany. * [Bill Sullivan](https://billsullivan.name/uses/) โ€” Engineering Manager, Senior Engineer, Novice Streamer, and Occasional Entrepreneur * [Amit Dhamu](https://amitd.co/uses) โ€” Software Engineer, Formula 1 Addict, Tech Junkie, Hip-Hop Head * [Dominik Gallitzendรถrfer](https://nharox.com/uses) โ€” Frontโ€‘end developer with a focus on UI/UX. Loves CSS and is addicted to Tetris. diff --git a/src/data.js b/src/data.js index 94ae4478..25c651e1 100644 --- a/src/data.js +++ b/src/data.js @@ -4205,16 +4205,23 @@ module.exports = [ ], }, { - name: 'Kevin Lewis', - description: 'I am a developer relations person who loves community and education. Brit in Germany.', - url: 'https://lws.io/blog/uses', - bluesky: 'lws.io', - emoji: '๐Ÿ’ž', - country: '๐Ÿ‡ฉ๐Ÿ‡ช', - computer: 'apple', - phone: 'iphone', - tags: ['Developer', 'Education', 'Dad', 'Open Source Software', 'JavaScript', ], - }, + name: 'Kevin Lewis', + description: + 'I am a developer relations person who loves community and education. Brit in Germany.', + url: 'https://lws.io/blog/uses', + bluesky: 'lws.io', + emoji: '๐Ÿ’ž', + country: '๐Ÿ‡ฉ๐Ÿ‡ช', + computer: 'apple', + phone: 'iphone', + tags: [ + 'Developer', + 'Education', + 'Dad', + 'Open Source Software', + 'JavaScript', + ], + }, { name: 'Bill Sullivan', description: From 742544fef6bdb6eec43d499b3d1af2f7aa812ca6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 22 Aug 2025 13:26:11 +0000 Subject: [PATCH 8/9] chore: generate `readme.md`, lint `src/data.js` --- readme.md | 1 + src/data.js | 8 +------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/readme.md b/readme.md index e97e59df..4dc73fe1 100644 --- a/readme.md +++ b/readme.md @@ -292,6 +292,7 @@ This readme is auto-generated from the data.js file, so please don't PR this fil * [Christian Goben](https://christiangoben.com/uses) โ€” Software engineer, problem solver, automation sorcerer. On an endless pursuit for good coffee. * [Alex Duval](https://www.alexduval.fr/uses) โ€” Fullstack Dev, Teacher, Freeride skier * [Dave Redfern](https://daveredfern.com/uses) โ€” I design and develop userโ€‘centered experiences that deliver measurable returns. +* [Michael DeMarco](https://www.michaeldemar.co/uses) โ€” Toolmaker, tinkerer, and teacher. * [Caro Appleby](https://caro.fyi/uses) โ€” Indie programmer, textile artist, musician, endlessly curious * [Trevor Morris](https://www.trovster.com/about/uses) โ€” I am a movie-loving, mountain-bike-riding web developer from the UK. * [Nick Morris](http://nickmorris.name/uses) โ€” I am a music-loving, dog having, skiing, software engineer from California living in NYC. diff --git a/src/data.js b/src/data.js index 00d3139a..5bcca39f 100644 --- a/src/data.js +++ b/src/data.js @@ -6389,13 +6389,7 @@ module.exports = [ emoji: '๐Ÿข', computer: 'linux', phone: 'android', - tags: [ - 'Engineer', - 'TypeScript', - 'Front End', - 'React', - 'CSS' - ] + tags: ['Engineer', 'TypeScript', 'Front End', 'React', 'CSS'], }, { name: 'Caro Appleby', From 71808fe385305364e0e5b16c6f6ed755633d7c28 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 22 Aug 2025 13:44:56 +0000 Subject: [PATCH 9/9] chore: generate `readme.md`, lint `src/data.js` --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 4dc73fe1..83ab80d0 100644 --- a/readme.md +++ b/readme.md @@ -525,6 +525,7 @@ This readme is auto-generated from the data.js file, so please don't PR this fil * [Sal Ferrarello](https://salferrarello.com/uses/) โ€” Web Developer specializing in WordPress. Loves Git and Neovim. Good at metaphors and asking dumb questions. * [Brian Morrison II](https://brianmorrison.me/uses/) โ€” Full stack developer, content creator, husband, father of 3 boys, lifter of weights, Destiny 2/Stadia gamer * [Tim Downey](https://downey.io/uses/) โ€” Software Engineer - Distributed Systems, Cloud Platforms, and Web ๐Ÿ™ƒ +* [Sayak Mukhopadhyay](https://sayakm.me/uses/) โ€” Software Developer, Platform Engineer * [Josiah Wiebe](https://jwie.be/uses/) โ€” Designer & developer, lifelong learner. * [Muhammad Oka](https://muhammadoka.dev/uses/) โ€” Computer Science student, Cyber Security enthusiast. * [Benjamin Lannon](https://lannonbr.com/uses/) โ€” Web Developer, Open Source Contributor, Livestreamer