- 博客(31)
- 资源 (6)
- 收藏
- 关注
原创 Python 学习一 赋值问题
rdm=RandomState(1)dataset_size=128X=rdm.rand(dataset_size,2)Y = [[int(x1+x2<1)] for (x1,x2)in X]Y = [[int(x1+x2<1)] for (x1,x2)in X][[4.17022005e-01 7.20324493e-01][1.14374817e-04 3.02332573e-01][1.46755891e-01 9.23385948e-02][1.86260...
2021-07-25 17:47:25
218
转载 种子的活力、生活力和发芽率的区别及关系-
1、种子生活力(Viability)是指种子的发芽潜在能力和种胚所具有的生命力,通常是指一批种子中具有生命力(即活的)种子数占种子总数的百分率。2、种子发芽力(生命力)是指种子在适宜条件下(实验室可控制的条件下)发芽并长成正常植株的能力,通常用发芽势和发芽率表示,发芽试验的目的也是测定一批种子中活种子所占的百分率,因此某种意义上说,广义的种子生活力应包括种子发芽力。但狭义的种子生活力是指应用生化法(四唑)快速测定的结果。3、种子活力通常指田间条件下的出苗能力及与此有关的生产性能和指标。4、三者关系种
2021-06-01 09:03:29
8061
原创 Linux Ubuntu 桌面版本安装Apache与部署静态页面
本文章是作为新手小白的自我学习记录与总结。1 安装Apache2 访问Apache 默认页面3 修改默认页面3 Virtual Host 配置(Youtube 教程)
2021-01-21 20:07:13
517
1
转载 Japanese Internment Camps in the USA
Japanese internment camps were the sites of the forced relocation and incarceration of people of Japanese ancestry in the Western United States during the Second World War and established in direct re...
2020-02-21 23:38:46
18595
转载 Tensorboard 无法在 Mac OS Catalina 运行
[libprotobuf ERROR external/com_google_protobuf/src/google/protobuf/descriptor_database.cc:393] Invalid file descriptor data passed to EncodedDescriptorDatabase::Add().[libprotobuf FATAL external/co...
2020-01-12 18:14:15
1780
2
原创 NVIDIA GPU CUDA 计算能力推荐 显卡 ,人工智能 AI 运算 推荐显卡
https://developer.nvidia.com/cuda-gpusTensorflow 2.0 CUDA 选择10.0 ,10.1 和10.2 缺少相关DLL文件。
2019-12-19 13:33:34
4662
原创 XamlLanguagePackage package did not load correctly 升级VS 2019 16.4.2 报错
VS 2019 提示有更新,我就点了,结果原来的程序只要有xml文件的,都无法打开,程序闪退。后来搞了一下午,搞好了。 刚开始以为和DEV 插件有关系,后来才知道和他没关系。把c:\users\'你的账号'\appData\Roaming\microsoft\VisualStudio 文件夹下面的文件都删除了...
2019-12-18 19:16:28
425
原创 Oracle 数据各种异常之一:导出后的日期为 00-00-0000 Trunc()方法
数据在数据库的时候是 正常的格式 比如 :2005-06-30但是当我要迁移导出的时候,数据变成了 00-00-0000使用查询语句,判断当时间为 to_date('2005-06-30','yyyy-dd--mm') 的时候也是查询不到该数据但是如果修改限定条件 to_date('00-00-0000','yyyy-dd--mm')的时候,该条数据就找到了于是同事帮忙...
2019-10-08 11:31:51
1474
原创 Dev ComboBoxEdit 绑定数据 ,显示 NAME 保存VALUE
首先定义一个 数据类型:class ComboxInfo { public string Id { get; set; } public string Name { get; set; } public override string ToString() { return this.Name...
2019-06-26 18:22:04
1281
原创 升级VS2017 重新编译工程后提示 CS1566 找不到有关resources 文件
这是因为 工程项目的版本问题打开工程文件.csproj ,使用文档编辑器,手动删除有关resources 文件 就好了<EmbeddedResource Include="obj\x86\Debug\Attachment.UI.FrmAttachment.resources" />所有报错的都是曾经项目里,但是被删除的cs 文件,应该是之前没有删除干净,在重新编译后才...
2019-05-28 14:01:16
1158
原创 升级VS2019后项目添加了引用但是没效果
搞了2天终于找到原因了,在项目(Project)->属性(Properties)-> Reference Paths添加 bin->debug 文件夹以及添加 你引用所在的文件夹
2019-05-25 15:32:40
16713
7
原创 ORACLE 数据库迁移
需要安装PL/SQL 程序,如果需要其他文件需要安装 sqlplus 、instant client , imp \exp 程序集我的迁移比较麻烦,研究了好久:两个数据库(用户),旧的数据库和新的数据库,每一个表名称不同,但是部分字段相同,1. 导出用户信息(Export user Objects),导出数据库的空表结构SQL文件2. DMP导出,将所有值导出来,DMP文件 ...
2019-05-25 10:48:29
878
转载 # 关于停止Anaconda镜像服务的通知
2019-04-16TUNA Staff根据 Anaconda软件源上的说明,Anaconda 和 Miniconda 是 Anaconda, Inc. 的商标,任何未经授权的公开镜像都是不允许的。去年我们曾尝试与公司有关人员联系,但未能取得授权。在没有上游授权的情况下,我们无法保证镜像的合法性与服务质量。因此我们决定,在取得授权之前无限期停止 Anaconda 镜像服务。即日起,...
2019-04-29 22:33:41
1204
转载 (转)Oracle存储过程返回游标实例详解
有俩种方法:一种是声明系统游标,一种是声明自定义游标,然后后面操作一样,参数类型为in out 或out(1)声明个人系统游标.(推荐)代码如下:create or replace p_temp_procedure(cur_arg out sys_refcursor; --方法1)beginopen cur_arg for select * from tablen...
2019-03-27 14:11:53
3685
原创 PLSQL语句中将变量的值传递给静态SQL语句做查询条件的问题
静态SQL语句里面禁止插入局部变量(全局变量且初始化后的则可以)错误写法:DECLARE TABLEFROM VARCHAR2(200):= 'T_CRCHARGER'; TABLETO VARCHAR2(200):= 'T_MAINLANDSELLCONTRACT'; CURSOR TESTC1 IS SELECT A.COLUMN_NAME ,A.DATA_TYPE...
2019-03-26 14:09:43
2736
转载 Oracle中如何查询一个表的所有字段名和数据类型
转载:https://www.cnblogs.com/xielong/p/8315703.htmlOracle中如何查询一个表的所有字段名和数据类型查询语法select A.COLUMN_NAME,A.DATA_TYPE from user_tab_columns Awhere TABLE_NAME='表名'查询例子select A.COLUMN_NAME,A.DATA...
2019-03-25 23:52:01
15120
2
转载 Your Organization has Turned off Automatic Updates (转载)
本文来源:https://www.howto-connect.com/your-organization-has-turned-off-automatic-updates-windows-10/Your Organization has Turned off Automatic Updates Windows 10– A considerable numberofusers as soo...
2019-03-25 10:43:18
952
原创 Winform Dev 控件 DateEdit 和 TextEdit 类型相同
foreach (Control cont in laycontrol.Controls) { //数值类型为负判断 Console.WriteLine(cont.Name); if (cont is DevExpress.XtraEditors.TextEdit) ...
2019-03-21 13:26:43
537
原创 jupyter(ipython) notebook 工作路径设置方法
删除 TARGET 里面的 ”%userprofile %/“ START IN 默认就可以了 https://blog.youkuaiyun.com/lixintong1992/article/details/53012921
2019-01-13 10:53:54
200
原创 华为云服务器 安装ORACLE 无法远程连接,TELNET 1521 不存在
通过对比发现 服务器端口只有 :127.0.0.1:1521 端口处于监听状态,但是 没有 0.0.0.0:1521端口 需要手动添加 0.0.0.0:1521端口添加步骤打开 D:\app\Administrator\product\11.2.0 下面的 listener.ora 在“ LISTENER = (DESCRIPTION_LIST = ” 下面...
2019-01-09 11:33:31
2191
原创 腾讯企业号 IOS 系统 调用方法 返回”wxLocalResource:/“问题
使用苹果手机和安卓手机进行上传,微信API 会返回值 serverID然后把上传到微信临时服务器的图片 转移到 公司服务器,调用方法 临时的值 string tagUrl = "https://qyapi.weixin.qq.com/cgi-bin/media/get?access_token=" + WXAPI.getTokenByAgentId(1000008) + "&...
2018-12-12 17:33:23
1418
原创 .Net 多层页面间方法调用与参数传递
A 页面通过 window.open 方式打开B页面 B页面内部通过嵌套 <iframe> 调用C页面 A、B、C 三个页面为三个.aspx文件 web form C调用B的方法: parent.function(); C调用A的方法:parent.opener.function()...
2018-09-19 13:24:26
239
转载 jquery load 页面局部刷新以及传参(转载)
load() 方法通过 AJAX 请求从服务器加载数据,并把返回的数据放置到指定的元素中。语法:load(url,data,function(response,status,xhr) 用法: // 页面A调用 <script> $(function(){ $('.main').load('user/user.jsp',{'us...
2018-09-13 22:10:07
2764
转载 Boxer Indemnity Scholarship (U.S.)
From Wikipedia, the free encyclopedia (Redirected from Boxer Rebellion Indemnity Scholarship Program)Jump to navigationJump to search"Boxer Indemnity Scholarship" redirects here. For the United...
2018-08-26 20:39:44
1921
转载 This is a featured list. Click here for more information. List of Institute Professors at the Massac
For a list of faculty at MIT, see List of Massachusetts Institute of Technology faculty.“ The title of Institute professor is an honor bestowed by the Faculty and Administration of MIT on a facul...
2018-08-26 20:39:17
903
转载 Royal Society Prizes for Science Books
From Wikipedia, the free encyclopediaJump to navigationJump to searchThe Royal Society Science Books Prize is an annual £25,000 prize awarded by the Royal Society to celebrate outstanding popular ...
2018-08-26 20:38:21
522
原创 JQUERY Click()方法调用 外部函数
<!DOCTYPE html><html><head> <title>Second</title> <script type="text/javascript" src = "https://code.jquery.com/jquery-3.3.1.js"></script&am
2018-08-21 10:57:04
8901
原创 Ajax 无法读取 相同等级目录下 同名的其他类型文件
举例:根目录下有2个文件:Ajax.html, Ajax.txtAjax 的 XMLHtmlRequest 实例 是无法读取到 Ajax.txt里的任何内容 但是如果目录为:Ajax.html, aaa(文件夹)/Ajax.txtAjax 的 XMLHtmlRequest 实例 是可以获取到 Ajax.txt里的任何内容...
2018-08-21 00:47:25
318
原创 VS2015 VS2017 使用 IIS 10.0 调试.net Web 项目
新手刚开始了解.NET因为我的.NET是前辈的代码,同时需要在 企业微信 中外部调用。每次测试,如果在服务器上更新代码,在通过微信企业版调用,太麻烦了。研究了半天,最后觉得应该在本地部署,然后通过FRP 方式,把企业端的网址指向我写代码所使用的电脑。我的第一步尝试: 1. 打开VS 2015 启动调试,结果发现 localhost 可以访问,但是127.0.0.1 却 是...
2018-08-16 19:48:18
8077
原创 HTTP Error 500.22 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.Most likely causes:This application defines configuration in the system.web/httpModules section.Things...
2018-07-18 10:19:21
1356
Aperture_Photography_Fundamentals
2009-04-07
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人