上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: Sub 宏1() ' ' 宏1 宏 ' ' Range("E3:E33").Select Selection.Copy tyear = 2010 tmonth = 1 For startIndex = 3 To 2701 Step 31 '2436 Range("E" & startIndex).Se... 阅读全文
posted @ 2018-03-22 03:26 shiningrise 阅读(453) 评论(0) 推荐(0) 编辑
摘要: debugx5.qq.com 阅读全文
posted @ 2018-03-20 23:41 shiningrise 阅读(7580) 评论(0) 推荐(0) 编辑
摘要: dotnet ef migrations add dotnet ef database update 阅读全文
posted @ 2018-03-16 16:04 shiningrise 阅读(233) 评论(0) 推荐(0) 编辑
摘要: docker run -p 3306:3306 --name mymysql -v $PWD/mysql.conf.d:/etc/mysql/mysql.conf.d/ -v $PWD/logs:/var/log/mysql -v $PWD/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.6 Update-Data... 阅读全文
posted @ 2018-03-15 22:44 shiningrise 阅读(362) 评论(0) 推荐(0) 编辑
摘要: http://www.bubuko.com/infodetail-2427807.html 阅读全文
posted @ 2018-03-15 17:43 shiningrise 阅读(302) 评论(0) 推荐(0) 编辑
摘要: npm run dev npm run build 阅读全文
posted @ 2018-03-13 22:40 shiningrise 阅读(174) 评论(0) 推荐(0) 编辑
摘要: pure-pw useradd bob -f /etc/pure-ftpd/passwd/pureftpd.passwd -m -u ftpuser -d /home/ftpuser/bob 阅读全文
posted @ 2018-03-06 19:20 shiningrise 阅读(769) 评论(0) 推荐(0) 编辑
摘要: https://help.aliyun.com/knowledge_detail/36417.html?spm=5176.11065259.1996646101.searchclickresult.7aa640a3tRGm5a 问题场景: 使用FTP客户端连接虚拟主机时,从FTP操作记录中看到客户端 阅读全文
posted @ 2018-03-05 22:25 shiningrise 阅读(2403) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh #chkconfig:2345 70 30 #description:ngrok ngrok_path=/root/ngrok case "$1" in start) echo "start ngrok service.." sh ${ngrok_path}/start.sh ;; *) ... 阅读全文
posted @ 2018-03-01 10:59 shiningrise 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 如果想杀死一个已经detached的screen会话,可以使用以下命令: 举例如下: 可以看到,4588会话已经没有了。 阅读全文
posted @ 2018-02-26 23:29 shiningrise 阅读(191) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/guaidaodark/archive/2015/06/02/4547876.html 阅读全文
posted @ 2018-02-26 08:48 shiningrise 阅读(6474) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/Ceciiiilia/article/details/71483221 综合目前网站上的各种安装方法,找到如下简单配置(不会报错或者少报错…) (一)从官网安装Go语言 1.对于64位Linux: [plain] view plain copy $ wget 阅读全文
posted @ 2018-02-25 19:50 shiningrise 阅读(1679) 评论(2) 推荐(0) 编辑
摘要: http://blog.csdn.net/czh500/article/details/53328519 三、调试 1、启动ngrokd $ ngrokd -domain="tunnel.tonybai.com" -httpAddr=":8080" -httpsAddr=":8081"[03/14/ 阅读全文
posted @ 2018-02-25 18:09 shiningrise 阅读(3) 评论(0) 推荐(0) 编辑
摘要: cd ~/.ssh/ # 若没有该目录,请先执行一次ssh localhost ssh-keygen -t rsa # 会有提示,都按回车就可以 cat ./id_rsa.pub >> ./authorized_keys # 加入授权 阅读全文
posted @ 2018-02-25 08:22 shiningrise 阅读(431) 评论(0) 推荐(0) 编辑
摘要: Nginx和php默认不支持上传过大的文件。假如我们要求上传的文件大小为20M,默认配置就不允许上传了。下面我们更改nginx和php配置,设定上传的限制为20M。 Nginx配置更改 如果上传文件时超过了nginx的限制,就会返回一个“413 Request Entity Too Large”的错 阅读全文
posted @ 2018-02-23 09:08 shiningrise 阅读(1918) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/boling_cavalry/article/details/79050451 解决docker-compose启动镜像失败的问题; 原文地址:http://blog.csdn.net/boling_cavalry/article/details/79050 阅读全文
posted @ 2018-02-21 16:04 shiningrise 阅读(1601) 评论(0) 推荐(0) 编辑
摘要: ubunbtu 默认不允许root远程访问,设置为允许就可以了 1)vi /etc/ssh/sshd_config,将PermitRootLogin的值改成yes,并保存 [plain] view plain copy PermitRootLogin yes [plain] view plain c 阅读全文
posted @ 2018-02-09 22:29 shiningrise 阅读(656) 评论(0) 推荐(0) 编辑
摘要: wzoj/wiki/安装指南 wzoj-judger/wiki/安装指南 安装LAMP环境 如果你不知道如何安装:DebianUbuntuArchRed Hat 安装redis缓存系统 在 Ubuntu 系统安装 Redi 可以使用以下命令: 启动 Redis 查看 redis 是否启动? 以上命令 阅读全文
posted @ 2018-02-05 17:28 shiningrise 阅读(739) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/sm9sun/article/details/53519226 我们都知道,算法即解决问题的方法,我们衡量一个算法的优劣,可以用空间复杂度与时间复杂度来衡量。 换做我们实际生活中,就是物质成本开销与时间成本开销。 不同算法进行泡妞这一业务进行其物质成本开销与 阅读全文
posted @ 2018-02-03 09:30 shiningrise 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1、首先保证虚拟的Windows XP有虚拟光驱(正常安装的都是有的,因为在ubuntu下一般都是用硬盘虚拟安装的),然后在已经运行起来的Windows XP菜单栏上选择“设备-安装增强功能“,如果不存在,只需下载VBoxGuestAdditions.iso文件,40MB左右,然后将其MV到/usr 阅读全文
posted @ 2018-02-02 22:05 shiningrise 阅读(334) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/c_duoduo/article/details/52083494 Ver 1.1 完整版(修复mingw环境变量错误)下载: http://pan.baidu.com/s/1jIwZcUU 阅读全文
posted @ 2018-02-01 22:51 shiningrise 阅读(892) 评论(0) 推荐(0) 编辑
摘要: $(this).keydown(function (e) { var key = window.event ? e.keyCode : e.which; if (key.toString() == "13") { $("#MainContent_btnSearch").click(); ... 阅读全文
posted @ 2018-01-29 20:21 shiningrise 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1.装了cena-0.8.1-20110710-setup.exe 2.打补丁:cena-0.8.2-patch.zip 3.菜单->工具->选项->编程语言 修改G++ (mingw32)的配置内容为:C:\Program Files (x86)\Dev-Cpp\MinGW64\bin\g++.e 阅读全文
posted @ 2018-01-29 19:10 shiningrise 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: http://fromwiz.com/share/s/2kOMQC1Peh7x2iIM0z1ZXVvc36l4EQ39PQfX25QC9I2sMNNu http://94cb0d26.wiz03.com/share/s/2kOMQC1Peh7x2iIM0z1ZXVvc18HOnb2qPQ132Ayv 阅读全文
posted @ 2017-12-02 12:59 shiningrise 阅读(215) 评论(0) 推荐(0) 编辑
摘要: STC89C51、52内部都自带有2K字节的EEPROM,54、55和58都自带有16K字节的EEPROM,STC单片机是利用IAP技术实现的EEPROM,内部Flash擦写次数可达100,000 次以上,先来介绍下ISP与IAP的区别和特点。 知识点:ISP与IAP介绍 ISP:In System 阅读全文
posted @ 2017-11-28 00:46 shiningrise 阅读(13917) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jiagoushi/p/4051270.html 阅读全文
posted @ 2017-10-08 14:15 shiningrise 阅读(351) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/dudu/tag/OAuth/ 阅读全文
posted @ 2017-10-07 08:56 shiningrise 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/aspnet/aspnet/overview/owin-and-katana/owin-oauth-20-authorization-server 阅读全文
posted @ 2017-10-07 01:25 shiningrise 阅读(557) 评论(0) 推荐(0) 编辑
摘要: nuget安装Swashbuckle包 修改SwaggerConfig文件 给接口添加注释,即可看到参数及方法描述了 http://www.cnblogs.com/softidea/p/5728843.html 阅读全文
posted @ 2017-10-07 00:56 shiningrise 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Installation¶ There are a couple of packages for Hangfire available on NuGet. To install Hangfire into your ASP.NET application withSQL Server storage 阅读全文
posted @ 2017-10-05 18:17 shiningrise 阅读(658) 评论(0) 推荐(0) 编辑
摘要: protected override void OnModelCreating(DbModelBuilder modelBuilder) { modelBuilder.Entity().HasKey(t => t.ProductID); modelBuilder.Entity().Property(t => t.ProductID) .HasColumnName(... 阅读全文
posted @ 2017-10-05 10:36 shiningrise 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: https://marketplace.visualstudio.com/items?itemName=ConnieYau.NETPortabilityAnalyzer 阅读全文
posted @ 2017-10-04 22:15 shiningrise 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Add-Migration -Name Bisaiupdate-database EF迁移设置的最后一步是在包管理器控制台中输入命令“add-migration InitialMigration -IgnoreChanges”。“InitialMigration”(高亮的黄色)是您想要给当前迁移的名 阅读全文
posted @ 2017-10-04 11:30 shiningrise 阅读(6634) 评论(0) 推荐(0) 编辑
摘要: https://www.microsoft.com/zh-cn/store/p/nuget-package-explorer/9wzdncrdmdm3?ocid=badge&rtc=1 阅读全文
posted @ 2017-10-03 18:28 shiningrise 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-10-02 15:01 shiningrise 阅读(267) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ghostchina/Ghost-zh 阅读全文
posted @ 2017-10-01 18:19 shiningrise 阅读(155) 评论(0) 推荐(0) 编辑
摘要: ContainerBuilder builder = new ContainerBuilder(); builder.RegisterGeneric(typeof(Repository)).As(typeof(IRepository)); Type baseType = typeof(IDependency); // 获取所有相关类库的程序集 Assembly[] assemblies = .... 阅读全文
posted @ 2017-10-01 15:04 shiningrise 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Core Introduction The easiest way of starting a new project using ABP with ASP.NET 阅读全文
posted @ 2017-10-01 00:14 shiningrise 阅读(453) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using AutoMapper; using System.Collections; namespace DanaZhangCms.Domain.AutoMapper { public static class AutoMapperExtension ... 阅读全文
posted @ 2017-09-29 13:37 shiningrise 阅读(460) 评论(0) 推荐(0) 编辑
摘要: EntityFramework Reverse POCO Generator https://marketplace.visualstudio.com/items?itemName=SimonHughes.EntityFrameworkReversePOCOGenerator#qna 阅读全文
posted @ 2017-09-26 12:16 shiningrise 阅读(358) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css