当前位置: 首页 > news >正文

推荐IDE中实用AI编程插件,目前无限次使用

插件介绍

一款字节跳动推出的“基于豆包大模型的智能开发工具”

以vscode介绍【pycharm等都可以啊】,这个插件提供智能补全、智能预测、智能问答等能力,节省开发时间

直接在IDE中使用,就不用在网页中来回切换了

感觉还可以,响应速度挺快的,准确率也是挺高的,目前要注册/登入后是免费使用的

地址:https://www.marscode.cn/events/s/iSLV1gb6/

插件案例

我啊用它试着完善了我的博客网站布局,感觉还是挺不错的

写点简单的页面也是不错的,修修改改就可以直接拿来使用了

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Login/Register</title><style>body {font-family: Arial, sans-serif;background-color: #fffbe8;display: flex;justify-content: center;align-items: center;height: 100vh;margin: 0;}.container {background-color: #fff3cd;padding: 20px;border: 1px solid #ffeeba;border-radius: 10px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);width: 300px;text-align: center;}.container h2 {margin: 0 0 15px;color: #856404;}.input-group {margin-bottom: 15px;}.input-group label {display: block;margin-bottom: 5px;color: #856404;}.input-group input {width: 100%;padding: 8px;border: 1px solid #ffeeba;border-radius: 5px;box-sizing: border-box;}.button {background-color: #ffc107;color: white;padding: 10px;border: none;border-radius: 5px;cursor: pointer;width: 100%;margin-top: 10px;}.button:hover {background-color: #e0a800;}.toggle {margin-top: 15px;color: #856404;cursor: pointer;text-decoration: underline;}</style>
</head>
<body><div class="container"><h2 id="form-title">Login</h2><div id="login-form" class="form"><div class="input-group"><label for="login-username">Username</label><input type="text" id="login-username" name="username" required></div><div class="input-group"><label for="login-password">Password</label><input type="password" id="login-password" name="password" required></div><button class="button" onclick="login()">Login</button></div><div id="register-form" class="form" style="display: none;"><div class="input-group"><label for="register-username">Username</label><input type="text" id="register-username" name="username" required></div><div class="input-group"><label for="register-password">Password</label><input type="password" id="register-password" name="password" required></div><div class="input-group"><label for="register-email">Email</label><input type="email" id="register-email" name="email" required></div><button class="button" onclick="register()">Register</button></div><div class="toggle" onclick="toggleForm()">Don't have an account? Register</div>
</div><script>function toggleForm() {const loginForm = document.getElementById('login-form');const registerForm = document.getElementById('register-form');const formTitle = document.getElementById('form-title');const toggleText = document.querySelector('.toggle');if (loginForm.style.display === 'none') {loginForm.style.display = 'block';registerForm.style.display = 'none';formTitle.textContent = 'Login';toggleText.textContent = "Don't have an account? Register";} else {loginForm.style.display = 'none';registerForm.style.display = 'block';formTitle.textContent = 'Register';toggleText.textContent = "Already have an account? Login";}}function login() {// 在这里添加登录逻辑alert('Login function not implemented.');}function register() {// 在这里添加注册逻辑alert('Register function not implemented.');}
</script></body>
</html>

http://www.lryc.cn/news/466750.html

相关文章:

  • 【华为HCIP实战课程十五】OSPF的环路避免及虚链路,网络工程师
  • 【编程语言】正则表达式:POSIX 与 PCRE 的全面比较及应用
  • Spark Streaming 数据流处理
  • 高效规划神器 markmap:一键将 Markdown 变思维导图!
  • 微服务基础架构(图)
  • 中电金信:大模型时代 金融机构企业架构转型如何更智能化?
  • 基于CRNN模型的多位数字序列识别的应用【代码+数据集+python环境+GUI系统】
  • windows中命令行批处理脚本学习
  • 版本工具报错:Error Unity Version Control
  • ECharts饼图-饼图标签对齐,附视频讲解与代码下载
  • Python实现基于WebSocket的stomp协议调试助手工具分享
  • 《语音识别方案选型研究》
  • 解决关于HTML+JS + Servlet 实现前后端请求Session不一致的问题
  • ECharts饼图-饼图34,附视频讲解与代码下载
  • 如何实现安川MP3300运动控制器与西门子1200系列PLC进行ModbusTCP通讯
  • react18中如何实现同步的setState来实现所见即所得的效果
  • 深入理解MVP架构模式
  • Java面试题七
  • linux网络编程3——http服务器的实现和性能测试
  • Docker部署Kamailio,并使用LinPhone实现网络通话
  • JAVA-石头迷阵小游戏
  • 鸿蒙--进度条通知
  • 搜维尔科技:varjo xr-4开箱测评,工业用途头显,一流视觉保真度
  • mysql数据量分库分表
  • Vite创建Vue3项目以及Vue3相关基础知识
  • Elasticsearch封装公共索引增删改查
  • Python异常检测:Isolation Forest与局部异常因子(LOF)详解
  • Git的原理和使用(二)
  • docker 发布镜像
  • 投了15亿美元,芯片创新公司Ampere为何成了Oracle真爱?