devFind

devFind

开源技能展示与开发者连接平台

devFind作为开源项目,为开发者提供技能展示和寻找合作的平台。用户可创建JSON格式的个人档案,平台通过搜索功能协助项目经理和招聘者寻找特定技能的开发者。支持按技能、位置或姓名搜索,devFind构建了一个便捷可搜索的开发者社区。

devFind开源项目开发者平台技能展示搜索功能Github
<div align="center"> <h1>👩‍💻 devFind - Discover and Connect with Skilled Developers!</h1> </div> <p align="center"> <a href="https://github.com/shyamtawli/devFind/blob/master/LICENSE" target="blank"> <img src="https://img.shields.io/github/license/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="License" /> </a> <a href="https://github.com/shyamtawli/devFind/fork" target="blank"> <img src="https://img.shields.io/github/forks/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="Forks"/> </a> <a href="https://github.com/shyamtawli/devFind/stargazers" target="blank"> <img src="https://img.shields.io/github/stars/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="Star"/> </a> <a href="https://github.com/shyamtawli/devFind/issues" target="blank"> <img src="https://img.shields.io/github/issues/shyamtawli/devFind.svg?style=for-the-badge&logo=appveyor" alt="Click Vote Issue"/> </a> <a href="https://github.com/shyamtawli/devFind/pulls" target="blank"> <img src="https://img.shields.io/github/issues-pr/shyamtawli/devFind.svg?style=for-the-badge&logo=appveyor" alt="Click Vote Open Pull Request"/> </a> </p>

Table of Contents

<a id="about"></a>

About 🚀

  • devFind - Website
  • devFind is an open source project that aims to create a platform for developers to showcase their skills and connect with potential collaborators, all in a user-friendly and searchable format.
  • With devFind, developers can create their profiles in JSON format, which are then displayed on the web for others to discover.

<a id="features"></a>

Features 💪

  • One of the key features of devFind is its powerful search functionality.
  • Users can search for developers based on specific skills, locations or name, making it easy to find developers with expertise in a particular technology or programming language.
  • This makes devFind a valuable resource for project managers, recruiters, and anyone looking to connect with skilled developers for collaboration or employment opportunities.

<a id="how-to-add-your-profile-data"></a>

How to add your profile Data 🤔

Thank you for your interest in contributing to our open-source project! <br>

<a id="prerequisites"></a>

Prerequisites

  • A GitHub account
  • Git installed on your local development environment
  • Node Package Manager (npm) installed on your local development environment

How to Install Git

Git is a version control system that is used to manage the source code of your project.

To install Git, follow these steps:

  1. Download and install Git from the Official Website

  2. Open the terminal or command prompt on your local development environment

  3. Verify the installation of Git by running the following command:

    git --version

How to Install Node.js and npm

Node.js is a JavaScript runtime environment that allows you to run JavaScript code outside of a web browser. npm (Node Package Manager) is a package manager for JavaScript, essential for managing dependencies in Node.js projects. Here's how to install Node.js and npm:

  1. Download Node.js:

    • Visit the official Node.js website and download the appropriate installer for your operating system (Windows, macOS, or Linux).
    • Choose the LTS (Long Term Support) version for stable releases or the latest version for cutting-edge features.
    • Follow the installation instructions provided by the installer.
  2. Verify Node.js Installation:

    • After the installation is complete, open your terminal or command prompt.

    • To verify that Node.js has been installed successfully, type the following command and press Enter:

      node -v
      
    • This command should display the version of Node.js installed on your system. If it does, Node.js installation was successful.

  3. Verify npm Installation:

    • npm comes bundled with Node.js, so once Node.js is installed, npm is automatically installed as well.

    • To confirm that npm is installed, in your terminal or command prompt, type:

      npm -v
      
    • Press Enter. This command should display the version of npm installed on your system. If it does, npm installation was successful.

  4. Optional: Update npm (recommended):

    • It's recommended to keep npm up to date to access the latest features and bug fixes.

    • To update npm to the latest version, type the following command and press Enter:

      npm install -g npm@latest
      
    • This command will update npm to the latest stable version globally (-g flag).

