├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .npmrc ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── icons ├── _net_core.png ├── activemq.png ├── android.png ├── android_studio.png ├── angular.png ├── ansible.png ├── ant_design.png ├── apache_camel.png ├── apache_solr.png ├── apache_spark.png ├── appcode.png ├── arch_linux.png ├── arduino.png ├── astro.png ├── atom.png ├── auth0.png ├── aws.png ├── babel.png ├── backbone_js.png ├── bash.png ├── bitbucket.png ├── bootstrap.png ├── browsersync.png ├── bulma.png ├── bun_js.png ├── c#.png ├── c++.png ├── c.png ├── canva.png ├── cassandra.png ├── chai.png ├── chainlink.png ├── chakra_ui.png ├── ci_cd.png ├── cockroachdb.png ├── consul.png ├── coral_ai.png ├── couchdb.png ├── css.png ├── cucumber.png ├── cypress.png ├── dart.png ├── databricks.png ├── digital_ocean.png ├── directus.png ├── django.png ├── docker.png ├── eclipse.png ├── elasticsearch.png ├── electron.png ├── elementary_os.png ├── elixir.png ├── ember_js.png ├── emqx.png ├── erlang.png ├── ethereum.png ├── express.png ├── fastify.png ├── fedora.png ├── figma.png ├── firebase.png ├── flask.png ├── flutter.png ├── flyway.png ├── fortran.png ├── foundry.png ├── gatsby.png ├── gcp.png ├── git.png ├── github.png ├── gitlab.png ├── go.png ├── godot.png ├── graalvm.png ├── grafana.png ├── graphql.png ├── groovy.png ├── grpc.png ├── grunt.png ├── gulp.png ├── hadoop.png ├── hardhat.png ├── hazelcast.png ├── hibernate.png ├── hive.png ├── html.png ├── http.png ├── ibm_cloud.png ├── intellij.png ├── ios.png ├── java.png ├── javascript.png ├── jboss.png ├── jenkins.png ├── jest.png ├── jetty.png ├── jira.png ├── junit.png ├── jupyter_notebook.png ├── kafka.png ├── kali_linux.png ├── kotlin.png ├── kubernetes.png ├── laravel.png ├── linux.png ├── linux_mint.png ├── liquibase.png ├── loki.png ├── lombok.png ├── lua.png ├── macos.png ├── mapstruct.png ├── mariadb.png ├── marionette.png ├── material_design.png ├── material_ui.png ├── materialize.png ├── matlab.png ├── maven.png ├── metamask.png ├── micrometer.png ├── micronaut.png ├── microsoft_azure.png ├── mocha.png ├── mocikto.png ├── mongodb.png ├── mosquitto.png ├── mqtt.png ├── mqtt_js.png ├── mssql.png ├── mysql.png ├── neo4j.png ├── neovim.png ├── nest_js.png ├── next_js.png ├── next_ui.png ├── nginx.png ├── nixos.png ├── node_js.png ├── nodegui.png ├── npm.png ├── numpy.png ├── nuxt_js.png ├── odoo.png ├── openresty.png ├── oracle.png ├── pandas.png ├── php.png ├── php_(elephpant).png ├── phpstorm.png ├── play_framework.png ├── playwright.png ├── postgresql.png ├── postman.png ├── prometheus.png ├── pug.png ├── puppet.png ├── puppeteer.png ├── pycharm.png ├── pygame.png ├── pytest.png ├── python.png ├── qt.png ├── quarkus.png ├── rabbitmq.png ├── raspberri_pi.png ├── react.png ├── react_query.png ├── realm.png ├── redis.png ├── redux.png ├── rest.png ├── robot_framework.png ├── rpg_maker.png ├── ruby.png ├── ruby_on_rails.png ├── rubygems.png ├── rust.png ├── sass.png ├── sbt.png ├── scala.png ├── selenium.png ├── shadcn_ui.png ├── soap.png ├── solana.png ├── solidity.png ├── sonarqube.png ├── spock.png ├── spring.png ├── spring_boot.png ├── spyder.png ├── sqlite.png ├── strapi.png ├── streamlit.png ├── struts.png ├── styled-components.png ├── sublime_text.png ├── supabase.png ├── svelte.png ├── swagger.png ├── swift.png ├── tailwind_css.png ├── tensorflow.png ├── terraform.png ├── testcontainers.png ├── thanos.png ├── tomcat.png ├── trpc.png ├── turborepo.png ├── typescript.png ├── ubuntu.png ├── uniswap.png ├── unity.png ├── unreal_engine.png ├── vaadin.png ├── vault.png ├── vim.png ├── visual_studio_code.png ├── vite.png ├── vue_js.png ├── vuetify_js.png ├── webassembly.png ├── webpack.png ├── websocket.png ├── webstorm.png ├── wildfly.png ├── windows.png ├── wix.png ├── wordpress.png ├── wxwidgets.png ├── xcode.png ├── yarn.png ├── zero_the_ziguana.png └── ziglang.png ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── assets │ └── images │ │ └── icon.png ├── components │ ├── BlueCheckbox.jsx │ ├── BlueHeart.jsx │ ├── Example.js │ ├── Examples.js │ ├── GradientButton.js │ ├── NormalButton.js │ ├── SortableItem.jsx │ └── SortableList.jsx ├── pages │ ├── 404.js │ ├── generator.js │ ├── header.js │ ├── index.js │ └── learn_more.js └── styles │ └── global.css └── static ├── demo.gif └── example1.png /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: github pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | 9 | jobs: 10 | deploy: 11 | runs-on: ubuntu-24.04 12 | steps: 13 | - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 14 | 15 | - uses: pnpm/action-setup@v4 16 | - name: Setup Node 17 | uses: actions/setup-node@v4 18 | with: 19 | node-version: "22" 20 | cache: "pnpm" 21 | 22 | - name: Cache dependencies 23 | uses: actions/cache@v4 24 | with: 25 | path: ~/.pnpm-store 26 | key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} 27 | restore-keys: | 28 | ${{ runner.os }}-pnpm- 29 | 30 | - run: pnpm install --frozen-lockfile 31 | - run: pnpm run buildProd 32 | 33 | - name: Deploy 34 | uses: peaceiris/actions-gh-pages@v4 35 | if: github.ref == 'refs/heads/main' 36 | with: 37 | github_token: ${{ secrets.GITHUB_TOKEN }} 38 | publish_dir: ./public 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | .idea/ 5 | *.iml 6 | -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-full:latest 2 | 3 | RUN bash -c 'VERSION="19.1.0" \ 4 | && source $HOME/.nvm/nvm.sh && nvm install $VERSION \ 5 | && nvm use $VERSION && nvm alias default $VERSION' 6 | 7 | RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: 2 | file: .gitpod.Dockerfile 3 | 4 | # List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ 5 | tasks: 6 | - init: npm install --legacy-peer-deps && npm run build 7 | command: npm start 8 | 9 | # List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/ 10 | ports: 11 | - port: 8000 12 | onOpen: open-preview 13 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | package-lock=true 3 | legacy-peer-deps=true 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 👋 Welcome! profile-technology-icons for README.md 2 | 3 | A list of icons that can be used during GitHub profile creation to show what technology, languages are known. 4 | Fill free to contribute to this repository. 5 | 6 |
7 | 8 | ➡️Visit online generator!⬅️ 9 | 10 |
11 | 12 | 13 | ### ➡️ Visit to generate: **https://marwin1991.github.io/profile-technology-icons/** ⬅️ 14 | 15 | 16 | ### 🎥 Simple demo 17 | 18 |
19 | 20 |
21 | 22 | ### 💼 Related Work 23 | 24 | If you prefer badge instead of icon checkout [Badges4-README.md-Profile](https://github.com/alexandresanlim/Badges4-README.md-Profile) 25 | 26 | ### 📋 List of Content: 27 | 28 | - ➡️ 🖨️ [Technologies Icons](#%EF%B8%8F-technologies-icons) 29 | 30 | - ➡️ 🚍 [Communication](#-communication) 31 | - ➡️ 🧰 [Version Control](#-version-control) 32 | - ➡️ 🔨 [Tools](#-tools) 33 | - ➡️ 🌐 [Web Dev](#-web-dev) 34 | - ➡️ ✨ [UI/UX](#-uiux) 35 | - ➡️ 📜 [JavaScript](#-javascript) 36 | - ➡️ ☕ [Java](#-java) 37 | - ➡️ ©️ [C/C++](#%EF%B8%8F-cc) 38 | - ➡️ 🪒 [C#](#-c) 39 | - ➡️ 🐍 [Python](#-python) 40 | - ➡️ 🐘 [php](#-php) 41 | - ➡️ 💎 [Ruby](#-ruby) 42 | - ➡️ 🦖 [Zig](#-zig) 43 | - ➡️ 🦾 [Rust](#-rust) 44 | - ➡️ 🧮 [Fortran](#-fortran) 45 | - ➡️ 🐿️ [Go](#%EF%B8%8F-go) 46 | - ➡️ ☎️ [Erlang/Elixir](#%EF%B8%8F-erlangelixir) 47 | - ➡️ 🧊 [Apache](#-apache) 48 | - ➡️ 📱 [Mobile Dev](#-mobile-dev) 49 | - ➡️ 💾 [Database](#-database) 50 | - ➡️ 🤿 [DevOps](#-devops) 51 | - ➡️ ☁️ [Cloud](#%EF%B8%8F-cloud) 52 | - ➡️ 🤖 [AI](#-ai) 53 | - ➡️ 🔬 [Analytics](#-analytics) 54 | - ➡️ 🧪 [Testing](#-testing) 55 | - ➡️ 🎮 [Game Development](#-game-development) 56 | - ➡️ 🖥️ [Operating system](#%EF%B8%8F-operating-system) 57 | - ➡️ 🔗 [Blockchain](#-blockchain) 58 | 59 | - ➡️ 🍼 [How to use this icons?](#-how-to-use-it) 60 | 61 | - ➡️ 🚶 [Contribution](#-contribution) 62 | 63 | # 🖨️ Technologies Icons 64 | 65 | _All product names, logos, and brandsare property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement._ 66 | 67 | ### 🚍 Communication 68 | 69 | | Technology Icon | Technology Name | URL | 70 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 71 | | | HTTP | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/http.png` | 72 | | | websocket | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/websocket.png` | 73 | | | gRPC | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/grpc.png` | 74 | | | GraphQL | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/graphql.png` | 75 | | | REST | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/rest.png` | 76 | | | SOAP | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/soap.png` | 77 | | | tRPC | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/trpc.png` | 78 | 79 | 80 | 81 | ### 🧰 Version Control 82 | 83 | | Technology Icon | Technology Name | URL | 84 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 85 | | | Git | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/git.png` | 86 | | | GitHub | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/github.png` | 87 | | | GitLab | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/gitlab.png` | 88 | | | Bitbucket | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/bitbucket.png` | 89 | 90 | ### 🔨 Tools 91 | 92 | | Technology Icon | Technology Name | URL | 93 | | :---------------------------------------------------------------------------------------------------------------------------: | :----------------: | ------------------------------------------------------------------------------------------------------- | 94 | | | Vim | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vim.png` | 95 | | | IntelliJ | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/intellij.png` | 96 | | | WebStorm | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/webstorm.png` | 97 | | | PyCharm | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/pycharm.png` | 98 | | | PhpStorm | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/phpstorm.png` | 99 | | | Android Studio | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/android_studio.png` | 100 | | | AppCode | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/appcode.png` | 101 | | | Xcode | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/xcode.png` | 102 | | | Visual Studio Code | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/visual_studio_code.png` | 103 | | | eclipse | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/eclipse.png` | 104 | | | Atom | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/atom.png` | 105 | | | Sublime Text | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/sublime_text.png` | 106 | | | Postman | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/postman.png` | 107 | | | Jira | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jira.png` | 108 | | | Spyder | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/spyder.png` | 109 | | | Jupyter Notebook | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jupyter_notebook.png` | 110 | | | SonarQube | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/sonarqube.png` | 111 | | | Neovim | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/neovim.png` | 112 | 113 | ### 🌐 Web Dev 114 | 115 | | Technology Icon | Technology Name | URL | 116 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 117 | | | HTML | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/html.png` | 118 | | | CSS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/css.png` | 119 | | | Sass | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/sass.png` | 120 | | | Bootstrap | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/bootstrap.png` | 121 | | | Tailwind CSS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/tailwind_css.png` | 122 | | | Wordpress | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/wordpress.png` | 123 | | | Wix | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/wix.png` | 124 | | | Swagger | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/swagger.png` | 125 | | | Browsersync | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/browsersync.png` | 126 | | | WebAssembly | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/webassembly.png` | 127 | | | Firebase | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/firebase.png` | 128 | | | Supabase | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/supabase.png` | 129 | | | Materialize | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/materialize.png` | 130 | | | Bulma | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/bulma.png` | 131 | | | Strapi | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/strapi.png` | 132 | | | Directus | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/directus.png` | 133 | | | Auth0 | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/auth0.png` | 134 | | | styled-components | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/styled-components.png` | 135 | 136 | 137 | ### ✨ UI/UX 138 | 139 | | Technology Icon | Technology Name | URL | 140 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 141 | | | Figma | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/figma.png` | 142 | | | Material Design | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/material_design.png` | 143 | | | Material UI | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/material_ui.png` | 144 | | | Chakra UI | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/chakra_ui.png` | 145 | | | Ant Design | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ant_design.png` | 146 | | | Canva | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/canva.png` | 147 | | | ShadCn UI | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/shadcn_ui.png` | 148 | | | Next UI | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/next_ui.png` | 149 | 150 | ### 📜 JavaScript 151 | 152 | 153 | 154 | | Technology Icon | Technology Name | URL | 155 | | :---------------------------------------------------------------------------------------------------------------------------: |:---------------:| ------------------------------------------------------------------------------------------------------- | 156 | | | JavaScript | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/javascript.png` | 157 | | | Angular | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/angular.png` | 158 | | | React | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/react.png` | 159 | | | Vue.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vue_js.png` | 160 | | | TypeScript | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/typescript.png` | 161 | | | npm | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/npm.png` | 162 | | | yarn | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/yarn.png` | 163 | | | Node.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/node_js.png` | 164 | | | Express | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/express.png` | 165 | | | Nest.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/nest_js.png` | 166 | | | Fastify | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/fastify.png` | 167 | | | Redux | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/redux.png` | 168 | | | React Query | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/react_query.png` | 169 | | | Jest | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jest.png` | 170 | | | webpack | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/webpack.png` | 171 | | | Gulp | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/gulp.png` | 172 | | | Grunt | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/grunt.png` | 173 | | | Gatsby | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/gatsby.png` | 174 | | | Next.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/next_js.png` | 175 | | | Svelte | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/svelte.png` | 176 | | | Nuxt.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/nuxt_js.png` | 177 | | | Bun.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/bun_js.png` | 178 | | | Backbone.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/backbone_js.png` | 179 | | | Vuetify.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vuetify_js.png` | 180 | | | Ember.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ember_js.png` | 181 | | | Pug | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/pug.png` | 182 | | | Vite | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vite.png` | 183 | | | Babel | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/babel.png` | 184 | | | Astro | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/astro.png` | 185 | | | NodeGui | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/nodegui.png` | 186 | | | Turborepo | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/turborepo.png` | 187 | | | Marionette | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/marionette.png` | 188 | | | Electron | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/electron.png` | 189 | 190 | ### ☕ Java 191 | 192 | | Technology Icon | Technology Name | URL | 193 | |:--------------------------------------------------------------------------------------------------------------------------------------:|:---------------:|------------------------------------------------------------------------------------------------------------------| 194 | | | Java | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/java.png` | 195 | | | Spring | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/spring.png` | 196 | | | Spring Boot | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/spring_boot.png` | 197 | | | Maven | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/maven.png` | 198 | | | Hibernate | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/hibernate.png` | 199 | | | Liquibase | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/liquibase.png` | 200 | | | Flyway | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/flyway.png` | 201 | | | Struts | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/struts.png` | 202 | | | JUnit | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/junit.png` | 203 | | | mocikto | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mocikto.png` | 204 | | | Lombok | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/lombok.png` | 205 | | | Mapstruct | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mapstruct.png` | 206 | | | Testcontainers | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/testcontainers.png` | 207 | | | Spock | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/spock.png` | 208 | | | Vaadin | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vaadin.png` | 209 | | | Groovy | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/groovy.png` | 210 | | | Quarkus | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/quarkus.png` | 211 | | | Micronaut | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/micronaut.png` | 212 | | | Tomcat | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/tomcat.png` | 213 | | | jetty | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jetty.png` | 214 | | | JBoss | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jboss.png` | 215 | | | WildFly | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/wildfly.png` | 216 | | | GraalVM | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/graalvm.png` | 217 | | | Scala | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/scala.png` | 218 | | | sbt | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/sbt.png` | 219 | | | Play Framework | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/play_framework.png` | 220 | | | Kotlin | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/kotlin.png` | 221 | | | Micrometer | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/micrometer.png` | 222 | | | Hadoop | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/hadoop.png` | 223 | 224 | 225 | 226 | ### ©️ C/C++ 227 | 228 | | Technology Icon | Technology Name | URL | 229 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 230 | | | C | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/c.png` | 231 | | | C++ | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/c++.png` | 232 | | | Qt | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/qt.png` | 233 | | | wxWidgets | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/wxwidgets.png` | 234 | 235 | ### 🪒 C\# 236 | 237 | | Technology Icon | Technology Name | URL | 238 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 239 | | | C# | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/c%23.png` | 240 | | | .NET Core | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/_net_core.png` | 241 | 242 | ### 🌕 Lua 243 | | Technology Icon | Technology Name | URL | 244 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 245 | | | Lua | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/lua.png` | 246 | 247 | ### 🐍 Python 248 | 249 | | Technology Icon | Technology Name | URL | 250 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 251 | | | Python | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/python.png` | 252 | | | Flask | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/flask.png` | 253 | | | pytest | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/pytest.png` | 254 | | | Django | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/django.png` | 255 | | | NumPy | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/numpy.png` | 256 | | | Pandas | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/pandas.png` | 257 | | | Pygame | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/pygame.png` | 258 | | | Odoo | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/odoo.png` | 259 | | | Streamlit | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/streamlit.png` | 260 | 261 | ### 🐘 php 262 | 263 | | Technology Icon | Technology Name | URL | 264 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 265 | | | php | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/php.png` | 266 | | | php (elephpant) | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/php_(elephpant).png` | 267 | | | Laravel | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/laravel.png` | 268 | 269 | ### 💎 Ruby 270 | 271 | | Technology Icon | Technology Name | URL | 272 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 273 | | | Ruby | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ruby.png` | 274 | | | Ruby on Rails | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ruby_on_rails.png` | 275 | | | RubyGems | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/rubygems.png` | 276 | 277 | ### 🦖 Zig 278 | 279 | | Technology Icon | Technology Name | URL | 280 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 281 | | | Zig | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ziglang.png` | 282 | | | Zero the Ziguana (Mascot) | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/zero_the_ziguana.png` | 283 | 284 | ### 🦾 Rust 285 | 286 | | Technology Icon | Technology Name | URL | 287 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 288 | | | Rust | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/rust.png` | 289 | 290 | ### 🧮 Fortran 291 | 292 | | Technology Icon | Technology Name | URL | 293 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 294 | | | Fortran | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/fortran.png` | 295 | 296 | ### 🐿️ Go 297 | 298 | | Technology Icon | Technology Name | URL | 299 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 300 | | | Go | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/go.png` | 301 | 302 | ### ☎️ Erlang/Elixir 303 | 304 | | Technology Icon | Technology Name | URL | 305 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 306 | | | Erlang | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/erlang.png` | 307 | | | Elixir | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/elixir.png` | 308 | 309 | ### 🧊 Apache 310 | 311 | | Technology Icon | Technology Name | URL | 312 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 313 | | | Apache Solr | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/apache_solr.png` | 314 | | | Apache Camel | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/apache_camel.png` | 315 | 316 | 317 | 318 | ### 📱 Mobile Dev 319 | 320 | | Technology Icon | Technology Name | URL | 321 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 322 | | | Android | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/android.png` | 323 | | | iOS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ios.png` | 324 | | | Swift | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/swift.png` | 325 | | | Dart | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/dart.png` | 326 | | | Flutter | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/flutter.png` | 327 | 328 | ### 💾 Database 329 | 330 | | Technology Icon | Technology Name | URL | 331 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 332 | | | PostgreSQL | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/postgresql.png` | 333 | | | Oracle | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/oracle.png` | 334 | | | MySQL | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mysql.png` | 335 | | | redis | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/redis.png` | 336 | | | neo4j | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/neo4j.png` | 337 | | | Cassandra | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/cassandra.png` | 338 | | | mongoDB | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mongodb.png` | 339 | | | Hazelcast | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/hazelcast.png` | 340 | | | CouchDB | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/couchdb.png` | 341 | | | Realm | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/realm.png` | 342 | | | SQLite | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/sqlite.png` | 343 | | | MariaDB | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mariadb.png` | 344 | | | CockroachDB | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/cockroachdb.png` | 345 | | | Hive | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/hive.png` | 346 | | | MSSQL | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mssql.png` | 347 | 348 | ### 🤿 DevOps 349 | 350 | | Technology Icon | Technology Name | URL | 351 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 352 | | | bash | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/bash.png` | 353 | | | Docker | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/docker.png` | 354 | | | Kubernetes | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/kubernetes.png` | 355 | | | CI/CD | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ci_cd.png` | 356 | | | Jenkins | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/jenkins.png` | 357 | | | Grafana | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/grafana.png` | 358 | | | Loki | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/loki.png` | 359 | | | Prometheus | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/prometheus.png` | 360 | | | Thanos | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/thanos.png` | 361 | | | Terraform | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/terraform.png` | 362 | | | Ansible | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ansible.png` | 363 | | | Vault | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/vault.png` | 364 | | | Nginx | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/nginx.png` | 365 | | | Consul | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/consul.png` | 366 | | | OpenResty | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/openresty.png` | 367 | | | Puppet | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/puppet.png` | 368 | 369 | 370 | 371 | ### ☁️ Cloud 372 | 373 | | Technology Icon | Technology Name | URL | 374 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 375 | | | AWS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/aws.png` | 376 | | | GCP | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/gcp.png` | 377 | | | Microsoft Azure | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/microsoft_azure.png` | 378 | | | IBM Cloud | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ibm_cloud.png` | 379 | | | Digital Ocean | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/digital_ocean.png` | 380 | 381 | ### 🤖 AI 382 | 383 | | Technology Icon | Technology Name | URL | 384 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 385 | | | TensorFlow | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/tensorflow.png` | 386 | 387 | 388 | 389 | ### 🔬 Analytics 390 | 391 | | Technology Icon | Technology Name | URL | 392 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 393 | | | Elasticsearch | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/elasticsearch.png` | 394 | | | Apache Spark | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/apache_spark.png` | 395 | | | Databricks | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/databricks.png` | 396 | | | MATLAB | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/matlab.png` | 397 | 398 | ### 🧪 Testing 399 | 400 | | Technology Icon | Technology Name | URL | 401 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 402 | | | Selenium | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/selenium.png` | 403 | | | Cucumber | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/cucumber.png` | 404 | | | Cypress | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/cypress.png` | 405 | | | Chai | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/chai.png` | 406 | | | Mocha | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mocha.png` | 407 | | | Robot Framework | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/robot_framework.png` | 408 | | | Puppeteer | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/puppeteer.png` | 409 | | | Playwright | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/playwright.png` | 410 | 411 | 412 | 413 | ### 🎮 Game Development 414 | 415 | | Technology Icon | Technology Name | URL | 416 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 417 | | | Unity | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/unity.png` | 418 | | | Godot | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/godot.png` | 419 | | | Unreal Engine | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/unreal_engine.png` | 420 | | | RPG Maker | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/rpg_maker.png` | 421 | 422 | ### 🖥️ Operating system 423 | 424 | | Technology Icon | Technology Name | URL | 425 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 426 | | | Windows | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/windows.png` | 427 | | | macOS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/macos.png` | 428 | | | Linux | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/linux.png` | 429 | | | Ubuntu | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ubuntu.png` | 430 | | | fedora | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/fedora.png` | 431 | | | Arch Linux | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/arch_linux.png` | 432 | | | Linux Mint | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/linux_mint.png` | 433 | | | elementary OS | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/elementary_os.png` | 434 | | | Kali Linux | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/kali_linux.png` | 435 | | | Nixos | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/nixos.png` | 436 | 437 | ### :electric_plug: Microcontrollers 438 | 439 | | Technology Icon | Technology Name | URL | 440 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 441 | | | Arduino | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/arduino.png` | 442 | | | Coral.ai | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/coral_ai.png` | 443 | | | Raspberri Pi | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/raspberri_pi.png` | 444 | 445 | ### 🛜 MQTT technologies 446 | 447 | | Technology Icon | Technology Name | URL | 448 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 449 | | | MQTT | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mqtt.png` | 450 | | | EMQX | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/emqx.png` | 451 | | | Mosquitto | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mosquitto.png` | 452 | | | RabbitMQ | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/rabbitmq.png` | 453 | | | kafka | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/kafka.png` | 454 | | | MQTT.js | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/mqtt_js.png` | 455 | | | ActiveMQ | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/activemq.png` | 456 | 457 | 458 | 459 | 460 | ### 🔗 Blockchain 461 | 462 | | Technology Icon | Technology Name | URL | 463 | | :---------------------------------------------------------------------------------------------------------------------------: | :-------------: | ------------------------------------------------------------------------------------------------------- | 464 | | | Solidity | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/solidity.png` | 465 | | | Solana | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/solana.png` | 466 | | | Hardhat | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/hardhat.png` | 467 | | | Foundry | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/foundry.png` | 468 | | | Metamask | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/metamask.png` | 469 | | | Ethereum | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/ethereum.png` | 470 | | | Chainlink | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/chainlink.png` | 471 | | | Uniswap | `https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/uniswap.png` | 472 | 473 | 474 | 475 | # 🍼 How to use it? 476 | 477 | You can visit https://marwin1991.github.io/profile-technology-icons/ and generate code that after adding to your GitHub profile README.md will 478 | show others what technology you know and use. 479 | 480 | # 🚶 Contribution 481 | 482 | If you are willing to make the project better, you are free to contribute in one of those ways. 483 | 484 | ### Adding New Icons 485 | 486 | 1. **Prepare the icon file**: 487 | - The icon must be **400x400 px** (square). 488 | - The file name should be in **lowercase**. Replace all **spaces**, **dots** (`.`), and **slashes** (`/`) with **underscores** (`_`). 489 | - Example: 490 | - Technology: `My Technology/2.0` 491 | - File name: `my_technology_2_0.png` 492 | 493 | 2. **Add the file to the `icons/` folder**: 494 | - Place your new image file (e.g., `my_technology_2_0.png`) in the `icons` directory. 495 | - You can do this using GitHub’s **“Add file”** \> **“Upload files”** option, or by adding it locally and committing the changes in your branch. 496 | 497 | 3. **Add a new row to the table in `README.md`**: 498 | - Locate the section with the table of existing icons in the `README.md`. 499 | - Copy an existing table row as a template and paste it below (or wherever you want). 500 | - Update: 501 | 1. The **technology name** in the middle column. 502 | 2. The **URL** in the `src` attribute and in the backtick section (the right column) so that it points to your newly uploaded file in the `icons` folder. 503 | - The new icon’s URL should look like this (note that the file name must match exactly): 504 | ``` 505 | https://raw.githubusercontent.com/marwin1991/profile-technology-icons/refs/heads/main/icons/my_technology_2_0.png 506 | ``` 507 | 508 | 4. **Open a Pull Request (PR)**: 509 | - Commit your changes (including the new `.png` file and the updated `README.md`) to your **fork** and create a **Pull Request** to this repository. 510 | 511 | Once your PR is merged, **your icon** will appear in the `icons/` folder and will be visible in the README table. If you have any questions or issues, feel free to open an **issue** or comment directly in the PR. 512 | 513 | ### Adding issues 514 | 515 | - If you have any suggestions about the project, you are welcome to open a new issue and describe them. 516 | - If you have any ideas about new icons you can also open new issue and ask to add new icons. 517 | 518 | ### Improving web generator 519 | 520 | - Fork this project and add improvents, after creating Pull Request I will be happy to merge it 😄 521 | 522 | [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/marwin1991/profile-technology-icons) 523 | 524 |
525 | 526 | [![Star History](https://api.lucabubi.me/chart?username=marwin1991&repository=profile-technology-icons)](https://github.com/lucabubi/star-history) 527 | 528 |
529 | -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import "./src/styles/global.css" -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | pathPrefix: "/profile-technology-icons", 3 | siteMetadata: { 4 | title: "Profile Technology Icons", 5 | }, 6 | plugins: [{ 7 | resolve: `gatsby-plugin-styled-components`, 8 | options: { 9 | displayName: true 10 | } 11 | }, 12 | 13 | { 14 | resolve: 'gatsby-plugin-material-ui', 15 | options: { 16 | }, 17 | }, 18 | { 19 | resolve: 'gatsby-plugin-manifest', 20 | options: { 21 | icon: 'src/assets/images/icon.png', 22 | }, 23 | }, 24 | 'gatsby-plugin-smoothscroll' 25 | ] 26 | }; 27 | -------------------------------------------------------------------------------- /icons/_net_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/_net_core.png -------------------------------------------------------------------------------- /icons/activemq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/activemq.png -------------------------------------------------------------------------------- /icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/android.png -------------------------------------------------------------------------------- /icons/android_studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/android_studio.png -------------------------------------------------------------------------------- /icons/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/angular.png -------------------------------------------------------------------------------- /icons/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ansible.png -------------------------------------------------------------------------------- /icons/ant_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ant_design.png -------------------------------------------------------------------------------- /icons/apache_camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/apache_camel.png -------------------------------------------------------------------------------- /icons/apache_solr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/apache_solr.png -------------------------------------------------------------------------------- /icons/apache_spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/apache_spark.png -------------------------------------------------------------------------------- /icons/appcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/appcode.png -------------------------------------------------------------------------------- /icons/arch_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/arch_linux.png -------------------------------------------------------------------------------- /icons/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/arduino.png -------------------------------------------------------------------------------- /icons/astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/astro.png -------------------------------------------------------------------------------- /icons/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/atom.png -------------------------------------------------------------------------------- /icons/auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/auth0.png -------------------------------------------------------------------------------- /icons/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/aws.png -------------------------------------------------------------------------------- /icons/babel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/babel.png -------------------------------------------------------------------------------- /icons/backbone_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/backbone_js.png -------------------------------------------------------------------------------- /icons/bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/bash.png -------------------------------------------------------------------------------- /icons/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/bitbucket.png -------------------------------------------------------------------------------- /icons/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/bootstrap.png -------------------------------------------------------------------------------- /icons/browsersync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/browsersync.png -------------------------------------------------------------------------------- /icons/bulma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/bulma.png -------------------------------------------------------------------------------- /icons/bun_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/bun_js.png -------------------------------------------------------------------------------- /icons/c#.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/c#.png -------------------------------------------------------------------------------- /icons/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/c++.png -------------------------------------------------------------------------------- /icons/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/c.png -------------------------------------------------------------------------------- /icons/canva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/canva.png -------------------------------------------------------------------------------- /icons/cassandra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/cassandra.png -------------------------------------------------------------------------------- /icons/chai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/chai.png -------------------------------------------------------------------------------- /icons/chainlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/chainlink.png -------------------------------------------------------------------------------- /icons/chakra_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/chakra_ui.png -------------------------------------------------------------------------------- /icons/ci_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ci_cd.png -------------------------------------------------------------------------------- /icons/cockroachdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/cockroachdb.png -------------------------------------------------------------------------------- /icons/consul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/consul.png -------------------------------------------------------------------------------- /icons/coral_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/coral_ai.png -------------------------------------------------------------------------------- /icons/couchdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/couchdb.png -------------------------------------------------------------------------------- /icons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/css.png -------------------------------------------------------------------------------- /icons/cucumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/cucumber.png -------------------------------------------------------------------------------- /icons/cypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/cypress.png -------------------------------------------------------------------------------- /icons/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/dart.png -------------------------------------------------------------------------------- /icons/databricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/databricks.png -------------------------------------------------------------------------------- /icons/digital_ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/digital_ocean.png -------------------------------------------------------------------------------- /icons/directus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/directus.png -------------------------------------------------------------------------------- /icons/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/django.png -------------------------------------------------------------------------------- /icons/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/docker.png -------------------------------------------------------------------------------- /icons/eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/eclipse.png -------------------------------------------------------------------------------- /icons/elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/elasticsearch.png -------------------------------------------------------------------------------- /icons/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/electron.png -------------------------------------------------------------------------------- /icons/elementary_os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/elementary_os.png -------------------------------------------------------------------------------- /icons/elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/elixir.png -------------------------------------------------------------------------------- /icons/ember_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ember_js.png -------------------------------------------------------------------------------- /icons/emqx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/emqx.png -------------------------------------------------------------------------------- /icons/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/erlang.png -------------------------------------------------------------------------------- /icons/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ethereum.png -------------------------------------------------------------------------------- /icons/express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/express.png -------------------------------------------------------------------------------- /icons/fastify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/fastify.png -------------------------------------------------------------------------------- /icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/fedora.png -------------------------------------------------------------------------------- /icons/figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/figma.png -------------------------------------------------------------------------------- /icons/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/firebase.png -------------------------------------------------------------------------------- /icons/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/flask.png -------------------------------------------------------------------------------- /icons/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/flutter.png -------------------------------------------------------------------------------- /icons/flyway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/flyway.png -------------------------------------------------------------------------------- /icons/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/fortran.png -------------------------------------------------------------------------------- /icons/foundry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/foundry.png -------------------------------------------------------------------------------- /icons/gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/gatsby.png -------------------------------------------------------------------------------- /icons/gcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/gcp.png -------------------------------------------------------------------------------- /icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/git.png -------------------------------------------------------------------------------- /icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/github.png -------------------------------------------------------------------------------- /icons/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/gitlab.png -------------------------------------------------------------------------------- /icons/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/go.png -------------------------------------------------------------------------------- /icons/godot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/godot.png -------------------------------------------------------------------------------- /icons/graalvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/graalvm.png -------------------------------------------------------------------------------- /icons/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/grafana.png -------------------------------------------------------------------------------- /icons/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/graphql.png -------------------------------------------------------------------------------- /icons/groovy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/groovy.png -------------------------------------------------------------------------------- /icons/grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/grpc.png -------------------------------------------------------------------------------- /icons/grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/grunt.png -------------------------------------------------------------------------------- /icons/gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/gulp.png -------------------------------------------------------------------------------- /icons/hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/hadoop.png -------------------------------------------------------------------------------- /icons/hardhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/hardhat.png -------------------------------------------------------------------------------- /icons/hazelcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/hazelcast.png -------------------------------------------------------------------------------- /icons/hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/hibernate.png -------------------------------------------------------------------------------- /icons/hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/hive.png -------------------------------------------------------------------------------- /icons/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/html.png -------------------------------------------------------------------------------- /icons/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/http.png -------------------------------------------------------------------------------- /icons/ibm_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ibm_cloud.png -------------------------------------------------------------------------------- /icons/intellij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/intellij.png -------------------------------------------------------------------------------- /icons/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ios.png -------------------------------------------------------------------------------- /icons/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/java.png -------------------------------------------------------------------------------- /icons/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/javascript.png -------------------------------------------------------------------------------- /icons/jboss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jboss.png -------------------------------------------------------------------------------- /icons/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jenkins.png -------------------------------------------------------------------------------- /icons/jest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jest.png -------------------------------------------------------------------------------- /icons/jetty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jetty.png -------------------------------------------------------------------------------- /icons/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jira.png -------------------------------------------------------------------------------- /icons/junit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/junit.png -------------------------------------------------------------------------------- /icons/jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/jupyter_notebook.png -------------------------------------------------------------------------------- /icons/kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/kafka.png -------------------------------------------------------------------------------- /icons/kali_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/kali_linux.png -------------------------------------------------------------------------------- /icons/kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/kotlin.png -------------------------------------------------------------------------------- /icons/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/kubernetes.png -------------------------------------------------------------------------------- /icons/laravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/laravel.png -------------------------------------------------------------------------------- /icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/linux.png -------------------------------------------------------------------------------- /icons/linux_mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/linux_mint.png -------------------------------------------------------------------------------- /icons/liquibase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/liquibase.png -------------------------------------------------------------------------------- /icons/loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/loki.png -------------------------------------------------------------------------------- /icons/lombok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/lombok.png -------------------------------------------------------------------------------- /icons/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/lua.png -------------------------------------------------------------------------------- /icons/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/macos.png -------------------------------------------------------------------------------- /icons/mapstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mapstruct.png -------------------------------------------------------------------------------- /icons/mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mariadb.png -------------------------------------------------------------------------------- /icons/marionette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/marionette.png -------------------------------------------------------------------------------- /icons/material_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/material_design.png -------------------------------------------------------------------------------- /icons/material_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/material_ui.png -------------------------------------------------------------------------------- /icons/materialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/materialize.png -------------------------------------------------------------------------------- /icons/matlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/matlab.png -------------------------------------------------------------------------------- /icons/maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/maven.png -------------------------------------------------------------------------------- /icons/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/metamask.png -------------------------------------------------------------------------------- /icons/micrometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/micrometer.png -------------------------------------------------------------------------------- /icons/micronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/micronaut.png -------------------------------------------------------------------------------- /icons/microsoft_azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/microsoft_azure.png -------------------------------------------------------------------------------- /icons/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mocha.png -------------------------------------------------------------------------------- /icons/mocikto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mocikto.png -------------------------------------------------------------------------------- /icons/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mongodb.png -------------------------------------------------------------------------------- /icons/mosquitto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mosquitto.png -------------------------------------------------------------------------------- /icons/mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mqtt.png -------------------------------------------------------------------------------- /icons/mqtt_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mqtt_js.png -------------------------------------------------------------------------------- /icons/mssql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mssql.png -------------------------------------------------------------------------------- /icons/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/mysql.png -------------------------------------------------------------------------------- /icons/neo4j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/neo4j.png -------------------------------------------------------------------------------- /icons/neovim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/neovim.png -------------------------------------------------------------------------------- /icons/nest_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/nest_js.png -------------------------------------------------------------------------------- /icons/next_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/next_js.png -------------------------------------------------------------------------------- /icons/next_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/next_ui.png -------------------------------------------------------------------------------- /icons/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/nginx.png -------------------------------------------------------------------------------- /icons/nixos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/nixos.png -------------------------------------------------------------------------------- /icons/node_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/node_js.png -------------------------------------------------------------------------------- /icons/nodegui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/nodegui.png -------------------------------------------------------------------------------- /icons/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/npm.png -------------------------------------------------------------------------------- /icons/numpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/numpy.png -------------------------------------------------------------------------------- /icons/nuxt_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/nuxt_js.png -------------------------------------------------------------------------------- /icons/odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/odoo.png -------------------------------------------------------------------------------- /icons/openresty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/openresty.png -------------------------------------------------------------------------------- /icons/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/oracle.png -------------------------------------------------------------------------------- /icons/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/pandas.png -------------------------------------------------------------------------------- /icons/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/php.png -------------------------------------------------------------------------------- /icons/php_(elephpant).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/php_(elephpant).png -------------------------------------------------------------------------------- /icons/phpstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/phpstorm.png -------------------------------------------------------------------------------- /icons/play_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/play_framework.png -------------------------------------------------------------------------------- /icons/playwright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/playwright.png -------------------------------------------------------------------------------- /icons/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/postgresql.png -------------------------------------------------------------------------------- /icons/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/postman.png -------------------------------------------------------------------------------- /icons/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/prometheus.png -------------------------------------------------------------------------------- /icons/pug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/pug.png -------------------------------------------------------------------------------- /icons/puppet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/puppet.png -------------------------------------------------------------------------------- /icons/puppeteer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/puppeteer.png -------------------------------------------------------------------------------- /icons/pycharm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/pycharm.png -------------------------------------------------------------------------------- /icons/pygame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/pygame.png -------------------------------------------------------------------------------- /icons/pytest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/pytest.png -------------------------------------------------------------------------------- /icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/python.png -------------------------------------------------------------------------------- /icons/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/qt.png -------------------------------------------------------------------------------- /icons/quarkus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/quarkus.png -------------------------------------------------------------------------------- /icons/rabbitmq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/rabbitmq.png -------------------------------------------------------------------------------- /icons/raspberri_pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/raspberri_pi.png -------------------------------------------------------------------------------- /icons/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/react.png -------------------------------------------------------------------------------- /icons/react_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/react_query.png -------------------------------------------------------------------------------- /icons/realm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/realm.png -------------------------------------------------------------------------------- /icons/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/redis.png -------------------------------------------------------------------------------- /icons/redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/redux.png -------------------------------------------------------------------------------- /icons/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/rest.png -------------------------------------------------------------------------------- /icons/robot_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/robot_framework.png -------------------------------------------------------------------------------- /icons/rpg_maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/rpg_maker.png -------------------------------------------------------------------------------- /icons/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ruby.png -------------------------------------------------------------------------------- /icons/ruby_on_rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ruby_on_rails.png -------------------------------------------------------------------------------- /icons/rubygems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/rubygems.png -------------------------------------------------------------------------------- /icons/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/rust.png -------------------------------------------------------------------------------- /icons/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/sass.png -------------------------------------------------------------------------------- /icons/sbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/sbt.png -------------------------------------------------------------------------------- /icons/scala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/scala.png -------------------------------------------------------------------------------- /icons/selenium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/selenium.png -------------------------------------------------------------------------------- /icons/shadcn_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/shadcn_ui.png -------------------------------------------------------------------------------- /icons/soap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/soap.png -------------------------------------------------------------------------------- /icons/solana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/solana.png -------------------------------------------------------------------------------- /icons/solidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/solidity.png -------------------------------------------------------------------------------- /icons/sonarqube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/sonarqube.png -------------------------------------------------------------------------------- /icons/spock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/spock.png -------------------------------------------------------------------------------- /icons/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/spring.png -------------------------------------------------------------------------------- /icons/spring_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/spring_boot.png -------------------------------------------------------------------------------- /icons/spyder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/spyder.png -------------------------------------------------------------------------------- /icons/sqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/sqlite.png -------------------------------------------------------------------------------- /icons/strapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/strapi.png -------------------------------------------------------------------------------- /icons/streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/streamlit.png -------------------------------------------------------------------------------- /icons/struts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/struts.png -------------------------------------------------------------------------------- /icons/styled-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/styled-components.png -------------------------------------------------------------------------------- /icons/sublime_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/sublime_text.png -------------------------------------------------------------------------------- /icons/supabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/supabase.png -------------------------------------------------------------------------------- /icons/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/svelte.png -------------------------------------------------------------------------------- /icons/swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/swagger.png -------------------------------------------------------------------------------- /icons/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/swift.png -------------------------------------------------------------------------------- /icons/tailwind_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/tailwind_css.png -------------------------------------------------------------------------------- /icons/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/tensorflow.png -------------------------------------------------------------------------------- /icons/terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/terraform.png -------------------------------------------------------------------------------- /icons/testcontainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/testcontainers.png -------------------------------------------------------------------------------- /icons/thanos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/thanos.png -------------------------------------------------------------------------------- /icons/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/tomcat.png -------------------------------------------------------------------------------- /icons/trpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/trpc.png -------------------------------------------------------------------------------- /icons/turborepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/turborepo.png -------------------------------------------------------------------------------- /icons/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/typescript.png -------------------------------------------------------------------------------- /icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ubuntu.png -------------------------------------------------------------------------------- /icons/uniswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/uniswap.png -------------------------------------------------------------------------------- /icons/unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/unity.png -------------------------------------------------------------------------------- /icons/unreal_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/unreal_engine.png -------------------------------------------------------------------------------- /icons/vaadin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vaadin.png -------------------------------------------------------------------------------- /icons/vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vault.png -------------------------------------------------------------------------------- /icons/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vim.png -------------------------------------------------------------------------------- /icons/visual_studio_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/visual_studio_code.png -------------------------------------------------------------------------------- /icons/vite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vite.png -------------------------------------------------------------------------------- /icons/vue_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vue_js.png -------------------------------------------------------------------------------- /icons/vuetify_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/vuetify_js.png -------------------------------------------------------------------------------- /icons/webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/webassembly.png -------------------------------------------------------------------------------- /icons/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/webpack.png -------------------------------------------------------------------------------- /icons/websocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/websocket.png -------------------------------------------------------------------------------- /icons/webstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/webstorm.png -------------------------------------------------------------------------------- /icons/wildfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/wildfly.png -------------------------------------------------------------------------------- /icons/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/windows.png -------------------------------------------------------------------------------- /icons/wix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/wix.png -------------------------------------------------------------------------------- /icons/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/wordpress.png -------------------------------------------------------------------------------- /icons/wxwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/wxwidgets.png -------------------------------------------------------------------------------- /icons/xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/xcode.png -------------------------------------------------------------------------------- /icons/yarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/yarn.png -------------------------------------------------------------------------------- /icons/zero_the_ziguana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/zero_the_ziguana.png -------------------------------------------------------------------------------- /icons/ziglang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/icons/ziglang.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "profile-technology-icons", 3 | "version": "1.0.0", 4 | "private": true, 5 | "description": "Profile Technology Icons", 6 | "author": "Peter Zmilczak", 7 | "keywords": [ 8 | "cv", 9 | "icons", 10 | "readme", 11 | "profile", 12 | "resume", 13 | "github", 14 | "technology", 15 | "technologies" 16 | ], 17 | "scripts": { 18 | "develop": "gatsby develop", 19 | "start": "gatsby develop", 20 | "build": "gatsby build", 21 | "buildProd": "gatsby build --prefix-paths", 22 | "serve": "gatsby serve", 23 | "clean": "gatsby clean", 24 | "deploy": "gatsby build --prefix-paths && gh-pages -d public", 25 | "preinstall": "npx only-allow pnpm" 26 | }, 27 | "dependencies": { 28 | "@codemirror/lang-html": "6.4.5", 29 | "@dnd-kit/core": "6.3.1", 30 | "@dnd-kit/sortable": "10.0.0", 31 | "@dnd-kit/utilities": "3.2.2", 32 | "@emotion/react": "11.14.0", 33 | "@emotion/styled": "11.14.0", 34 | "@mui/icons-material": "7.1.0", 35 | "@mui/material": "7.1.0", 36 | "@uiw/codemirror-theme-darcula": "4.23.12", 37 | "@uiw/react-codemirror": "4.23.12", 38 | "gatsby": "5.14.3", 39 | "gatsby-link": "5.14.1", 40 | "gatsby-plugin-manifest": "5.14.0", 41 | "gatsby-plugin-material-ui": "4.1.0", 42 | "gatsby-plugin-smoothscroll": "1.2.0", 43 | "gatsby-plugin-styled-components": "6.14.0", 44 | "react": "18.3.1", 45 | "react-copy-to-clipboard": "5.1.0", 46 | "react-dom": "18.3.1", 47 | "styled-components": "6.1.18" 48 | }, 49 | "devDependencies": { 50 | "gh-pages": "6.3.0" 51 | }, 52 | "packageManager": "pnpm@9.15.9", 53 | "engineStrict": true, 54 | "engines": { 55 | "pnpm": "9.15.9" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwin1991/profile-technology-icons/c595e265b8720da3bbe318de4019623aea3f3841/src/assets/images/icon.png -------------------------------------------------------------------------------- /src/components/BlueCheckbox.jsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import Checkbox from '@mui/material/Checkbox'; 3 | 4 | 5 | export const BlueCheckbox = (props) => ; -------------------------------------------------------------------------------- /src/components/BlueHeart.jsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import Checkbox from '@mui/material/Checkbox'; 3 | import FavoriteBorder from '@mui/icons-material/FavoriteBorder'; 4 | import Favorite from '@mui/icons-material/Favorite'; 5 | 6 | 7 | export const BlueHeart = (props) => } 10 | checkedIcon={} 11 | sx={{ 12 | color: "#1976ff", 13 | '&.Mui-checked': { 14 | color: "#1976ff", 15 | }, 16 | }} 17 | />; -------------------------------------------------------------------------------- /src/components/Example.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { styled } from '@mui/material/styles'; 3 | import Card from '@mui/material/Card'; 4 | import CardActionArea from '@mui/material/CardActionArea'; 5 | import CardActions from '@mui/material/CardActions'; 6 | import CardContent from '@mui/material/CardContent'; 7 | import CardMedia from '@mui/material/CardMedia'; 8 | import Button from '@mui/material/Button'; 9 | import Typography from '@mui/material/Typography'; 10 | import {Box} from "@mui/material"; 11 | import {navigate} from 'gatsby'; 12 | 13 | const PREFIX = 'Example'; 14 | 15 | const classes = { 16 | root: `${PREFIX}-root`, 17 | media: `${PREFIX}-media` 18 | }; 19 | 20 | const StyledCard = styled(Card)({ 21 | [`&.${classes.root}`]: { 22 | maxWidth: 345, 23 | }, 24 | [`& .${classes.media}`]: { 25 | height: 140, 26 | }, 27 | }); 28 | 29 | export default function Example(props) { 30 | 31 | 32 | function editPage() { 33 | navigate(props.url); 34 | } 35 | 36 | 37 | return ( 38 | 44 | 45 | 51 | 52 | 53 | Java Software Engineer 54 | 55 | 56 | {props.text} 57 | 58 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | ); 71 | } -------------------------------------------------------------------------------- /src/components/Examples.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import Example from "./Example"; 3 | import {withPrefix} from "gatsby" 4 | 5 | 6 | class Examples extends Component { 7 | 8 | render() { 9 | return ( 10 |
11 | 15 | {/**/} 18 |
19 | ); 20 | } 21 | 22 | } 23 | 24 | export default Examples; -------------------------------------------------------------------------------- /src/components/GradientButton.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import styled from "styled-components" 3 | 4 | const Wrapper = styled.button` 5 | /* Remove standard style */ 6 | padding: 0; 7 | border: none; 8 | background: none; 9 | // margin: 20px; 10 | /* fixed properties */ 11 | text-transform: uppercase; 12 | cursor: pointer; 13 | border-radius: ${props => `${props.borderRadius}px`}; 14 | color: white; 15 | font-weight: 600; 16 | font-size: ${props => `${props.fontSize}px`}; 17 | padding: ${props => { 18 | const paddingSize = props.fontSize * 2 19 | return `${props.fontSize}px ${paddingSize}px` 20 | }}; 21 | font-family: ${props => props.fontFamily}; 22 | background: ${props => { 23 | if (props.gradientColor.left && props.gradientColor.mid && props.gradientColor.right) { 24 | const {left, mid, right} = props.gradientColor 25 | return `linear-gradient(to right,hsla(${left},100%,45%,1) 0%,hsla(${mid},100%,45%,1) 52%,hsla(${right},100%,45%,1) 100%)` 26 | } else { 27 | const {left} = props.gradientColor 28 | return `linear-gradient(to right,hsla(${left},100%,45%,1) 0%,hsla(${left + 40},100%,45%,1) 52%,hsla(${left + 80},100%,45%,1) 100%)` 29 | } 30 | }}; 31 | background-size: 200% 100%; 32 | transition: all 0.4s ease 0s, box-shadow 0.1s ease 0s; 33 | box-shadow: ${props => `0px 5px 10px hsla(${props.gradientColor.left}, 100%, 50%, 0.5)`}; 34 | &:hover { 35 | background-position: 100% 0%; 36 | box-shadow: ${props => `0px 5px 10px hsla(${props.gradientColor.right ? props.gradientColor.right : props.gradientColor.left + 60}, 100%, 50%, 0.5)`}; 37 | } 38 | &:focus { 39 | outline: none; 40 | } 41 | ` 42 | 43 | const GradientButton = (props) => { 44 | return ( 45 | 52 | {props.text} 53 | 54 | ) 55 | } 56 | 57 | GradientButton.defaultProps = { 58 | fontSize: 20, 59 | fontFamily: "Arial", 60 | borderRadius: 50, 61 | gradientColor: { 62 | left: 0 63 | }, 64 | text: "Dummy" 65 | } 66 | 67 | export default GradientButton -------------------------------------------------------------------------------- /src/components/NormalButton.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import styled from "styled-components" 3 | 4 | const Wrapper = styled.button` 5 | /* Remove standard style */ 6 | padding: 0; 7 | border: none; 8 | background: none; 9 | // margin: 20px; 10 | /* fixed properties */ 11 | text-transform: uppercase; 12 | cursor: pointer; 13 | border-radius: ${props => `${props.borderRadius}px`}; 14 | font-weight: 600; 15 | font-size: ${props => `${props.fontSize}px`}; 16 | padding: ${props => { 17 | const paddingSize = props.fontSize * 1 18 | return `${props.fontSize}px ${paddingSize}px` 19 | }}; 20 | font-family: ${props => props.fontFamily}; 21 | background-size: 200% 100%; 22 | background: ${props => { 23 | if (props.gradientColor.left && props.gradientColor.mid && props.gradientColor.right) { 24 | const {left, mid, right} = props.gradientColor 25 | return `linear-gradient(to right,hsla(${left},100%,45%,1) 0%,hsla(${mid},100%,45%,1) 52%,hsla(${right},100%,45%,1) 100%)` 26 | } else { 27 | const {left} = props.gradientColor 28 | return `linear-gradient(to right,hsla(${left},100%,45%,1) 0%,hsla(${left + 40},100%,45%,1) 52%,hsla(${left + 80},100%,45%,1) 100%)` 29 | } 30 | }}; 31 | -webkit-text-fill-color: transparent; 32 | -webkit-background-clip: text; 33 | transition: all 0.4s ease 0s, box-shadow 0.1s ease 0s; 34 | box-shadow: ${props => `0px 5px 10px hsla(${props.gradientColor.left}, 100%, 50%, 0.5)`}; 35 | 36 | &:hover { 37 | background-position: 100% 0%; 38 | box-shadow: ${props => `0px 5px 10px hsla(${props.gradientColor.right ? props.gradientColor.right : props.gradientColor.left + 60}, 100%, 50%, 0.5)`}; 39 | } 40 | 41 | &:focus { 42 | outline: none; 43 | } 44 | ` 45 | 46 | const NormalButton = (props) => { 47 | return ( 48 | 55 | {props.text} 56 | 57 | ) 58 | } 59 | 60 | NormalButton.defaultProps = { 61 | fontSize: 20, 62 | fontFamily: "Arial", 63 | borderRadius: 50, 64 | gradientColor: { 65 | left: 0 66 | }, 67 | text: "Dummy" 68 | } 69 | 70 | export default NormalButton -------------------------------------------------------------------------------- /src/components/SortableItem.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {useSortable} from '@dnd-kit/sortable'; 3 | import {CSS} from '@dnd-kit/utilities'; 4 | 5 | export function SortableItem(props) { 6 | const { 7 | attributes, 8 | listeners, 9 | setNodeRef, 10 | transform, 11 | transition, 12 | } = useSortable({id: props.id}); 13 | 14 | const style = { 15 | transform: CSS.Transform.toString(transform), 16 | transition, 17 | background: '#ffffff', 18 | height: 50, 19 | boxShadow: "6px 6px 8px 0 rgba(0, 0, 0, 0.25), -4px -4px 6px 0 rgba(255, 255, 255, 0.3)", 20 | borderRadius: 4, 21 | margin: 15 22 | }; 23 | 24 | return ( 25 | {props.id} 26 | ); 27 | } -------------------------------------------------------------------------------- /src/components/SortableList.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react'; 2 | import { Box } from '@mui/material' 3 | import { 4 | closestCenter, 5 | DndContext, 6 | KeyboardSensor, 7 | PointerSensor, 8 | useSensor, 9 | useSensors, 10 | } from '@dnd-kit/core'; 11 | import { 12 | arrayMove, 13 | SortableContext, 14 | sortableKeyboardCoordinates, 15 | } from '@dnd-kit/sortable'; 16 | 17 | import { SortableItem } from './SortableItem'; 18 | 19 | const containerProps = { 20 | bgcolor: '#fdfdfd', 21 | style: { width: '60%', minWidth: 350, minHeight: 80 }, 22 | margin: "auto", 23 | boxShadow: "6px 6px 8px 0 rgba(0, 0, 0, 0.25), -4px -4px 6px 0 rgba(255, 255, 255, 0.3)" 24 | }; 25 | 26 | export function SortableList({ techs, update }) { 27 | const [items, setItems] = useState([]); 28 | const sensors = useSensors( 29 | useSensor(PointerSensor), 30 | useSensor(KeyboardSensor, { 31 | coordinateGetter: sortableKeyboardCoordinates, 32 | }) 33 | ); 34 | 35 | useEffect(() => { 36 | setItems(techs); 37 | }, [techs]); 38 | 39 | return ( 40 | 41 | 46 | { 47 | techs.length > 0 && 48 | i.name)} 50 | > 51 | {checked().map(tech => )} 52 | 53 | } 54 | 55 | 56 | 57 | ); 58 | 59 | function handleDragEnd(event) { 60 | const { active, over } = event; 61 | if (active.id !== over.id) { 62 | setItems((items) => { 63 | const oldIndex = findIndexOf(active.id); 64 | const newIndex = findIndexOf(over.id); 65 | let updated = arrayMove(items, oldIndex, newIndex); 66 | update(updated) 67 | return updated 68 | }); 69 | } 70 | } 71 | 72 | function findIndexOf(name) { 73 | for (let i = 0; i < items.length; i++) { 74 | let tech = items[i] 75 | if (tech.name === name) { 76 | return i; 77 | } 78 | } 79 | return -1; 80 | } 81 | 82 | function checked() { 83 | return items.filter(item => item.checked) 84 | } 85 | } -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { Link } from "gatsby" 3 | 4 | // styles 5 | const pageStyles = { 6 | color: "#232129", 7 | padding: "96px", 8 | fontFamily: "-apple-system, Roboto, sans-serif, serif", 9 | } 10 | const headingStyles = { 11 | marginTop: 0, 12 | marginBottom: 64, 13 | maxWidth: 320, 14 | } 15 | 16 | const paragraphStyles = { 17 | marginBottom: 48, 18 | } 19 | const codeStyles = { 20 | color: "#8A6534", 21 | padding: 4, 22 | backgroundColor: "#FFF4DB", 23 | fontSize: "1.25rem", 24 | borderRadius: 4, 25 | } 26 | 27 | // markup 28 | const NotFoundPage = () => { 29 | return ( 30 |
31 | Not found 32 |

