最新发布第3页
小米手机强制安装低版本手机管家降级安装显示电池健康度
路径和文件名不要有中文 强制降级安装apk adb devices获取手机id adb -s 手机id install -r -d C:\Users\Administrator\Desktop\v6.3.4220623.0.1.apk apk地址:https://www.dongganboy.com/app...
Win10关闭3次异常断电或者没有成功启动自动进入恢复选项功能
启动 【命令行(管理员模式)】,一定要是管理员模式。 依次输入如下命令(注意空格和符号): bcdedit /set bootstatuspolicy ignoreallfailures bcdedit /set recoveryenabled No bcdedit /set ...
flutter(dart)程序开发读取解析json的简单方法
json数据文件或者自己http获取到的json *jsondate.dart var jsontext = '''{ 'data': [ { 'children': [ { 'courseId': 13, 'id': 538, 'name': '', 'order': 255001, 'parentChapterId': 535, ...
vue打包 element 字体图标 丢失
build目录下utils.js文件 if (options.extract) { return ExtractTextPlugin.extract({ use: loaders, fallback: 'vue-style-loader', publicPath: '../../' }) } else { return ['vue-style-lo...
python中doc转pdf
pip install pywin32 from win32com.client import gencache from win32com.client import constants, gencache def doctupdf(wordPath, pdfPath): ''' word转pdf :param wordPath: word文件路...
centos 7 网络同步时间
yum -y install ntp ntpdate ntpdate ntp1.aliyun.com // 开机启动 vim /etc/rc.d/rc.local /usr/sbin/ntpdate ntp1.aliyun.com;/sbin/hwclock -w 定时任务 crontab -e 0 */1 * * * ntpdate ntp...
任务栏图标隐藏或者空白
“新建文本文档.bat”,将下面的内容复制进去: reg delete 'HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify' /va /f taskk...
Flutter Android端启动屏首屏设置【转&改】
在android\app\src\main\res\drawable\launch_background.xml <?xml version='1.0' encoding='utf-8'?> <!-- Modify this file to customize your launch splash screen --> <la...
Ubuntu 全局http模式 代理加速
sudo apt-get install proxychains vim /etc/proxychains.conf 修改最后一行,并保存 socks5 127.0.0.1 1080 或者http 127.0.0.1 1080 proxychains curl xxxx proxychains wget xxxx proxychain...