By following these steps, you have successfully installed Node.js and npm on your system. You are now ready to start building JavaScript applications and managing dependencies with npm.

Steps to Add Your Profile Data

  1. Fork the repository: To create a copy of the repository in your GitHub account, click on the "Fork" button in the top right corner of the project repository page.

  2. Clone the forked repository: To clone the repository to your local development environment, open the terminal or command prompt and run the following command:

    git clone https://github.com/<your-github-username>/devFind.git
  3. Install dependencies: To install the necessary dependencies for the project, navigate to the project directory and run the following command:

    npm install
  4. Navigate to the public/data folder in your project directory.

  5. Create a new JSON file named your_github_username.json (replace your_github_username with your actual GitHub username). Open the file you just created.

  6. Add the following JSON object, replacing the placeholder values with your own details:

    { "name": "Your Name", "location": "Your Location", "bio": "Your Bio should be 20-30 words not more then that", "avatar": "https://github.com/<your-github-username>.png", "portfolio": "Your Portfolio URL or Github URL", "skills": ["Your Skill 1", "Your Skill 2", "..."], "social": { "GitHub": "https://github.com/<github-username>", "Twitter": "https://twitter.com/<twitter-username>", "LinkedIn": "https://www.linkedin.com/in/<linkedin-username>" } }
  7. Save the your_github_username.json file.

  8. Navigate to the src folder in your project directory. Open the ProfilesList.json file.

  9. Add your JSON filename (your_github_username.json) to the array of filenames in the ProfileList.json file, like this:

    ["filename1.json", "filename2.json", "your_github_username.json"]
  10. Save the ProfileLists.json file.

  11. Create a new branch: To create a new branch for your profile, run the following command:

    git checkout -b add-profile
  12. Add your changed files: Add changed files to the stage by running the following command:

    git add .
  13. Commit your changes: To save your changes to the branch,, run the following command:

    git commit -m "add: <your-name>"
  14. Push to the branch: To push the changes to the remote repository, run the following command:

    git push origin add-profile
  15. Create a pull request: To submit your changes to the main repository, create a pull request by clicking on the "Compare & pull request" button on your forked repository page.

  16. Wait for review and merge: Wait for the project maintainers to review and merge your changes.

Once your changes are merged, your profile data will be added to the project's Profile.json file and your profile will be displayed on the project's website.

<a id="contributing"></a>

Contributing 👨‍💻

Contributions make the open source community such an amazing place to learn, inspire, and create. <br> Any contributions you make are truly appreciated!

<a id="contributors"></a>

Contributors 🤝

<a href="https://github.com/shyamtawli/devFind/graphs/contributors"> <img src="https://contrib.rocks/image?repo=shyamtawli/devFind" /> </a>

<a id="license"></a>

License

<table> <tr> <td> <p align="center"> <img src="https://github.com/malivinayak/malivinayak/blob/main/LICENSE-Logo/MIT.png?raw=true" width="80%"></img> </td> <td> <img src="https://img.shields.io/badge/License-MIT-yellow.svg"/> <br> This project is licensed under <a href="./LICENSE">MIT</a>. <img width=2300/> </td> </tr> </table>

<a id="support"></a>

Support 🙏

Thank you for contributing to our open-source project! We appreciate your support 🚀 <br> Don't forget to leave a star ⭐

编辑推荐精选

TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

热门AI工具生产力协作转型TraeAI IDE
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI助手AI工具AI写作工具AI辅助写作蛙蛙写作学术助手办公助手营销助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

聊天机器人AI助手热门AI工具AI对话
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

热门AI工具AI办公办公工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

模型训练热门AI工具内容创作智能问答AI开发讯飞星火大模型多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

AI助手热门AI工具AI创作AI辅助写作讯飞绘文内容运营个性化文章多平台分发
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

下拉加载更多