摘要:1,这个是好的: using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authorization; using 阅读全文
机器学习 企鹅分类 元数据
2024-09-29 15:51 by qgbo, 6 阅读, 0 推荐, 收藏, 编辑
摘要:https://github.com/allisonhorst/palmerpenguins/blob/main/inst/extdata/penguins.csv species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_ 阅读全文
2个有序数组,归并重拍
2024-08-20 14:51 by qgbo, 3 阅读, 0 推荐, 收藏, 编辑
摘要:public static void merge(int[] a, int[] b) { var pa= a.Length-1; var pb = b.Length-1; var c = new int[b.Length]; var pc = b.Length-1; while (pc >= 0) 阅读全文
yapi 部署k8s
2024-08-07 16:14 by qgbo, 8 阅读, 0 推荐, 收藏, 编辑
摘要:apiVersion: v1 kind: Namespace metadata: name: yapi-ns apiVersion: v1 kind: Service metadata: name: mongo namespace: yapi-ns labels: app: mongo spec: 阅读全文
nginx 测试搭建-docker
2024-07-15 14:28 by qgbo, 5 阅读, 0 推荐, 收藏, 编辑
摘要:有时需要测试nginx 功能。用下面脚本,快速搭建测试! sudo docker run --rm nginx sudo docker cp 25cd7304acd3:/etc/nginx ~/nginx sudo docker run --rm -v ~/nginx:/etc/nginx ngin 阅读全文
Jenkins 中 cd 与 dir
2024-07-03 11:16 by qgbo, 30 阅读, 0 推荐, 收藏, 编辑
摘要:Jenkins file 如下: pipeline { agent {label 'master'} stages { stage ('tttt') { steps { sh "pwd" sh "mkdir aaa" dir('aaa') { sh "pwd" } sh "pwd" sh """ c 阅读全文
http 协议之 HSTS,
2024-06-20 15:15 by qgbo, 2 阅读, 0 推荐, 收藏, 编辑
摘要:asp.netcore 有个中间件: app.UseHsts(); 这个和https 有关: 新建一个 asp.netcore 工程,启用Https,加入这个中间件。 这个中间件会过滤掉 localhost, 所以需要 把启动机器名改掉: https://qgb:5464/www 那么每当访问这个地 阅读全文
codelity
2024-06-12 14:31 by qgbo, 3 阅读, 0 推荐, 收藏, 编辑
摘要:source: https://app.codility.com/programmers/trainings/5/three_letters/ using System; using System.Text; // you can also use other imports, for exampl 阅读全文
kubesphere 脚本
2024-04-10 21:30 by qgbo, 16 阅读, 0 推荐, 收藏, 编辑
摘要:在 centos 9 上,安装kubesphere: yum install socat conntrack tar -y export KKZONE=cn curl -sfL https://get-kk.kubesphere.io | VERSION=v3.0.13 sh - tar zxvf 阅读全文
css flex 练习
2024-03-19 11:20 by qgbo, 8 阅读, 0 推荐, 收藏, 编辑
摘要:<div style="width: 400px; display: flex; background-color:red;justify-content:flex-start;flex-direction:column"> <div style="display: flex; flex-direc 阅读全文