logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

微信小游戏——MySQL 8.0 数据库安装(windows server)

       因为做微信小游戏,需要统计一些玩家信息,并且需要实现一个排位算法,思来想去想了一个解决方案。新买了一个服务器,里面的环境基本为空,需要安装数据库。再数据库的选择上,我也是犯了难。首先,node.js是支持很多种数据库的,我专栏里也有发教程。不过根据网友的经验,最好的结合是node.js+mongodb。但是腾讯云支持的微信小程序模板环境是node.js+mysql。所以,我也就随大流

node.js ws模块 方法属性(websocket)

WebSocket compressionws supports the permessage-deflate extension which enables the client and server to negotiate a compression algorithm and its parameters, and then selectively apply it to the da..

#websocket#node.js
c语言 两字符串交叉合并

//这里给出两种方法#include#include#define M 20void main(){char str1[M],str2[M],newstr[2*M];int chang1,chang2,i,flag,j;int low,high;printf("请输入第一个字符串:\n");gets(str1);printf("请输入第二个字符串:\n"

#c语言
Python——Excel数据转化为矩阵

def excel2m(path):data = xlrd.open_workbook(path)table = data.sheets()[0]nrows = table.nrows# 行数ncols = table.ncols# 列数c1 = np.arange(0, nrows, 1)datamatrix = np.zer...

#矩阵
PuTTy 使用以及拒绝链接的解决方案

下载putty(链接)如果出现  connection refused。说明虚拟机没有安装ssh-server在虚拟机中输入命令:sudo apt-get install openssh-server问题解决!

#虚拟机
到底了