摘要: private static void Main(string[] args) { var keyList = RsaKeyGenerator.Pkcs1Key(2048, true); var privateKey = keyList[0]; var publicKey = keyList[1]; 阅读全文
posted @ 2022-06-29 11:02 月渊 阅读(386) 评论(0) 推荐(0)
摘要: input { elasticsearch { hosts => "127.0.0.1" index => "index" size => 10000 scroll=> "20m" } } filter{ mutate{ remove_field => ["@version","@timestamp 阅读全文
posted @ 2022-06-24 14:02 月渊 阅读(31) 评论(0) 推荐(0)
摘要: docker run -it -d \ --publish=7474:7474 --publish=7687:7687 \ --volume=/home/abc/neo4jdata:/data \ --volume=/home/abc/neo4jimport:/var/lib/neo4j/impor 阅读全文
posted @ 2022-06-24 13:58 月渊 阅读(39) 评论(0) 推荐(0)
摘要: var host="localhost"; var port = 21; var u="username"; var p="password"; var remoteDir = "filesync"; var fp="C:\\Users\\admin\\Desktop\\新建文本文档.txt"; a 阅读全文
posted @ 2022-06-16 18:18 月渊 阅读(43) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-06-10 18:52 月渊 阅读(7) 评论(0) 推荐(0)
摘要: //go build -ldflags="-s -w " -trimpath //go build -ldflags "-s -w -H windowsgui" -trimpath package main import ( "fmt" "log" "net" "net/http" "os/exec 阅读全文
posted @ 2022-05-31 23:51 月渊 阅读(42) 评论(0) 推荐(0)
摘要: https://github.com/bbc/color-contrast-checker https://github.com/johno/get-contrast https://github.com/Tanaguru/Contrast-Finder https://contrast-finde 阅读全文
posted @ 2022-05-31 23:27 月渊 阅读(56) 评论(0) 推荐(0)
摘要: public static string? GetDescription(this Enum value, bool nameInstead = true) { Type type = value.GetType(); string? name = Enum.GetName(type, value) 阅读全文
posted @ 2022-05-31 23:19 月渊 阅读(183) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-05-25 10:15 月渊 阅读(0) 评论(0) 推荐(0)
摘要: Docker curl -fsSL https://mirrors.cnnic.cn/docker-ce/linux/debian/gpg | sudo apt-key add - echo 'deb [arch=amd64] https://mirrors.cnnic.cn/docker-ce/l 阅读全文
posted @ 2022-05-20 13:34 月渊 阅读(54) 评论(0) 推荐(0)
摘要: 启动 set LANG=zh_CN.UTF-8 && jupyter notebook --notebook-dir=d:\jupyter\ --ip='*' --NotebookApp.token='' --NotebookApp.password='' Latex $x$ from IPytho 阅读全文
posted @ 2022-05-17 12:43 月渊 阅读(44) 评论(0) 推荐(0)
摘要: function myAjaxPost(url, data, successCallback, errorCallback, completeCallback) { $.ajax({ type: "POST", url: url, data: data, dataType: "json", befo 阅读全文
posted @ 2022-05-08 12:12 月渊 阅读(373) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-05-05 23:14 月渊 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-05-05 23:13 月渊 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-05-05 23:07 月渊 阅读(0) 评论(0) 推荐(0)
摘要: jdk https://www.oracle.com/java/technologies/downloads/ vmware https://customerconnect.vmware.com/downloads/info/slug/desktop_end_user_computing/vmwar 阅读全文
posted @ 2022-04-16 19:04 月渊 阅读(41) 评论(0) 推荐(0)
摘要: { "cells": [ { "cell_type": "markdown", "id": "7bc249d7", "metadata": {}, "source": [ "# 贷款计算\n", "\n", "x = 月收入(元)\n", "\n", "y = 月公积金(元)\n", "\n", " 阅读全文
posted @ 2022-03-30 13:17 月渊 阅读(103) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-02-28 11:25 月渊 阅读(95) 评论(0) 推荐(0)
摘要: //rpm -Uvh https://mirrors.cnnic.cn/epel/epel-release-latest-7.noarch.rpm yum install epel-release sed -e 's!^metalink=!#metalink=!g' \ -e 's!^#baseur 阅读全文
posted @ 2022-02-16 16:22 月渊 阅读(82) 评论(0) 推荐(0)
摘要: tar -cf - $DIR | pigz > $HOME/repo_archive_$(date +"%Y%m%d").tar.gz pigz -dc repo_archive_$(date +"%Y%m%d").tar.gz | tar -x docker save <image>:<tag> 阅读全文
posted @ 2022-02-06 17:15 月渊 阅读(272) 评论(0) 推荐(0)