4 My board is an Orange Pi 3, and I can only describe it as "卧槽"... I work with .NET Core, and I just can't get this board to work. I have flashed the[......] 继续阅读

2019年12月15日 0条评论 62点热度 0人点赞 痴者工良 阅读全文

CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none 先同步系统时间 shell 输入命令 date 如果显示的时间跟你本地时间不一样,先设置时区 cp /usr/share/zoneinfo/Asia/Shanghai /e[......]继续阅读

2019年12月15日 1条评论 4263点热度 0人点赞 痴者工良 阅读全文

CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none First Sync the System Time Input the command in shell date If the displayed time is dif[......] 继续阅读

2019年12月15日 1条评论 4291点热度 0人点赞 痴者工良 阅读全文

 Directory 1. Introduction 2. Install Virtual Serial Port Software 3. Create a New Project and Add flyfire.CustomSerialPort 4. Description of fly[......] 继续阅读

2019年12月15日 1条评论 56点热度 0人点赞 痴者工良 阅读全文

 目录 1,前言 2,安装虚拟串口软件 3,新建项目,加入 flyfire.CustomSerialPort 4,flyfire.CustomSerialPort 说明 5,开始使用 flyfire.CustomSerialPort 6,实现把数据写入串口 7,实现监听[......] 继续阅读

2019年12月15日 1条评论 3039点热度 0人点赞 痴者工良 阅读全文

Recently, I was studying serial communication in a cross-platform manner under .NET Core, and I came across an article discussing communication in Lin[......] 继续阅读

2019年12月15日 2条评论 88点热度 2人点赞 痴者工良 阅读全文

前些天在学习在 .NET Core下,跨平台使用串口通讯,有一篇文章说到在Linux/物联网下,实现通讯。 主要问题出现在以下两个类库 SerialPortStream flyfire.CustomSerialPort 作者地址: https://www.cnblogs.com/lonelyxmas[......] 继续阅读

2019年12月15日 2条评论 4537点热度 2人点赞 痴者工良 阅读全文

So far, I have interviewed  5  10 companies... The company for this interview task is a listed company. The task is in English (tr[......] 继续阅读

2019年12月15日 3条评论 3457点热度 1人点赞 痴者工良 阅读全文

目前为止,已经面试  5  10 家了。。。 这个试题面试的公司是某一上市公司。 试题是英文的(后面给出翻译): you're given a task of writing a simple program where an and user will be[......] 继续阅读

2019年12月15日 3条评论 3413点热度 1人点赞 痴者工良 阅读全文

  Categories of Knowledge Points to Master in T-SQL SQL for executing queries against databases SQL for retrieving data from databases SQL for i[......] 继续阅读

2019年12月15日 3条评论 7736点热度 0人点赞 痴者工良 阅读全文

  T-SQL 要掌握的知识点分类 SQL 面向数据库执行查询 SQL 从数据库取回数据 SQL 在数据库中插入新的记录 SQL 更新数据库中的数据 SQL 从数据库删除记录 SQL 创建新数据库 SQL 在数据库中创建新表 SQL 在数据库中创建存储过程 SQL 在数据库中创建视图 S[......] 继续阅读

2019年12月15日 3条评论 7712点热度 0人点赞 痴者工良 阅读全文

 Newtonsoft.Json Newtonsoft.Json is a tool for manipulating JSON on the .Net platform. There is no need to elaborate on its introduction; I have[......] 继续阅读

2019年12月15日 0条评论 82点热度 0人点赞 痴者工良 阅读全文

 Newtonsoft.Json Newtonsoft.Json 是.Net平台操作Json的工具,他的介绍就不多说了,笔者最近在弄接口,需要操作Json。 以某个云计算平台的Token为例,边操作边讲解。 Json 转为 Model 将 Model 转为 Json 将 LINQ 转为 JSON L[......] 继续阅读

2019年12月15日 0条评论 3654点热度 0人点赞 痴者工良 阅读全文

Sum of Digits Given a non-negative integer num, repeatedly add the digits of the number until the result is a single digit. Example: Input: 38 Output[......]继续阅读

2019年12月15日 0条评论 2804点热度 1人点赞 痴者工良 阅读全文

各位相加 给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。 示例: 输入: 38 输出: 2 解释: 各位相加的过程为:3 + 8 = 11, 1 + 1 = 2。 由于 2 是一位数,所以返回 2。 进阶:你可以不使用循环或者递归,且在 O(1) 时间复杂度内[......] 继续阅读

2019年12月15日 0条评论 2802点热度 1人点赞 痴者工良 阅读全文

Problem 1 Original link https://leetcode-cn.com/problems/two-sum/ Given an integer array nums and a target value target, please fi[......] 继续阅读

2019年12月15日 1条评论 3933点热度 0人点赞 痴者工良 阅读全文

题目一 原题链接 https://leetcode-cn.com/problems/two-sum/ 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每[......] 继续阅读

2019年12月15日 1条评论 3913点热度 0人点赞 痴者工良 阅读全文

 Bubble Sort It is a method for sorting numbers in a linear array from largest to smallest or from smallest to largest. Taking sorting from small[......] 继续阅读

2019年12月15日 2条评论 64点热度 0人点赞 痴者工良 阅读全文

 冒泡排序法 是数组等线性排列的数字从大到小或从小到大排序。 以从小到大排序为例。 数据 11, 35, 39, 30, 7, 36, 22, 13, 1, 38, 26, 18, 12, 5, 45, 32, 6, 21, 42, 23 使用 数组 int [] array 存储数字。 过程 ([......] 继续阅读

2019年12月15日 2条评论 3435点热度 0人点赞 痴者工良 阅读全文

先透露几张图   可以作为文档模板来用。。。  下载地址 https://dev.tencent.com/u/whuanle/p/IOS_work/attachment/4563020 [......] 继续阅读

2019年12月15日 1条评论 3122点热度 0人点赞 痴者工良 阅读全文
156789