码迷,mamicode.com
首页 >  
搜索关键字:a robot has been pro    ( 18579个结果
Git 和 HTTPS
Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:Web程序   时间:2021-05-24 04:28:43    阅读次数:0
JS_剑指 Offer 03_数组中重复的数字
思路,采取map存储每个值,键为该数字,值为次数,大余一次就弹出 var findRepeatNumber = function(nums) { let map = new Map(); for(let i = 0; i < nums.length; i ++){ if(map.has(nums[i ...
分类:编程语言   时间:2021-05-24 04:24:08    阅读次数:0
学习Qt Charts - 不使用UI的情况下使用QTCharts
新建一个Qt Widgets Application项目,不添加UI文件,如下图: 建立工程后,在**.pro**文件中添加: QT += charts 然后在**.h**文件中添加: #include "QChart" using namespace QtCharts; 在**.cpp**中,先添 ...
分类:其他好文   时间:2021-05-24 02:40:25    阅读次数:0
Ibex 处理器架构简介
Ibex 是什么? Ibex was initially developed as part of the PULP platform under the name "Zero-riscy", and has been contributed to lowRISC who maintains it ...
分类:其他好文   时间:2021-05-23 23:32:05    阅读次数:0
Docker 安装 (Windows 环境)
文章针对 Windows 10 20H2,版本不同情况可能不同,仅供参考。 安装要求: Windows 10 Pro / Enterprise / Edu 版本在 Build 14393 以上的版本 Windows 必须是 64 位版本 需要启动 Windows Hyper-V 和容器特性 检查是否 ...
分类:Windows程序   时间:2021-05-23 23:31:49    阅读次数:0
[LeetCode] 1844. Replace All Digits with Characters
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:其他好文   时间:2021-05-04 15:31:41    阅读次数:0
0745. Prefix and Suffix Search (H)
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:其他好文   时间:2021-05-03 12:54:25    阅读次数:0
打印手机
package com.itheima.demo02; public class DingYiShouJi { public static void main(String[] args) { String name1 ="华为 HUAWEI Mate 30E Pro 5G麒麟990E SoC芯片 ...
分类:移动开发   时间:2021-04-30 11:58:04    阅读次数:0
vue 去重数组中的对象
unique(arr) { const res = new Map(); return arr.filter( (arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1) ); }, ...
分类:编程语言   时间:2021-04-28 12:04:33    阅读次数:0
基于Kinect 2.0 与 Alpha 1s 阿尔法机器人的体感控制开发
Kinect4AlphaRobot 基于Kinect 2.0 与 Alpha 1s 阿尔法机器人的体感控制开发 项目是两位成员@Cheman @JYang 完成。 项目说明 项目通过Kinect捕捉人体动作数据,通过蓝牙模块控制 Alpha Robot (优必选阿尔法机器人1S) 演示视频 http ...
分类:其他好文   时间:2021-04-28 11:46:13    阅读次数:0
18579条   上一页 1 ... 5 6 7 8 9 ... 1858 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!