上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页
摘要: https://devblogs.microsoft.com/dotnet/ :_NET Blog https://docs.microsoft.com/zh-cn/learn/ :Microsoft Learn | Microsoft Docs https://mvp.microsoft.com/ 阅读全文
posted @ 2019-05-07 11:37 PanPan003 阅读(267) 评论(0) 推荐(0) 编辑
摘要: Announcing ML.NET 1.0 阅读全文
posted @ 2019-05-07 10:43 PanPan003 阅读(166) 评论(0) 推荐(0) 编辑
摘要: Introducing .NET 5 .NET 5 = .NET Core vNext .NET 5 is the next step forward with .NET Core. The project aims to improve .NET in a few key ways: Produc 阅读全文
posted @ 2019-05-07 10:41 PanPan003 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 原文 The Once and Only Once principle can be thought of as a subset of the Don’t Repeat Yourself principle, and is one of the most fundamental principle 阅读全文
posted @ 2019-04-26 12:56 PanPan003 阅读(436) 评论(0) 推荐(0) 编辑
摘要: The Stable Dependencies Principle states that “The dependencies between software packages should be in the direction of the stability of the packages. 阅读全文
posted @ 2019-04-26 12:51 PanPan003 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 原文 分布式锁: 原理:与常规锁的原理相同。 目的就是确保,在多个线程并发时,只有一个线程在同一刻操作这个业务或者说方法、变量。 在一个进程中,也就是一个jvm 或者说应用中,我们很容易去处理控制,在jdk java.util 并发包中已经为我们提供了这些方法去加锁, 比如synchronized 阅读全文
posted @ 2019-04-25 12:42 PanPan003 阅读(208) 评论(0) 推荐(0) 编辑
摘要: DTS(待了解) vs trasaction事务 脏数据 && 脏数据的清理 永远返回非空对象(忌:返回空值) 异常: invoker(trackTrace:debug、release是不同的) CallerMemberName:获取谁来调用此方法 异常返回: 【错误码】:分类、断定; 客户端调用, 阅读全文
posted @ 2019-04-24 16:44 PanPan003 阅读(167) 评论(0) 推荐(0) 编辑
摘要: BPMN(待了解) 阅读全文
posted @ 2019-04-24 10:33 PanPan003 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 官网登陆地址:https://marketing.criteo.com/ 官网api介绍:https://marketing.criteo.com/e/s/article?article=360001226005-Marketing-API-details&language=en_US 官网swag 阅读全文
posted @ 2019-04-15 10:40 PanPan003 阅读(437) 评论(0) 推荐(0) 编辑
摘要: enum 转为 string:EnumMember & StringEnumConverter enum array 转为string array:StringEnumConverter & JsonProperty dll引用: 阅读全文
posted @ 2019-04-15 10:35 PanPan003 阅读(3410) 评论(0) 推荐(0) 编辑
摘要: form提交绑定到特定的iframe & form的结果在dialog上显示 form:target属性 modal显示iframe 绑定js事件 触发modal 阅读全文
posted @ 2019-04-09 17:59 PanPan003 阅读(974) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-27 12:11 PanPan003 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 官网地址 LTTng 简介&使用实战 使用LTTng链接内核和用户空间应用程序追踪 简介: LTTng: (Linux Trace Toolkit Next Generation),它是用于跟踪 Linux 内核、应用程序以及库的系统软件包 LTTng 主要由内核模块和动态链接库(用于应用程序和动态 阅读全文
posted @ 2019-03-20 12:33 PanPan003 阅读(776) 评论(0) 推荐(0) 编辑
摘要: windows下,我们对于.net程序发生Crash,资源泄露,死锁等问题的分析,有神器windbg .net core程序运行在linux上时,该怎么进行对对Core Dump文件进行分析呢?今天介绍一款Linux/mac os下的一款调试利器:lldb。 官网地址 Linux下调试.Net co 阅读全文
posted @ 2019-03-19 19:59 PanPan003 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: Linux下的内核测试工具——perf使用简介 系统级性能分析工具 — Perf linux perf - 性能测试和优化工具:示例&应用 从2.6.31内核开始,linux内核自带了一个性能分析工具perf,能够进行函数级与指令级的热点查找。 介绍: Perf是内置于Linux内核源码树中的性能剖 阅读全文
posted @ 2019-03-19 17:29 PanPan003 阅读(815) 评论(0) 推荐(0) 编辑
摘要: why? 容器环境(发环境、测试环境、ppe环境、生产环境)复杂 硬件不同、扩展节点大小不一 软件版本(postgress sql……)不同 数据量的差异,以及导致的加载速度的不同 传统解决方案: OPS通过监控、异常来报告问题 Dev分析生产环境日志 发新包给QA,不同的环境同样的问题可能很难复现 阅读全文
posted @ 2019-03-19 16:39 PanPan003 阅读(179) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-18 14:55 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: gRPC 官方文档 gRPC 是一个高性能、开源和通用的 RPC 框架,面向移动和 HTTP/2 设计。 gRPC 基于 HTTP/2 标准设计,带来诸如双向流、流控、头部压缩、单 TCP 连接上的多复用请求等特。 这些特性使得其在移动设备上表现更好,更省电和节省空间占用。 gRPC 一开始由 go 阅读全文
posted @ 2019-03-15 15:42 PanPan003 阅读(1064) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-15 15:12 PanPan003 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 如何使用.md文件 本文档为Markdown格式,建议利用Visual Studio Code+ Markdown All in One插件修改。参考链接:基础mdbasic,高级mdextended 阅读全文
posted @ 2019-03-15 14:38 PanPan003 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一个有效的目标一定要是 具体的(Specific), 可测量的(Measureable), 可实现的(Attainable), 有现实意义的(Realistic), 以及有明确期限的(Time-based) 阅读全文
posted @ 2019-03-14 18:37 PanPan003 阅读(554) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-14 18:32 PanPan003 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 1.系统设置: url排除使用代理的设置:localhost; 127.0.0.1 2.firefox浏览器设置: 阅读全文
posted @ 2019-03-14 15:44 PanPan003 阅读(211) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-14 13:18 PanPan003 阅读(5) 评论(0) 推荐(0) 编辑
摘要: How to run Python in Visual Studio Code Getting Started with Python in VS Code python教程 vs code 安装python扩展包 下载python包 查看python信息 运行python代码 ,以及查看运行结果 阅读全文
posted @ 2019-03-14 11:49 PanPan003 阅读(11579) 评论(0) 推荐(0) 编辑
摘要: 1.以管理员身份运行vs命令提示符 2.运行 fuslogvw 3.以管理员身份运行Powershell To Enable:(确保fusion日志的文件夹D:\FusionLog\的存在) To Disable 类似,注册表设置: 目的,实现功能: Fusion Log How to enable 阅读全文
posted @ 2019-03-05 15:20 PanPan003 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 原文 So...you're seeing a FileNotFoundException, FileLoadException, BadImageFormatException or you suspect an assembly loading failure? Try the steps be 阅读全文
posted @ 2019-03-05 14:34 PanPan003 阅读(756) 评论(0) 推荐(0) 编辑
摘要: 原文链接 Could you be missing the loaded assembly from your configuration file? Ensure you have something similar to the following within your web.config. 阅读全文
posted @ 2019-03-05 14:03 PanPan003 阅读(2033) 评论(0) 推荐(0) 编辑
摘要: 原文链接 This article discusses ways to avoid problems of type identity that can lead to InvalidCastException, MissingMethodException, and other errors. T 阅读全文
posted @ 2019-03-05 12:38 PanPan003 阅读(262) 评论(0) 推荐(0) 编辑
摘要: error info: 解决方案:在.exe.config文件中配置Newtonsoft.Json所用版本 原因:Newtonsoft.Json所引用的版本不统一 .net framework中dependentassembly的介绍 .net framework中assemblyIdentity的 阅读全文
posted @ 2019-03-05 11:51 PanPan003 阅读(371) 评论(0) 推荐(0) 编辑
摘要: js保存cookie数据 js获取cookie数据 阅读全文
posted @ 2019-02-25 16:55 PanPan003 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 原文链接 架构的三个维度和六个层面 第一个是IT架构,其实就是计算,网络,存储。这是云架构师的基本功,也是最传统的云架构师应该首先掌握的部分,良好设计的IT架构,可以降低CAPEX和OPEX,减轻运维的负担。数据中心,虚拟化,云平台,容器平台都属于IT架构的范畴。 第二个是应用架构,随着应用从传统应 阅读全文
posted @ 2019-02-25 16:33 PanPan003 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 原文链接 云计算最初是实现资源管理的灵活性 云计算不光管资源,也要管应用 大数据拥抱云计算 数据的收集 数据的传输:基于硬盘的分布式队列 数据的存储:分布式文件系统 数据的分析:分布式计算的方法 人工智能拥抱大数据 推理、 知识教授、 基于统计的知识自学(事物间的关联)、 模拟大脑的工作方式(数学单 阅读全文
posted @ 2019-02-25 16:11 PanPan003 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 原文链接 DDB:Distributed date base,分布式数据库 RDS:Relational Datebase Service,关系型数据库服务 CDN:Content Delivery Network,内容分发网络 VPC:Virtual Private Cloud,虚拟私有云。 云端 阅读全文
posted @ 2019-02-25 11:49 PanPan003 阅读(470) 评论(0) 推荐(0) 编辑
摘要: --string 转 json select '{"Items":[{"Id":1,"InitStartDate":"2018-07-01T00:00:00","InitEndDate":"2018-11-13T11:46:59.461722+08:00", "CurrentStartDate":" 阅读全文
posted @ 2019-01-31 14:46 PanPan003 阅读(3213) 评论(0) 推荐(0) 编辑
摘要: error msg: HttpClient throws TaskCanceledException on timeout HttpClient is throwing a TaskCanceledException on timeout in some circumstances. This is 阅读全文
posted @ 2019-01-28 14:20 PanPan003 阅读(2476) 评论(0) 推荐(0) 编辑
摘要: error msg: System.Threading.Tasks.TaskCanceledException: The operation was canceled. > System.IO.IOException: Unable to read data from the transport c 阅读全文
posted @ 2019-01-28 11:05 PanPan003 阅读(8724) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/ymwang/p/6893105.html http和https的区别就是,后者在网络传输过程中会很安全,原因就是给http安装了SSL证书。 SSL证书有免费的和收费的,收费的顾名思义就是保护的方面更多,更安全。收费的像单域名的一年有几百、 阅读全文
posted @ 2019-01-25 12:06 PanPan003 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/xiezhidong/p/6525283.html ♣买域名 ♣域名设置DNS解析、添加A记录 ♣买服务器 ♣服务器端绑定(附加)域名 ♣安装wordpress 为了不浪费你的时间,在次声明:此篇介绍的操作是 国外网站注册域名 和 使用香港主 阅读全文
posted @ 2019-01-25 12:05 PanPan003 阅读(561) 评论(0) 推荐(0) 编辑
摘要: spark生成大宽表的parquet性能优化 阅读全文
posted @ 2019-01-10 16:46 PanPan003 阅读(488) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页