Intelligent Matchmaking Service Platform, which aims to match the projects and developers.
Let employers and developers communicate directly and freely, no any intermediary.
Always free, based on Rust web stacks.

niQin shared an aphorism: 不管何时何地做你想做的事永远都不嫌晚。你可以改变,也可以不变,没有什么硬性规定。我们可能做得很好,也可能很糟。我希望你能充分利用时间,希望你能看到令你吃惊的东西,希望你感受到从未有过的感觉,希望你遇到具有不同观点的人,希望你过上让你自豪的生活。如果你发现生活不如意,我希望你有勇气从头再来。 -- 本杰明·巴顿奇事
Projects
Project and its requirements, recruitment condition, documents and cases ...
Developers & Teams
List the interests, strengths, and advantages of developers and teams
Kids Education
Promote kids' computational and logical thinking, and enhance their problem-solving abilities
NiQin Books
Books and docs for open source knowledge and technology
Latest Managed More ...

Design 机器人类公司官网静态首页设计(静态单网页)

3000 yuan (CNY) | 10 days

### 机器人类公司官网首页设计 - 唯一风格要求:最简约的公司产品静态展示网页; - 静态的单网页,主要是制作网站静态主页。标准 HTML5 代码,无第三方 JavaScript 插件代码最佳; - 公司产品规划很少,因此希望布局简约,方便客户、访客查阅,以及最大化给访问者展示; - 公司产品正在制造生产中,因此需要进行图片创作、优化,当然将来还会找接单者迭代; - 接单者无地域要求,要求为个人接单。 ### 流程和费用 - 可根据繁琐程度协商费用; - 分批支付报酬。

Education & Training 制作开源+免费(CC协议且鼓励免费分发传播)的书籍/文档的 HTML 版本

10000 yuan (CNY) | 60 days

### 书籍/文档的 HTML 版本 - 制作过程很简单,将 markdown 类文件用书籍/文档制作工具编译为 html 即可; - 开源+免费(CC协议且鼓励免费分发传播)的书籍/文档,如各编程语言的教程、开源类库的文档、各种工具的使用教程、CC 协议的共享书籍等等; - 中文版+英文版,对于书籍/文档的搜索有技巧和心得; - 单件支付酬劳,即使仅制作单个书籍/文档的 HTML 文档,也可合作; - 须为标准 html 文档,尽量少的 JavaScript 代码; - 有其它要求,请联系沟通; ### 流程和费用 - 根据繁琐程度协商费用; - 无限期,长期寻求合作者;

Latest Recommended More ...

Algorithm & Library Crawl & Publish Containers from Registries

1000 dollars (USD) | 6 days | golang docker nginx apache debian

I am looking for a skilled professional to help me with the following project: \- Crawl and download containers from Docker Hub and GitHub Container Registry \- Extract all binaries, etc, from the containers \- Publish the extracted binaries as deb packages in an APT repository \- Utilize AI to ensure the repository is kept up-to-date with new and updated binaries daily. Ideal Skills: \- Strong experience with container technologies, especially Docker and GitHub Container Registry \- Proficiency in building and maintaining APT repositories \- Knowledge of AI for automated software updates \- Excellent understanding of binary extraction and packaging \- Previous experience in software distribution is a plus. Please apply with your relevant experience and a brief outline of how you would approach ...

Algorithm & Library 云手机全套的软硬件解决方案

3000 yuan (CNY) | 7 days

1、使用主板集成或者3588方案都可以 2、有详细产品说明文档 3、支持自定义rom或者按我要求开发rom 4、提供总后台、多租户、用户pc端 5、支持给终端自定义代理线路ip,并同时改变gps和ip定位一致 6、运行zalo、tk、fb、ins、ws等海外平台,支持自定义脚本和批量运行 7、能定制功能或者提供开源代码给我们二开应用层

Algorithm & Library A developer to code my arduino project

900 dollars (USD) | 5 days | cplusplus-programming c-programming electronics microcontroller arduino

