Excel的一些快捷键使用技巧
Ctrl+D 一秒向下填充,
Ctrl+R 一秒向右填充,
Ctrl+\ 一秒找不同,
Ctrl+T 一秒美化表格,
Alt+= 一秒求和,
Alt+F1 一秒生成图表
来源:By 瓜老汉 / Published on 25/01/2026
2026年2月6日11:47:41
Excel的一些快捷键使用技巧
Ctrl+D 一秒向下填充,
Ctrl+R 一秒向右填充,
Ctrl+\ 一秒找不同,
Ctrl+T 一秒美化表格,
Alt+= 一秒求和,
Alt+F1 一秒生成图表
来源:By 瓜老汉 / Published on 25/01/2026
2026年2月6日11:47:41
1.为防止别人找到数据,安全设置:
DokuWiki 使用文件来存储配置和页面数据。你必须确保这些页面绝不能直接的从网络访问。发布的压缩包里面含有一组 “.htaccess”文件,这些文件会告诉 Apache Web 服务器拒绝访问某些目录。
如果你不使用 Apache Web 服务器又或者你的 Apache 不能使用 “.htaccess” 文件,那么你需要手动设置,确保你的安装安全可靠。
以下目录不应该从网络直接访问:
data
conf
bin
inc(尽管可访问时没有危险)
要检查你是否需要调整访问权限,你可以试着访问http://yourserver.com/data/pages/wiki/dokuwiki.txt。你应该无法以这种方法访问到该文件。
如果你的目录没有进行适当的安全设置,请阅读以下小节,它会告诉你如何做到这些。
在Apache中拒绝目录访问
最简单的方法就是在您的 Apache 配置中开启 .htaccess 支持。请参考Apache的 .htaccess 教程。
在 IIS 中拒绝目录访问,可以在 IIS 的配置设置中禁用上述目录的访问。
打开配置工具:开始 → 设置 → 控制面板 → 管理员工具 → IIS 服务
浏览到你想要保护的目录:本地计算机 → 网站 → 默认网站 → 目录的路径.
右击文件夹选择属性 → 目录安全 → IP地址和域名限制 → 编辑…
选择“默认情况下,对所有计算机拒绝访问”。
在iis7配置设置中禁用上述目录的访问的方法
打开配置工具:开始 → 设置 → 控制面板 → 管理员工具 → IIS 服务
浏览到你想要保护的目录:本地计算机 → 网站 → 默认网站 →右边功能视图中找到iis里的请求筛选
在URL里添加.你需要保护的目录..更简单的办法就是在dokuwiki的根目录下.找到web.config文件,如果没有就创建一个,打开改为以下代码:web.config
将目录移出根文档
为了避免任何对上述目录的访问,最安全的方法就是把它们从 Web 服务所谓的“根文档”中移出来。
简单方法备忘:1、建立一个新文件夹:newname
2、把data文件夹全部移到newname文件夹内。
3、添加以下这一行到 “conf/local.php”:
$conf[‘savedir’] = ‘newname/data/’;
data 目录
从根文档中移出 “data” 目录(和它所有的内容)
编辑 savedir 设置,使它指向 “data” 目录的新位置。
例如,如果把 “data” 目录移动到 “/home/yourname/data”,添加以下这一行到 “conf/local.php”:
$conf[‘savedir’] = ‘/home/yourname/data/’;
conf 目录
从根文档中移出 “conf” 目录(和它所有的内容)
在 “inc” 目录内创建一个名为 preload.php 的文件,设置 “DOKU_CONF” 定义并使它指向 “conf” 目录的新地址。
例如,如果把 “conf” 目录移动到 “/home/yourname/conf”,创建以下的 “inc/preload.php”文件:
inc/preload.php
<?php
define(‘DOKU_CONF’,’/home/yourname/conf/’);
这一项总是出错。如何正确设置?
bin 目录
bin 目录包含了命令行工具。如果你没有 shell 可以访问你的服务器,你可以简单的删除该目录和它的内容。否则只要把它移出文档根即可。不需要更多的配置工作。
inc 目录
从文档根中移出该目录,直到目前还没有简单的方法。但是因为它不包含任何的敏感数据,所以不值得努力尝试移出它了。
DokuWiki 配置设置
DokuWiki 包含了多个配置设置,对安装的各个安全方面产生影响。请参阅每个设置文档,以了解它们能做什么以及建议的设置。
allowdebug – 禁止调试输出,以避免系统信息泄露 ❗
fmode, dmode – 设置 DokuWiki 创建文件的文件权限,也可以看到关于建立权限的信息。
fetchsize – 配置外部数据缓存
fullpath – 显示页面的完整路径名
所有的 验证设置
usewordblock – 通过黑名单,防止垃圾邮件
mailguard – 避免收集邮件地址的机器人
iexssprotect – 在 IE 中防范跨站脚本问题
htmlok – 开启 HTML
phpok – 开启 PHP
hidepages – 在索引和搜索中隐藏特定页面
safemodehack – 解决安全模式的限制
插件安全
DokuWiki 拥有大量的社群贡献的插件。插件通过添加新的代码为 DokuWiki 提供新的功能。这意味着该代码实际上已经访问到你的服务器。此外在一个完全特设的方式下,插件与 DokuWiki 是分开发布的。它们不像 DokuWiki 的核心代码库那样得到同样的关注和审查。所以,在安装一个插件之前的安全措施是有必要的。
这里有一些提示,帮助你选择你想要安装的插件。
如果可以,在安装插件之前,你应该检阅一下插件的源代码。
如果有疑问,请在邮件列表提问。
插件安装在 DokuWiki 的 lib 目录下,它可以从外部直接访问。检查一下该插件包含哪些文件,并使用适当的 .htaccess 文件锁定对它们的访问。
插件的创作与开发与 DokuWiki 项目没有直接的关系 – 他们可能是经验不足,有恶意或可能是已经被入侵的服务器插件的源代码。小心选择你信任的插件!
回顾上述的安全警告,同时,当插件有可用的新版本时为插件进行升级。
附加阅读
这里有一些更多关于安全方面的内部和外部网页。
设置访问控制,通过 Https 强行登陆,对 DokuWiki 的 php 设置,Remove ACL rules for deleted pages
Apache 安全 – 第三章:PHP的锁定.
https://www.dokuwiki.org/zh:security (2026-2-3 14:42:18)
2.解决中文乱码
创建的目录中文显示乱码,上传的文件是中文的,但是下载时,中文显示乱码
解决方法:修改dokuwiki/conf/local.php文件
添加:$conf[‘fnencode’] = ‘utf-8’;
之后再次新建目录后,中文显示正常
文件下载,中文显示也正常了
3.新增页面,前提:Add New Page Plugin插件已安装完成
2026年1月24日14:30:18
一、教育政策 & 新闻
教育部官网
查看最新政策文件,网址:http://www.moe.gov.cn
中国教育在线
提供教育资讯与数据分析,网址:http://www.eol.cn
中国教育新闻网
发布权威教育新闻,网址:http://www.jyb.cn
《中国教育报》电子版
呈现官方深度报道,网址:http://paper.jyb.cn
《中国教师报》电子版
聚焦教师专业成长,网址:http://paper.chinateacher.com.cn
人民网教育频道
关注热点教育舆情,网址:http://edu.people.com.cn
新华网教育频道
进行政策解读,网址:https://education.news.cn
中国教育网络电视台
推送教育视频新闻,网址:http://www.centv.cn
二、备课、教案、课件
国家教育资源公共服务平台
拥有国家级优质教案,网址:http://www.eduyun.cn
教研网
开展权威教研活动,网址:http://www.zgjiaoyan.com
学科网
覆盖 K12 全学段教案与课件,网址:http://www.zxxk.com
21 世纪教育网
提供同步教案与课件,网址:www.21cnjy.com
高考资源网
聚焦高考专题教案,网址:http://www.ks5u.com
中考资源网
专注中考专题教案,网址:http://www.zk5u.com
小学资源网
涵盖小学全学科教案,网址:http://www.xj5u.com
阿拉丁资源网
侧重小学语文数学资源,网址:https://xiaoxue.aldedu.com.cn
绿色圃中小学教育网
提供低年级备课素材,网址:http://www.lspjy.com
好课件吧
支持 PPT 课件打包下载,网址:http://www.goodkejian.com
第一课件网
提供免费 PPT/Flash 课件,网址:http://www.1kejian.com
莲山课件
拥有海量可编辑 PPT,网址:https://www.5ykj.com
清风课件
提供高颜值模板课件,网址:https://www.qfppt.com
优翼教学资源网
包含同步学练课件,网址:https://www.youyi100.com
七彩学科网
提供多学科精品课件,网址:https://www.7czx.com
备课大师
支持在线编辑与组卷,网址:https://bk.jyeoo.com
101 教育 PPT
可一键生成互动课件,网址:https://ppt.101.com
出卷网
实现课件与试卷一体化,网址:https://www.chujuan.cn
三、官方数字教材
国家中小学智慧教育平台
包含统编教材与名师课,网址:https://basic.smartedu.cn
人教数字教材平台
提供人教版全套电子教材,网址:https://dzkb.pep.com.cn
北师大数字教材
涵盖北师大版教材,网址:https://dm.bnup.com
沪教数字教材
提供沪教版数字课本,网址:https://dzkb.shkp.com.cn
山东教育电子课本
包含鲁教版电子课本,网址:https://dzkb.sdedu.net
粤教翔云数字教材
提供粤教版数字教材,网址:https://gdtextbook.com
安徽基础教育资源平台
整合省版资源,网址:https://www.ahedu.cn
福建基础教育资源公共服务平台
汇聚省版资源,网址:https://www.fjedu.cn
湖北省数字教材服务平台
提供省版资源,网址:https://dzkb.e21.cn
人民教育出版社官网
可查询教材目录、下载样章,网址:http://www.pep.com.cn
电子课本网
提供多版本 PDF 电子课本,网址:http://www.dzkbw.com
中华经典资源库
包含经典诵读、书法教材,网址:https://zhjdzyk.eduyun.cn
四、题库、组卷、测评
菁优网
提供题库与解析,网址:http://www.jyeoo.com
组卷网
支持智能组卷,网址:http://www.zujuan.com
可圈可点组卷网
提供免费组卷服务,网址:http://bk.cooco.net.cn
易题库
包含真题与模拟题,网址:http://www.yitiku.cn
教习网试卷库
提供阶段测试卷,网址:https://shijuan.51jiaoxi.com
七天学堂组卷
适用于日常测验,网址:https://www.7tstu.com
猿题库教师版
支持拍照搜题与出题,网址:https://teacher.yuantiku.com
小猿组卷
提供在线排版功能,网址:https://zujuan.yuantiku.com
学科网组卷
可一键出卷,网址:https://zujuan.zxxk.com
题拍拍教师端
支持拍照秒出解析,网址:https://teacher.tk.com
易查分
实现成绩私密推送,网址:https://www.yichafen.com
考试酷
支持在线考试与阅卷,网址:https://www.examcoo.com
智能批改英语作文
采用 AI 改作文,网址:https://www.pigai.org
Gradescope
提供国际通用智能批改服务,网址:https://www.gradescope.com
五、教学视频 & 微课
中国大学 MOOC
涵盖大学先修与教师培训内容,网址:https://www.icourse163.org
学堂在线
提供名校公开课,网址:https://www.xuetangx.com
智慧树网
包含翻转课堂视频,网址:https://www.zhihuishu.com
超星教师发展中心
提供教师培训微课,网址:https://teacher.chaoxing.com
中国微课大赛官网
展示获奖微课,网址:http://shequ.cnweike.cn
微课网
提供 5-10 分钟精讲视频,网址:https://www.vko.cn
优课联盟
实现高校优质课共享,网址:https://www.uooc.net
小学视频网
提供小学同步课堂内容,网址:http://www.ms5u.com
初中视频网
包含初中同步课堂内容,网址:http://www.sk5u.com
高中视频网
提供高中同步课堂内容,网址:http://www.fd5u.com
教视网
呈现优质课堂实录,网址:https://www.sp910.com
研直播
进行教研活动直播,网址:https://live.yanxiu.com
99 教师网
提供名师示范课,网址:https://www.99at.com
央视网云课堂
推送央视出品课程,网址:https://edu.cctv.com/ykt
哔哩哔哩教育区
有 up 主优质微课,网址:https://www.bilibili.com
六、科研 & 学术资源
中国知网
提供期刊、硕博论文资源,网址:https://www.cnki.net
万方数据
涵盖学术文献,网址:https://www.wanfangdata.com.cn
维普网
包含中文科技期刊,网址:https://www.cqvip.com
超星读秀
支持图书章节在线阅读,网址:https://www.duxiu.com
国家哲学社会科学文献中心
可免费下载社科论文,网址:https://www.ncpssd.org
国家图书馆数字资源库
包含古籍、论文、报纸资源,网址:https://www.nlc.cn
中国教育和科研计算机网
聚焦教育信息化前沿,网址:http://www.edu.cn
七、课堂互动 & 效率工具
飞书妙记
实现语音转文字会议纪要,网址:https://www.feishu.cn/product/minutes
Canva 教育版
用于海报、简报设计,网址:https://www.canva.cn/education
101 教育 PPT
便于工具类查找,可一键生成互动课件,网址:https://ppt.101.com
Socrative
支持实时课堂测验,网址:https://socrative.com
Mentimeter
提供互动问卷词云功能,网址:https://www.mentimeter.com
Plickers
支持无设备抢答,网址:https://plickers.com
希沃学苑
提供互动白板教程,网址:https://study.seewoedu.cn
网易公开课
包含跨学科视频素材,网址:https://open.163.com
搜狐教育
关注热点教育话题,网址:https://news.sohu.com
腾讯教育
提供招生、政策资讯,网址:http://edu.qq.com
学习强国
包含时政、德育素材,网址:https://www.xuexi.cn
办公资源网
提供 PPT 模板、Excel 表格,网址:https://www.bangongziyuan.com
八、国际优质资源
ReadWorks
提供分级阅读与理解题,网址:https://www.readworks.org
Newsela
开展新闻分级阅读,网址:https://www.newsela.com
CommonLit
提供免费英文读写资源,网址:https://www.commonlit.org
OER Commons
为开放教育资源库,网址:https://www.oercommons.org
Smithsonian Learning Lab
包含史密森博物馆资源,网址:https://learninglab.si.edu
British Council – TeachingEnglish
提供英语教学策略,网址:https://www.teachingenglish.org.uk
TED-Ed
有动画微课程,网址:https://ed.ted.com
中国大学 MOOC(国际课程专区)
提供国际课程资源,网址:https://www.icourse163.org
学堂在线(国际版)
为国际版课程平台,网址:https://www.xuetangx.com
智慧树网(国际名校公开课)
包含国际名校公开课资源,网址:https://www.zhihuishu.com
优课联盟(国际高校共享课)
提供国际高校共享课程,网址:https://www.uooc.net
超星教师发展中心(国际培训)
包含国际教师培训资源,网址:https://teacher.chaoxing.com
网易公开课(国际名校合集)
提供国际名校课程合集,网址:https://open.163.com
OER Commons(国际开放教材)
包含国际开放教材资源,网址:https://www.oercommons.org
2025年9月9日18:23:33
win + R
%temp%
softwaredistribution
temp
cleanmgr
win + i
系统-存储-临时文件-删除
系统-存储-保存新内容的地方
2025年9月7日17:51:15
网址:
https://www.fonepaw.hk/heic-converter/installation.html
有中文繁体版本。
2024年11月4日17:45:40
HEIC 圖片轉檔这个很好。
网站:https://www.fonepaw.com/tw/
2024年12月11日18:02:03
襄陵镇行政村任务总数东院、齐村、李村、北街、屯大、南太柴、巩固、河北、中兴、南柴、屯南、双凫、四柱、西街、胡村、东街、西阳、景村、浪泉、西院、向阳、北太柴、南街、中和庄、庄头、许留、井头、黄崖、薛村 202412260715
1、新城镇沙女村李良槐神道碑:克勤克俭经本道德,中规中矩法贻子孙。(2024年12月4日19:05:46)
2、襄汾县赵康镇晋城村(春秋时期晋国都城古绛,战国时期魏国都城旧址)(2025年6月20日09:15:27)
Redirect your visitors to
Features | Examples | Documentation | Latest Development Blog Post
This plugin provides a URL (link) that takes you directly to a post in single-post view. This post is determined by the query parameter ?redirect_to= and optional others.
While the URL remains the same, its target changes depending on the available posts at the time when somebody enters it. That means you can use the same static URL in a menu, with a button or in a newsletter and the plugin finds out the correct target.
Simply enter the URL of your WordPress site into your browser and add ?redirect_to=… to the end.
Possible values for redirect_to are:
You can also limit the scope of considered posts by additional filter parameters, such as &s=searchaword or &cat=2, or use an offset to go to the second latest or to the post before the previous. The parameter random combined with count and bias lets you pick the latest (or oldest) posts with a different probability than the rest.
The plugin offers caching of database results.
There is no settings page in the backend. You configure the plugin entirely through the query parameters in the URL.
Please find more information about parameters and troubleshooting on the plugin website.
Note: Replace “http://www.example.com/” with your own website location. Spaces are written as “%20”.
http://www.example.com/?redirect_to=latest – redirects to the latest post
http://www.example.com/?redirect_to=random&pk_campaign=random – redirects to a random post and tracks the visit
http://www.example.com/?redirect_to=prev – redirects to the previous post
http://www.example.com/?redirect_to=random&each_once=rewind – redirects to a random post, avoiding duplicates, and then starts over again
http://www.example.com/?redirect_to=prev&offset=1 – redirects to the post before the previous post
http://www.example.com/?redirect_to=random&count=10 – redirects to a random post among the 10 latest posts
http://www.example.com/?redirect_to=random&count=10&bias=80 – redirects to a random post. The plugin picks one from the latest 10 with a probability of 80% and from the rest with a probability of 20%
http://www.example.com/?redirect_to=random&count=10&offset=1 – redirects to a random post among the 10 posts that come after the latest
http://www.example.com/?redirect_to=random&after=1%20month%20ago – redirects to a random post among the posts that are not older than 1 month
http://www.example.com/?redirect_to=latest&exclude=4,7 – redirects to the latest post, excluding the posts with the IDs 4 and 7
http://www.example.com/?redirect_to=latest&offset=1 – redirects to the second latest post
http://www.example.com/?redirect_to=custom&orderby=comment_count&order=DESC – redirects to the post with the most comments
http://www.example.com/?redirect_to=latest&s=iaido&default_redirect_to=12&cache=200 – redirects to the latest post that contains the word ‘iaido’ or, if nothing can be found, to the page or post with the ID 12; use a cache with a 200 second lifetime
The plugin also provides a shortcode [redirect_to_post_button] to create a simple button. Some parameters are available.
A button that links to a random post is a great way to increase your visitors’ on-site engagement and therefore your SEO ranking!
(video by WPBeginner)
If you find this plugin useful, please give it a 5-star rating. Thank you!
Follow us on Facebook or Twitter.
via: https://cn.wordpress.org/plugins/redirect-url-to-post/
2024年1月29日20:34:41
最好用的免费开源桌面录屏软件(Capture)
Captura(这好像是西班牙语)是一款录屏软件,录制视频清晰,生成文件很小,功能非常全面,关键开源免费不说,还包含中文语言包。https://github.com/MathewSachin
https://mathewsachin.github.io/Captura/ 和 https://ffmpeg.org/
ffmpeg :https://www.gyan.dev/ffmpeg/builds/
最重要的是ffmpeg安装
下载完成后直接进行解压,然后配置环境变量就OK了,非常方便。
环境变量配置方法:点击系统属性窗口中的环境变量按钮。在“用户变量”区域选择Path变量,点击编辑按钮,在其原始内容后输入ffmpeg的bin路径,例如我的就是“D:\ffmpeg-4.2.2-win64-static\bin”。
Capture录屏时,录制电脑声音是一个麦克风标志。
录制电脑以外说话声音是打开喇叭标志。
202401302040
2024年1月31日07:53:51