Page not found

33 |

34 | Sorry{" "} 35 | 36 | 😔 37 | {" "} 38 | we couldn’t find what you were looking for. 39 |
40 | {process.env.NODE_ENV === "development" ? ( 41 | <> 42 |
43 | Try creating a page in src/pages/. 44 |
45 | 46 | ) : null} 47 |
48 | Go home. 49 |

50 |
51 | ) 52 | } 53 | 54 | export default NotFoundPage 55 | -------------------------------------------------------------------------------- /src/pages/generator.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | 3 | import { 4 | Box, 5 | Button, 6 | FormControlLabel, 7 | FormGroup, 8 | InputAdornment, 9 | Typography, 10 | Autocomplete, 11 | TextField, 12 | } from "@mui/material"; 13 | 14 | import CodeMirror from "@uiw/react-codemirror"; 15 | import { darcula } from "@uiw/codemirror-theme-darcula"; 16 | import { html } from "@codemirror/lang-html"; 17 | 18 | import { CopyToClipboard } from "react-copy-to-clipboard/lib/Component"; 19 | 20 | import { SortableList } from "../components/SortableList"; 21 | 22 | import { BlueCheckbox } from "../components/BlueCheckbox"; 23 | import { BlueHeart } from "../components/BlueHeart"; 24 | 25 | class Generator extends Component { 26 | constructor(props) { 27 | super(props); 28 | this.state = { 29 | data: [], 30 | checked: [], 31 | inputText: "", 32 | generatedText: "", 33 | copyButtonDisabled: true, 34 | includeCode: true, 35 | includeDiv: true, 36 | includeCenter: true, 37 | includeTable: false, 38 | iconSize: 50, 39 | copied: false, 40 | }; 41 | } 42 | 43 | handleToggle = (tech) => () => { 44 | const currentIndex = this.state.data.indexOf(tech); 45 | let newData = [...this.state.data]; 46 | newData[currentIndex].checked = !newData[currentIndex].checked; 47 | this.setState({ data: newData }); 48 | }; 49 | 50 | handleChose = (techs) => { 51 | let newData = [...this.state.data]; 52 | 53 | for (let i = 0; i < newData.length; i++) { 54 | newData[i].checked = false; 55 | } 56 | 57 | for (let i = 0; i < techs.length; i++) { 58 | let tech = techs[i]; 59 | const currentIndex = this.state.data.indexOf(tech); 60 | newData[currentIndex].checked = !newData[currentIndex].checked; 61 | } 62 | 63 | this.setState({ data: newData }); 64 | }; 65 | 66 | updateTechs = (updatedTechs) => { 67 | this.setState({ data: updatedTechs }); 68 | }; 69 | 70 | generate = () => { 71 | this.setState({ copyButtonDisabled: false }); 72 | const { includeCenter, includeCode, includeDiv, includeTable, iconSize } = 73 | this.state; 74 | let selectedTech = this.state.data.filter((tech) => tech.checked); 75 | let text = ""; 76 | 77 | //1. Generate Tech blocks 78 | selectedTech = selectedTech.map((tech) => { 79 | const techBlock = `${tech.name}`; 80 | if (includeCode) return `${techBlock}`; 81 | return techBlock; 82 | }); 83 | 84 | //2. if table create table 85 | if (includeTable) { 86 | //2.1 Create Rows 87 | const columns = selectedTech.length < 8 ? selectedTech.length : 8; 88 | let rows = ""; 89 | 90 | selectedTech.forEach((tech, index) => { 91 | if (index % columns === 0) { 92 | rows += "\r\n"; 93 | } 94 | 95 | rows += `\t${tech}\r\n`; 96 | 97 | if (index + 1 === selectedTech.length) { 98 | rows += ""; 99 | } else if ((index + 1) % columns === 0) { 100 | rows += "\r\n"; 101 | } 102 | }); 103 | 104 | //2.2 prepend \r\n, replace all \n with \n\t and append \r\n
105 | text = `\r\n${rows}`.replaceAll("\n", "\n\t"); 106 | text += "\r\n
"; 107 | } else { 108 | text = selectedTech.join("\r\n"); 109 | } 110 | 111 | //3. if div preppend
\r\n, replace all \n with \n\t , append \r\n
112 | if (includeDiv) { 113 | const div = `
`; 114 | text = `${div}\r\n${text}`.replaceAll("\n", "\n\t"); 115 | text += "\r\n
"; 116 | } 117 | 118 | this.setState({ generatedText: text }); 119 | }; 120 | 121 | componentDidMount() { 122 | fetch( 123 | "https://raw.githubusercontent.com/marwin1991/profile-technology-icons/main/README.md" 124 | ) 125 | .then((response) => response.text()) 126 | .then((text) => 127 | text 128 | .split("\n") 129 | .filter((t) => t.includes(" { 131 | let tech = t.split("|"); 132 | if (Array.isArray(tech) && tech.length >= 3) { 133 | return { 134 | name: tech[2].trim(), 135 | link: tech[3].replaceAll(" ", "").replaceAll("`", ""), 136 | checked: false, 137 | }; 138 | } else { 139 | return undefined; 140 | } 141 | }) 142 | .filter((t) => t !== undefined) 143 | ) 144 | .then((techs) => { 145 | this.setState({ data: techs }); 146 | }); 147 | } 148 | 149 | render() { 150 | const { data } = this.state; 151 | return ( 152 |
153 | 165 | 166 | 167 | 🔎 168 | {" "} 169 | Search your technologies and then generate markdown code snippet to 170 | your GitHub profile. Choose from {this.state.data.length} icons!{" "} 171 | 172 | 🔢 173 | 174 | 175 | 176 |
185 | tech.name} 192 | onChange={(event, techs) => this.handleChose(techs)} 193 | inputValue={this.state.inputText} 194 | onInputChange={(event, value, reason) => { 195 | if (event && event.type === "blur") { 196 | this.setState({ inputText: "" }); 197 | } else if (reason !== "reset") { 198 | this.setState({ inputText: value }); 199 | } 200 | }} 201 | renderOption={(props, tech) => ( 202 | img": { mr: 2, flexShrink: 0 } }} 205 | {...props} 206 | > 207 | 211 |
212 | {tech.name} 213 |
214 | {tech.name} 215 |
216 | )} 217 | renderInput={(params) => ( 218 | 224 | )} 225 | /> 226 |
227 | 228 | 229 | 230 | {this.state.data.some((x) => x.checked) && ( 231 | 232 | Drag to change the order 233 | 234 | )} 235 | 236 | 242 | this.setState({ iconSize: event.target.value }) 243 | } 244 | InputProps={{ 245 | inputProps: { 246 | max: this.state.includeTable ? 50 : 1000, 247 | min: 10, 248 | // Max size set to 50px incase table is selected. Images tend to squish beyond that when used inside table. 249 | }, 250 | endAdornment: px, 251 | }} 252 | /> 253 | 254 | 255 | 263 | } 264 | onChange={() => 265 | this.setState({ includeCode: !this.state.includeCode }) 266 | } 267 | label="Add " 268 | /> 269 | 277 | } 278 | onChange={() => { 279 | this.setState({ includeDiv: !this.state.includeDiv }); 280 | if (this.state.includeDiv) { 281 | this.setState({ includeCenter: false }); 282 | } 283 | }} 284 | label="Add
" 285 | /> 286 | 294 | } 295 | onChange={() => { 296 | this.setState({ includeCenter: !this.state.includeCenter }); 297 | if (!this.state.includeCenter) { 298 | this.setState({ includeDiv: true }); 299 | } // set includeDiv to true 300 | }} 301 | label="Center" 302 | /> 303 | 311 | } 312 | onChange={() => { 313 | this.setState({ includeTable: !this.state.includeTable }); 314 | if (!this.state.includeTable && this.state.iconSize > 50) { 315 | this.setState({ iconSize: 50 }); 316 | //Reset icon size to 50 incase it was more than 50px. 317 | } 318 | }} 319 | label="Table" 320 | /> 321 | 322 | 323 | 332 | this.setState({ copied: true })} 335 | > 336 | 348 | 349 | 360 | 361 | 362 |
367 | 373 |
374 |
375 | ); 376 | } 377 | } 378 | 379 | export default Generator; 380 | -------------------------------------------------------------------------------- /src/pages/header.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import AppBar from '@mui/material/AppBar'; 4 | import Toolbar from '@mui/material/Toolbar'; 5 | import Typography from '@mui/material/Typography'; 6 | 7 | 8 | export default function ElevateAppBar(props) { 9 | return ( 10 | 11 | 12 | 13 | 14 | 📋 15 | 😄 16 | Profile Technology Icons 17 |
18 |