I would like to hire a developer that is familiar with coding C++ on an Arduino platform. Project Description: \- Control a poker game via addressable LED light strips & buttons for each player, including the dealer. I have a flow chart built for the functionality I am looking for (see attached pdf) and the effects I want to happen once certain conditions/states have been met. Hardware details: \- W2812B LED Strip - Individually Addressable 16.4ft, 60 pixels/m - DC5V \- AC100-240V to DC5V/30A Power Supply - Max 150W \- Arduino Mega 2560 R3 \- (10) Push-Button Switches I would ideally like this to be completed within the next few weeks. We can lower the complexity if that will make it more feasible / less buggy. Thank you!

Design 3D文件转xyz方向图片和(dxf)的C#类

5000 yuan (CNY) | 10 days | c#

1.将stp或igs/obj等格式的3D文件转成xyz方向(1:1)的图片(png/jpg等)和(dxf) 2.参考示例网站:https://imagetostl.com/ 3.做出C#的类,方便WindowsForms的应用程序引用(.NET 4.0); 4.C#调用示例: /// /// 3D转xyz方向图片方法 /// /// 输入3D文件的路径,可以导入为stp,igs,x_t等3d格式文件 /// 视图的方向,X:x方向的图片,Y:y方向的图片,Z:z方向的图片 /// 视图的方向,1:正向,0:负向 /// 图片的输出路径 /// 图片的格式,png,jpg等 /// 比例关系,1表示1:1比例,2表示2:1比例,0.5表示1:2比例 /// 3d文件导出模型的颜色,red,black /// 转换成功or失败的信息或其他错误信息 public void OutPutImage(string Input3DPath, string Direction, bool PorN, string OutputImagePath,string ImageFormat, double scale, Color modelColor,out string message) { //3D转xyz方向图片方法 } /// /// 3D文件显示在窗体中 /// /// 要显示的容器,groupBox/picturebox等 /// 输入3D文件的路径,可以导入为stp,igs,x_t等3d格式文件 /// 模型的显示颜色 /// 背景颜色 /// 失败的信息或其他错误信息 public void DispModel(Control panel, string Input3DPath, Color ModelColor, Color BackgroundColor, out string message) { //3D文件显示在窗体中 } 6\. 要求提供转换一批文件的时间;

Algorithm & Library software integration -- 2

1000 dollars (USD) | 4 days | cplusplus-programming lua

We have a software written in c++ and we will like it to be linked to our tuning software winols is this something you can help me with Basically i have developed a software to turn off certain functions in a engine control module. You cannot code the software to work with every ecu every software version. So lets say the user selects mercedes then selects edc17c66 ecu and want adblue dpf egr off the software will send the file they have uploaded to my winols and in my winols there will be a file for that sw version ecu and it will make all modifications taking the modifications from the modified file in my winols database and export the file back to the end user who is using the software And winols has a plugin called winols lua. Thats how you can make communication with winols external...

Algorithm & Library Raspberry Pi Programming Assistance

800 dollars (USD) | 4 days | python software-architecture c-programming linux raspberry-pi arduino

I'm a beginner with Raspberry Pi. I need programming help to create a video looper. Key requirements: \- Experienced in Raspberry Pi programming \- Proficient in Python or relevant languages \- Able to troubleshoot and debug Your task will be to guide me through the process, helping me write code and understand the logic behind it. Your assistance will be instrumental in achieving my goal of creating a video looper with my Raspberry Pi.

Latest Published More ...

Algorithm & Library Crawl & Publish Containers from Registries

1000 dollars (USD) | 6 days | golang docker nginx apache debian

