package main; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.ArrayList; /** * @author 周广 * @v...
分类:
其他 时间:
2016-02-21 10:10:15
收藏:
0 评论:
0 赞:
0 阅读:
289
有时候想统计仓库的情况,比方代码量。贡献者之类的。 1 统计某人的commit数量 git log --author="$(git config --get user.name)" --oneline | wc -l 2 统计某人的代码量 git log --author="$(git config
分类:
其他 时间:
2016-02-21 10:09:35
收藏:
0 评论:
0 赞:
0 阅读:
229
经理告诉我周日加班,今天只有我来了! 像往常一样,我九点到达公司,等待上班,结果半个小时过去了,除了我一个人敲键盘外,没有任何人! 连一只苍蝇都没有飞过去。 聊聊天,写个文章! 今天的工作任务是编写静态的网页,我写的网页经过经理严格审批,有三个问题: 第一,代码冗余,以至于占用内存 解决办法,标签里
分类:
其他 时间:
2016-02-21 10:08:34
收藏:
0 评论:
0 赞:
0 阅读:
177
6. 数值和数学库本库主要提供了数值和数学相关的函数处理以及数据类型。numbers模块定义了抽象的数值类型,math和cmath模块主要包括不同的数学函数,比如用来计算浮点数和复数。decimal模块支持十进制数值表示,可以用任何精度进行运算。6.1 numbers--数值抽象基类本模块主要按文档(PEP 3141)定义了数值抽象基类。class numbers.Number 数值类的基类,如果...
分类:
其他 时间:
2016-02-21 09:05:18
收藏:
0 评论:
0 赞:
0 阅读:
269
BroadcastReceiver 用于接收程序(包含用户开放的程序和系统内建程序)所发出的Broadcast intent 耗电量开机启动窃取别人短信窃取别人电话 开发: 创建须要启动的BroadcastReceiver(包含启动的Intent系统已经创建的) 继承BroadcastReceive
分类:
其他 时间:
2016-02-21 09:04:37
收藏:
0 评论:
0 赞:
0 阅读:
192
//加载根视图的方法,我们通常在这个方法中,指定根视图为我们想要的某个视图//在加载方法中,不能使用self.view这个getter方法获取根视图,因为此时视图正在加载,并没有真实存在。- (void)loadView { //创建loginView _loginView = [[LoginVie
分类:
其他 时间:
2016-02-21 09:04:16
收藏:
0 评论:
0 赞:
0 阅读:
162
Junit4最大的亮点就是引入了注解(annotation),通过解析注解就可以为测试提供相应的信息,抛弃junit3使用命名约束以及反射机制的方法。 /** * 被测试类 */ package com.stock.finance.service; import java.util.List; im
分类:
其他 时间:
2016-02-21 09:04:07
收藏:
0 评论:
0 赞:
0 阅读:
186
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWi
分类:
其他 时间:
2016-02-21 09:03:57
收藏:
0 评论:
0 赞:
0 阅读:
156
//创建一个UIButton对象,UIButton侧重于交互,响应事件 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; //设置frame、 button.frame = CGRectMake(100, 300, 20
分类:
其他 时间:
2016-02-21 09:03:46
收藏:
0 评论:
0 赞:
0 阅读:
167
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //创建一个新的窗口对象,并且和屏幕大小一样 self.window = [[
分类:
其他 时间:
2016-02-21 09:03:36
收藏:
0 评论:
0 赞:
0 阅读:
225
#import "ViewController.h"#define ID @"reuse"#import "MyCollectionViewCell.h"#import "MyCollectionReusableView.h"#define kWidth self.view.frame.size.w
分类:
其他 时间:
2016-02-21 09:03:16
收藏:
0 评论:
0 赞:
0 阅读:
279
#import "AppDelegate.h"#import "FirstViewController.h"#import "SecondViewController.h"#import "ThirdViewController.h"#import "FourthViewController.h"@
分类:
其他 时间:
2016-02-21 09:03:06
收藏:
0 评论:
0 赞:
0 阅读:
151
题目链接: http://www.lydsy.com/JudgeOnline/problem.php?id=3240 3240: [Noi2013]矩阵游戏 Time Limit: 10 Sec Memory Limit: 256 MB Submit: 317 Solved: 152 [Submit
分类:
其他 时间:
2016-02-21 09:02:55
收藏:
0 评论:
0 赞:
0 阅读:
235
- (void)viewDidLoad { [super viewDidLoad]; UIImageView *imageView = [[[UIImageView alloc] initWithFrame:CGRectMake(50, 50, 275, 500)] autorelease]; im
分类:
其他 时间:
2016-02-21 09:02:15
收藏:
0 评论:
0 赞:
0 阅读:
94
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWi
分类:
其他 时间:
2016-02-21 09:01:55
收藏:
0 评论:
0 赞:
0 阅读:
150
接触一个行业,前期最好来一个系统的学习,有完整的框架一点一点的把基础吃透,不能左一耙子,右一锄头。以我的从业经验给大家分享怎样系统的学习编程开发,刚入坑的程序猿菜鸟注意了,迅速占据高地。迅速收藏了。 整体大致分为下面几类: A.教材上的知识 这部分内容来自计算机专业的课程教材。也有可能会涉及一部分来
分类:
其他 时间:
2016-02-21 09:01:45
收藏:
0 评论:
0 赞:
0 阅读:
119
【版权声明:转载请保留出处:blog.csdn.net/gentleliu。Mail:shallnew at 163 dot com】 上一节我们把规则单独提取出来,方便了Makefile的维护,每一个模块仅仅须要给出关于自己的一些变量,然后再使用统一的规则Makefile。这一节我们继续改进我们的
分类:
其他 时间:
2016-02-21 09:01:24
收藏:
0 评论:
0 赞:
0 阅读:
111
#import "LoginViewController.h"@interface LoginViewController ()@end@implementation LoginViewController- (IBAction)click:(id)sender { [self dismissVie
分类:
其他 时间:
2016-02-21 09:00:54
收藏:
0 评论:
0 赞:
0 阅读:
160
#import "RootViewController.h"#import "SecondViewController.h"@interface RootViewController ()- (IBAction)refist:(id)sender;@property (strong, nonatom
分类:
其他 时间:
2016-02-21 09:00:23
收藏:
0 评论:
0 赞:
0 阅读:
129
近期。给即将毕业的大学生做简历指导。学生提交的简历“五花八门、重点不突出、优势不突出、忽略细节”。交流中,发现非常多学生感到迷惘,无从下手。于是从网上下载模板做更改。最后往往千篇一律。甚至也有非常多学生觉得,找工作仅仅须要制作简历就好了,对于求职信全然没概念。 毕业找工作前后,须要做各种求职材料准备
分类:
其他 时间:
2016-02-21 09:00:13
收藏:
0 评论:
0 赞:
0 阅读:
244