最后更新:2026-09-21
「亲选小剧场守护」是一款家长监护浏览器扩展,供家长在自己或孩子使用的设备上自愿安装。
什么都不收集。 本扩展没有开发者运营的服务器,不上传、不出售、不共享任何数据。
| import { from, of, Observable, merge, interval } from "rxjs"; | |
| import { | |
| mergeMap, | |
| map, | |
| toArray, | |
| catchError, | |
| distinct, | |
| share, | |
| take, | |
| last, |
| // 打开要导出的腾讯文档 Excel 页面 | |
| // Control+Shift+I,打开 Chrome/Edge 网页调试工具 | |
| // Control+Shift+F,源代码搜索 this.app.workbook.worksheetManager.activeSheet | |
| // 双击搜索结果,在定位到的行的左侧加上断点(加完断点后,显示一个红色的点或者蓝色的标签) | |
| // 刷新页面,等断点停止后,在控制台运行:window.workbook = this.app.workbook; | |
| // 按下 F8 继续代码运行。等页面中表格全部显示后,控制台运行: | |
| let lines = []; | |
| window.workbook.worksheetManager.sheetList.forEach((sheet) => { | |
| sheet.cellDataGrid.blockMatrix.forEach((row) => { |
| q |
| <?php | |
| /** | |
| * Created by IntelliJ IDEA. | |
| * User: bill | |
| * Date: 2018/11/06 | |
| * Time: 13:24 | |
| */ | |
| use InvalidArgumentException; |
| #include <cstring> | |
| #include <cstdlib> | |
| #include <iostream> | |
| using namespace std; | |
| inline int rightshiftindex(int index,int offset, int len){ | |
| if(index+offset>=len){ | |
| return (index+offset)-len; | |
| } |
| #!/bin/bash | |
| site_available_dir=/etc/apache2/sites-available/ | |
| site_enabled_dir=/etc/apache2/sites-enabled/ | |
| server_admin=lubobill1990@163.com | |
| action=() | |
| name= | |
| port= | |
| usage (){ | |
| echo "$0 -C|-R -N site_name -P port_number -D document_root" |
| /** | |
| This snippet is a c++ version of the c# code from http://www.codeproject.com/Articles/13525/Fast-memory-efficient-Levenshtein-algorithm | |
| */ | |
| #include <iostream> | |
| #include <string> | |
| #include <cmath> | |
| using namespace std; | |
| double LD(string sRow,string sCol){ |