STM32CbueIDE 体验 下载安装 官网下载链接:https://www.st.com/zh/development-tools/stm32cubeide.html. 软件启动时会令设置工作目录(默认设置下每次启动都会询问),我这里设置的 OneDrive 下的文件夹。 汉化 安装中文语言包。 ...
分类:
其他好文 时间:
2020-07-25 09:47:20
阅读次数:
88
laravel 自带语法糖 通过value方法查询指定字段的值 $name = 'bigcola'; $email = DB::table('users')->where('name',$name)->value('email'); 通过exists方法判断某个字段值是否存在 $exists = D ...
分类:
其他好文 时间:
2020-07-24 19:03:07
阅读次数:
89
#include<stdio.h> #include<stdlib.h> #define STACK_SIZE 500000 class Stack { public: Stack() :m_index(0) { //m_data[STACK_SIZE] = { 0 }; //m_minData[S ...
分类:
其他好文 时间:
2020-07-24 16:53:20
阅读次数:
63
insert into t_user (id, avatar, create_time, email, nick_name, password, type, update_time, user_name, file_id, register_method, token, short_message, ...
分类:
数据库 时间:
2020-07-24 16:25:00
阅读次数:
102
在以下涉及到的项目中增加以下包 新建项目CoreWebLibrary.DBEntity-数据库表对应的实体类 1.增加实体类基类接口 public interface IBaseEntity : IBaseEntity<Guid> //id为guid的基类接口 { } public interfac ...
分类:
其他好文 时间:
2020-07-24 16:16:30
阅读次数:
72
源文件安装 在CentOS和Red Hat系统中,首先添加EPEL仓库,然后更新yum源: sudo yum install epel-release sudo yum update 然后安装Redis数据库: sudo yum -y install redis 安装好后启动Redis服务即可: s ...
分类:
其他好文 时间:
2020-07-24 15:34:03
阅读次数:
67
一、环境配置 1.1 系统信息 CentOS Linux release 7.6.1810 (Core) 3.10.0-957.27.2.el7.x86_64 2.2 准备环境 a. 关闭防火墙 systemctl stop firewalld systemctl disable firewalld ...
分类:
其他好文 时间:
2020-07-24 13:25:50
阅读次数:
123
集成华为推送 这类推送一般官方文档都比较详细,如果想要更加详细的了解建议查看官方文档。 官方文档地址:https://developer.huawei.com/consumer/cn/service/hms/pushservice.html 华为推送服务在开发前需要些准备 1.注册认证成为开发者 2 ...
分类:
编程语言 时间:
2020-07-24 09:47:58
阅读次数:
252
使用情景:系统通知用户,通知方式有站内信,邮件,手机短信3种方式,信的内容分普通,紧急两种程度,为了不避免两两组合,m* n种可能的搭配,使用桥接模式 // 抽象 abstract class Info{ protected $_send = null; // 发送器 (site, email, s ...
分类:
Web程序 时间:
2020-07-24 09:18:59
阅读次数:
95
DML:数据操纵语言 关键字:insert、update、delete 数据的插入 1、单行插入 语法: 方法一: insert into 表名 (字段1,字段2,...) values(值1,值2,...); 方法二: insert into 表名 set 字段一='值1',字段二='值二'; 注 ...
分类:
数据库 时间:
2020-07-23 22:59:56
阅读次数:
84