lightLinux
码龄16年
关注
提问 私信
  • 博客:31,374
    社区:483
    31,857
    总访问量
  • 20
    原创
  • 1,639,109
    排名
  • 1
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:广东省
  • 加入CSDN时间: 2008-08-18
博客简介:

lightLinux的专栏

查看详细资料
个人成就
  • 获得1次点赞
  • 内容获得4次评论
  • 获得4次收藏
创作历程
  • 3篇
    2016年
  • 10篇
    2015年
  • 4篇
    2014年
  • 2篇
    2012年
  • 11篇
    2009年
TA的专栏
  • .net
  • C++
    7篇
  • 闲情逸致
    2篇
  • linux
    4篇
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

docker配置

1.先接入daocloud   在虚拟机上执行:   curl -sSL https://get.daocloud.io/daomonit/install.sh | sh -s a82dcdd62d3d1b452b49c2664334b05119c3e2a9   该命令实在daocloud的启动加速器上,配置集群信息中获取。   执行完成后,就可以在daocloud的集群管理中看到
原创
发布博客 2016.04.10 ·
662 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

docker学习

https://github.com/DaoCloud/help.daocloud.io/blob/master/src/tutorials/README.md
原创
发布博客 2016.04.05 ·
371 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ubuntu安装docker失败,提示404

现象:root@ubuntu:~# apt-get install -y docker.ioReading package lists... DoneBuilding dependency tree       Reading state information... DoneThe following extra packages will be installed: 
原创
发布博客 2016.04.03 ·
4497 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

android程序入门

访问google网站的方法: http://blog.csdn.net/gao_chun/article/details/37971461
转载
发布博客 2015.06.28 ·
602 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

聊天

梁月明梁晖梁军赵素琴
原创
发布博客 2015.05.01 ·
2785 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

技巧

cron计划任务模块的使用tasks:- cron: name="check dirs" hour="5,2" job="ls -alh > /dev/null"- name: create {{ user }} on web                               user: name="{{ user }}"执行可选择的tagansible-play
原创
发布博客 2015.04.12 ·
432 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数字转换为罗马数字

Integer to Romanhttps://leetcode.com/problems/integer-to-roman/Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.#includ
原创
发布博客 2015.03.21 ·
552 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

sort排序

要使用此函数只需用#include sort即可使用,语法描述为:sort(begin,end),表示一个范围,例如:int _tmain(int argc, _TCHAR* argv[]){ int a[20]={2,4,1,23,5,76,0,43,24,65},i; for(i=0;i  cout sort(a,a+20); for(i=0;
转载
发布博客 2015.03.15 ·
394 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

对vector成员进行排序

对vector成员进行排序#include "stdafx.h"#include "vector"#include  using namespace std;class TappD{public:unsigned int appid;unsigned int d;unsigned int D;public:TappD(unsign
原创
发布博客 2015.03.15 ·
970 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数组反转试题解答

题目:Rotate an array of n elements to the right by k steps.For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4].Note:Try to come up as many solutions as
原创
发布博客 2015.02.26 ·
574 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

使用map后,屏蔽warning 4786

问题:编译时,总是报告警4786。是因为使用了map的stl方法。无影响可以屏蔽D:\prg test\helloworld\helloworld.cpp(44) : warning C4786: 'std::reverse_bidirectional_iterator,std::map,std::allocator >::_Kfn,std::less,std::allocator >::
转载
发布博客 2015.02.26 ·
815 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

查找试题--map方法应用

题目:Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2解答:#include "stdafx.h"#include "map"#include "st
原创
发布博客 2015.02.26 ·
486 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

查找试题--互换函数swap初试

题目:Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2 试题解答:#include "stdafx.h"#include "map"#include
原创
发布博客 2015.02.26 ·
559 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

jdbc

jdbc相关的链接http://blog.csdn.net/a19881029/article/details/37557925
原创
发布博客 2014.09.28 ·
314 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ACCESS数据库浏览器

发布资源 2014.09.21 ·
rar

如何通过ping识别操作系统

TLL=32——WIN98TLL=64——LINUX2.2.X/2.4.XTLL=128——WIN NT/2000/XPTLL=255——UNIX/BSDPS:以上TLL值均为近似值,因为数据包在传输过程中每经过一个路由TLL值就会减1,可以通过TRACETT命令获得与远程主机间存在的路由个数,精确TLL值
转载
发布博客 2014.09.11 ·
2594 阅读 ·
1 点赞 ·
3 评论 ·
2 收藏

设置屏幕颜色

设置方法:桌面空白处右键,属性,外观-高级,然后在项目那栏选窗口,再点颜色-其它,然后把色调设为85(默认是160),饱和度设为90(默认是0),亮度设为205(默认是240), 然后单击 添加到自定义颜色,按“OK”...一直OK。 把窗口设成绿色之后,再来把IE的网页背景也变成养眼的绿色吧:打开IE,点击工具,点INTERNET选项,点右下角的 辅助功能,然后勾选 不使用网页
转载
发布博客 2014.09.11 ·
915 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

linux下inode深入浅出

一、inode是什么?理解inode,要从文件储存说起。文件储存在硬盘上,硬盘的最小存储单位叫做"扇区"(Sector)。每个扇区储存512字节(相当于0.5KB)。 操作系统读取硬盘的时候,不会一个个扇区地读取,这样效率太低,而是一次性连续读取多个扇区,即一次性读取一个"块"(block)。这种由多个扇区组成的"块",是文件存取的最小单位。"块"的大小,最常见的是
转载
发布博客 2014.09.11 ·
756 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

VLOOKUP函数用法详解、注意事项、错误值处理

一、用法详解。在表格或数值数组的首列查找指定的数值,并由此返回表格或数组中该数值所在行中指定列处的数值。这里所说的“数组”,可以理解为表格中的一个区域。数组的列序号:数组的“首列”,就是这个区域的第一纵列,此列右边依次为第2列、3列……。假定某数组区域为B2:E10,那么,B2:B10为第1列、C2:C10为第2列……。语法:VLOOKUP(查找值,区域,列序号,逻辑值)“查找
转载
发布博客 2012.09.09 ·
2787 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

EXCEL常用函数详解

1、ABS函数  函数名称:ABS  主要功能:求出相应数字的绝对值。  使用格式:ABS(number)  参数说明:number代表需要求绝对值的数值或引用的单元格。  应用举例:如果在B2单元格中输入公式:=ABS(A2),则在A2单元格中无论输入正数(如100)还是负数(如-100),B2中均显示出正数(如100)。  特别提醒:如果number参数不是数值,而是一
转载
发布博客 2012.09.09 ·
2689 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏
加载更多