看到这个不用说就知道家目录的环境变量被删除了默认用户的环境变量存放在/etc/skel目录下[root@kaile/]#ls-la/etc/skel/总用量36drwxr-xr-x.4rootroot40963月1619:02.drwxr-xr-x.118rootroot122884月416:57..-rw-r--r--.1rootroot185月112016.bash_logout-rw-r--r--.1rootroot1..
分类:
其他好文 时间:
2017-04-12 10:12:09
阅读次数:
167
ifif就是一个条件判断的,当满足不同样的条件的时候执行不同的操作,如法如下:if<条件一>:<条件一代码块>elif<条件二>:<条件二代码块>else:<上面两个或者多个条件都不满足则只需这里的代码块>来一个小栗子:#!/use/bin/envpython#_*_coding:utf..
分类:
编程语言 时间:
2017-04-12 10:11:45
阅读次数:
251
#!/bin/bashIP="`ifconfigeth0|awk-F"[:]+"‘NR==2{print$4}‘`_$(date%F%H%M)"通过sh执行脚本正常,通过crontab计划任务调用就是空值,*/1****/bin/sh/scripts/tar.sh>/dev/null2>&1解决方法:把脚本中ifconfig改成全路径/sbin/ifconfig问题解决IP="`/sbin/ifconfiget..
分类:
系统相关 时间:
2017-04-12 10:11:33
阅读次数:
486
1.如何实现雾化 实现雾化的方式由多种,这里使用最简单的一种:线性雾化(linear fog)。在线性雾化中,某一点的雾化程度取决于它与视点之间的距离,距离越远雾化程度越高。线性雾化有起点和终点,起点表示开始雾化之处,终点表示完全雾化之处两点之间某一点的雾化程度与该点与视点的距离呈线性关系。比终点更 ...
分类:
Web程序 时间:
2017-04-12 10:09:57
阅读次数:
228
情景一、Return 在if判断结构或者其他程序结构,例如for、switch中使用。用于阻止程序往下面执行。 场景二、return 用于返回方法执行的结果 ...
分类:
编程语言 时间:
2017-04-12 10:09:34
阅读次数:
228
C++中的const关键字的用法非常灵活,而使用const将大大改善程序的健壮性,本人根据各方面查到的资料进行总结如下,期望对朋友们有所帮助。 Const 是C++中常用的类型修饰符,常类型是指使用类型修饰符const说明的类型,常类型的变量或对象的值是不能被更新的。 一、Const作用 如下表所示 ...
分类:
编程语言 时间:
2017-04-12 10:09:03
阅读次数:
259
主流开发还是使用xml来配置;使用注解配置比较快,但是不支持所有功能;有些功能还是得用配置文件; 一、基本映射语句: @Inert @Update @Delete @Select 二、结果集映射语句 项目结够: Student.java model实体类: package com.cy.model; ...
分类:
数据库 时间:
2017-04-12 10:07:44
阅读次数:
340
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace WindowsFor ...
分类:
其他好文 时间:
2017-04-12 10:06:30
阅读次数:
217
import pygameimport randomfrom pygame.locals import *import numpy as npfrom collections import dequeimport tensorflow as tf # http://blog.topspeedsnai ...
分类:
其他好文 时间:
2017-04-12 10:06:12
阅读次数:
1211
基本安装与配置 安装: 常用基本命令: 目录结构: wsgi(Python Web Server Gateway Interface)即Python服务器网关接口,是python应用与Web服务器之间的接口。 settins.py: app目录: migrations:一个数据迁移的模块,内容自动生 ...
分类:
其他好文 时间:
2017-04-12 10:05:45
阅读次数:
465
Hyperparameter Optimization In the context of machine learning, hyperparameter optimization or model selection is the problem of choosing a set of hyp ...
分类:
编程语言 时间:
2017-04-12 10:05:30
阅读次数:
285
One of the most important thing when building custom form component is adding accessbility support. The component should be focusable. we can achieve ...
分类:
数据库 时间:
2017-04-12 10:04:46
阅读次数:
207
需要注意的有两点: 1.如果直接输出,每个没选中的物体都会执行一遍命令,需要过滤只让一个物体执行命令,但是我用Validate不太管用.直接在命令里过滤 ...
分类:
编程语言 时间:
2017-04-12 10:04:33
阅读次数:
1993
SCSS nesting can produce DRYer code by targeting child elements without having to write the parent class. Nesting up to 3 levels deep can help us unde ...
分类:
Web程序 时间:
2017-04-12 10:04:14
阅读次数:
163
We'll learn how to use mouse mode in tmux, including enable mouse control for resizing, scrolling and selecting panes. We'll also set keybindings in o ...
分类:
其他好文 时间:
2017-04-12 10:03:34
阅读次数:
222
or In linux,when I update to node 7, this happened, "npm cache clean" does work. In windows, npm cache clean also generate ...
分类:
其他好文 时间:
2017-04-12 10:03:22
阅读次数:
266
首先第一步,当然去申请AK啦! 简单介绍下:百度地图Android定位SDK是为Android移动端应用提供的一套简单易用的定位服务接口,专注于为广大开发者提供最好的综合定位服务。通过使用百度定位SDK,开发者可以轻松为应用程序实现智能、精准、高效的定位功能。 相信你都会填,只不过,这里我要开始说骚 ...
分类:
其他好文 时间:
2017-04-12 10:03:03
阅读次数:
321