sysctl.confHome / Tutorials / Linux / sysctl.confUbuntu server out of box is not optimized to make full use of available hardware.This means “out-of-b...
分类:
其他好文 时间:
2015-06-23 19:53:00
阅读次数:
155
Just edit this file: /Application/PhpStorm.app/Contents/Info.plist On this line, change to use JVM 1.8. ?87?????? <key>JVMVersion</key>????????????????????????????...
分类:
编程语言 时间:
2015-06-23 18:25:11
阅读次数:
111
ifcfg-eth0在/etc/sysconfig/network-scripts下,其配置如下:DEVICE=物理设备名IPADDR=IP地址NETMASK=掩码值NETWORK=网络地址BROADCAST=广播地址GATEWAY=网关地址ONBOOT=[yes|no](引导时是否激活设备)USE...
分类:
系统相关 时间:
2015-06-23 17:08:49
阅读次数:
209
mysqladmin-urootpassword‘123‘
[root@localhost~]#mysqladmin-urootpassword‘123456‘#明文设置密码
[root@localhost~]#mysql-uroot–p#密文设置密码
设置密码
mysql-uroot-p-hlocalhost
本地登录数据库-h
showdatabases;
查看数据库
showtables;
查看数据表;
use库名;
切换?.
分类:
数据库 时间:
2015-06-23 15:58:04
阅读次数:
129
Git - How to use netrc file on windows - Stack Overflow这就是正确答案,我们已经验证过了,以下具体描写叙述一下解决方法:1. 在Windows中加入一个HOME环境变量,值为%USERPROFILE%,例如以下图:2. 在“開始》执行”中打开%H...
查看数据库->show databases;建数据库->create database 数据库名;建表->use 数据库名;->create table 表名(字段);查看所有表->show tables;查看表信息->desc 表名;删除表->drop database 数据库名; 1 mysql...
分类:
数据库 时间:
2015-06-23 14:56:59
阅读次数:
156
插入 insert
MongoDB中文档的数据结构和JSON基本一样。所有存储在集合中的数据都是BSON格式。BSON是一种类json的一种二进制形式的存储格式,简称Binary JSON。
首先我们先选择数据库
> use NewsDB
switched to db NewsDB
>
下面我们先定义一个文档
> document = ({"name":"jingdong","a...
分类:
数据库 时间:
2015-06-23 13:43:12
阅读次数:
376
<script?type="text/javascript">
????Wind.use(‘validate‘,?‘ajaxForm‘,?‘artDialog‘,?function?()?{
????????var?form?=?$(‘form.J_ajaxForms‘);
????????//ie处理placeholder提...
分类:
Web程序 时间:
2015-06-23 12:04:35
阅读次数:
213
Fortran函数的调用标准在编译时使用iface声明,如iface:default,表示采用的是default标准。
fortran的调用标准有
[1] default: Tells the compiler to use the default calling conventions.
[2] cref: Tells the compiler to use cal...
分类:
其他好文 时间:
2015-06-23 11:54:58
阅读次数:
155
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo...