摘要: //创建普通通知 String channelId = "测试渠道"; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) { Notification notification = new Notifi 阅读全文
posted @ 2022-10-06 14:47 laremehpe 阅读(28) 评论(0) 推荐(0) 编辑
2024年5月27日
摘要: #include "iostream" #include "vector" #include "string" using namespace std; vector<string> split(string txt, string splitor) { vector<string> strList 阅读全文
posted @ 2024-05-27 15:16 laremehpe 阅读(2) 评论(0) 推荐(0) 编辑
2024年5月18日
摘要: 引用: /etc/profile为系统的每个用户设置环境信息和启动程序,当用户第一次登录时,该文件被执行,其配置对所有登录的用户都有效。当被修改时,必须重启才会生效。 /etc/environment系统的环境变量,/etc/profile是所有用户的环境变量,前者与登录用户无关,后者与登录用户有关 阅读全文
posted @ 2024-05-18 10:03 laremehpe 阅读(2) 评论(0) 推荐(0) 编辑
2024年5月15日
摘要: 文件路径: C:\Users\laremehpe\.gradle\init.gradle allprojects { repositories { def REPOSITORY_URL = 'https://maven.aliyun.com/repository/gradle-plugin' all 阅读全文
posted @ 2024-05-15 10:40 laremehpe 阅读(27) 评论(0) 推荐(0) 编辑
2024年4月27日
摘要: cell宽度由该列中最宽的元素决定 cell高度由该行中最高的元素决定 并且 高度不够的元素会被居中 在css、style设置的宽高仅在内容元素没有超出设置的宽高时候有效 阅读全文
posted @ 2024-04-27 17:06 laremehpe 阅读(1) 评论(0) 推荐(0) 编辑
2024年4月24日
摘要: 解决方案: 原因:vim无法保存用户操作信息到.viminfo文件,vim无操作权限 思路: 修改用户目录下的.viminfo文件权限 命令: chmod 777 .viminfo 找到当前用户目录: echo $HOME 查看隐藏文件: ls -a 若系统提示.viminfo: Read-only 阅读全文
posted @ 2024-04-24 23:58 laremehpe 阅读(52) 评论(0) 推荐(0) 编辑
2024年4月19日
摘要: 官网说明:composer官网地址 下载安装文件: wget https://getcomposer.org/installer 下载的文件名叫installer,重命名为php文件: mv installer php-setup.php php执行安装文件: php php-setup.php 然 阅读全文
posted @ 2024-04-19 23:10 laremehpe 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: <?php namespace app\controller; use app\BaseController; // require 'vendor/autoload.php'; use Alipay\EasySDK\Kernel\Factory; use Alipay\EasySDK 阅读全文
posted @ 2024-04-19 10:01 laremehpe 阅读(9) 评论(0) 推荐(0) 编辑
2024年4月18日
摘要: http://laremehpe.test.org/index.php/index/user/index http://laremehpe.test.org: url地址 /index.php : public 目录下的入口文件 /index: application 目录下的文件夹名字 如果没有文 阅读全文
posted @ 2024-04-18 21:27 laremehpe 阅读(2) 评论(0) 推荐(0) 编辑
2024年4月13日
摘要: 检查导入的组件: 修改后: 阅读全文
posted @ 2024-04-13 10:06 laremehpe 阅读(48) 评论(0) 推荐(0) 编辑
2024年4月10日
摘要: 依赖: npm i nodemon webpack webpack-cli ts-loader typescript // webpack.config.js import { default as webpack } from "webpack"; import nodeExternals fro 阅读全文
posted @ 2024-04-10 15:45 laremehpe 阅读(21) 评论(0) 推荐(0) 编辑