I am looking for a skilled professional to help me with the following project: \- Crawl and download containers from Docker Hub and GitHub Container Registry \- Extract all binaries, etc, from the containers \- Publish the extracted binaries as deb packages in an APT repository \- Utilize AI to ensure the repository is kept up-to-date with new and updated binaries daily. Ideal Skills: \- Strong experience with container technologies, especially Docker and GitHub Container Registry \- Proficiency in building and maintaining APT repositories \- Knowledge of AI for automated software updates \- Excellent understanding of binary extraction and packaging \- Previous experience in software distribution is a plus. Please apply with your relevant experience and a brief outline of how you would approach ...

Algorithm & Library 云手机全套的软硬件解决方案

3000 yuan (CNY) | 7 days

1、使用主板集成或者3588方案都可以 2、有详细产品说明文档 3、支持自定义rom或者按我要求开发rom 4、提供总后台、多租户、用户pc端 5、支持给终端自定义代理线路ip,并同时改变gps和ip定位一致 6、运行zalo、tk、fb、ins、ws等海外平台,支持自定义脚本和批量运行 7、能定制功能或者提供开源代码给我们二开应用层

Algorithm & Library A developer to code my arduino project

900 dollars (USD) | 5 days | cplusplus-programming c-programming electronics microcontroller arduino

I would like to hire a developer that is familiar with coding C++ on an Arduino platform. Project Description: \- Control a poker game via addressable LED light strips & buttons for each player, including the dealer. I have a flow chart built for the functionality I am looking for (see attached pdf) and the effects I want to happen once certain conditions/states have been met. Hardware details: \- W2812B LED Strip - Individually Addressable 16.4ft, 60 pixels/m - DC5V \- AC100-240V to DC5V/30A Power Supply - Max 150W \- Arduino Mega 2560 R3 \- (10) Push-Button Switches I would ideally like this to be completed within the next few weeks. We can lower the complexity if that will make it more feasible / less buggy. Thank you!

Design 3D文件转xyz方向图片和(dxf)的C#类

5000 yuan (CNY) | 10 days | c#

1.将stp或igs/obj等格式的3D文件转成xyz方向(1:1)的图片(png/jpg等)和(dxf) 2.参考示例网站:https://imagetostl.com/ 3.做出C#的类,方便WindowsForms的应用程序引用(.NET 4.0); 4.C#调用示例: /// /// 3D转xyz方向图片方法 /// /// 输入3D文件的路径,可以导入为stp,igs,x_t等3d格式文件 /// 视图的方向,X:x方向的图片,Y:y方向的图片,Z:z方向的图片 /// 视图的方向,1:正向,0:负向 /// 图片的输出路径 /// 图片的格式,png,jpg等 /// 比例关系,1表示1:1比例,2表示2:1比例,0.5表示1:2比例 /// 3d文件导出模型的颜色,red,black /// 转换成功or失败的信息或其他错误信息 public void OutPutImage(string Input3DPath, string Direction, bool PorN, string OutputImagePath,string ImageFormat, double scale, Color modelColor,out string message) { //3D转xyz方向图片方法 } /// /// 3D文件显示在窗体中 /// /// 要显示的容器,groupBox/picturebox等 /// 输入3D文件的路径,可以导入为stp,igs,x_t等3d格式文件 /// 模型的显示颜色 /// 背景颜色 /// 失败的信息或其他错误信息 public void DispModel(Control panel, string Input3DPath, Color ModelColor, Color BackgroundColor, out string message) { //3D文件显示在窗体中 } 6\. 要求提供转换一批文件的时间;

Algorithm & Library software integration -- 2

1000 dollars (USD) | 4 days | cplusplus-programming lua

We have a software written in c++ and we will like it to be linked to our tuning software winols is this something you can help me with Basically i have developed a software to turn off certain functions in a engine control module. You cannot code the software to work with every ecu every software version. So lets say the user selects mercedes then selects edc17c66 ecu and want adblue dpf egr off the software will send the file they have uploaded to my winols and in my winols there will be a file for that sw version ecu and it will make all modifications taking the modifications from the modified file in my winols database and export the file back to the end user who is using the software And winols has a plugin called winols lua. Thats how you can make communication with winols external...