├── .github
├── pull_request_template.md
└── workflows
│ ├── data-validate.yml
│ └── populate-readme.yml
├── .gitignore
├── .node-version
├── .npmrc
├── contribution-guide.md
├── netlify.toml
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
└── default.png
├── readme.md
├── remix.config.js
├── scripts
├── data-validate.js
├── flags.js
├── masterData.js
├── multiple-emojis.mjs
├── populate-readme.js
├── readme-template.md
└── utils.js
├── server.ts
├── src
├── components
│ ├── BackToTop.js
│ ├── FavIcon.js
│ ├── Person.js
│ ├── Topics.js
│ ├── header.js
│ └── layout.js
├── data.js
├── entry.client.tsx
├── entry.server.tsx
├── fonts
│ ├── fira_mono-regular-webfont.woff
│ ├── fira_mono-regular-webfont.woff2
│ ├── fira_mono-regular_italic-webfont.woff
│ └── fira_mono-regular_italic-webfont.woff2
├── http
│ └── get-index
│ │ ├── index.js
│ │ ├── package-lock.json
│ │ └── package.json
├── images
│ ├── android.png
│ ├── apple.svg
│ ├── flip-phone.png
│ ├── gatsby-astronaut.png
│ ├── gatsby-icon.png
│ ├── iphone.png
│ ├── linux.png
│ ├── twitter-card.png
│ ├── windows.svg
│ └── windowsphone.png
├── pages
│ └── 404.js
├── root.tsx
├── routes
│ ├── index.tsx
│ └── like
│ │ └── $tag.tsx
├── styles.css
└── util
│ ├── icons.js
│ └── stats.ts
└── tsconfig.json
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 |
37 |
--------------------------------------------------------------------------------
/.github/workflows/data-validate.yml:
--------------------------------------------------------------------------------
1 | name: Validate data.js
2 |
3 | on:
4 | pull_request:
5 | paths: src/data.js
6 |
7 | env:
8 | CI: true
9 |
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v1
15 | - uses: actions/setup-node@v1
16 | with:
17 | node-version: 16.x
18 |
19 | - name: Cache/Restore node modules
20 | uses: actions/cache@v1
21 | with:
22 | path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
23 | key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
24 |
25 | - name: Install Dependencies
26 | run: npm install
27 |
28 | - name: Validate data.js
29 | run: node ./scripts/data-validate.js
30 | env:
31 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32 |
--------------------------------------------------------------------------------
/.github/workflows/populate-readme.yml:
--------------------------------------------------------------------------------
1 | name: Populate readme.md from master and lint src/data.js
2 |
3 | on:
4 | push:
5 | branches: master
6 | paths:
7 | - src/data.js
8 | - scripts/readme-template.md
9 |
10 | env:
11 | CI: true
12 |
13 | jobs:
14 | build:
15 | runs-on: ubuntu-latest
16 | steps:
17 | - uses: actions/checkout@v1
18 | - uses: actions/setup-node@v1
19 | with:
20 | node-version: 16.x
21 |
22 | - name: Cache/Restore node modules
23 | uses: actions/cache@v1
24 | with:
25 | path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
26 | key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
27 |
28 | - name: Install Dependencies
29 | run: npm install
30 |
31 | - name: Lint src/data.js
32 | run: |
33 | npx eslint --fix src/data.js
34 | git add src/data.js
35 |
36 | - name: Populate readme.md from master
37 | run: |
38 | node ./scripts/populate-readme.js
39 | mv generated-readme.md readme.md
40 | git add readme.md
41 | git config --local user.email "action@github.com"
42 | git config --local user.name "GitHub Action"
43 | # commit only if any changes
44 | if [ ! -z "$(git status --porcelain)" ]; then
45 | git commit -m "chore: generate \`readme.md\`, lint \`src/data.js\`"
46 | fi
47 |
48 | - name: Push changes
49 | uses: ad-m/github-push-action@master
50 | with:
51 | github_token: ${{ secrets.GITHUB_TOKEN }}
52 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | build/
2 | # Logs
3 | logs
4 | *.log
5 | npm-debug.log*
6 | yarn-debug.log*
7 | yarn-error.log*
8 |
9 | # Runtime data
10 | pids
11 | *.pid
12 | *.seed
13 | *.pid.lock
14 |
15 | # Directory for instrumented libs generated by jscoverage/JSCover
16 | lib-cov
17 |
18 | # Coverage directory used by tools like istanbul
19 | coverage
20 |
21 | # nyc test coverage
22 | .nyc_output
23 |
24 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25 | .grunt
26 |
27 | # Bower dependency directory (https://bower.io/)
28 | bower_components
29 |
30 | # node-waf configuration
31 | .lock-wscript
32 |
33 | # Compiled binary addons (http://nodejs.org/api/addons.html)
34 | build/Release
35 |
36 | # Dependency directories
37 | node_modules/
38 | jspm_packages/
39 |
40 | # Typescript v1 declaration files
41 | typings/
42 |
43 | # Optional npm cache directory
44 | .npm
45 |
46 | # Optional eslint cache
47 | .eslintcache
48 |
49 | # Optional REPL history
50 | .node_repl_history
51 |
52 | # Output of 'npm pack'
53 | *.tgz
54 |
55 | # dotenv environment variable files
56 | .env*
57 |
58 | .cache/
59 |
60 | # Mac files
61 | .DS_Store
62 |
63 | # VS Code workspace settings
64 | .vscode/
65 |
66 | # vim workspace settings
67 | .vim/
68 |
69 | # Yarn
70 | yarn-error.log
71 | .pnp/
72 | .pnp.js
73 | # Yarn Integrity file
74 | .yarn-integrity
75 |
76 | haters/
77 |
78 | .idea/
79 | .history/
80 |
81 | # Local Netlify folder
82 | .netlify
83 |
--------------------------------------------------------------------------------
/.node-version:
--------------------------------------------------------------------------------
1 | 16.13.1
2 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | fund=false
2 | audit=false
3 | legacy-peer-deps=true
4 | shamefully-hoist=true
5 |
--------------------------------------------------------------------------------
/contribution-guide.md:
--------------------------------------------------------------------------------
1 | # Contributions to uses.dev
2 |
3 | ## Steps
4 | 1) Fork this repo
5 | 2) Add yourself to `/src/data.js`
6 | 3) When requesting a PR please read carefully.
7 | 4) Be nice to maintainers
8 |
9 | ## PR Guidelines
10 | - Should be updated with the latest main or master branch.
11 | - PR Title should be the name or handle of the person being added or update being made.
12 | - A bad PR title `update data.js`
13 | - A good PR Title `Adding Blake Campbell`
14 |
15 | ## What's a Uses Page?
16 |
17 | A /uses page lists a developer's setup, gear, software, and configs (what they *use*). It's a great reference for those looking to add to their library of tools or reconfigure ones they already use.
18 |
19 | **The URL MUST follow the format of use|uses|using|setup|environment at the end.**
20 |
21 | ### What Should I Include?
22 |
23 | Include the hardware you use, such as your computer and other related equipment. Include your preferred terminal, text editors, tools, frameworks, and other related software you use. If you can, include configurations for software (such as fonts and themes). The more you have on your /uses page, the more interesting it'll be to those who view it - just keep it on-topic!
24 |
25 | ## Adding Yourself
26 |
27 | * Ensure you are linking to a /uses page, **not just your website**
28 | * Ensure your data is formatted like other entries
29 | * Do not add yourself to the end of the array (add yourself somewhere random instead)
30 | * Ensure this PR has a title in the following format
31 | * ✅ Add Your Name
32 | * ✅ Add @twitterusername
33 | * ❌ Add myself
34 | * ❌ Adding myself!
35 | * ❌ Add Your Name @twitter @github
36 |
37 | ## Code Modifications
38 |
39 | * Ensure the code submitted is formatted similarly to existing code
40 | * Ensure variable, method, function, and component names are clear and concise
41 |
42 |
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | command = "remix build"
3 | publish = "public"
4 |
5 | [dev]
6 | command = "remix watch"
7 | port = 3000
8 | autoLaunch = false
9 |
10 | [[headers]]
11 | for = "/build/*"
12 | [headers.values]
13 | "Cache-Control" = "public, max-age=31536000, s-maxage=31536000"
14 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uses",
3 | "description": "What do you uses",
4 | "version": "7.7.7",
5 | "author": "Wes Bos",
6 | "eslintConfig": {
7 | "extends": [
8 | "wesbos/typescript"
9 | ]
10 | },
11 | "engines": {
12 | "node": ">= 16"
13 | },
14 | "dependencies": {
15 | "@actions/core": "^1.10.0",
16 | "@actions/exec": "^1.1.1",
17 | "@actions/github": "^5.1.1",
18 | "@babel/core": "^7.21.0",
19 | "@babel/preset-react": "^7.18.6",
20 | "@netlify/edge-functions": "^2.0.0",
21 | "@netlify/functions": "^1.4.0",
22 | "@netlify/remix-edge-adapter": "^1.0.0",
23 | "@remix-run/dev": "^1.13.0",
24 | "@remix-run/netlify": "^1.13.0",
25 | "@remix-run/node": "^1.13.0",
26 | "@remix-run/react": "^1.13.0",
27 | "@remix-run/serve": "^1.13.0",
28 | "@remix-run/server-runtime": "^1.13.0",
29 | "@types/node": "^18.14.0",
30 | "@types/react": "^18.0.28",
31 | "@types/react-dom": "^18.0.11",
32 | "country-emoji": "^1.5.6",
33 | "isbot": "^3.6.6",
34 | "joi": "^17.8.1",
35 | "netlify-cli": "^13.0.0",
36 | "normalize.css": "^8.0.1",
37 | "prop-types": "^15.8.1",
38 | "react": "^18.2.0",
39 | "react-dom": "^18.2.0",
40 | "react-helmet": "^6.1.0",
41 | "react-is": "^18.2.0",
42 | "styled-components": "5.3.6",
43 | "typescript": "^4.9.5"
44 | },
45 | "scripts": {
46 | "build": "netlify build",
47 | "dev": "NODE_ENV=development netlify dev"
48 | },
49 | "devDependencies": {
50 | "@types/styled-components": "^5.1.26",
51 | "eslint": "^8.34.0",
52 | "eslint-config-wesbos": "^3.2.3",
53 | "husky": "^8.0.3",
54 | "lint-staged": "^13.1.2",
55 | "postcss": "^8.4.21",
56 | "postcss-nesting": "^11.2.1",
57 | "prettier": "^2.8.4"
58 | },
59 | "lint-staged": {
60 | "src/data.js": [
61 | "eslint --fix",
62 | "git add"
63 | ]
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | const postcssNesting = require("postcss-nesting");
2 |
3 | module.exports = {
4 | plugins: [postcssNesting()],
5 | };
6 |
--------------------------------------------------------------------------------
/public/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/public/default.png
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # → Visit [uses.tech](https://uses.tech) for a good time
2 |
3 | ## Please read [Contribution Guide](https://github.com/wesbos/awesome-uses/blob/master/contribution-guide.md) before submitting a PR.
4 | A list of `/uses` pages detailing developer setups, gear, software and configs.
5 |
6 | Add your own `/uses` page in [data.js](https://github.com/wesbos/awesome-uses/blob/master/src/data.js).
7 |
8 | This readme is auto-generated from the data.js file, so please don't PR this file.
9 |
10 | ```
11 | ▄████████ ▄█ █▄ ▄████████ ▄████████ ▄██████▄ ▄▄▄▄███▄▄▄▄ ▄████████
12 | ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███
13 | ███ ███ ███ ███ ███ █▀ ███ █▀ ███ ███ ███ ███ ███ ███ █▀
14 | ███ ███ ███ ███ ▄███▄▄▄ ███ ███ ███ ███ ███ ███ ▄███▄▄▄
15 | ▀███████████ ███ ███ ▀▀███▀▀▀ ▀███████████ ███ ███ ███ ███ ███ ▀▀███▀▀▀
16 | ███ ███ ███ ███ ███ █▄ ███ ███ ███ ███ ███ ███ ███ █▄
17 | ███ ███ ███ ▄█▄ ███ ███ ███ ▄█ ███ ███ ███ ███ ███ ███ ███ ███
18 | ███ █▀ ▀███▀███▀ ██████████ ▄████████▀ ▀██████▀ ▀█ ███ █▀ ██████████
19 |
20 | ███ █▄ ▄████████ ▄████████ ▄████████
21 | ███ ███ ███ ███ ███ ███ ███ ███
22 | ███ ███ ███ █▀ ███ █▀ ███ █▀
23 | ███ ███ ███ ▄███▄▄▄ ███
24 | ███ ███ ▀███████████ ▀▀███▀▀▀ ▀███████████
25 | ███ ███ ███ ███ █▄ ███
26 | ███ ███ ▄█ ███ ███ ███ ▄█ ███
27 | ████████▀ ▄████████▀ ██████████ ▄████████▀
28 |
29 | ```
30 |
31 | # Awesome Uses ![Awesome][awesome-badge]
32 |
33 | * [James Auble](https://jamesauble.com/uses) — Full Stack Developer
34 | * [Mariusz Szubryt](https://szubryt.net/uses) — Frontend-oriented Product Engineer
35 | * [Colin Ramsay](https://colinramsay.co.uk/uses) — Director and software developer at Go Tripod in Cornwall
36 | * [Dennis Sauvé](https://gist.github.com/dengsauve/e344ef7d8bd0d194b602e8b2d4490f98) — DevOps Engineer w/Dev roots in the Pacific North West!
37 | * [Jana](https://janasundar.dev/uses) — Full Stack Developer & Javascript Enthusiast
38 | * [Daniel Flanagan](https://lyte.dev/uses) — Developer, platform engineer, and homelab administrator
39 | * [Akif Al Hakim](https://akif.my.id/uses) — Frontend Developer.
40 | * [Jonas Hietala](https://www.jonashietala.se/uses/) — Writer, developer and wannabe code monkey.
41 | * [Sho Koike](https://putcut.net/uses) — Software Engineer, Gamer, Podcaster
42 | * [Michal Mazur](https://cybershu.eu/uses.html) — Backend Software Engineer, Blogger, Digital Nomad, Technical Generalist
43 | * [Khafizi Noh](https://mkfizi.dev/uses) — Full-stack web developer based in Cyberjaya, Malaysia.
44 | * [Theodoros Ploumis](https://www.theodorosploumis.com/en/uses) — Full-stack Drupal developer and open-source evangelist based on Greece
45 | * [Dietrich Wambach](https://dietrichw.gitlab.io/blogfolio/uses) — Full Stack, Embedded, SRE, Python, Linux, Runner, Yoyoer
46 | * [Angel Cruz](https://angelcruz.dev/uses) — SR Backend (PHP / Laravel / WordPress) developer.
47 | * [Mina Markham](https://mina.codes/uses) — Engineer, designer, and design systems enthusiast.
48 | * [Jae Toole](https://jaetoole.me/uses) — Laravel developer, AWS enthusiast, Kubernetes lover
49 | * [Saiful Alam Rakib](https://msar.me/uses) — Laravel and React developer and Technology enthusiast
50 | * [Brandon Lim](https://justbrandonlim.com/uses) — Software Engineer based in Singapore
51 | * [Tim Bachmann](https://tiim.ch/pages/uses) — Software Engineer from Switzerland, currently working on one of my way too many side projects.
52 | * [Neil Gupta](https://www.neil.gg/uses) — Designed in California. Assembled in Chicago. I like to build things.
53 | * [Jose Munoz](https://www.josemunozmatos.com/uses) — Product Designer from Puerto Rico
54 | * [Ibrahim Nurul Huda](https://www.sarbeh.com/uses) — creates visual narratives on web development, design, and Sharia studies.
55 | * [uncenter](https://www.uncenter.dev/uses) — Open source software developer, geography nerd, and high school student.
56 | * [Ignatius Bagus](https://mauss.dev/uses) — Software Alchemist
57 | * [Bob Reus](https://bobre.us/uses) — DevOps Engineer, eBook producer, Freediver, Buddhist
58 | * [Donavon West](https://donavon.com/uses) — Spread Love {...❤️}
59 | * [Justin Mahar](https://justinmahar.com/uses/) — Extremely bald Software Architect & Content Creator
60 | * [Syofyan Zuhad](https://syofyan-profile.vercel.app/uses/) — Full Stack Software Engineer 🇮🇩
61 | * [Zach Patrick](https://zachpatrick.com/uses) — JavaScript and PHP developer
62 | * [Zilvinas Kucinskas](https://www.ziku.dev/uses/) — Full Stack Ruby on Rails Engineer and Entrepreneur
63 | * [Carlos Alexandro Becker](https://carlosbecker.com/uses) — A site reliability engineer, from Brazil
64 | * [Andy Carolan](https://www.andycarolan.com/uses/) — Illustrator, Graphic Designer, No Code, Remote
65 | * [Alex O'Reilly](https://alekzandriia.com/uses/) — Scientist turned Web developer from the Great White North.
66 | * [Martin Bean](https://martinbean.dev/uses) — Web developer and software engineer.
67 | * [Dominic Ruggiero](https://userexe.me/uses) — Student and idiot
68 | * [Lucas Mancini](https://lucasmancini.au/uses) — Software Development Engineer, specializing in Frontend
69 | * [Lars Magnus Klavenes](https://larsmagnus.co/uses) — Frontend engineer, designer and manager supercharging the web
70 | * [Maicol Santos](https://maicolsantos.github.io/#/uses) — Front End Developer.
71 | * [Carretta Riccardo](https://carrettariccardo.dev/uses/) — Software Developer & UX/UI Designer
72 | * [Antonio Sarcevic](https://sarcevic.dev/uses) — excited by ui development
73 | * [starter.place](https://www.starter.place/uses/) — Starter repos
74 | * [Josh Medeski](https://www.joshmedeski.com/uses/) — Full-stack developer and content creator.
75 | * [Simon Rogers](https://midnite.uk/uses) — Software Engineer
76 | * [Allan Im](https://allanim.com/uses) — Software Engineer
77 | * [Rev](https://cinnamoroll.me/uses) — A Software developer and artist based in Europe.
78 | * [Vijay Goswmai](https://vijaygoswami.in/uses) — Full Stack Developer from Agra, Uttar Pradesh
79 | * [Edimar Calebe Castanho](https://blog.calebe.dev.br/uses.html) — A passionate embedded systems developer from Brazil
80 | * [Ihtisham Khan](https://iihtisham.com/uses.html) — Full-Stack Web Developer | Tech Enthusiast
81 | * [Robb Knight](https://rknight.me/uses) — Developer, Podcaster, Lego Builder, Cat Owner
82 | * [Riley](https://riley-uses.netlify.app/) — Software Developer
83 | * [Ryan Freeman](https://ryanfreeman.dev/uses) — Full-stack software engineer from Dublin, Ireland
84 | * [Ivan Malopinsky](https://imsky.co/uses) — Entrepreneur, engineer
85 | * [Murendeni Mukwevho](https://mukwevhom.xyz/uses) — Software Developer breaking the bias in South Africa
86 | * [Márk Mihályi](https://markmihalyi.com/uses) — Full-Stack Engineer from Hungary
87 | * [Vít Baisa](https://vit.baisa.cz/uses) — Software engineer who likes removing code
88 | * [Marko Bajlovic](https://marko.tech/uses) — Multidisciplinary creative and developer; forever learning.
89 | * [Michael Amore](https://codewithlove.blog/uses) — Technologist, software creator, wannabe hacker. Father. Dog Lover.
90 | * [Seirdy](https://seirdy.one/about/uses/) — I write about and develop software to promote user autonomy.
91 | * [Tim Smith](https://timsmith.tech/uses) — Full-Stack Web Developer, Tech Enthusiast, creator, husband.
92 | * [Ruslan Osipov](https://ruslan.rocks/uses) — Full Stack Developer, SEO Enthusiast, Entrepreneur, work @ REA Group
93 | * [H. Kamran](https://hkamran.com/uses) — Hello world! I'm a developer who writes articles on things that interest me or I find useful, and takes photos!
94 | * [Catalin Ciubotaru](https://catalincodes.com/uses) — Frontend Developer, writes stuff, sometimes makes sense.
95 | * [Hector Saldaña](https://hectorsaldes.netlify.app/#uses) — I am a software development student at university. My favorites developments are when I am looking for a solution that help people
96 | * [Daniel Roe](https://roe.dev/uses) — Nuxt architect and open source lover
97 | * [Alberto Ventafridda](https://halb.it/uses/) — Developer, hacker. Passionate about cyber security, web development and distributed systems.
98 | * [Pujan Srivastava](https://www.pujan.net/top/uses) — Solutions Architect, I program for cloud applications
99 | * [Ahmed Adebisi](https://adebisiahmed.dev/uses) — Software Engineer, Code is a tool.
100 | * [Anh Hoang Nguyen](https://hoanganh.dev/uses/) — Full-stack Developer, DevOps, SysAdmin
101 | * [Vikash Patel](https://vk4s.github.io/uses/) — Engineer, Programmer, Web Developer
102 | * [Devika Bhapkar](https://github.com/devikabhapkar/uses) — Student,Content creator
103 | * [Shariq Raza Qadri](https://cosmicqbit.dev/uses) — DevOps & Cloud Engineer
104 | * [Stijn Elskens](https://www.stijnelskens.com/uses) — Frontend Web Developer based in Leuven, BE.
105 | * [Daine Mawer](https://www.dainemawer.com/uses) — Experienced Front-end Developer based in Cape Town, South Africa.
106 | * [Tobias Sjösten](https://www.seastone.io/uses/) — Jack of most software trades, master of a few
107 | * [Nick Reutlinger](https://nickreutlinger.de/uses) — Web Developer with Javascript and SvelteKit
108 | * [Simone Silvestroni](https://minutestomidnight.co.uk/uses) — Sound designer, web developer, bass player
109 | * [Gavin Pereira](https://gavinpereira.in/uses) — Graphic designer & frontend developer from Goa, India
110 | * [Tim Mouskhelichvili](https://timmousk.com/uses/) — Freelance Developer & Consultant from Montreal, Canada
111 | * [Jayden Garridan Bridges](https://foreverliketh.is/docs/assortments/uses/) — Teacher. Web Developer.
112 | * [Vladimir Vo](https://vldmr.website/uses) — Frontend developer with passion for great product design
113 | * [Joseph Shambrook](https://josephshambrook.dev/uses) — Front-end developer based in Edinburgh, UK
114 | * [Andy Cetnarskyj](https://www.just-andy.uk/uses) — Design Systems Designer from Edinburgh, UK
115 | * [Akash Rajpurohit](https://akashrajpurohit.com/uses) — Software Engineer
116 | * [Marko Kaartinen](https://markok.dev/uses) — Web developer / entrepreneur / geek from Kuopio Finland who makes pizza and burgers at freetime. Also some gaming and well of course personal projects.
117 | * [Bala Hantsi](https://github.com/bhantsi/uses) — Software developer, full stack developer (in training), lately focused on frontend. Enjoy traveling and gaming.
118 | * [Lasha Tatulashvili](https://lashatatu.dev/uses) — Frontend DEV from Tbilisi, Georgia
119 | * [Renan Moura](https://renanmf.com/uses) — Posts for anyone looking to go deeper into Python and find practical ways to apply it in the fields of Web Development, Data Science and Machine Learning
120 | * [Randy Daniel](https://randy.digital/uses) — (UI/UX Designer) + Developer
121 | * [David Vidmar](https://vidmar.net/uses) — Technology realist obsessed with digital challenges. IT manager, developer, software architect, technology evangelist and marketing manager.
122 | * [Lazar Miseljic](https://fuzzylogic.ltd/uses) — Front end, but doesn't mind taking a look round the back
123 | * [Marco Heine](https://marcoheine.com/uses/) — Web developer from southern germany who loves to make fast and accessible websites and write about it.
124 | * [Dennis Muensterer](https://dnnsmnstrr.github.io/uses) — Inherently lazy and striving to do less. I like making things that make things more effortless.
125 | * [Eduar Bastidas](https://mreduar.dev/uses/) — Full Stack Web Developer
126 | * [Albert Zhang](https://www.albertaz.com/uses) — Developer, Designer, Artist, Podcaster, Sports enthusiast.
127 | * [Bumhan "B" Yu](https://bald.design/uses) — "B" as in bald. Designer who writes code—with backgrounds in psychology and linguistics
128 | * [Yassine Bridi](https://yasbr.com/uses) — Developer, Designer, Creator
129 | * [Matt Burns](https://iammattburns.dev/uses) — Full Stack Developer, Lego Builder, Beer Drinker, UK
130 | * [Tom Gooden](https://tomgooden.net/uses) — Born at a very young age. Front-end developer - UX/UI designer. 🐙
131 | * [Marc-André Bombeck](https://bombeck.io/uses) — IT-Project-Manager, Network-Administrator from Germany
132 | * [Ben Lau](https://benlau.net/uses/) — Frontend web developer. From Melbourne, Australia. Now in Berlin, Germany.
133 | * [Nick East](https://www.nick-east.com/uses) — Front-end developer, UX/UI designer, Web Jedi 🧙♂️
134 | * [Manuel Coiai](https://github.com/viralk/uses) — Creative front-end developer living in Pisa, Italy
135 | * [Tim Leland](https://timleland.com/uses) — Full-Stack developer and Blogger.
136 | * [Randall Wilk](https://randallwilk.dev/uses) — Full-Stack Laravel Developer.
137 | * [Reinhart Previano Koentjoro](https://reinhart1010.id/uses) — The first "IT superhero" in Indonesia who transformed to Shift this world.
138 | * [Melanie Kat](https://melkat.blog/p/uses) — Silly front-end engineer (she/her)
139 | * [Joshua Cerbito](https://www.cerbito.com/uses) — I write code, I train devs, and I play music.
140 | * [Dale Larroder](https://www.dalelarroder.com/uses) — Software Engineer, React, TypeScript and Mechanical Keyboards!
141 | * [Salma Alam-Naylor](https://whitep4nth3r.com/uses) — I write code for your entertainment.
142 | * [Bill Sullivan](https://billsullivan.name/uses/) — Engineering Manager, Senior Engineer, Novice Streamer, and Occasional Entrepreneur
143 | * [Amit Dhamu](https://amitd.co/uses) — Software Engineer, Formula 1 Addict, Tech Junkie, Hip-Hop Head
144 | * [Dominik Gallitzendörfer](https://nharox.com/uses) — Front‑end developer with a focus on UI/UX. Loves CSS and is addicted to Tetris.
145 | * [Andrei Hudovich](https://hudovich.dev/uses/) — Freelance Front-end Engineer, Web Enthusiast, Cat Lover.
146 | * [Andrej Gajdos](https://andrejgajdos.com/uses/) — Startup CTO | Tech Lead | Software Architect | Dev
147 | * [Emmanuel Gautier](https://www.emmanuelgautier.com/uses) — Solution Architect & Fullstack Developer living in France. Tech enthusiast and Data Lover.
148 | * [Pieter Boerboom](https://www.pieterboerboom.nl/uses/) — Front-end developer, blogger, tech enthusiast
149 | * [Alan Redzepagic](https://alanred.me/uses) — Front-end development, web native, tech enthusiast
150 | * [Vega Deftwing](https://opguides.info/posts/uses/) — Furry forging firmware from frustration
151 | * [Oscar Marion](https://www.oscarmarion.dev/uses) — French front-end engineer based in Brussels.
152 | * [Amr Diab](https://www.amrdiab.dev/uses) — Web Developer, open-source enthusiast, gamer, and lifelong learner.
153 | * [Thiago Avelino](https://avelino.run/uses) — 🧙♂️ Open Source Engineer at prestd, GitHub Star - 🏊♂️🚴♂️🏃♂️ Triathlete (IRONMAN distance) - 🌱 ᴘʟᴀɴᴛ-ʙᴀsᴇᴅ
154 | * [Samuel Wong](https://desktopofsamuel.com/uses) — Product Designer. Photographer. Traveler.
155 | * [Arisa Fukuzaki](https://github.com/schabibi1/uses) — DevRel Engineer, Front-end developer
156 | * [Dean Lofts](https://loftwah.github.io/uses) — Loftwah The Beatsmiff, Hip Hop Producer, Graphics, Socials, Video and Web
157 | * [Himank Barve](https://hbarve1.com/uses) — Full Stack JavaScript Developer, Open Source Enthusiast
158 | * [Matthew Tao](https://www.matthewtao.com/uses) — Computer Science student who loves CSS. Focuses on the little things that make a website delightful.
159 | * [William Chin](https://yourdigitalaid.com/uses/) — Web Developer, Product Manager, Digital Marketer, always trying to learn more.
160 | * [Marcin Dyguda](https://www.dyguda.com/uses/) — Head of Engineering, Entrepreneur-wannabe, product leader and team builder at heart
161 | * [Angélique Weger](https://angeliqueweger.com/uses) — engineering manager :: adjunct prof :: always learning
162 | * [Seagyn Davis](https://www.seagyndavis.com/uses) — Full stack human. Hobby runner. Mainly a husband and dad.
163 | * [Marc-Antoine Dion](https://marcantoinedion.com/uses) — Full Stack. Rookie cyclist. Part time blogger at @thewannabeceo.
164 | * [Simon Smale](https://github.com/SSmale/uses) — Full Stack Developer and beginner digital gardener
165 | * [Amolith](https://secluded.site/uses/) — Musician, developer, sysadmin, co-host of the Linux Lads, small business owner, and founder of not-for-profit NixNet
166 | * [Aleksey Razbakov](https://razbakov.com/uses/) — Indie Hacker. Web Developer. Salsa Dancer.
167 | * [Ayush Gupta](https://ayushgupta.tech/uses/) — React & React Native developer, passionate photographer, technical writer and occasionaly designer.
168 | * [Alvin Bryan](https://alvin.codes/uses) — Loves coding maps, graphics and games.
169 | * [Taisuke Mino](https://taisukemino.com/uses/) — Crypto Entrepreneur
170 | * [Mathias Borgmalm](https://www.mathiasborgmalm.dev/uses/) — Thinks CSS is underrated.
171 | * [Shawn D'silva](https://www.shawndsilva.com/uses) — Full Stack Web Developer, Designer and Embedded Systems enthusiast
172 | * [Sreetam Das](https://sreetamdas.com/uses) — Software Developer from India. 💜 React, TypeScript and Mechanical Keyboards!
173 | * [Maxim Villivald](https://villivald.com/uses) — Web Developer, IT Student 👨💻, Blogger & part time Tram Driver 🚃.
174 | * [Sven Luijten](https://svenluijten.com/uses) — Full stack developer for the web.
175 | * [Matt Holovach](https://www.coloradoseodesign.com/uses.php) — Loves SEO, improving coding skills and good food
176 | * [Bradley Shellnut](https://bradleyshellnut.com/uses) — Fullstack software engineer who loves learning new things. Also music 🎶, hiking ⛰️, and cocktails 🍸.
177 | * [Justin De Leon](https://jusdeleon.vercel.app/uses) — Coding, video games, and pizza 🍕
178 | * [Sascha Diercks](https://saschadiercks.de/uses/) — Building Solutions as Lead Frontend Developer • Designer & Maker of useful Things too • Into Design-Systems and Web-Performance
179 | * [Joshua Rose](https://jrgiant.tech/uses) — Loves Christ, loves family, loves programming, full stack dev
180 | * [Victor Pierre Alves](https://victorpierre.dev/uses) — Senior Software Engineer. I mostly code in Go these days. I live in Canada.
181 | * [Diego Costa](https://diegocosta.me/uses) — Engineering Manager and Full-stack software engineer
182 | * [Jeremiah Boby](https://jerbob.me/uses) — Python developer specialising in web tech
183 | * [Haryel Gillet](https://peaceful-leavitt-25b1d3.netlify.app/uses) — FullStack Developer focused on Backend
184 | * [Stefan Zweifel](https://stefanzweifel.dev/uses/) — Full Stack Developer trying to make the web a better place. Working mostly with Laravel and Tailwind CSS.
185 | * [Christopher Kruse](https://www.ballpointcarrot.net/uses/) — lifelong tech nerd, DevOps and Tools builder, dad, and choral singer
186 | * [Rowe Morehouse](https://rowe-morehouse.github.io/resume/uses/) — Growth · Product · Software Project Management · Frontend Dev · Design · Technical Writing · Sales
187 | * [Erik Hedin](https://www.erikhedin.com/uses/) — Full-stack Web Developer
188 | * [Alyssa Holland](https://www.alyssaholland.com/uses/) — Frontend developer with a passion for learning! Writes about programming and productivity tips.
189 | * [Andrew Gilliland](https://www.andrewgilliland.dev/uses/) — Web Developer, Co-Organizer Pensacola Devs, Certified Personal Trainer, Yacht Rocker, and Brand Ambassador for Blockbuster Video
190 | * [Adi Purnomo](https://github.com/medival/uses/) — Front End Developer x Network Engineer
191 | * [Matt James](https://mattfrankjames.com/uses/) — Senior Front-end Software Engineer & Web Design Teacher
192 | * [Patrik Trefil](https://patriktrefil.com/uses/) — Developer from Europe, Linux and open-source fan
193 | * [Marty Romero](http://martyromero.me/uses/) — Front-end UI developer
194 | * [Philip Boardman](https://brd.mn/uses/) — Software Engineering Manager, Full Stack Developer
195 | * [Sheila Leon](https://sheilaleon.tech/uses/) — Self-taught Front-end Dev, Designer & Product Manager
196 | * [Bram Smulders](https://bram.is/using) — Front-end UI developer
197 | * [Rubén Sospedra](https://sospedra.me/uses) — JavaScript Software Engineer, speaker, and trainer
198 | * [Juan Villela](https://cleverlaziness.xyz/uses/) — I like websites. Occasionally, I make them.
199 | * [Jeromey Balderrama](https://balderromey.com/uses/) — Web Developer, Designer, Photographer, Drummer
200 | * [Hamish Williams](https://hamishw.com/uses) — Multidisciplinary designer + developer.
201 | * [Dennis Mathenge](https://creativehubspace.com/uses) — Web Developer
202 | * [Antonio Della-Rocca](https://adr-enaline.com/uses) — Fullstack Web Developer
203 | * [Ali Alaa](https://www.alialaa.dev/uses) — Front-end web developer & online learning content creator.
204 | * [Devansh Bajaj](https://devanshbajaj.dev/uses) — 21 | M | Front End | Web Developer | Freelancer | Android enthusiast
205 | * [Ivan Muratov](https://binakot.github.io/resume/uses) — SOFTWARE DEVELOPER. TECHNICAL TEAM LEADER. CHIEF TECHNICAL OFFICER.
206 | * [Carlos Longarela](https://github.com/CarlosLongarela/uses/) — I enjoy solving problems and creating new stuff. WordPress lover and developer. Standards enthusiast
207 | * [Monespiseth Ly](https://pisethx.com/uses) — Frontend Developer, JavaScript Enthusiast
208 | * [Christian Oliff](https://christianoliff.com/uses/) — Front-end web developer person.
209 | * [Mauro Reis Vieira](https://mauroreisvieira.com/uses/) — Front End Developer, fully focused on JavaScript, React and Tailwind CSS
210 | * [John Irle](https://johnirle.com/blog/uses) — Graduate Student, Intern Developer at Charter and Go
211 | * [Prashant Bhapkar](https://github.com/Prashant-Bhapkar/uses) — Developer, Entrepreneur, Content Creator
212 | * [Kieran Osgood](https://osgood.dev/uses/) — Full stack developer. Curiosity in all.
213 | * [Pablo Obando](https://pabloobando.dev/uses) — A software engineer who enjoys programming and good beers 🍻
214 | * [Adam DeHaven](https://www.adamdehaven.com/uses/) — Full-Stack Software Engineer, UX Designer, runner, and cyclist based in Louisville, KY
215 | * [Nicolas M. Pardo](https://nikodermus.media/uses) — JavaScript Developer and teacher at debakatas.com
216 | * [Niko Heikkilä](https://nikoheikkila.fi/uses/) — Software Craftsman and Open-Source Advocate at Futurice
217 | * [Satyam Lachhwani](https://portfolio-satyam.now.sh/uses) — Web developer - Exploring ways to find out what's good for me.
218 | * [Matt Gregg](https://codegregg.com/uses) — Front end software engineer. Baker. Woodworker. Musician. Nerd.
219 | * [François Vantomme](https://code.strigo.cc/uses/) — Software craftsman
220 | * [Camille Hodoul](https://camillehdl.dev/uses/) — Remote fullstack developer, mostly Javascript & PHP
221 | * [Diogo Ferreira](https://diogoferreira.pt/uses) — Linux System Administrator and DevOps aficionado. Sometimes I write on the internet.
222 | * [Swapnil Agarwal](https://swapnil.net/uses/) — Software Developer turned Product Manager turned Product Designer | INFP | Avid Reader
223 | * [Zlatan Stajic](https://www.zlatanstajic.com/uses) — M.Sc. in Computer Science. Working as Software Developer. Creator of libraryfy.com.
224 | * [Brian Hamburg](https://burgbits.com/uses) — Web Developer, Designer, and Musician
225 | * [Olek Baran](https://olekbaran.com/uses/) — Front-end web developer using React and Next.js
226 | * [Emanuele Bartolesi](https://www.emanuelebartolesi.com/uses) — Microsoft 365 Architect. Microsoft MVP & GitHub Star ⭐
227 | * [Patrick Lee](https://patricklee.nyc/uses) — Software Engineer, Engineering Manager, and Productivity tool nerd
228 | * [Sergio Martín](https://www.sergiomartin.dev/uses) — I enjoy creating and learning for the web. Standards and vanilla enthusiast
229 | * [Bryan Hickey](https://bryanjhickey.com/uses) — Full stack marketer. Front-end developer. Graphic designer. Digital marketer. Craft beer nerd
230 | * [Ajmal Afif](https://ajmalafif.com/uses) — Digital designer
231 | * [Christian Gambardella](https://gambo.io/uses/) — Solution Architect & Full-Stack JavaScript dev • Builds scalable systems • Loves Vue.js, TypeScript, Hasura + Nhost
232 | * [Erik Kroes](https://www.erikkroes.nl/uses) — Photographer and creative in the world of accessibility
233 | * [Ben Myers](https://benmyers.dev/uses/) — Web developer. Accessibility advocate. Human T-rex.
234 | * [Alex Duval](https://www.alexduval.fr/uses) — Fullstack Dev, Teacher, Freeride skier
235 | * [Dave Redfern](https://daveredfern.com/uses) — I design and develop user‑centered experiences that deliver measurable returns.
236 | * [Caro Appleby](https://caro.fyi/uses) — Indie programmer, textile artist, musician, endlessly curious
237 | * [Trevor Morris](https://www.trovster.com/about/uses) — I am a movie-loving, mountain-bike-riding web developer from the UK.
238 | * [Rizwan](https://blog.rizwan.dev/uses) — iOS Developer. Living between Marvel and DC world
239 | * [Dylan Sheffer](https://www.dylansheffer.com/posts/uses/) — Web Developer. A11y Advocate. Tea Enthusiast.
240 | * [Adil Naqvi](https://adilnaqvi.com/uses) — Mechanical engineer with a knack for coding
241 | * [Matías Hernández](https://github.com/matiasfh/uses) — Frontend Engineer, Podcaster, Father, Calisthenic Athlete
242 | * [Sean Coker](https://sean.is/using) — Creator & Thinker. Sometimes simultaneously.
243 | * [Michael Bonner](https://michaelbonner.dev/uses) — Full stack JavaScript and PHP developer in Salt Lake City, USA
244 | * [Mark Nenadov](https://github.com/MarkNenadov/uses) — Full stack developer in the deep south of Canada (LaSalle, Ontario)
245 | * [Filip Kalousek](https://blog.filipkalousek.cz/uses/setup) — Frontend Developer & Idea Maker
246 | * [Agu Valeriani](https://agustinvaleriani.com/uses) — Software developer, previously more full stack, lately focused on frontend. Enjoy traveling and gaming.
247 | * [Yash Singh](https://www.yashsingh.us/uses) — Fullstack web software developer
248 | * [Celso Palmeira Neto](https://celsoneto.com.br/uses) — Software Engineer focused on Backend development
249 | * [Gabor Gyure](https://www.gaborgyure.com/uses) — Fullstack developer with lots of love for industry and engineering in Europe. In love with boardsports, the semantic and accessible web
250 | * [Ben Brougher](https://benbrougher.tech/uses) — Full stack enterprise web devloper from the Pacific Northwest.
251 | * [Dawit Mekonnen](https://dawit.dev/uses) — Full stack developer and javascript enthusiast.
252 | * [Diogo Moreira](https://diogodmoreira.com/uses) — Professor, Software Engineer and Researcher.
253 | * [Vincent Lejtzén](https://lejtzendesign.se/uses) — Front end developer with love for design, user experience and SEO.
254 | * [Jakub Soboczyński](https://jakubsoboczynski.pl/uses) — Frontend Developer, who actively explores other technologies and paths, including backend development, and contributes to open-source projects like Raycast, while also having a passion for automation and electronic music, particularly dark techno.
255 | * [Yves Engetschwiler](http://bee-interactive.ch/uses) — Developer, cms enthusiast, bicycle traveler, content creator, Independent at Bee Interactive
256 | * [Sapan Bodiwala](https://sapanbodiwala.com/uses) — Full Stack Software Engineer
257 | * [Neil Italia](https://blog.neilitalia.dev/uses/) — UI/UX Designer + Front-End Developer Unicorn Combo
258 | * [Felix Yeboah Jefferson](https://jeffson.netlify.app/uses) — Fullstack Developer, UI Designer & a Nomad
259 | * [Anubhav Srivastava](https://theanubhav.com/uses) — Web Developer. Occasional blogger. Part time open source contributor
260 | * [Alexander Christiaan Jacob](https://alexanderchristiaanjacob.com/uses) — A guy that does things, and thinks that having a reason for doing so is largely overrated.
261 | * [Ruben Janssen](https://rubenjanssen.me/uses) — Front-end Developer, Gadget G33k, Guild Lead
262 | * [Nikola Đuza](https://pragmaticpineapple.com/uses) — Nikola helps developers improve their productivity by sharing pragmatic advice & applicable knowledge on JavaScript and Ruby.
263 | * [Josh Collinsworth](https://joshcollinsworth.com/uses) — Front end dev in love with all things Vue, Svelte, CSS, and WordPress. Works in Ruby on Rails.
264 | * [Sam Boswell](https://www.bozzie.org/uses) — CTO, Engineering Manager, IoT, info-sec, geek Sometimes mint condition. Free P&P. Warranty not included.
265 | * [Amodu Kehinde](https://amodukehinde.vercel.app/uses/) — MERN Stack Developer
266 | * [Manassarn "Noom" Manoonchai](https://garden.narze.live/uses) — Coding, Productivity, Technologies, macOS, Keyboard
267 | * [Ayoub Sousali](https://www.sousali.com/blog/uses/) — Software Developer
268 | * [Jordan Haines](https://jordanairwave.co.uk/uses.html) — Full Stack Web Developer
269 | * [Leonel Ngoya](https://lndev.me/uses.html) — FrontEnd Developer and Web Integrator
270 | * [Jay Tyrrell](https://jaytyrrell.co/uses/) — Full Stack Developer
271 | * [Richard Thames](https://richardthames.com/uses) — Emacs, podcast, and domain name enthusiast
272 | * [Eva Dee](https://includejs.dev/uses) — Web Developer. Note-taker. Trying to Do Good.
273 | * [Nikita Karamov](https://www.kytta.dev/uses) — A π-shaped Python & JavaScript developer who loves minimalism and linguistics
274 | * [Elio Struyf](https://www.eliostruyf.com/uses) — Engineering Lead / Office Development MVP / Public Speaker
275 | * [Jakub T. Jankiewicz](https://jakub.jankiewicz.org/uses/) — Front-End Developer, Blogger, Teacher, Mentor, and Open Source programmer
276 | * [Lucas Schumacher](https://aceto.dev/uses) — Fullstack Developer, IoT & DIY Enthusiast
277 | * [Jonas Jore](https://github.com/JonasJore/dotfiles/blob/master/uses-tech.md) — Fullstack Developer, Problemsolving, coffee and fancy terminaltricks!
278 | * [Marko Haberl](https://marko-haberl.com/uses) — Fullstack Developer
279 | * [Marcus Virginia](https://marcusv.me/uses) — Software engineer specializing in web tech, amateur designer, & frequent flyer 🛩️.
280 | * [sheep](https://sheepdev.xyz/uses) — software engineer from zagreb, croatia
281 | * [Mario Sanchez Carrion](https://mariosanchez.org/uses/) — Junior Web Developer Based in Miami, FL
282 | * [Anthony Del Rosario](https://adelrosarioh.me/uses) — Experienced Full Stack Software Engineer & Computers Lover
283 | * [Sythe Veenje](https://sythe.nl/uses) — Freelance Developer & Designer
284 | * [Christopher Talke](https://talke.dev/uses) — ICT Professional / Fullstack Web Developer and Skateboarder
285 | * [Brian Swank](https://swank.dev/uses/) — Combat Veteran; Software Engineer; Mentor
286 | * [Ammar Alakkad](https://ammar.codes/uses/) — Sr. Frontend Engineer
287 | * [Marko Denic](https://markodenic.com/uses/) — Web Developer
288 | * [Oleg Perchyk](https://himynameisoleg.com/uses) — Web developer - also ride bmx and cook alot. :wq
289 | * [Dhananjay Porwal](https://github.com/DhananjayPorwal/Grey-Test/blob/gh-pages/dhananjayporwal_uses.md) — Self taught Cyber Security Analyst, Graphic Designer and Front-end Developer
290 | * [Robert Michalski](https://robert-michalski.com/uses/) — Full Stack Developer going serverless
291 | * [First Kanisorn Sutham](https://heyfirst.co/uses) — Full Stack Software Engineer, Runner, Coffeeholic
292 | * [Henrik Nyh](https://henrik.nyh.se/uses) — Swedish web developer in Yorkshire, UK.
293 | * [Manoj Barman](https://manojbarman.in/uses) — Working hardly, or Hardly working..
294 | * [Monica Powell](https://www.aboutmonica.com/uses/) — Hi! I'm a product engineer who is passionate about making open-source more accessible and community building
295 | * [Hideki Jinnai](https://github.com/dekisr/uses) — Lifelong Learner
296 | * [NaveenSingh](https://naveensingh.dev/uses/) — Full Stack Developer from India, Coimbatore 🇮🇳
297 | * [Raul Melo](https://raulmelo.dev/uses) — Developer, writer in my spare time, open-source contributor. Believes the only way to transform lives is through education.
298 | * [Ryan Harris](https://ryanharris.dev/uses) — dev @ fauna. organizer @ reactadelphia. streamer @ twitch.tv/ryan_c_harris. member of @thelivecoders.
299 | * [Axel Larsson](https://axellarsson.com/blog/what-i-use/) — Full-stack developer
300 | * [Laura Zumbakyte](https://desinni.dev/uses) — Front-end engineer, and a healthy lifestyle enthusiast.
301 | * [Chris Hufnagel](https://chrishufnagel.com/uses/) — Front End Developer & Designer
302 | * [Jeff Szuc](https://jeffszuc.com/uses) — UX Designer, Frontend Developer, Lifelong Learner.
303 | * [Maxim Zubarev](https://maximzubarev.com/uses) — Enthusiast with an opinion. I use things, press buttons, and sometimes go to places.
304 | * [Kelvin Mai](https://kelvinmai.io/uses) — Self Taught Full Stack developer, youtuber, full time nerd and aspiring functional programming polyglot
305 | * [Andrew Nguyen Vo](https://awnvo.com/uses) — Lover of code, coffee, and karaoke
306 | * [Jitendra Nirnejak](https://nirnejak.com/uses) — Developer, Designer and Blogger
307 | * [Elijah Rwothoromo](https://rwothoromo.wordpress.com/2020/05/29/uses/) — Software Developer, Poet, code and play!
308 | * [davidak](https://davidak.de/uses/) — Creating Free Software, with a focus on QA.
309 | * [Sudhanshu Bajaj](https://www.sudhanshubajaj.com/uses/) — Code. Travel. Sleep. Repeat. Magento Developer
310 | * [Enea Xharja](https://eneaxharja.com/uses) — Web Developer
311 | * [Dhanish Gajjar](https://dhanishgajjar.com/uses) — Developer
312 | * [Sampan Verma](https://www.samlovescoding.com/articles/uses) — Senior Software Developer, YouTuber, Streamer and Gamer
313 | * [Aditya Thebe](https://www.adityathebe.com/uses) — 💻 Full Stack Developer with an interest in bitcoins and blockchain.
314 | * [Travis Luong](https://www.travisluong.com/uses) — Full Stack Developer
315 | * [Michal Kolacek](https://michalkolacek.xyz/uses) — Analytics Engineer
316 | * [David Morales](https://davidmles.com/uses) — Computer Engineer. Web Developer. Teacher at ninjadevel.com
317 | * [Alex Zmn](https://www.monolog.dev/uses/) — Product Owner by day, dabbling in JavaScript, Rust and self-hosting by night.
318 | * [Kyle McDonald](https://kylemcd.com/uses/) — Software Engineer
319 | * [Alexander Sedeke](https://www.studioalex.dev/alexander/uses/) — Software Engineer
320 | * [Lea Vu](https://www.studioalex.dev/lea/uses/) — UI/UX Designer
321 | * [Habib Hinn](https://habibhinn.com/uses) — Pricipal Engineer & Senior Frontend Engineer
322 | * [Jibin Thomas](https://jibin.tech/uses) — Front-End Developer & Casual Blogger. CSS, Javascript & React
323 | * [Michael Rolfsen](https://boldandfriendly.de/uses) — Designer and Front-of-the-Front-End Dev. I suck at guitar.
324 | * [Michael Read](https://www.michaelcread.com/uses) — Full Stack Web Developer.
325 | * [Simon Aronsson](https://simme.dev/uses) — Developer Advocate, Cloud and DevOps Aficionado, Full-stack Developer
326 | * [João Pescada](https://joaopescada.com/uses) — Technologist and Consultant for web apps
327 | * [Saurabh Sharma](https://itsjzt.com/uses) — Full stack web developer making e-commerce websites and SaaS
328 | * [Wes Bos](https://wesbos.com/uses) — Maker of this site. Web Developer, Tutorial Maker, Syntax.fm Podcaster, BBQ Lover
329 | * [Frugence Fidel](https://frugencefidel.com/uses) — I'm 🇹🇿 React Developer
330 | * [Aaron Conway](https://aaronconway.co.uk/uses) — Developer who can design. A designer who can develop. One or the other! (also a podcaster @ thethirdwheel.fm)
331 | * [Artur Dudek](https://dudek.ga/uses) — Fullstack developer who loves React (Next.js) and TypeScript. Co-Host @ require.pl - a polish web dev podcast.
332 | * [Stephanie Handsteiner](https://stephfh.dev/uses) — 💻 Full-Stack Developer with a background in design.
333 | * [Mohammed Sohail](https://www.msohail.dev/uses) — A full stack web developer developing web applications in Laravel/PHP alongside Next.js, Livewire and Inertia.
334 | * [Ximena Vila Ferral](https://ximenavf.com/uses/) — 💻 🎨 A Mexican born, Texas based designer and developer.
335 | * [Daryl Sun](https://blog.darylsun.page/uses) — I play with software and videogames. Sometimes I write things.
336 | * [Julian Stark](https://julianstark.de/uses) — WordPress Web Developer & Entrepreneur
337 | * [Aris Ripandi](https://ripandis.com/uses) — Software engineer & educator. Open Source enthusiast.
338 | * [Tobias Schmidt](https://tobiasschmidt.me/uses/) — Digitalisation Expert 📠
339 | * [Gift Egwuenu](https://giftegwuenu.com/uses) — 💻Frontend Engineer and Technical Writer.
340 | * [Chandu J S](https://chandujs.dev/uses) — 💻 Full Stack Developer & Photographer from Trivandrum, India ❤️. Freelancer.
341 | * [Shubham Battoo](https://shubhambattoo.in/uses) — Software Engineer focused on Web Technologies from India.
342 | * [Mykolas Krupauskas](https://mkrup.com/uses) — A passionate software developer that helps people create value with technology.
343 | * [Arturo De la Garza](https://arturodelagarza.com/uses) — Full-stack web developer, avid learner, loves to play video games and board games
344 | * [Tuna Çağlar Gümüş](https://pikseladam.com/uses) — Senior software and systems engineer. I design things and make stuff when needed.
345 | * [Danny Solivan](https://solivan.dev/blog/uses) — Test engineer. Web developer on the side.
346 | * [Aaron Uurman](https://aaronuurman.com/uses) — Back end developer who likes to develop front end on free time 🤷♂️. And I also blog.
347 | * [Steve Della Valentina](https://sdv.im/uses) — Frontend engineer into blogging and digital gardening.
348 | * [Rajanand Ilangovan](https://rajanand.org/uses) — Business intelligence developer with over a decade of experience in designing and developing databases, ETL and reporting solutions. I am also a Microsoft certified trainer. 👉 https://rajanand.org/bio
349 | * [Joanna Hosking](https://joannahosking.com/uses) — Web developer, dog mom, football fanatic living in UK
350 | * [Andrew Byrd](https://www.andrewbyrd.dev/uses/) — Web dev. Girl Dad. Bodybuilder. Gamer.
351 | * [Devin Sharpe](https://devsharpe.io/uses) — Full Stack Web Developer, Typescript Enthusiast & Proud Cat Dad
352 | * [Prakhil TP](https://www.notion.so/Things-Prakhil-uses-e995e61834c242f1b739be9f8819fb0c) — Team lead, Experienced full-stack engineer & non-stop learner. :wq
353 | * [Ryan Filler](https://ryanfiller.com/uses) — Front-End Developer & Designer. Interested in performance, privacy, accessibility, and sustainability.
354 | * [Maxence Poutord](https://www.maxpou.fr/uses) — Software engineer, digital nomad, public speaker and remote worker
355 | * [Johan Hammar](https://www.johanhammar.se/uses) — Software Engineer from Sweden
356 | * [Ahmed Ibrahim](https://ahmed-ibrahim.com/uses) — Full-stack developer who believes that Passion is the key to every success.
357 | * [Martin Chammah](https://martinchammah.dev/uses) — Gatsby Fan, Full-stack web developer, architect
358 | * [James Peilow](https://jamespeilow.com/uses) — Front-end Developer, Switch owner, coffee and beer drinker
359 | * [Mostafa Hosseini](https://mostafa-hosseini.me/uses) — Fullstack Developer
360 | * [Clint Winter](https://clintgwinter.com/uses) — Full stack developer loving the Laravel ecosystem. Sometimes I write about it.
361 | * [Bob Orchard](https://boborchard.com/uses) — Semi-stack developer with a design background. Woodworker. Maker.
362 | * [Tim Eaton](https://www.timeaton.dev/uses/) — Laravel full-stack developer based in Paris
363 | * [Lucas Becker](https://github.com/runxel/uses) — Real architect who also happens to write code.
364 | * [Martín M.](https://uses.skydiver.dev/) — Dad & Developer (former skydiver)
365 | * [Jamie Bowman](https://www.mrjamiebowman.com/uses) — Full Stack Developer, DevOps, Infrastructure as Code, Penetration Testing, Blogger
366 | * [Fabian Vallejos](https://fabianvallejos.com/uses/) — Web Developer, Amateur Photographer, Writer, Occasional Gamer & Streamer, Father of Shih Tzus
367 | * [William Rodriguez](https://williamrodriguez.com/uses) — Full-Stack Developer. TALL Stack Advocate. Less is more.
368 | * [Nathanaël Cherrier](https://mindsers.blog/fr/uses) — Full Stack JavaScript and Swift Developer, Software Caftsman, from Reunion Island based in Lyon, France
369 | * [Keith Donegan](https://www.keithdonegan.com/uses/) — Irish WordPress developer, based in London, UK.
370 | * [Jang Rush](https://mmap.page/uses/) — markdown aficionado who suffers from unix porn addiction (*/*)
371 | * [John SJ Anderson](https://genehack.org/uses) — information technology executive, conference speaker, and Open Source software developer and community organizer from Salem, Oregon, USA.
372 | * [Makon Cline](https://makoncline.com/uses) — Engineer, Developer, Home Cook. I like to make useful things and share them with others.
373 | * [Pierre-Antoine "Leny" Delnatte](https://leny.me/uses/) — Developer, Bootcamp coach. Forging the next generation of webdevelopers.
374 | * [Nich Secord](https://secord.io/uses) — Full Stack Developer from the Redmond, WA area. Best skier on the mountain. Pretty good in general.
375 | * [Sebastien Elet](https://www.notion.so/Dev-environment-ec11cb5bd0594c16a3c6338e6aa4f5b9) — Full stack javascript developer which also loves ops and automation
376 | * [Marcel Hauri](http://marcelhauri.ch/uses/) — Father, husband, software developer and lecturer in application development.
377 | * [Mitchell Hanberg](https://mitchellhanberg.com/uses) — Full Stack Developer who loves working with Elixir, Ruby and JS.
378 | * [Michael Herman](https://mherman.org/about#uses) — Full-stack web developer. Software architect. Educator. Entrepreneur. Lover of Docker, Radiohead, running, and reading well-crafted project READMEs.
379 | * [Daniel Flege](https://danielflege.com/uses/) — Web Developer & Podcaster 🖥🎙 Loves Rails and Front End Stuff. My three girls are the {CSS} to my 👨👩👧👧
380 | * [Alok Prateek](https://alokprateek.in/uses) — Alok Prateek is a multi-talented human with over 11+ years of experiences in wide range of design disciplines.
381 | * [Dwayne Harris](https://dwayne.xyz/uses) — Freelance web and app developer in NYC with over 15 years of professional experience.
382 | * [Guru Das Srinagesh](https://gurudas.dev/uses/) — Linux kernel developer
383 | * [Michael Burkhardt](https://mihobu.lol/uses) — cloud data architect, part-time university professor, tinkerer and hobbyist
384 | * [Cory Dramsfeldt](https://coryd.dev/uses) — Web developer based in Southern California with over 10 years of professional experience.
385 | * [Kenny Robinson](https://thealmostengineer.com/uses) — Web developer that builds software to improve business processes
386 | * [Manuel Fernandez](https://github.com/teamhanded/uses) — Security Engineer
387 | * [Bojan Bedrač](https://www.improvebadcode.com/uses) — Coding the future, one line of code at a time.
388 | * [Yannick Le Roux](https://yannickleroux.com/uses) — Second career web dev, French living in San Diego, retired DJ.
389 | * [Eric Raslich](https://ericraslich.com/uses) — Boat captain, web developer, marine biologist, solving science and communication problems with web technologies.
390 | * [Sagar Soni](https://sagarsoni.dev/uses/) — Full Stack JS, PHP and WordPress Developer in day. Android & Linux enthusiast by night
391 | * [Paulo Regina](https://pauloregina.com/uses.html) — Full Stack Web Developer
392 | * [Alex Mufatti](https://codeandrun.it/uses) — Code and Run
393 | * [Varatep Buranintu](https://www.varatech.io/uses/) — Full Stack Software Engineer, IBM Edge UI Lead, Bridging the gap between humans and computers with beautiful experiences.
394 | * [Anwar Hussain](https://gist.github.com/getanwar/daa9cb57428fd56255b1759fef2754f0) — Web Developer and No-Code Maker
395 | * [Matt Litzinger](https://mlitzinger.com/uses/) — Web Developer
396 | * [Nathan Knowler](https://knowlerkno.ws/uses/) — Developer focused on making the Web accessible, beautiful, and fun.
397 | * [Asur Bernardo](https://asur.dev/uses/) — Back end developer with no aesthetic sense. Full stack with reservations. Open-source enthusiast. Continuous learner!
398 | * [Lazar Nikolov](https://nikolovlazar.com/uses) — Full-Stack Engineer, DevRel, Live Streamer, Course Creator, Open Source Advocate. P.S. Check out nikolovlazar.com/gear to see the hardware that I use.
399 | * [Vinoth Chellamuthu](https://ecevinoth.github.io/#uses) — Data Engineer
400 | * [Joff Tiquez](https://jofftiquez.dev/uses) — Web Developer
401 | * [Roberto Vázquez González](https://robertovg.com/uses/) — Javascript Engineer (10+ years experience) && CorkerSpace Co-founder, 💛js (^es6),🏄🧘🎸.
402 | * [Joe Astuccio](https://astucc.io/uses) — Front End Developer, Sailor, Stargazer, Hockey Player, and all around fun guy... but my absolute favorite thing is being a dad.
403 | * [Joe Maffei](https://joemaffei.dev/uses/) — Software engineer with a passion for Web Application Development.
404 | * [Jelle Smeets](https://blog.jellesmeets.nl/uses) — Engineering manager & blogger
405 | * [Rene Gens](https://renegens.com/uses) — android engineer, project manager, teacher, aspiring designer and author
406 | * [Matthew Scholta](https://mattscholta.com/uses) — Passionate about quality code written for humans, unlocking developer productivity, and creating a delightful user experience.
407 | * [John Smith](https://solrevdev.com/uses/) — full-time carer formally head of infrastructure and operations, senior full-stack #dotnetcore #aspnetcore #vuejs developer and software engineer https://solrevdev.com
408 | * [Chris Collins](https://chriscollins.me/uses) — I design and build digital products, hike and take photos.
409 | * [Rostyslav Ugryniuk](https://ugross.dev/uses) — Front-end Developer, Snowboarder, and Traveler.
410 | * [Alexis Janvier](https://alexisjanvier.net/uses/) — Web Developer, Open Source Contributor, Community Organizer, Proud Dad, Grateful Lover.
411 | * [Aaron A.](https://ocular-rhythm.io/uses/) — Sandwich enthusiast and programmer.
412 | * [Renee de Kruijf](https://webdesignpuntnl.com/pages/uses.html) — Javascript developer in the making. Still learning every day. Liking it a lot!
413 | * [Sumanth](https://mynameissumanth.netlify.app/uses.html) — Student. Learning web development
414 | * [Christian Leo-Pernold](https://mazedlx.net/uses) — Dad. Husband. BBQ Enthusiast. Full-Stack-Developer.
415 | * [Danilo Barion Nogueira](https://danilobarion1986.github.io/uses) — Father, developer, blog writer, classical guitar player and searching for the meaning of life!
416 | * [Emma Goto](https://emgoto.com/uses) — Frontend developer, blogger and creator of Trello power-ups.
417 | * [Cesar Gomez](https://cesargomez.io/uses) — Front-end developer
418 | * [Chris Otto](https://chrisotto.dev/uses/) — Software engineer. I enjoy JavaScript, DevOps and Testing.
419 | * [Chris Berry](http://chrisberry.io/uses) — Designer / Developer 🦄, Linux advocate, mechanical keyboard connoisseur
420 | * [James Quick](https://jamesqquick.com/uses) — Developer Advocate Engineer at @auth0 and content creator
421 | * [Federico Vitale](https://fedevitale.dev/uses) — Software Engineer based in Rome
422 | * [Vishwasa Navada K](https://vishwas.tech/uses) — Geek. Open source Enthusiast. Occasional blogger, photographer and traveler.
423 | * [Silvestar Bistrović](https://www.silvestar.codes/uses/) — Fearless web engineer, CSS developer, JAMstack enthusiast, and WordPress theme specialist.
424 | * [Adam Schwartz](https://adamschwartz.co/uses/) — Software developer, designer, film music composer
425 | * [Andy Bell](https://piccalil.li/page/uses) — Educator who focuses on design, front-end development, accessibility and progressive enhancement. I teach at and run, Piccalilli.
426 | * [Daryn St. Pierre](https://daryn.codes/uses) — Front-end developer, designer, CodePen tinkerer, LEGO enthusiast. Building VueJS applications (for a living) and eating pizza (for fun).
427 | * [Chris Lagasse](https://chrislagasse.com/uses) — Diversified programmer with emphasis in PHP, Javascript, Node.js, Vue, API integrations... cyclist, dad, lover of craft beer.
428 | * [Christoph Miksche](https://blog.m5e.de/uses/) — Startup Founder and Full-Stack-Developer with a passion for finance.
429 | * [Toon Claes](https://iotcl.com/uses/) — Class developer with passion for Git and Emacs
430 | * [Sergey Lysenko](https://soulwish.info/uses/) — Front-end developer, guitar player, MTB rider, snowboarder, runner.
431 | * [Shreyas Minocha](https://shreyasminocha.me/uses) — web. foss. privacy. archival. accessibility.
432 | * [Andrei Racasan](https://www.andreiracasan.com/setup) — Full Stack Developer with a passion for finding pragmatic solutions to technical challenges.
433 | * [Sergey Panteleev](https://sergeypanteleev.com/en/uses) — PHP 8.2 Release Manager
434 | * [Shajan Jacob](https://shajanjacob.com/uses) — Software Engineer, extroverted introvert, storyteller and a maker.
435 | * [Fidalgo](https://info.fidalgo.dev/uses) — Front end Developer
436 | * [Alexandre Ferreira](https://www.alexjorgef.com/about/uses) — Full-stack developer, open-source enthusiast
437 | * [Marco Poletto](https://poletto.dev/uses/) — Engineering Manager @ Laiye, Frontend Developer, UI engineer, Mentor
438 | * [Tim Teege](https://www.teesche.com/uses/) — Web Studio CEO, Former Frontend Dev, Blogger, Ultrarunner
439 | * [Mark Horsell](https://markhorsell.com/uses) — Software Developer - Front-end mostly, back-end and native sometimes.
440 | * [Elmar Klausmeier](https://eklausmeier.goip.de/aux/uses) — Developer and blogger, data center management
441 | * [Joel M. Turner](https://joelmturner.com/uses) — Mostly Front-End Dev, some back end
442 | * [Matt Jennings](https://mattjennings.io/uses) — web dev, hockey | tradebreaker.io
443 | * [Jake Jarvis](https://jarv.is/uses/) — Front-End Web Developer, Teacher, Cat Dad, World Wide Web Surfer 🏄
444 | * [Ángel Guerra](https://angelguerra.me/uses/) — Father. Partner. Human. Kickboxer. Ninja.
445 | * [Jason Cory Alvernaz](https://jasoncoryalvernaz.com/uses) — Web Developer, Blogger, YouTuber, and Dog Lover. Not necessarily in that order.
446 | * [Robin Bakker](https://robinbakker.nl/uses) — Web Developer
447 | * [Alessia Bellisario](https://aless.co/uses) — Web engineer, mechanical keyboard builder, plotter art maker.
448 | * [AriaieBOY](https://ariaieboy.ir/uses/) — Web Developer that loves creating and sharing
449 | * [Sunny](https://sny.sh/#uses) — Programmer, designer, musician, photographer and video editor.
450 | * [Russell McWhae](https://russellmcwhae.ca/uses) — Backcountry skier, photographer, designer, and web developer from Canada
451 | * [Karl Koch](https://www.kejk.tech/uses) — Product designer, frontend developer and musician. Building HomeHero and making other things.
452 | * [Praveen Kumar Purushothaman](https://blog.praveen.science/my-personal-development-environment/) — Cook, Cat Lover, Front End Architect, Full Stack Web Developer Evangelist & Cloud Computing Consultant.
453 | * [Praveen Puglia](https://praveenpuglia.com/uses/) — Web Developer. Love Vue & CSS. Building life one component at a time!
454 | * [Gaya Kessler](https://theclevernode.com/uses) — Freelance web developer specialising in JavaScript
455 | * [Eivind Lindbråten](https://madebymist.com/uses) — One-man studio handcrafting apps and websites
456 | * [Matthew Ernisse](https://www.going-flying.com/~mernisse/uses/) — Recovering Systems Engineer now Solutions Engineer.
457 | * [Diego López](https://codingpotions.com/uses) — Frontend developer making thins with Vue & Nuxt. Gamer and beer lover
458 | * [Andre Landgraf](https://andre-landgraf.cool/uses/) — Passionate Fullstack Web Developer
459 | * [Dave Mullen Jnr](https://davemullenjnr.co.uk/uses) — Designer, photographer, developer, multi-instrumentalist, chess player, aspiring minimalist, environmentally friendly.
460 | * [Tiffany White](https://tiffanywhite.dev/uses/) — Frontend dev, blogger, podcaster, herder of cats
461 | * [Kent C. Dodds](https://kentcdodds.com/uses) — JavaScript Software Engineer, speaker, and trainer
462 | * [Nathan Smith](https://nathan-smith.org/uses) — Full stack dev, cat dad, dungeon master.
463 | * [Joshua Ryan Velasquez](https://joshua-afk.github.io/uses) — Web Developer, Designer, Vimmer, Typist, Calisthenics, Mortal.
464 | * [Darlene Zouras](https://darzouras.com/uses/) — Front-End and UI/UX Developer, Accessibility advocate, JAMStack fan, working in the marketing and entertainment industry
465 | * [Glenn Reyes](https://glennreyes.com/uses) — Independent Software Engineer, trainer & speaker. Into sports & music.
466 | * [Yash Dave](https://amorpheuz.dev/uses/) — Web Developer who ❤s Gatsby & React. Ocassional blogger & Open Source Contributor!
467 | * [Simon Stenbæk](https://sstenbaek.dk/uses) — Helicopter pilot, web developer
468 | * [Adam Jahnke](https://adamyonk.com/uses) — Caffiend, motorcyclist, climber, recovering perfectionist. I love to make the complex simple.
469 | * [Andrew Healey](https://healeycodes.com/uses) — Software Engineer, Writer, Learner!
470 | * [Gyan Prakash Karn](https://karngyan.com/uses/) — Software Engineer, Tinkerer, Absurdist.
471 | * [Scott Tolinski](https://scotttolinski.com/uses) — Web Developer, Tutorial Maker, Podcaster, Bboy
472 | * [Tony Lockhart](https://tlockhart.github.io/portfolio/#uses) — Full Stack Developer, Designer, and Instructor
473 | * [Wojciech M. Wnuk](https://lanius.dev/uses) — Magento developer, vimmer, Linux and FOSS enthusiast.
474 | * [Leonardo Melo](https://www.leomeloxp.dev/uses) — Full stack web developer. Typescript lover, always learning new stuff.
475 | * [Lukasz Tkacz](https://tkacz.pro/uses/) — Software Architect, Senior Fullstack Developer, Scrum Master
476 | * [Gabriel Wilkes](https://azul.technology/uses/) — Full-stack developer who loves learning new things, American 10 years in Japan, soon back to the US
477 | * [Gabriel Alejandro López López](https://glpzzz.is-a.dev/#using) — Software Engineer
478 | * [Rémi Weng](https://creativedesignsguru.com/uses/) — A Full Stack JS developer using React, Next JS and Tailwind CSS. Netlify, Serverless and AWS for the backend.
479 | * [Sal Ferrarello](https://salferrarello.com/uses/) — Web Developer specializing in WordPress. Loves Git and Neovim. Good at metaphors and asking dumb questions.
480 | * [Brian Morrison II](https://brianmorrison.me/uses/) — Full stack developer, content creator, husband, father of 3 boys, lifter of weights, Destiny 2/Stadia gamer
481 | * [Tim Downey](https://downey.io/uses/) — Software Engineer - Distributed Systems, Cloud Platforms, and Web 🙃
482 | * [Josiah Wiebe](https://jwie.be/uses/) — Designer & developer, lifelong learner.
483 | * [Muhammad Oka](https://muhammadoka.dev/uses/) — Computer Science student, Cyber Security enthusiast.
484 | * [Benjamin Lannon](https://lannonbr.com/uses/) — Web Developer, Open Source Contributor, Livestreamer
485 | * [Dmytro Litvinov](https://dmytrolitvinov.com/uses/) — Full Stack Python developer from 🇺🇦
486 | * [Braden Watkins](https://bradenwatkins.dev/uses) — Student, Full Stack Developer, Lover of all things analog
487 | * [Rikin Patel](https://patelrikin.com/#uses) — Experienced Front-end developer, Passionate about Javascript
488 | * [Jed Fonner](https://jedfonner.com/uses) — Engineering VP and father who still manages to crank out a couple side projects each year. Loves Svelte and Javascript.
489 | * [Joris Hens](https://www.goodbytes.be/uses) — Web development teacher, Security and hacking enthousiast, Cook.
490 | * [Salisa Cheawcharnthong](https://www.sgennrw.xyz/uses) — Software Engineer
491 | * [Tom (ttntm)](https://ttntm.me/uses) — Web developer from Austria
492 | * [Achhunna Mali](https://achhunna.com/uses) — Software engineer and aspiring surfer
493 | * [Jorge Baumann](https://baumannzone.dev/uses) — JavaScript FullStack Developer - Content Creator
494 | * [Moncef AOUDIA](https://www.maoudia.com/uses) — Software developer - Open-source enthusiast/maintainer
495 | * [Alfian Akmal Hanantio](https://amalhanaja.dev/uses) — Software engineer specializing in android development 🇮🇩
496 | * [Adrian Marin](https://adrianthedev.com/uses) — Product-Minded Software Engineer, Digital nomad, no-nonsense enjoyer of life, friends and family.
497 | * [Jahir Fiquitiva](https://jahir.dev/uses) — Passionate and Creative Full Stack Developer
498 | * [José Hernández](https://josehernandez.tech/uses) — Mobile and Web Developer
499 | * [Christophe Querton](https://kertof.com/what-i-use) — Software Engineer, xoogler, co-founder of @accelery. Full-stack, technical debt collector. Lover of the Outdoors, BBQ, sailing.
500 | * [Adil Haddaoui](https://adilhaddaoui.com/uses) — Full stack Developer
501 | * [Vlad Holubiev](https://vladholubiev.com/uses) — Sr. Director of Technology at Shelf
502 | * [Jorge Ruvalcaba](https://jorgearuv.dev/uses) — Software Engineer & Aspiring Entrepreneur who does things. Frontend at Vest
503 | * [Michael Knepprath](https://mknepprath.com/uses) — Pokémon-obsessed Software Engineer & Designer. Twitter bots are my jam.
504 | * [Matt TK Taylor](https://tk.gg/uses) — Product Manager in news & media
505 | * [Nico Bachner](https://nicobachner.com/uses) — Student. Developer. Entrepreneur.
506 | * [Brad Garropy](https://bradgarropy.com/uses) — Self taught frontender at Adobe, into lifting and country music.
507 | * [Jeff Mair](https://jeffmair.net/uses) — Contract/Freelance Web Developer, .NET Programmer, Dad, Korean Learner
508 | * [Jeremy Collins](https://jeremycollins.net/uses) — Full-stack developer always seeking to learn more. Web and mobile technology enthusiast.
509 | * [Michael Kutz](https://miku86.com/uses/) — JavaScript developer, mentor, blogger at miku86.com and dev.to/miku86
510 | * [Bruno Brito](https://brunobrito.pt/uses) — Freelance Web Developer, Content Creator, Digital Marketing teacher
511 | * [Roy Tang](https://roytang.net/about/uses/) — Programmer, engineer, scientist, critic, gamer, dreamer, and kid-at-heart.
512 | * [Sahilpreet Singh](https://github.com/preetsahil/uses) — MERN stack developer, Leaning Devops, Web Enthusiast.
513 | * [Thomas Jensen](https://blog.cavelab.dev/uses/) — I like electronics and computers — and my wife and three kids.
514 | * [David Perkins](https://prkns.me/uses) — Dad, Designer, Developer, Dave, Keyboard enthusiast
515 | * [Aaron Dunphy](https://aarondunphy.com/uses) — Full Stack Developer, Coffee Lover and Photo Taker
516 | * [Jan Durkaj](https://jandurkaj.dev/uses) — Web developer, adventurer, and amateur photographer
517 | * [Duncan Bain](https://duncanbain.dev/uses/) — Mechanical Engineer learning to code!
518 | * [Watheq Alshowaiter](http://watheq.xyz/uses) — Web developer, Blogger, and Technical Translator
519 | * [Jason Raimondi](https://jasonraimondi.com/uses) — Full Stack Developer
520 | * [Thomas Hunter II](https://thomashunter.name/uses) — Node.js developer with a thing for distributed systems. Co-organizer of NodeSchool SF. Game developer.
521 | * [Martin Marcucci](https://www.marku.me/uses) — Computer Engineer, Professor, Embedded systems programer, ❤️(React/JS). Less gamer and more dad👪.
522 | * [Andrew McCombe](https://www.euperia.com/uses) — Experienced full stack web developer with a passion for testing.
523 | * [Smakosh](https://smakosh.com/the-tech-tools-I-use) — Full stack JavaScript Developer, blogger and speaker.
524 | * [Eihab Khan](https://eihabkhan.com/uses) — Front End Engineer & UI/UX Designer
525 | * [Mahmoud Ashraf](http://mahmoudashraf.dev/uses) — Front-End Developer, sometimes do backend stuff.
526 | * [Charlie Say](https://www.charliesay.xyz/uses) — Another bald Full Stack developer from Manchester UK
527 | * [Pouria Ezzati](https://pouria.dev/uses) — Web developer. Digs music, football and a e s t h e t i c s
528 | * [Simeon Griggs](https://www.simeongriggs.dev/uses) — Full stack developer and part time Cyclist in Newcastle upon Tyne, UK
529 | * [Stuart McColl](https://stuartmccoll.github.io/uses/) — Software developer, DevOps enthusiast.
530 | * [Jonathan Suh](https://jonsuh.com/uses) — Designer, Developer, Sneakerhead
531 | * [George Campbell](https://gibr.net/uses) — Full stack engineer at Netflix
532 | * [Sowren Sen](https://sowrensen.dev/uses) — Software Engineer
533 | * [Yoann Fleury](https://blog.yoannfleury.dev/uses) — Front End Web Developer, Blogger
534 | * [Keith Wagner](https://kpwags.com/uses) — Experienced full stack developer. Always trying to learn new and better ways of doing things.
535 | * [Sebastian Försth](https://forsth.dev/uses) — I am solving problems you did not know you had.
536 | * [Sebastian Remm](https://www.sebibasti.dev/uses) — Coding at 04am in the morning
537 | * [Chuck Munson](https://www.breadandrosesweb.com/uses/) — Web developer, blogger, writer, journalist, photographer, librarian, Minecraft addict, cooking show fanatic
538 | * [David O'Trakoun](https://www.davidosomething.com/uses/) — Software Engineer
539 | * [Dean Harris](https://deanacus.com/uses/) — Front End Developer. Husband. Skateboarder. Occasional blogger
540 | * [Michael Hoffmann](https://www.mokkapps.de/uses) — Freelance Software Engineer
541 | * [Colin Morris](https://vonexplaino.com/blog/posts/page/uses.html) — Steampunker, solution architect and web developer. Mad science works for all cases.
542 | * [Austin Gil](https://austingil.com/uses/) — 📝 Writing about code and stuff at http://austingil.com; 🛠 Building Vuetensils & Particles CSS; 🎙 Hosting @theFnCall; 🐶 Loving http://instagr.am/nuggetthemighty
543 | * [Michael Le](https://www.michael1e.com/uses/) — Software Engineer
544 | * [Kilian Valkhof](https://kilianvalkhof.com/using/) — User experience developer
545 | * [Spencer Aung](https://spenceraung.me/blog/uses) — Frontend Developer from Myanmar. Live in Seoul. Love cats and octopuses
546 | * [Dale French](https://dalefrench.dev/uses) — Full Stack Developer from South Africa. Skateboarder. Front End Enthusiast.
547 | * [Angel Taborda Chinea](https://ataborda.com/uses) — Software Developer, Teacher, JW, CTO en IO Digital
548 | * [Jordan Elver](https://elver.me/uses/) — Full Stack developer who loves Ruby, Elixir, and Rust.
549 | * [Russell John](https://russelljohn.net/uses/) — Professional Linux system administrator and highly experienced webmaster.
550 | * [Liam Richardson](https://discoliam.com/uses/) — User Interface developer focusing on Performance, A11y and CSS
551 | * [Timothy Miller](https://timothymiller.dev/uses) — Web Designer/Developer for hire. Wears lots of hats.
552 | * [Jordi Hoven](https://www.jordihoven.nl/uses) — Healthcare engineer, UX Designer, Whisky lover
553 | * [Caleb Ukle](https://calebukle.com/uses) — I'm a software developer, technology enthusiast, and simply enjoy learning new things.
554 | * [Ricardo Boss](https://ricardoboss.de/uses) — Software Developer from Germany. Loves PHP and clean code.
555 | * [Vincent Ramdhanie](https://vincentramdhanie.com/uses) — Software Developer, Lecturer, Technical Writer and Mentor
556 | * [Amir R Muntasser](https://arkm.xyz/uses/) — Web Developer, #vuenicorn wizard, Oxford comma enthusiast, and inventor of the ol' razzle dazzle.
557 | * [Pavel Melnik](https://theopract.gitlab.io/pavel-dev/uses/) — Web developer, Technology enthusiast, Energy Management System expert
558 | * [Miguel Ángel Durán](https://midu.dev/uses) — Front end passionate, Web Performance freak, casual speaker,
{person.description}
54 |
16 | A list of /uses
pages detailing developer setups, gear,
17 | software and configs.
18 |
20 | Your new route is ready to go! 21 |
22 |23 | Learn more about building Begin HTTP functions here. 24 |
25 | 26 | 27 | ` 28 | 29 | // HTTP function 30 | exports.handler = async function http(req) { 31 | console.log(req) 32 | return { 33 | headers: { 34 | 'content-type': 'text/html; charset=utf8', 35 | 'cache-control': 'no-cache, no-store, must-revalidate, max-age=0, s-maxage=0' 36 | }, 37 | body: html 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/http/get-index/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "begin-app-get-index", 3 | "requires": true, 4 | "lockfileVersion": 1, 5 | "dependencies": { 6 | "@architect/functions": { 7 | "version": "3.4.10", 8 | "resolved": "https://registry.npmjs.org/@architect/functions/-/functions-3.4.10.tgz", 9 | "integrity": "sha512-8pYTZihYxEilIE9dvtor7+n4pgAgEh7NchX6ySrGbLFkS2k6W7b1HJQJ9fLHuARi263sARVaJ63eXd5G7WS6Dw==", 10 | "requires": { 11 | "@architect/parser": "^1.2.2", 12 | "cookie": "^0.4.0", 13 | "cookie-signature": "^1.1.0", 14 | "csrf": "^3.1.0", 15 | "mime-types": "^2.1.25", 16 | "node-webtokens": "^1.0.3", 17 | "run-parallel": "^1.1.9", 18 | "run-waterfall": "^1.1.6", 19 | "uid-safe": "^2.1.5" 20 | } 21 | }, 22 | "@architect/parser": { 23 | "version": "1.2.2", 24 | "resolved": "https://registry.npmjs.org/@architect/parser/-/parser-1.2.2.tgz", 25 | "integrity": "sha512-z8M+bJCJLWpY/iNoXPPqsOlqF8zMgbmk3CLHIChSa3nnUlvx36a2bmTuh/+CiU/q4Ew7d6dHqpQB4SHtKt/A/w==" 26 | }, 27 | "@begin/data": { 28 | "version": "1.1.4", 29 | "resolved": "https://registry.npmjs.org/@begin/data/-/data-1.1.4.tgz", 30 | "integrity": "sha512-srUt6HFxancYgdZiolm7YIl3Hw7DqxxKHScFAb+eKQib5DxH70kXp2qtR/kPVtC4uZHWvPu7auCtIphzqqqUsg==", 31 | "requires": { 32 | "@architect/parser": "^1.2.0", 33 | "hashids": "^1.2.2", 34 | "run-parallel": "^1.1.9", 35 | "run-waterfall": "^1.1.6" 36 | } 37 | }, 38 | "cookie": { 39 | "version": "0.4.0", 40 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 41 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 42 | }, 43 | "cookie-signature": { 44 | "version": "1.1.0", 45 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.1.0.tgz", 46 | "integrity": "sha512-Alvs19Vgq07eunykd3Xy2jF0/qSNv2u7KDbAek9H5liV1UMijbqFs5cycZvv5dVsvseT/U4H8/7/w8Koh35C4A==" 47 | }, 48 | "csrf": { 49 | "version": "3.1.0", 50 | "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz", 51 | "integrity": "sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w==", 52 | "requires": { 53 | "rndm": "1.2.0", 54 | "tsscmp": "1.0.6", 55 | "uid-safe": "2.1.5" 56 | } 57 | }, 58 | "hashids": { 59 | "version": "1.2.2", 60 | "resolved": "https://registry.npmjs.org/hashids/-/hashids-1.2.2.tgz", 61 | "integrity": "sha512-dEHCG2LraR6PNvSGxosZHIRgxF5sNLOIBFEHbj8lfP9WWmu/PWPMzsip1drdVSOFi51N2pU7gZavrgn7sbGFuw==" 62 | }, 63 | "mime-db": { 64 | "version": "1.42.0", 65 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz", 66 | "integrity": "sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ==" 67 | }, 68 | "mime-types": { 69 | "version": "2.1.25", 70 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.25.tgz", 71 | "integrity": "sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==", 72 | "requires": { 73 | "mime-db": "1.42.0" 74 | } 75 | }, 76 | "node-webtokens": { 77 | "version": "1.0.3", 78 | "resolved": "https://registry.npmjs.org/node-webtokens/-/node-webtokens-1.0.3.tgz", 79 | "integrity": "sha512-koyo7/sqKOXyl+nfV0sNojLSgMC//VsuQXBSRZ+Whe0aYonBSQ2F/+HVSlVashJOXHYNru/4gk6eXebeYmqoUw==" 80 | }, 81 | "random-bytes": { 82 | "version": "1.0.0", 83 | "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", 84 | "integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=" 85 | }, 86 | "rndm": { 87 | "version": "1.2.0", 88 | "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", 89 | "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=" 90 | }, 91 | "run-parallel": { 92 | "version": "1.1.9", 93 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", 94 | "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" 95 | }, 96 | "run-waterfall": { 97 | "version": "1.1.6", 98 | "resolved": "https://registry.npmjs.org/run-waterfall/-/run-waterfall-1.1.6.tgz", 99 | "integrity": "sha512-dApPbpIK0hbFi2zqfJxrsnfmJW2HCQHFrSsmqF3Fp9TKm5WVf++zE6BSw0hPcA7rPapO37h12Swk2E6Va3tF7Q==" 100 | }, 101 | "tsscmp": { 102 | "version": "1.0.6", 103 | "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", 104 | "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" 105 | }, 106 | "uid-safe": { 107 | "version": "2.1.5", 108 | "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", 109 | "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", 110 | "requires": { 111 | "random-bytes": "~1.0.0" 112 | } 113 | } 114 | } 115 | } -------------------------------------------------------------------------------- /src/http/get-index/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "begin-app-get-index", 3 | "dependencies": { 4 | "@architect/functions": "latest", 5 | "@begin/data": "latest" 6 | } 7 | } -------------------------------------------------------------------------------- /src/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/android.png -------------------------------------------------------------------------------- /src/images/apple.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/flip-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/flip-phone.png -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/iphone.png -------------------------------------------------------------------------------- /src/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/linux.png -------------------------------------------------------------------------------- /src/images/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/twitter-card.png -------------------------------------------------------------------------------- /src/images/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/awesome/981b673768c7da43f32d8fb3d4dff527d0d86636/src/images/windowsphone.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import Layout from '../components/layout'; 4 | 5 | const NotFoundPage = () => ( 6 |WHAT R U DOING HERE
8 |