qq

【视频分享】docker前后端分离

放肆的年华 提交于 2019-12-03 08:15:38
# 【视频分享】docker前后端分离 ## 获取方式 **方式一:** **链接:** [百度网盘](https://pan.baidu.com/s/1YLh04knnCs3U3setaVtv6A) ==关注公众号极客萧(xiaoyxyj),并且回复关键字:netty源码 即可获取下载链接和提取码(注意大小写别错)== ==如果链接失效,请及时联系我== **方式二:** ==加入QQ群 QQ群号:152099633== 来源: https://www.cnblogs.com/icefirebug/p/11784705.html

【视频分享】Java 30套项目

核能气质少年 提交于 2019-12-03 08:14:15
# 【视频分享】Java 30套项目 ## 获取方式 **方式一:** **链接:** https://pan.baidu.com/s/1evT1RXk8s3znA_tqIbkGrw ==关注公众号极客萧,并且回复关键字:Java 30套项目 即可获取下载链接和提取码(注意大小写别错)== ==如果链接失效,请及时联系我== **公众号二维码** ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181127200045142.jpg) **方式二:** ==加入QQ群 QQ群号:152099633== 来源: https://www.cnblogs.com/icefirebug/p/11784668.html

python给qq好友发送消息

北战南征 提交于 2019-12-03 06:50:35
步骤 下载Pythoncharm 在pythoncharm里下载pipwin32的扩展(需要适应python版本,我python使用3.7版本) 代码 # 原理是先将需要发送的文本放到剪贴板中,然后将剪贴板内容发送到qq窗口 # 之后模拟按键发送enter键发送消息 import win32gui import win32con import win32clipboard as w import time def get_text(): """获取剪贴板文本""" w.OpenClipboard() d = w.GetClipboardData(win32con.CF_UNICODETEXT) w.CloseClipboard() return d def set_text(a_string): """设置剪贴板文本""" w.OpenClipboard() w.EmptyClipboard() w.SetClipboardData(win32con.CF_UNICODETEXT, a_string) w.CloseClipboard() def send_qq(to_who, msg): """发送qq消息 to_who:qq消息接收人 msg:需要发送的消息 """ set_text(msg) # 将消息写到剪贴板 qq = win32gui.FindWindow(None,

Mysql错误:[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near

筅森魡賤 提交于 2019-12-03 04:50:32
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 如果不是符号中英文切换的问题,那就是 反引号写成单引号引起的 参考链接: https://blog.csdn.net/qq_27495157/article/details/80240156 来源: https://www.cnblogs.com/ddpapa/p/11778487.html

关于邮箱手机端选择

允我心安 提交于 2019-12-03 02:41:46
因为工作,生活需要,总是有很多的邮箱,gmail,163, qq, 公司邮箱等等,一直想有么有一个可以聚合到它们在一起的, 很久之前,下载了163手机客户端,网易出品,总是有着各种各样的广告,很烦人,而且设置自动转发邮件到QQ邮箱总是漏转发,很烦人 前几天,无意下载了一下QQ邮箱手机app,感觉很清爽,支持类型很多,这里向大家推荐一下 QQ邮箱 。 来源: https://www.cnblogs.com/shiwanghualuo/p/11774379.html

In fine uploader, how to edit/update S3 file metadata for files that are uploaded in previous sessions?

匿名 (未验证) 提交于 2019-12-03 02:38:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have requirement in which user need to edit/update the s3 file metadata that are uploaded in the previous sessions. I have implemented Initial File List, but I need to make file metadata (filename, caption - new field in my case) editable in the display list. Can it be accomplished? I see edit files feature , but that is limited to before file gets uploaded. Looks like my requirement not easily supported out of the box FU. I have followed below approach. In template I have a button with text 'Update Caption', which has onclick=

Quantile-Quantile Plot using SciPy

匿名 (未验证) 提交于 2019-12-03 02:13:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: How would you create a qq-plot using Python? Assuming that you have a large set of measurements and are using some plotting function that takes XY-values as input. The function should plot the quantiles of the measurements against the corresponding quantiles of some distribution (normal, uniform...). The resulting plot lets us then evaluate in our measurement follows the assumed distribution or not. http://en.wikipedia.org/wiki/Quantile-quantile_plot Both R and Matlab provide ready made functions for this, but I am wondering what the

Calculate the last day of the quarter

匿名 (未验证) 提交于 2019-12-03 01:23:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: What's the most efficient way to calculate the last day of the prior quarter? Example: given the date 11/19/2008, I want to return 9/30/2008. Platform is SQL Server 回答1: If @Date has the date in question Select DateAdd(day, -1, dateadd(qq, DateDiff(qq, 0, @Date), 0)) EDIT: Thanks to @strEagle below, simpler still is: Select dateadd(qq, DateDiff(qq, 0, @Date), -1) 回答2: Actually simpler is: SELECT DATEADD(qq, DATEDIFF(qq, 0, GETDATE()), -1) 回答3: Get the current date SELECT CONVERT(DATE,GETDATE()) [Current Date] Get the 1st date of the quarter

VMware安装ubuntu16.04

匿名 (未验证) 提交于 2019-12-03 00:40:02
先行安装VMware,过程就像安装QQ简单,一步一步下一步,我点点点...具体可问度娘. 既然要装系统,肯定要先下载系统文件了,纯爷们废话不多说,直接上图 担心部分小白白找不到链接,附上链接.Ubuntu 16.04.4 LTS 的下载地址: http://mirror.pnl.gov/releases/xenial/ 不想用16.04,没关系.更多的版本,在这里 http://releases.ubuntu.com/?_ga=2.55521067.1400602832.1530946668-10447581… 别说找不到登录按钮,哈哈,这个真没有.按Enter键吧 只会ABC的我发现里面全是英语,别担心,点这里设置 下拉找到‘汉语中国‘,拖拽值最顶部,关闭后重启即可 原文: https://www.cnblogs.com/zhouyi-/p/9277841.html

Ubuntu16.04 安装qq亲测好用

匿名 (未验证) 提交于 2019-12-03 00:38:01
第一步:安装winehq3.0 版本 wget -nc https://dl.winehq.org/wine-builds/Release.key sudo apt-key add Release.key sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ sudo apt-get update sudo apt-get install --install-recommends winehq-stable 可以使用wine --version判断是否安装成功 第二步:下载qq。我使用的是qq8.7版本。 下载好安装包之后再使用右键上的wine选项进行安装 安装的目录设置在~/.wine/drive_c/userApp/tencent/QQ(在安装的时候显示的可能是z:/home/.........)无所谓只要定位到之前的地方就好了。 安装的时候可能会报错,问题不大。关闭就好。 安装完成之后就可以扫码登录了。但是很多□,并且不能收发消息。 第三步:将Windows系统下的字库拷贝到wine目录下,将C:/Windows/Fonts整个文件夹拷贝到~/.wine/drive_c/windows/Fonts就可以了。 第四步:解决输入问题,打开终端输入winecfg 将Windows版本换成win10