码迷,mamicode.com
首页 >  
搜索关键字:local    ( 24769个结果
cookies localStorage和sessionStorage的区别
sessionStorage用于本地存储一个会话(session)中的数据,这些数据只有在同一个会话中的页面才能访问并且当会话结束后数据也随之销毁。因此sessionStorage不是一种持久化的本地存储,仅仅是会话级别的存储。而localStorage用于持久化的本地存储,除非主动删除数据,否则数 ...
分类:其他好文   时间:2017-04-11 15:33:16    阅读次数:267
Pythonの坑
Python closures and late binding A closure occurs when a function has access to a local variable from an enclosing scope that has finished its executi ...
分类:编程语言   时间:2017-04-11 15:05:19    阅读次数:271
LNMP
nginx编译安装 下载nginx cd /usr/local/src/ wget http://nginx.org/download/nginx-1.4.4.tar.gz 解压 cd /nginx-1.4.4 ./configure \ --prefix=/usr/local/nginx --wi ...
分类:其他好文   时间:2017-04-11 13:21:06    阅读次数:192
Laravel 5.2--git冲突error: Your local changes to the following files would be overwritten by merge:
今天在服务器上git pull是出现以下错误: error: Your local changes to the following files would be overwritten by merge: laravel/app/Services/ExpressService.php Please ...
分类:Windows程序   时间:2017-04-11 13:14:58    阅读次数:228
linux虚拟机配置
一.安装虚拟机 二.安装centOS 三.配置IP 1.先输入ifconfig查看网卡IP,lo是回环网卡,ifconfig -a查看真实网卡IP 2.dhclient #在有dhcp服务器的情况下,自动获取一个IP route #查看NETMASK(子网掩码)和GATEWAY(网段) vi /et ...
分类:系统相关   时间:2017-04-11 11:26:33    阅读次数:295
转:WinCE驱动开发问题精华集锦
1、在应用程序中,如何向修改本机的ip 地址等网络参数,并使之立即生效? 网络设置保存在注册表中,位置[HKEY_LOCAL_MACHINE\Comm\网卡名称\Parms\TcpIp],例如常见的CS8900网卡设置: [HKEY_LOCAL_MACHINE\Comm\CS89001\Parms\ ...
分类:Windows程序   时间:2017-04-11 11:26:12    阅读次数:369
fastcgi 性能优化参数
优化性能参数设置,在ngnix.conf中的http层加上fastcgi参数如下:http{fastcgi_cache_path/usr/local/nginx/fastcgi_cachelevels=1:2keys_zone=TEST:10minactive=5m;fastcgi_connect_timeout=300;fastcgi_send_timeout=300;fastcgi_buffer_size=64k;fastcgi_buffers464k;fastcg..
分类:其他好文   时间:2017-04-11 10:20:42    阅读次数:140
lua学习笔记13:协程具体解释和举例
一、coroutine.create创建协程 參数是协程的主函数,返回一个thread对象 co = coroutine.create(function() print("coroutine execute!") end) 二、协程状态 协程有三种状态:挂起(suspended)、执行(runnin ...
分类:其他好文   时间:2017-04-11 09:39:25    阅读次数:122
解决mac下安装pymssql问题
mac环境:10.11.6(15G31) python:2.7.10 sudo pip install pymssql 后出现下面问题: setup.py: Not using bundled FreeTDS setup.py: include_dirs = ['/usr/local/include ...
分类:数据库   时间:2017-04-11 09:33:32    阅读次数:1535
mysql主从配置
一台服务器启动多个mysql数据库安装完mysql后复制mysql数据库到当前路径并且重命名为mysql2cp-r/usr/local/mysql/usr/local/mysql2切换路径到mysql2cd/usr/local/mysql2复制my.cnf文件到mysql2下cp/etc/my.cnf/usr/local/mysql2编辑mysql2的my.cnfvim/usr/local/mysql2/my.cnf..
分类:数据库   时间:2017-04-11 01:46:25    阅读次数:212
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!