linux,windows共享蓝牙设备

同一个蓝牙设备在装有linux,windows双系统的电脑上使用,每次重新连接都会出现连接失败的问题,都需要移除蓝牙设备再次添加,比较麻烦。导致这个问题的原因是蓝牙设备第一次连接电脑的蓝牙时会随机生成连接秘钥,储存在电脑和蓝牙设备中,以后每次连接都会校验这个秘钥。问题就是linux,windows蓝牙地址一样,在linux下连接过这个蓝牙设备存储了秘钥,在windows下又会重新连接又会生成新的秘钥,蓝牙设备记录下这个蓝牙地址的新秘钥,所以交替使用两个系统连接这个设备总会不成功。 解决办法: 更改电脑蓝牙设备地址使两个系统下的不一样(这个没找到方法…) 更改蓝牙设备连接秘钥使两个系统下的一样 ...

February 15, 2018 · hhdx

枚举算法

上了一年半的大学了,感觉水平还是很低,亟待提升。。。 假期里发现了一个北京大学的一个mooc《程序设计与算法》,正好满足的我的需要:编程能力低下,基础算法不熟。正好这个课才刚刚开始,我决定要跟下去,恩一定! 下面两道题是第一章的练习: ##特殊密码锁 总Time Limit: 1000ms Memory Limit: 1024kB Description 有一种特殊的二进制密码锁,由n个相连的按钮组成(n<30),按钮有凹 凸两种状态,用手按按钮会改变其状态。="" 然而让人头疼的是,当你按一个按钮时,跟它相邻的两个按钮状态也会反转。当然,如果你按的是最左或者最右边的按钮,该按钮只会影响到跟它相邻的一个按钮。 当前密码锁状态已知,需要解决的问题是,你至少需要按多少次按钮,才能将密码锁转变为所期望的目标状态。 ...

January 26, 2017 · hhdx

Smallest Multiple

2520 is the smallest number that can be divided by each of numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the number frome 1 to 20? 分析:求能够被1到20整除的最小正整数,即求最小公倍数。相邻两位依次求最小公倍数到最后即为所求。 Python实现 ...

January 18, 2017 · hhdx

10001st prime

By listing the first six prime number:2, 3, 5, 7, 11, and 13,we can see that the 6th prime is 13.What is the 10001st prime number? python ...

December 25, 2016 · hhdx

Largest palindrome produc

A palindrome number reads the same both ways.The largest palindrome made from the product of two 2-digit numbers is 9009 = 91x91. Find the largest palindrome made from the product of two 3-digit numbers. python实现 ...

November 16, 2016 · hhdx

安装debian和初装debian的各种配置

新买了台电脑,想装debian,然后用以前bios下安装时用的U盘,开启CSM(Compatibility Support Module)进行安装,结果没法创建启动项。找了好久安装方法,后来了解到到debian有专门的UEFI安装模式[1],用UltralISO重新写了个支持UEFI启动的U盘,遂安装成功。若默认启动efi被更改,可以用easyUEFI更改启动顺序。 设置安装源 修改/etc/apt/sourse.list文件,添加 Jessie版本 1 2 3 4 5 6 7 8 deb http://mirrors.163.com/debian/ jessie main non-free contrib deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib deb-src http://mirrors.163.com/debian/ jessie main non-free contrib deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib 引用自163镜像站[2] ...

July 18, 2016 · hhdx

Markdown学习记录

一直以来想要做一个自己的博客网站,直到最近才开始寻找教程。发现了可以使用github的pages服务免费空间构建自己的博客,主要参考了Sunwhut’s Home的教程。建成之后发现自己的表达能力太差还有生活太过无趣,写不了什么东西,所以终于拖到了七天多后…才开始学习此博客框架的文章书写语言——Markdown。这篇博客没什么价值,只是记录一下我初步学习到的Markdown的用法。 标题...

June 17, 2016 · hhdx