- 博客(15)
- 收藏
- 关注
原创 Source Insight 4.0 中文乱码编码设置
Source Insight 4.0 中文乱码编码设置Source Insight 4.0中打开部分文件时,中文乱码。单个文件File->Reload As Encoding,在菜单中按照实际情况选择,大致可选 GB18030,GB2312,可多次尝试,选中之后点击load按钮即可重新加载。整个工程Options->Files标签页,选Default encoding...
2020-05-21 16:04:04 5145
原创 QPropertyAnimation
QPropertyAnimation官方API传送门用作提示界面,自动消失,自动半透明 QPropertyAnimation *animation = new QPropertyAnimation(myWidget, "geometry"); animation->setDuration(10000); animation->setStartValue(QRect(0, 0, 100, 30)); animation->setEndValue(QRect(25
2020-05-20 12:22:24 485
原创 改变QLabel背景颜色
改变QLabel背景颜色方法一:使用Qt样式表,qss语法ui->label->setText(""); //清空字体ui->label->setStyleSheet("QLabel{background-color:rgb(200, 101, 102);}");//设置样式表
2020-05-20 12:21:58 2883
原创 番茄助手Visual Assist X提示中文注释错误
将Visual Assist X装上之后,发现许多中文注释都报错,看着特别扭。在网上找原因,原来,番茄助手将中文注释看成了拼写错误,解决方法很简单:将Visual Assist X Options —> Advanced —> Underlines中的Underline spelling errors in comments and strings 左边的勾去掉即可!...
2020-05-12 12:07:25 1070 1
原创 最小二乘法拟合曲线C语言实现:四次函数
公式原理,请移步二阶回归曲线拟合以下是我改编的4阶实现从data.txt中,读入指定数量(x,y),进行拟合四阶曲线,打印输出各系数值。改编成n阶,仅需要修改do{}while();循环即可。#include <stdio.h>#include<stdlib.h>#include <math.h>#define N 1e-13 #define T...
2019-06-17 12:43:50 3290 2
原创 Tcp udp通信发送的十六进制和字符的区别
字符用ASCII集来表示,需要8个二进制位,ASCII表有255个字符 十六进制是原样发送,需要4个二进制位 例如发送 A8 字符发送的是 0000 1010 0000 1000 而十六进制发送的是 1010 1000 因此,在收发需要进行转换...
2018-02-26 16:43:50 10747 4
原创 EasyPlayer 无法正常启动(0xc000007b)
系统环境:windows server 2008 R2,64bitsEasyPlayer版本EasyPlayer_win_v2.0.17.0709问题截图![0xc000007b](http://img.blog.csdn.net/20171030171115486?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvY2h1YW5sb25nOTk=/fon
2017-10-30 17:13:43 714
翻译 QString::section
QString QString::section(QChar sep, int start, int end = -1, SectionFlags flags = SectionDefault) const三个参数,分割用的字符串,起始位置,终止位置。分割后的字符串按照0,1,2,3…的方式存储,-1代表倒数第一。
2017-10-18 09:57:52 523
转载 Stuff Everyone Should Do (part 2): Coding Standards
Stuff Everyone Should Do (part 2): Coding StandardsJul 14 2011 Published by MarkCC under ProgrammingAnother thing that we did at Google that I thought was surprisingly effective and useful was strict c
2017-08-14 15:43:03 229
原创 Ubuntu-16.04 三步搞定Nginx安装
Ubuntu-16.04 三步搞定Nginx安装租了服务器,开始搞事情。然而,网上现有的教程实在不忍直视。因此写点东西留给后面的童鞋。环境是阿里云Ubuntu16.04 32bit,其他发行版本请移步官网Linux帮助我们通过添加密钥环将nginx官网的仓库添加进来,这样可以使用apt安装最新的nginx软件。一.添加程序密钥环对于Debian / Ubuntu,为了验证nginx仓库签名,需要将
2017-08-08 18:44:33 2219
原创 ubuntu下C语言SQLite开发
ubuntu下C语言SQLite开发 SQLite是轻量级数据库,所有的数据全部存储在一个本地文件中,不支持远程查询。然而,麻雀虽小,五脏俱全,性能相当出色。一、开发环境搭建1.安装SQLitesudo apt-get install sqlite32.安装C语言环境sudo apt-get install libsqlite3-dev3.测试a. 编写test.c#include <sqli
2017-04-03 13:37:32 1165
翻译 apache index.html 翻译( Ubuntu Default Page)
Ubuntu Default PageUbuntu默认页面This is the default welcome page used to test the correct operation of the Apache2 server after installation on Ubuntu systems. It is based on the equivalent page on Debian
2017-03-21 19:37:48 2540
原创 Ubuntu 安装WPS office 2016
Ubuntu 安装WPS office 20161.前往官网获取安装包 WPS for linux 官网 注意选择操作系统对应的位数的版本。 *关于alpha 和beta版本的选择,前者是企业自己进行的测试bug可能会多一些,后者是公开发行测试的版本,相对更加稳定可靠。 详细参见alpha和beta版本的区别2.安装 命令方式 sudo dpkg -i install wps
2017-03-20 14:24:24 2383
翻译 SQLite介绍(官网首页介绍)
SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.The code for SQLite is in the public domain and is thus free for
2017-03-17 18:47:18 1848
原创 C++语言概述
1.历史背景 1.1c++的江湖地位 可以看到大公司对某门语言的影响,做大数据的必须要会java,因为甲骨文公司。做.net的必须会C#,因为微软。 python,php,JavaScript,脚本语言。无需编译,直接就可以运行 Oc名次的更迭从前五跌到20出外仅仅一年,一个是官方推荐swift,一个是市场饱和 Go 一年的时间上升的
2017-02-28 19:59:46 673
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人