摘要: In this article, I am going to explain ,"How to Upload Images to the server using Cordova File Transfer Plugin and Asp.Net core Web API". Requirements 阅读全文
posted @ 2018-07-19 11:34 Javi 阅读(581) 评论(0) 推荐(0) 编辑
摘要: This is something that strangely doesn’t seem to be that well documented and took me a while to figure out though in the end it’s pretty simple. All t 阅读全文
posted @ 2018-07-17 15:31 Javi 阅读(665) 评论(0) 推荐(0) 编辑
摘要: Using C# with Azure Functions Two important prerequisites need to be met to build Azure Functions applications with C#: As a C# developer, you are alr 阅读全文
posted @ 2018-07-16 10:17 Javi 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 选择会员资格 针对所有 Apple 平台进行开发从未如此简单。要开始为 macOS、iOS、tvOS 和 watchOS 开发 app,请从 Mac App Store 下载 Xcode。如果您已准备好实现高级 app 功能、分发 app 以及下载最新的 beta OS 版本,Apple Devel 阅读全文
posted @ 2018-07-13 11:22 Javi 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 前言 上个月由于公司开发的棋牌类游戏接近尾声,需要大量的苹果测试机来支持,之前只有一个公司开发者账号,每添加新的测试机都需要添加一次UDID,做了不少无用功,再加上本身外包性质的公司导致客户方面频繁更换手机测试app也是个棘手的问题,因此公司又壕气申请了企**业开发者账号,今天就总结下企业开发者账号 阅读全文
posted @ 2018-07-13 11:21 Javi 阅读(3027) 评论(0) 推荐(0) 编辑
摘要: MSMQ MicroSoft Message Queuing(微软消息队列)是在多个不同的应用之间实现相互通信的一种异步传输模式,相互通信的应用可以分布于同一台机器上,也可以分布于相连的网络空间中的任一位置。它的实现原理是:消息的发送者把自己想要发送的信息放入一个容器中(我们称之为Message), 阅读全文
posted @ 2018-07-13 08:44 Javi 阅读(940) 评论(0) 推荐(1) 编辑
摘要: 严格来说,MQTT跟WebSocket关系不大。他们不是在一个层级的。 MQTT和TCP、WebSocket的关系可以用下图一目了然: 参考资料: http://www.zhihu.com/question/21816631 WebSocket的优势 以前,很多网站使用轮询实现推送技术。轮询是在特定 阅读全文
posted @ 2018-07-13 08:29 Javi 阅读(1546) 评论(0) 推荐(0) 编辑
摘要: 1.新建Netcore Web项目 2.创建简易通讯协议 SenderID发送者ID ReceiverID 接受者ID MessageType 消息类型 Text Voice 等等 Content 消息内容 3.添加中间件ChatWebSocketMiddleware 4.在Startup.cs中使 阅读全文
posted @ 2018-07-13 08:18 Javi 阅读(2659) 评论(0) 推荐(0) 编辑
摘要: 即时通信常用手段 1.第三方平台 谷歌、腾讯 环信等多如牛毛,其中谷歌即时通信是免费的,但免费就是免费的并不好用。其他的一些第三方一般收费的,使用要则限流(1s/限制x条消息)要么则限制用户数。 但稳定性什么都还不错,又能将服务压力甩出 2.System.Net.Sockets.Socket,也能写 阅读全文
posted @ 2018-07-13 08:17 Javi 阅读(1321) 评论(0) 推荐(0) 编辑
摘要: WebSocket介绍与原理 WebSocket protocol 是HTML5一种新的协议。它实现了浏览器与服务器全双工通信(full-duplex)。一开始的握手需要借助HTTP请求完成。 ——百度百科 目的:即时通讯,替代轮询 网站上的即时通讯是很常见的,比如网页的QQ,聊天系统等。按照以往的 阅读全文
posted @ 2018-07-13 08:16 Javi 阅读(44276) 评论(3) 推荐(9) 编辑
摘要: System.IO.Pipelines是一个新的库,旨在简化在.NET中执行高性能IO的过程。它是一个依赖.NET Standard的库,适用于所有.NET实现。 Pipelines诞生于.NET Core团队,为使Kestrel成为业界最快的Web服务器之一。最初从作为Kestrel内部的实现细节 阅读全文
posted @ 2018-07-13 08:15 Javi 阅读(925) 评论(0) 推荐(2) 编辑
摘要: 这两天突然记起巨软的Visual Studio 2017 好像有说可以用C#开发IOS和Android应用,所以就自己去尝试了下生成过程。 相对与IOS来说,Android的生成过程还是比较容易的没有什么复杂的要求,网络上也有一些文章有说明怎么实现编码过程。 但是网络IOS的文章相对较少,也说的不是 阅读全文
posted @ 2018-07-12 11:49 Javi 阅读(1581) 评论(2) 推荐(0) 编辑
摘要: 微软在Build2017大会上发布一款名为Xamarin Live Player的全新工具,可以让PC用户在不使用Mac的前提下测试和调试iOS应用。但是向App Store提交应用时仍然需要Xcode,不过也仅此一次需要Mac的介入。因此使用Windows系统的开发者现在可以在开发阶段向iOS设备 阅读全文
posted @ 2018-07-12 11:46 Javi 阅读(851) 评论(0) 推荐(0) 编辑
摘要: Today, we are excited to announce the public preview of Azure Dev Spaces, a cloud-native development experience for Azure Kubernetes Service (AKS), wh 阅读全文
posted @ 2018-07-12 09:27 Javi 阅读(293) 评论(0) 推荐(0) 编辑
摘要: It is possible that pip does not get installed by default. One potential fix is: python -m ensurepip --default-pip 阅读全文
posted @ 2018-07-11 15:38 Javi 阅读(141) 评论(0) 推荐(0) 编辑
摘要: To perform object detection using ImageAI, all you need to do is 3. Download the Object Detection model file 4. Run the sample codes (which is as few 阅读全文
posted @ 2018-07-11 11:09 Javi 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 开始之前 建议在安装 Power BI 报表服务器之前先查看安装 Power BI 报表服务器所要满足的硬件和软件要求。 Power BI 报表服务器产品密钥 Power BI Premium 如果已购买 Power BI Premium,则可以在 Power BI 管理门户的“Premium 设置 阅读全文
posted @ 2018-06-29 13:12 Javi 阅读(7018) 评论(0) 推荐(0) 编辑
摘要: What is Q&A? Sometimes the fastest way to get an answer from your data is to ask a question using natural language. For example, "what were total sale 阅读全文
posted @ 2018-06-29 09:39 Javi 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 安装Excel API 函数库 安装Excel API 函数库 1. 通过下载工具下载函数库 下载 ExcelAPI函数库更新工具 下载 ExcelAPI函数库离线包 ExcelAPI(WPS)函数库离线包 Excel API 网络函数库开发指南.pdf 下载后,解压缩程序包,双击运行ExcelAP 阅读全文
posted @ 2018-06-27 20:02 Javi 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 根据 Power BI Desktop 中创建的报表页,可创建直观丰富的报表工具提示,这些提示在你将鼠标悬停在视觉对象上时显示。 通过创建用作工具提示的报表页,使自定义工具提示包含视觉对象、图像以及在报表页中创建的项的所有其他集合。 可根据需要创建任意数量的工具提示页。 每个工具提示页都可与报表中的 阅读全文
posted @ 2018-06-26 13:50 Javi 阅读(1857) 评论(0) 推荐(0) 编辑
摘要: The Microsoft Research Outreach team has worked extensively with the external research community to enable adoption of cloud-based research infrastruc 阅读全文
posted @ 2018-06-26 09:47 Javi 阅读(379) 评论(0) 推荐(0) 编辑
摘要: SNS (Amazon Simple Notification Services) Amazon SNS (Amazon Simple Notification Services) is a notification service used to send the notifications to 阅读全文
posted @ 2018-06-26 09:39 Javi 阅读(821) 评论(0) 推荐(0) 编辑
摘要: In this quickstart you will learn how to embed a Power BI Report Server report by using an iFrame in a SharePoint page. If you are working with ShareP 阅读全文
posted @ 2018-06-14 15:38 Javi 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 没什么好说的,直接送包 https://github.com/mouuff/mtranslate 阅读全文
posted @ 2018-06-13 15:37 Javi 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Introduction If you haven’t had much programming experience before, building a conversational bot and connecting it to various channels may sound like 阅读全文
posted @ 2018-06-13 09:55 Javi 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 一.WITH AS的含义WITH AS短语,也叫做子查询部分(subquery factoring),可以让你做很多事情,定义一个SQL片断,该SQL片断会被整个SQL语句所用到。有的时候,是为了让SQL语句的可读性更高些,也有可能是在UNION ALL的不同部分,作为提供数据的部分。特别对于UNI 阅读全文
posted @ 2018-06-11 15:55 Javi 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 操作如下: 1、http://ping.chinaz.com/ 搜索github.com 海外ip,其实能找到的就两个;然后再搜gist.github.com 海外ip,也是两个。 192.30.253.113 github.com 192.30.253.113 github.com 192.30. 阅读全文
posted @ 2018-06-08 20:41 Javi 阅读(613) 评论(0) 推荐(0) 编辑
摘要: 一、介绍 requests是Python的一个HTTP客户端库,跟urllib,urllib2类似,不过requests的优势在于使用简单,相同一个功能,用requests实现起来代码量要少很多。毕竟官方文档都很直白的说: python的标准库urllib2提供了大部分需要的HTTP功能,但是API 阅读全文
posted @ 2018-06-07 16:58 Javi 阅读(15159) 评论(0) 推荐(0) 编辑
摘要: 原文: Announcing .NET Core 2.1 我们很高兴可以发布 .NET Core 2.1。这次更新包括对性能的改进,对运行时和工具的改进。还包含一种以 NuGet 包的形式部署工具的新方法。我们添加了一个名为 Span<T> 的新基元类型,它可以在没有内存分配的情况下对数据进行操作。 阅读全文
posted @ 2018-06-01 12:30 Javi 阅读(1985) 评论(0) 推荐(0) 编辑
摘要: Parsing PDF files in .NET using PDFBox and IKVM.NET (managed code). Parsing PDF files in .NET using PDFBox and IKVM.NET (managed code). Download sourc 阅读全文
posted @ 2018-05-31 15:02 Javi 阅读(680) 评论(0) 推荐(0) 编辑
摘要: I have found two primary libraries for programmatically manipulating PDF files; PdfBox and iText. These are both Java libraries, but I needed somethin 阅读全文
posted @ 2018-05-31 11:17 Javi 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: In this post, App Dev Manager Ed Tovsen spotlight the features and benefits of Code Maps in Visual Studio. Systems architects have long used modeling 阅读全文
posted @ 2018-05-31 09:18 Javi 阅读(448) 评论(0) 推荐(0) 编辑
摘要: About me In my spare time, I love learning new technologies and going to hackathons. Our hackathon project Pantrylogs using Artificial Intelligence wa 阅读全文
posted @ 2018-05-25 10:00 Javi 阅读(394) 评论(0) 推荐(0) 编辑
摘要: For those of you familiar with Scripting languages you are probably used to using alternate applications like Visual Studio when you want to create GU 阅读全文
posted @ 2018-05-24 15:54 Javi 阅读(632) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-05-24 15:40 Javi 阅读(155) 评论(0) 推荐(0) 编辑
摘要: https://www.microsoft.com/net/learn/apps/machine-learning-and-ai/ml-dotnet Machine Learning made for .NET ML.NET is a machine learning framework built 阅读全文
posted @ 2018-05-21 11:24 Javi 阅读(281) 评论(0) 推荐(0) 编辑
摘要: https://www.visualstudio.com/zh-hans/downloads/ai-tools-vs/ 开发、调试和部署深度学习和 AI 解决方案 Visual Studio Tools for AI 支持包括Microsoft Cognitive Toolkit (CNTK)、Go 阅读全文
posted @ 2018-05-21 11:21 Javi 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 1. Download the Debugging Tools for Windows from the Microsoft website We recommend you install WinDbg Preview as it offers more modern visuals, faste 阅读全文
posted @ 2018-05-21 09:59 Javi 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 编者语:Xamarin国内很多人说缺乏可用的实例,我在写书过程中在完善一些常用场景的例子,希望帮到大家。Build 2018结束一周了,善友问我要不要谈谈Xamarin的一些变化,但碍于时间有限一直没有付诸行动。想想总得写点什么给大家,其实之前也谈过一些,具体就等日后我的书吧。今天我反而想谈一个在B 阅读全文
posted @ 2018-05-19 07:55 Javi 阅读(3733) 评论(1) 推荐(3) 编辑
摘要: 超级图形化爬虫Hawk已经发布两年半时间了,2015年升级到第二版,收到上千条用户反馈(tucao),100多个红包,总共666块五毛~一直想攒着这笔钱,去北境之王天通苑的龙德商场买最心爱的阿迪王! 啥,你不知道Hawk是什么?它是智能而强大的网络数据采集工具,全图形化无需编程,一些功能强大到作者自 阅读全文
posted @ 2018-05-14 10:01 Javi 阅读(1782) 评论(0) 推荐(1) 编辑