Wesley13 Wesley13
3年前
Spicy 修改代码 实现双屏显示以及鼠标键盘绑定
修改spicy.c staticSpiceWindow\create\_spice\_window(spice\_connection\conn,SpiceChannel\channel,intid,gintmonitor\_id){//注释掉的地方  就是隐藏菜单、工具栏和状态栏   gtk\_container\_
Easter79 Easter79
3年前
springboot~rabbitmq自己通过UI手动发布队列需要注意的地方
springboot里发布队列消息为了兼容性和可读性更好,我们一般使用json字符串做为数据载体。publicvoiddecreaseCallMonitor(CallMonitorInfocallMonitorInfo)throwsException{try{rabbitTe
Stella981 Stella981
3年前
SpringBoot 下PDF生成使用填坑总结
一、PDF生成由于直接使用IText生成PDF,数据填充较为繁琐,故:选用Freemarker和IText生成pdf,引入依赖:环境:jdk1.8SpringBoot1.引入freemarkerstarter(版本跟随
Stella981 Stella981
3年前
Jenkins Pipeline集成Sonar进行代码质量检测
JenkinsPipeline集成Sonar进行代码质量检测简介jenkinspipelineJenkinsPipeline(或简称为"Pipeline")是一套jenkins插件,将持续交付的实现和实施集成到Jenkins中。Jenk
Stella981 Stella981
3年前
Android ADT 23.0.0无法更新到23.0.2问题解决方案
androidSDK更新到23.0.2后创建新项目无法创建MainActivity和默认布局,这个时候就需要更新ADT到23.0.2更新时报如下错误Youroriginalrequesthasbeenmodified."AndroidDDMS"isalreadyinstalled,soanupdatewillbeper
Stella981 Stella981
3年前
Linux:ifconfig命令 示例
显示各个网卡的信息:ifconfig激活eth0:ifconfigeth0up关闭eth0:ifconfigeth0down更改ip地址和掩码:ifconfigeth0192.168.1.101netmask255.255.255
Wesley13 Wesley13
3年前
Mysql Join语句执行流程
JOIN主要使用IndexNestedLoopJoin和BlockNestedLoopJoin算法实现IndexNestedLoopJoin如果joinon相关的字段存在索引就使用IndexNestedLoopJoin算法来进行关联如下sql语句的执行过程:select  from 
Wesley13 Wesley13
3年前
mysql数据备份恢复
常用两条mysql命令,用于数据库的备份和恢复。mysqldumpurootpdbdb.sqlmysqlurootpdefaultcharactersetutf8db<db.sql来源:https://nanjishidu.me/2016/03/mysqlbackup.html
Stella981 Stella981
3年前
Python函数(二)
位置参数根据位置顺序来传递参数coding:utf8__author__"MuT6Sch01aR"deftest(a,b):a和b为形参print(a)print(b)return0
Wesley13 Wesley13
3年前
MySQL 实战
项目七:各部门工资最高的员工(难度:中等)创建Employee 表,包含所有员工信息,每个员工有其对应的 Id,salary和departmentId。|Id|Name|Salary|DepartmentId|