会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
逸风小站
📢:一念放下,万般自然
博客园
首页
新随笔
联系
订阅
管理
[置顶]
网站
摘要: 🐵 程序员常用 - [Json.cn](https://www.json.cn/ "Json.cn")(JSON 格式化工具) - [FeHelper](https://www.baidufe.com/fehelper/index/index.html "FeHelper") - [Everyth
阅读全文
posted @ 2022-06-09 11:13 万般自然
阅读(201)
评论(0)
推荐(0)
[置顶]
公考资料
摘要: ## 行测 判断推理:https://www.bilibili.com/video/BV12t4115735 数量关系:https://www.bilibili.com/video/BV1nE411o7qp 言语理解与表达:https://www.bilibili.com/video/BV11a4y
阅读全文
posted @ 2022-05-22 16:15 万般自然
阅读(166)
评论(0)
推荐(0)
2025年8月13日
常用开发手册
该文被密码保护。
阅读全文
posted @ 2025-08-13 18:32 万般自然
阅读(0)
评论(0)
推荐(0)
2025年8月6日
各种网站、资源、软件
该文被密码保护。
阅读全文
posted @ 2025-08-06 17:00 万般自然
阅读(0)
评论(0)
推荐(0)
2025年7月28日
Python 学习工具
摘要: 在线编辑器 https://penpencode.com/ https://gotomake.scratch3.fun/python https://lightly.teamcode.com/python https://lwebapp.com/zh/python-playground https:
阅读全文
posted @ 2025-07-28 17:31 万般自然
阅读(53)
评论(0)
推荐(0)
2023年9月13日
免费网站(可能也不免费)
该文被密码保护。
阅读全文
posted @ 2023-09-13 16:23 万般自然
阅读(9)
评论(0)
推荐(0)
2023年9月11日
各种资源
该文被密码保护。
阅读全文
posted @ 2023-09-11 16:17 万般自然
阅读(2)
评论(0)
推荐(0)
2023年9月8日
云服务器(Ubuntu系统)环境配置
摘要: ## Node 环境搭建 ### 安装nvm(Node版本管理工具) [Github网址](https://github.com/nvm-sh/nvm) [Gitee网址](https://gitee.com/RubyMetric/nvm-cn) ```shell bash -c "$(curl -
阅读全文
posted @ 2023-09-08 11:30 万般自然
阅读(48)
评论(0)
推荐(0)
2023年9月3日
Github+Picx、Github+PicGo搭建图床
摘要: ## github 仓库 创建一个public仓库。 ## 创建 token 创建一个[personal access token](https://github.com/settings/tokens/new) 
评论(0)
推荐(0)
2023年8月31日
React中使用PDF文件预览插件,解决”需要下载后预览“问题
摘要: 背景 先不说其他场景,就说你在安卓浏览器预览PDF文件的时候,可能遇到过一个问题:需要下载后预览。这个问题在苹果浏览器上倒是没有。 我翻阅古籍后,发现react-pdf可以解决这个问题。 解决方案 react-pdf(某些浏览器不兼容) react-read-pdf(推荐) react-pdf 注意
阅读全文
posted @ 2023-08-31 17:38 万般自然
阅读(1350)
评论(0)
推荐(0)
2023年7月28日
主题备份(还未完成)
摘要:  
评论(0)
推荐(0)
2023年7月27日
页面测试模板
摘要: # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 我是正文。 wo shi zheng wen. ## 代码块 ### Java ```java package com.standard.controller; import java.util.LinkedList; import
阅读全文
posted @ 2023-07-27 15:38 万般自然
阅读(70)
评论(0)
推荐(0)
2023年7月15日
Mac 系统配置 Java 环境(Apple Silicon 系列 M 型号)
摘要: ## 下载、安装 先去 [Azul](https://www.azul.com/downloads/#zulu) 网站下载 Open JDK 
评论(0)
推荐(0)
2023年7月6日
主题备份
摘要:  
评论(0)
推荐(0)
2023年7月5日
主题备份
摘要:  页面定制CSS 
评论(0)
推荐(0)
2023年6月26日
react 使用手册
摘要: ## Create React App ```shell npx create-react-app my-app cd my-app npm start ``` ## 跨域 [参考文档](https://create-react-app.dev/docs/proxying-api-requests-
阅读全文
posted @ 2023-06-26 16:41 万般自然
阅读(23)
评论(0)
推荐(0)
2023年5月14日
Ubuntu 系统配置
摘要: nvm 参考:https://github.com/nvm-sh/nvm 可以先去 https://github.com/creationix/nvm 查看最新的版本 执行下面的指令 wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.
阅读全文
posted @ 2023-05-14 00:58 万般自然
阅读(76)
评论(0)
推荐(0)
2023年3月1日
军队文职招聘信息
该文被密码保护。
阅读全文
posted @ 2023-03-01 21:41 万般自然
阅读(0)
评论(0)
推荐(0)
2023年2月24日
JavaScript 之下划线转换驼峰和驼峰转换下划线
摘要: 下划线转换驼峰 function toHump(lineStr) { return lineStr.replace(/\_(\w)/g, function (all, letter) { return letter.toUpperCase(); }); } 驼峰转换下划线 function toLi
阅读全文
posted @ 2023-02-24 15:38 万般自然
阅读(533)
评论(0)
推荐(0)
2023年2月18日
军队文职统一考试理工学类(数学 1)专业科目考试大纲
该文被密码保护。
阅读全文
posted @ 2023-02-18 16:12 万般自然
阅读(0)
评论(0)
推荐(0)
2023年2月16日
两次循环搞定一维数组到多位数组的转换(菜单树生成)
摘要: 原数组: const arr = [ { id: 1, title: '第一层1000', parentId: 0 }, { id: 2, title: '第一层2000', parentId: 0 }, { id: 3, title: '第二层1100', parentId: 1 }, { id:
阅读全文
posted @ 2023-02-16 17:14 万般自然
阅读(45)
评论(0)
推荐(0)
2022年5月31日
MySQL使用技巧总结
摘要: JSON 数据的使用 首先有一张 test 表,content 字段保存的是 JSON 数据。 CREATE TABLE `test` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `content` json
阅读全文
posted @ 2022-05-31 22:32 万般自然
阅读(56)
评论(0)
推荐(0)
2022年3月2日
Custom 主题优化(禁用原CSS样式)
摘要: 页面定制 css /* 隐藏一些乱七八糟的东西 */ .navbar, #top_nav, #lnkBlogLogo, #cnblogs_ch, .ad_text_commentbox, #opt_under_post, #cnblogs_c1, #under_post_card1, #cnblog
阅读全文
posted @ 2022-03-02 17:41 万般自然
阅读(115)
评论(0)
推荐(0)
SimpleMemory 主题优化
摘要: 预览 主题选择和设置 页面定制 css 代码 点击查看折叠代码块 /* 隐藏一些乱七八糟的东西 */ .navbar, #top_nav, #lnkBlogLogo, #cnblogs_ch, .ad_text_commentbox, #opt_under_post, #cnblogs_c1, #u
阅读全文
posted @ 2022-03-02 14:35 万般自然
阅读(84)
评论(0)
推荐(0)
2022年3月1日
Silience 主题备份
摘要: https://www.cnblogs.com/esofar/ https://www.cnblogs.com/lczmx/ 文档:http://esofar.gitee.io/cnblogs-theme-silence/#/ 1.需要上传的文件 2.页面定制css代码 @import url(ht
阅读全文
posted @ 2022-03-01 11:40 万般自然
阅读(77)
评论(0)
推荐(0)
2022年2月28日
awescnb 主题备份
摘要: 1.选择主题 2.页面定制 CSS #loading{background:#000;background:radial-gradient(#222,#000);bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:
阅读全文
posted @ 2022-02-28 17:02 万般自然
阅读(134)
评论(2)
推荐(0)
2022年1月14日
MySQL 的一些操作积累,不常用
摘要: 查看建表 DDL SHOW CREATE TABLE user_info; CREATE TABLE `user_info` ( `id` int NOT NULL COMMENT 'ID', `username` varchar(255) NOT NULL COMMENT '用户名', `pwd`
阅读全文
posted @ 2022-01-14 18:12 万般自然
阅读(35)
评论(0)
推荐(0)
下一页
公告