- 博客(13)
- 资源 (1)
- 收藏
- 关注
原创 Dockerfile 多阶段构建参数传递
Dockerfile 多阶段构建参数传递dockerfileARG SVC1ARG SVC2##### BUILD STAGEFROM mcr.microsoft.com/dotnet/sdk:3.1 AS BUILDARG SVC1ENV SVC1=${SVC1}WORKDIR /workspaceRUN mkdir ${SVC1}##### RUN STAGEFROM mcr.microsoft.com/dotnet/aspnet:3.1ARG SVC2ENV SVC2
2021-09-09 10:49:36
735
原创 c# 连接 MySql
c# 连接 MySql创建工程略安装依赖DapperMysqlData代码using Dapper;using MySql.Data.MySqlClient;using System;using System.Collections.Generic;using System.Data;using System.Linq;namespace Mysql{ class Program { static void Main(string[] arg
2021-09-08 17:03:20
160
原创 .netcore Selenium 抓取百度翻页数据(不处理跳转后链接)
.netcore Selenium Chrome 抓取百度翻页数据 (不处理跳转后链接)环境准备nuget packagesSelenium.RCSelenium.SupportSelenium.WebDriverchrome driver查看 chrome 版本: chrome://settings/help下载相应的 chromedriver https://chromedriver.chromium.org/downloads把 chromedriver.e
2021-03-09 16:25:11
420
原创 Powershell Start-Process 后被调用程序的返回值
Powershell Start-Process 程序返回值使用 Powershell 调用 winform 程序,但是发现无法获取 winform 程序的返回值。在 Start-Process 中加入参数 -PassThru 就可以获取到 winform 程序的返回值了。-PassThruReturns a process object for each process that the...
2019-12-26 15:52:54
3405
原创 emqtt客户端连server
emqtt客户端连serveremqtt安装官方指南emqtt客户端连server使用python在本地(windows)运行客户端连接远程服务器使用mqtt.fx.exe连接服务器使用python在本地(windows)运行客户端连接远程服务器找到python版本的Emqtt客户端代码 a. http://emqtt.com/clients ...
2018-08-28 01:06:40
1162
转载 android 权限设置报错 Permission is only granted to system apps
“Permission is only granted to system apps” in Android Studio造成原因: Android Studio认为该权限仅能授予系统应用程序 解决办法: File -> Settings -> Editor -> Inspections->Android->Lint->Correctn...
2018-08-23 11:11:10
1040
原创 Linux信号和命名管道
Linux信号和命名管道概述: 在同一台计算机中,进程相互通信的方式主要有:管道(Pipe)、信号(Signal)、信号量(Semaphore)、消息队列(Message)和共享内存(Shared Memory)。信号量、消息队列和共享内存称为:IPC机制(Inter Process Communication) 不同计算机之间的进程之间通信可以使用套接字技术(Socket)。一、
2017-03-08 11:53:11
806
原创 OpenGL绘制五角星
#include <Windows.h>#include <math.h>#include "gl.h"#include "glut.h"//三棱锥的绘制//2016-10-30//Vizer#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" ) //隐藏控制台窗口//旋转参数st
2016-10-31 17:37:32
1090
研究生初试录取问题
2017-06-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人