会员
众包
新闻
博问
闪存
赞助商
Trae
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lixiaojin
博客园
首页
新随笔
联系
管理
订阅
随笔 - 46 文章 - 2 评论 - 3 阅读 -
33272
1
2
3
4
5
下一页
2019年12月24日
go mac 交叉编译 linux
摘要: CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' -o server ./server.go
阅读全文
posted @ 2019-12-24 14:05 lixiaojin
阅读(627)
评论(0)
推荐(0)
2018年3月19日
mysql delete from left 多表条件删除
摘要: DELETE n from news n LEFT JOIN news2 d ON n.id=d.id WHERE d.id IS null
阅读全文
posted @ 2018-03-19 16:59 lixiaojin
阅读(603)
评论(0)
推荐(0)
2017年8月16日
PHP计算经纬度在百度多边形区域内
摘要: 最近做一个项目需要使用到区域,并且要判断当前的经纬度是否在区域内,已便对应业务需求变化。废话不多说直接上代码; ps:首先需要先把多边形覆盖物(百度地图)转化为数组,然后使用数学上的射线法。
阅读全文
posted @ 2017-08-16 10:36 lixiaojin
阅读(1050)
评论(0)
推荐(0)
2015年10月18日
Asp.Net MVC 使用FileResult导出Excel数据文件
摘要: MVC实现Excel导出功能,今天来记录一下. 采取了最简单的方法.(转载)用的是Html拼接成Table表格的方式,返回 FileResult输出一个二进制的文件.第一种:使用FileContentResult// // 摘要: // 通过使用文件内容,内容类型...
阅读全文
posted @ 2015-10-18 20:01 lixiaojin
阅读(411)
评论(0)
推荐(0)
2015年9月2日
Ubuntu下Memcache的安装与基本使用
摘要: 安装MemcacheMemcache分为两部分,Memcache服务端和客户端。Memcache服务端是作为服务来运行的,所有数据缓存的建立,存储,删除实际上都是在这里完成的。客户端,在这里我们指的是PHP的可以调用的扩展。1)安装Memcache服务端sudo apt-get install me...
阅读全文
posted @ 2015-09-02 14:37 lixiaojin
阅读(977)
评论(0)
推荐(0)
Laravel 安装记录
摘要: 系统环境:ubuntu-14.10-server-i386(32) LAMP 系统默认安装根据:http://laravel.com/docs/5.1 官方文档,准备通过 Composer 安装1、安装 Composer . 参考:https://getcomposer.org/download/...
阅读全文
posted @ 2015-09-02 12:09 lixiaojin
阅读(293)
评论(0)
推荐(0)
2015年7月10日
Apache Rewrite
摘要: Rewirte主要的功能就是实现URL的跳转,它的正则表达式是基于Perl语言。可基于服务器级的(httpd.conf)和目录级的 (.htaccess)两种方式。如果要想用到rewrite模块,必须先安装或加载rewrite模块。方法有两种一种是编译apache的时候就直接 安装rewrite模块...
阅读全文
posted @ 2015-07-10 11:46 lixiaojin
阅读(280)
评论(0)
推荐(0)
2015年5月29日
SQL中Group By的使用
摘要: 转载:http://www.cnblogs.com/rainman/archive/2013/05/01/3053703.html1、概述2、原始表3、简单Group By4、Group By 和 Order By5、Group By中Select指定的字段限制6、Group By All7、Gro...
阅读全文
posted @ 2015-05-29 09:54 lixiaojin
阅读(138)
评论(0)
推荐(0)
2014年9月12日
解决vsftpd 2.2.2读取目录列表失败的问题
摘要: 该错误是由iptables的配置引起的,临时的解决方法是执行如下命令:[root@localhost soft]# modprobe ip_nat_ftp再次登陆列表正常啦!但当你重新启动服务器则iptables规则失效,又会出现相同的情况,所以我们需要修改/etc/sysconfig/iptabl...
阅读全文
posted @ 2014-09-12 18:33 lixiaojin
阅读(793)
评论(0)
推荐(0)
contos vsftp 530错误
摘要: 只需要把/etc/pam.d/vsftpd文件中的auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed这一句注释掉就OK了。前面加一个#好重启vsftpd服务。问题解决。
阅读全文
posted @ 2014-09-12 18:30 lixiaojin
阅读(535)
评论(0)
推荐(0)
1
2
3
4
5
下一页
公告
昵称:
lixiaojin
园龄:
15年1个月
粉丝:
3
关注:
6
<
2025年8月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
搜索
我的标签
js
(1)
jquery
(1)
动态创建类
(1)
随笔分类
asp.net mvc(11)
c#(5)
centos(9)
CSS(1)
Entity Framework(2)
Laravel(1)
mysql(6)
oracle(2)
php(5)
seo(1)
VMware(1)
Web服务器(5)
windows server 2008 r2(2)
随笔档案
2019年12月(1)
2018年3月(1)
2017年8月(1)
2015年10月(1)
2015年9月(2)
2015年7月(1)
2015年5月(1)
2014年9月(2)
2014年8月(1)
2014年7月(1)
2014年6月(2)
2014年2月(1)
2014年1月(1)
2013年12月(2)
2013年10月(1)
2013年9月(3)
2013年8月(1)
2013年7月(2)
2013年6月(1)
2013年3月(1)
2013年2月(3)
2013年1月(2)
2012年11月(1)
2012年10月(1)
2012年9月(1)
2012年8月(2)
2012年7月(1)
2012年6月(2)
2012年4月(1)
2011年12月(1)
2011年11月(1)
2011年10月(3)
更多
阅读排行榜
1. Centos开启FTP及用户配置(4181)
2. windows server 2008 如何取消禁ping(3069)
3. service httpd restart失败解决方法(小记)(2240)
4. 一个实体对象不能由多个 IEntityChangeTracker 实例引用(1805)
5. 虚拟机暂停后无法启动 出现Exception 0xc0000006 (disk error while paging) has occurred.错误(1771)
推荐排行榜
1. asp.net mvc 3.0 新特性之 Model(2)
2. mysql update from 子查询(1)
最新评论
1. Re:Centos开启FTP及用户配置
博主您好,在用户文件中登录shell中,sbin和bin的区别是什么呢?
--酷酷的达
2. Re:C# 取二位小数点(四舍五入)
学习到了。
--谌姗
3. Re:asp.net mvc 3.0 新特性之 Model
恩。很好的。
--随风浪迹天涯
点击右上角即可分享