systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分,像需要开机不登陆就能运行的程序,还是存在系统服务里吧,即:/usr/lib/systemd/system目录下 每一个服务以.service结尾,一般会分为3部分:[Unit]、[Serv ...
分类:
其他好文 时间:
2017-05-06 16:35:10
阅读次数:
151
今天在写代码的时候,碰到这麽一个问题: invalid nib registered for identifier (重用符) - nib must contain exactly one top level object which must be a UITableViewCell instan ...
分类:
移动开发 时间:
2017-05-06 16:35:04
阅读次数:
202
镇场诗: 清心感悟智慧语,不着世间名与利。学水处下纳百川,舍尽贡高我慢意。 学有小成返哺根,愿铸一良心博客。诚心于此写经验,愿见文者得启发。——————————————————————————————————————————code: result: ———————————————————————— ...
分类:
编程语言 时间:
2017-05-06 16:34:57
阅读次数:
196
使用chbtn的API,可以语音提醒。 使用时直接 javac Price.java java Price ...
分类:
系统相关 时间:
2017-05-06 16:34:51
阅读次数:
201
镇场诗: 清心感悟智慧语,不着世间名与利。学水处下纳百川,舍尽贡高我慢意。 学有小成返哺根,愿铸一良心博客。诚心于此写经验,愿见文者得启发。——————————————————————————————————————————code: result: 初始状态, 点击超链接后的效果展示, ————— ...
分类:
编程语言 时间:
2017-05-06 16:34:43
阅读次数:
216
作为一个oier,以及大学acm党背包是必不可少的一部分。好久没做背包类动规了。久违地练习下-。- dd__engi的背包九讲:http://love-oriented.com/pack/ 鸣谢http://blog.csdn.net/eagle_or_snail/article/details/5 ...
分类:
其他好文 时间:
2017-05-06 16:34:19
阅读次数:
161
介绍在CentOS7上yum安装数据库服务器MySQL Community Server 5.7的方法。 准备 CentOS7默认安装了和MySQL有兼容性的MariaDB数据库,在我们安装MySQL5.7之前为了避免发生冲突首先删除MariaDB。 添加MySQL的yum源 在CentOS7上yu ...
分类:
数据库 时间:
2017-05-06 16:34:11
阅读次数:
162
/// /// 获取DbContext中已注册的实体类型 /// /// DbContext上下文类型 /// 实体所在程序集 /// public IEnumerable GetEntityTypes(Assembly ass) where T : DbContext, new... ...
分类:
数据库 时间:
2017-05-06 16:34:01
阅读次数:
331
该题是用回溯法来解决的题: 题目: Seeding Time Limit: 2 Seconds Memory Limit: 65536 KB It is spring time and farmers have to plant seeds in the field. Tom has a nice ...
分类:
编程语言 时间:
2017-05-06 16:33:55
阅读次数:
165
program description 有一头母牛,它每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛? input 输入数据由多个测试实例组成,每个测试实例占一行,包括一个整数n(0<n<55),n的含义如题目中描述。n=0表示输入 ...
分类:
其他好文 时间:
2017-05-06 16:33:46
阅读次数:
110
欧拉函数的定义:euler(k)=([1,n-1]中与n互质的整数个数). eg:euler(8)=4。由于1,3,5,7均和8互质。 能够推出下面公式: euler(k)=(p1-1)(p2-1)……(pi-1)*(p1^(a1-1))(p2^(a2-1))……(pi^(ai-1)) =k*(p1 ...
分类:
其他好文 时间:
2017-05-06 16:33:36
阅读次数:
129
5709 01背包 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 5709 01背包 5709 01背包 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Go ...
分类:
其他好文 时间:
2017-05-06 16:33:29
阅读次数:
109
上题: 最简单粗暴的方法: 1 public class Solution { 2 public int lengthOfLongestSubstring(String s) { 3 String s1=new String(); 4 char[] c=s.toCharArray(); 5 int ...
分类:
编程语言 时间:
2017-05-06 16:33:21
阅读次数:
156
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirro ...
分类:
其他好文 时间:
2017-05-06 16:33:14
阅读次数:
124
题目: Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set m ...
分类:
编程语言 时间:
2017-05-06 16:33:05
阅读次数:
148
一、面向对象入门 概述 面向过程:根据业务逻辑从上到下写垒代码 函数式:将某功能代码封装到函数中,日后便无需重复编写,仅调用函数即可 面向对象:对函数进行分类和封装,让开发“更快更好更强...” 面向对象初识 创建类和对象 面向对象编程是一种编程方式,此编程方式的落地需要使用 “类” 和 “对象” ...
分类:
编程语言 时间:
2017-05-06 16:32:58
阅读次数:
219
MVC:Model-View-Controller,将数据和显示形式分离。 Model:能够看做是三层中的D层+B层,实现业务逻辑和与数据库的交互。 View:看做是U层,用来显示数据。 Controller:用来调节M和V,决定调用哪个Model处理数据,载入那个视图显示数据。 那么这三层究竟是怎 ...
分类:
Web程序 时间:
2017-05-06 16:32:51
阅读次数:
181