网站首页 站内搜索

搜索结果

查询Tags标签: Code,共有 1576条记录
  • 图论

    多源最短路(在曼哈顿图中)(无例题)(使用BFS,队列):操作的地图要有两个特点:既可以表示结果中所要的最短距离,又能记录这个点是否走过,那就全部memset为一个特殊的数-1(这里一定要专门设计一个结果图,不能只用最初的图,让最初的图承担三个责任,它哪里做的到…

    2022/9/1 23:26:03 人评论 次浏览
  • python + VS code + Docker

    目录1.安装docker2.构建映像3.启动docker4.安装 Visual Studio Code并配置5.参考 在python项目开发中,经常需要安装依赖包,还要考虑版本兼容问题。尤其是,升级一个python版本,依赖包安装又要重新来一遍,太多的不兼容,virtualenv, pip等都存在兼容问题。本地安装特别…

    2022/9/1 14:23:25 人评论 次浏览
  • MySQL查询导出数据【转】

    情况说明 习惯使用navicat工具了,在navicat里面操作查询,然后导出都很方便直到今天,查询一个表,一共有105W条数据,然后导出到Excel,速度那叫一个慢。 Linux服务器上导出 主要是用到into outfile /pathmysql> SELECT b.station_code,a.* into outfile /tmp/a.xls …

    2022/9/1 2:23:02 人评论 次浏览
  • tiangolo/uvicorn-gunicorn:python3.8 fastapi docker部署

    经验教训: 1、gunicorn log文件固定放置在容器中目录:/code/logs ,所以这个目录必需映射出来; 2、按照fastapi官方建议,uvicorn运行目录:/app ,所以这个目录要映射到代码目录; 3、通过查找目录(/code/logs )中gunicorn错误信息和(/app/logs)中uvicorn的logger…

    2022/8/30 1:24:11 人评论 次浏览
  • uniapp+.net core 小程序获取手机号

    获取手机号 从基础库 2.21.2 开始,对获取手机号的接口进行了安全升级,以下是新版本接口使用指南。(旧版本接口目前可以继续使用,但建议开发者使用新版本接口,以增强小程序安全性) 因为需要用户主动触发才能发起获取手机号接口,所以该功能不由 API 来调用,需用 but…

    2022/8/30 1:23:08 人评论 次浏览
  • 随机乱作 part 1

    1. NOI2020 制作菜肴 2. ZJOI2020 抽卡 3. CTSC2018 假面 4. ZJOI2018 历史 5. CF1168E Xor Permutations 6. CF1109E Sasha and a Very Easy Test 7. 联合省选2022 学术社区 8. CF1288F Red-Blue Graph 9. CF798E Mike and code of a permutation 10. CF848D Shake It!

    2022/8/29 6:23:54 人评论 次浏览
  • how to make the windows console work with utf-8 encoded project

    the console of the windows os is not working in the utf-8 encoding, by default. When you force your code be encoded with utf-8, the console will not print what you want. Here is how to configure your project encoding with utf-8, and work as it is in w…

    2022/8/28 5:22:48 人评论 次浏览
  • 【数据库】pgsql窗口函数,分组求sum的方式

    select distinct quantity, standard_cost, sum(a.quantity*a.standard_cost) over(partition by purchase_scence_code,raw_material_code) amount, coalesce(purchase_scence_code,unknown) as purchase_scence_code, coalesce(raw_material_code,unkno…

    2022/8/28 2:27:03 人评论 次浏览
  • 抖音播放量

    经抓包分析,播放量的增加只与一个POST有关 POST https://api-hl.amemv.com/aweme/v1/aweme/stats/?os_api=22&device_type=OPPO%20R11%20Plus&device_platform=android&ssmix=a&iid=1090312220960680&manifest_version_code=850&dpi=240&…

    2022/8/27 23:54:15 人评论 次浏览
  • mysql按日期分组(group by)查询统计的时候,没有数据补0的解决办法。

    echarts折线图所需要的数据时间坐标是连续的,但数据库的数据在没有某天的数据的时候查出来的是不连续的 解决之前的查询SELECT SUM(amount_data) num, group_code code, publish_date calander FROM db_reputation_index WHERE group_code = 1 GROUP BY publish_date结果…

    2022/8/26 2:24:18 人评论 次浏览
  • js数组对象的遍历

    // 数组循环的方法var arr = [{ code: 10 }, { value: 100 }, { name: 大乔 }, { age: 18 }];// for----of for (let item of arr) {console.log(for--of, item); } /** for--of { code: 10 } for--of { value: 100 } for--of { name: 大乔 } for--of { age: 18 }*/// for…

    2022/8/25 23:22:59 人评论 次浏览
  • ESP32-S2 lwip

    Im not a big expert in lwIP, but I think the code is correct, since I spent time debugging it on ESP32 and it works very well there. If one code for transmitting data over TCP over WiFi works on ESP32 and does not work on ESP32-S2, I tend to think tha…

    2022/8/25 23:22:57 人评论 次浏览
  • FastApi学习

    vscode配置插件 code runner在 setting.json中关于python的修改为,因为我使用了虚拟环境,得让vscode找到python的路径"code-runner.executorMap": {"python": "$pythonPath -u $fullFileName"}使其在Run In Terminal

    2022/8/24 23:25:11 人评论 次浏览
  • [Typescript] ts-expect-error

    In some ways // @ts-expect-error can act as a suppression comment, similar to // @ts-ignore. The difference is that // @ts-ignore will do nothing if the following line is error-free. For example:of course, "string" is not a number.but, when …

    2022/8/24 6:53:04 人评论 次浏览
  • C++Beginner(3)-Compile

    compiling source code file(.cpp,.cxx,.cc,.C,.c++) -> object files(.o,.obj) -> link object files together into an executable (app.exe, app), static library(.lib, .a), or dynamic library(.dll, .so) If any of the source code files changed, we recom…

    2022/8/23 1:52:45 人评论 次浏览
扫一扫关注最新编程教程