我们学校是大一第二学期开始允许四级考试的,还好凭借着高考120+的底子成功的脱离cet-4的追杀,483分轻松拿下~~~虽然分数不怎么高,但毕竟是我复习一个月的成果!!!紧接着又报了大二第一学期的六级考试,结果呢?呵呵......一学期没有看过英语一眼,临考前背了2周的cet6单词,报以侥幸心理去尝试了一把,结果387分,当时也觉得对自己打击有点大,但又不是特别伤心,因为毕竟自己没有付出丁点的努力...
分类:
其他 时间:
2015-05-06 19:46:04
收藏:
0 评论:
0 赞:
0 阅读:
212
一、基本概念
1、信号是软件中断。信号提供了一种异步处理事件的方法。
2、每个信号都有一个名字:这些名字都以SIG开头。
例如: SIGABRT是夭折信号,调用abort函数;SIGALRM是闹钟信号,当由alarm函数设置的计时器超时后产生此信号;
3、Linux支持31种不同的信号;但是同时支持由应用程序额外定义的信号,将其作为实时扩展。
4、头文件为:
5、不存在编号为...
分类:
其他 时间:
2015-05-06 19:45:55
收藏:
0 评论:
0 赞:
0 阅读:
201
html5 新特性
input file 中增加 multiple 属性可以选择多文件。IE9以下版本不兼容
//预览js
$("#imgsf").change(function ...
分类:
Windows开发 时间:
2015-05-06 19:45:43
收藏:
0 评论:
0 赞:
0 阅读:
349
NSPathUtilities,关于文件路径的几个常用操作,熟悉一下,拼接路径什么的,感觉还是挺好使的。
//原路径。随便在项目中添加了张图片,用于测试
NSString *strPath =[[NSBundle mainBundle] pathForResource:@"002" ofType:@"png"];
NSLog(@"path======%@", strPath);
//获取路径的...
分类:
其他 时间:
2015-05-06 19:45:35
收藏:
0 评论:
0 赞:
0 阅读:
221
第一步,设置成最适合屏幕
第二步,按住option键选 缩放
OK...
分类:
系统服务 时间:
2015-05-06 19:45:23
收藏:
0 评论:
0 赞:
0 阅读:
207
Mac外接显示器时,除非接的是Apple自家的显示器“ACD”,不然一般会遇到字体模糊发虚的问题。在终端中执行命令:
defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
可以使用1到3作为该命令的最后一个参数,表示字体平滑渲染的强度。如果要恢复默认设置:
defaults -currentHost delete...
分类:
系统服务 时间:
2015-05-06 19:45:13
收藏:
0 评论:
0 赞:
0 阅读:
450
以下是今天讲解Intent的Flag属性的列表:
FLAG_ACTIVITY_BROUGHT_TO_FRONT
FLAG_ACTIVITY_CLEAR_TOP
FLAG_ACTIVITY_NEW_TASK
FLAG_ACTIVITY_NO_ANIMATION
FLAG_ACTIVITY_NO_HISTORY
FLAG_ACTIVITY_REORDER_TO_FRONT
FLAG_ACTIVITY_S...
分类:
移动平台 时间:
2015-05-06 19:45:05
收藏:
0 评论:
0 赞:
0 阅读:
291
1.Fiddler 监视器简介
2.Fiddler 工具栏简介
3.Fiddler 请求模拟
4.Fiddler 文件代理简介...
分类:
其他 时间:
2015-05-06 19:44:53
收藏:
0 评论:
0 赞:
0 阅读:
183
1、将数据库中某列强制修改为大小写识别
比如想修改表:tb_TestTable400中的userPWD14列
ALTER TABLE tb_TestTable400
ALTER COLUMN userPWD14 nvarchar(128) COLLATE Chinese_PRC_CS_AS2、在sql语句中指定
不区分大小写:
select * from tb_TestTable400...
分类:
数据库技术 时间:
2015-05-06 19:44:34
收藏:
0 评论:
0 赞:
0 阅读:
150
结论:可以
验证demo如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms...
分类:
Windows开发 时间:
2015-05-06 19:44:23
收藏:
0 评论:
0 赞:
0 阅读:
752
使用adrci的ips打包一个incident...
分类:
数据库技术 时间:
2015-05-06 19:44:13
收藏:
0 评论:
0 赞:
0 阅读:
264
在windows xp下实现进程网络流量限速...
分类:
Windows开发 时间:
2015-05-06 19:43:53
收藏:
0 评论:
0 赞:
0 阅读:
955
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
get(key) - Get the value (will always be positive) of the key if ...
分类:
系统服务 时间:
2015-05-06 19:43:33
收藏:
0 评论:
0 赞:
0 阅读:
261
HDU 3853 LOOPS(概率dp 求期望)...
分类:
其他 时间:
2015-05-06 19:43:23
收藏:
0 评论:
0 赞:
0 阅读:
96
此将主要将leetcode中sort专题的解答都放在这里,后续会慢慢加入
一:leetcode179 Largest Number
题目:
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 3...
分类:
其他 时间:
2015-05-06 19:43:13
收藏:
0 评论:
0 赞:
0 阅读:
94
1.调用Environment.getExternalStorageState()判断手机上是否插入了SD卡,并且应用程序具有读写SD卡的权限。
Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)
返回值为true代表该应用程序具有读写SD卡的权限。
2.调用Environment的g...
分类:
移动平台 时间:
2015-05-06 19:43:03
收藏:
0 评论:
0 赞:
0 阅读:
123
说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo中会看到两个cpu。常常会让人误以为是两个单核的cpu。
原文地址: http://www.hpboys.com/659.html
一、linux CPU大小
[root@idc ~]# cat /proc/cpuinfo |gr...
分类:
系统服务 时间:
2015-05-06 19:42:59
收藏:
0 评论:
0 赞:
0 阅读:
166