c******e 发帖数: 263 | 1 http://www.facebook.com/Xtrema.Taiwan/posts/292653870800862
Enamel is actually a fused glass surface. Le Creuset and Chantal are two
quality enamel brands. With proper care, a fine enamel pot lasts a lifetime,
whereas inexpensive enamel cookware from variety stores has such a thin
enamel layer that it chips easily and is not worth its purchase price. Once
chipped, discard enamel kitchenware or enamel fragments will find their way
into your food and the underlying metal will react with food. If i... 阅读全帖 |
|
j*********r 发帖数: 24733 | 2 I don't think so, my HDD is just fragmented before test. You can looked at
Amazon frequently for a used MS2. I got mine at $106 shipped, not bad, but
do not see significant improvement over X-FI HD. I think Dota is right.
上, |
|
S**C 发帖数: 2964 | 3 Well, REIT is high correlated with Mid-cap.
05/22/1998 - 04/30/2015 based on daily returns, VGSIX and VIMSX have 71%
correlation, and their return is about the same, 9% annualized.
Since 01/01/2002, their correlation is 77%. VGSIX perform better by 0.35%
annualized than VIMSX, with 40% higher SD, not an attractive trade-off. From
diversification point of view, REIT hardly provide much protection because
its correlation with midcap.
The good thing I can say about housing is it is local and very ... 阅读全帖 |
|
s*****n 发帖数: 956 | 4 我觉得如果是2 的 power的话寻址快点。
而且可能fragmentation会少点。 比如搬家,如果箱子大小都比较统一,码起来就比较
方便。 |
|
z***e 发帖数: 5393 | 5 If you know the implementing for net buffer list (either for linux/bsd or
windows), it's an easy question and you can show off your understanding for
network protocol implementing details---- but it seems you don't.
Passing data for network packets is ususally done using a list of buffers (
considering fragmentation). Check NetBufferList on MSDN.
packet |
|
z***e 发帖数: 5393 | 6 NBL is not just for fragmentation and MTU purpose.
anyway, if you don't know what the interviewer is asking, then ask him. DON'
T answer unless you know what the interviewer is aksing. It's OK to take 10
mins to figure out what he is asking (this is very important and indicate if
you can be a good co-worker) than spending 1 mins to "guess" what he is
asking and 9 mins to give an inaccurate answer. |
|
d***8 发帖数: 1552 | 7 Implement a program in C/C++ to serialize one or more link lists in the
file on disk which will let user perform following operations through
command line:
- Add a new list
- Display a given list
- Add a node to any given list
- Remove a node from a list
- Remove a list
- Exit program
Additional requirements:
- Provide optimal solution. Always read and update the file as and when
necessary, to avoid in-memory foot print.
- Nodes can be added in between any of the link lists, keep the link
lists ... 阅读全帖 |
|
g*********s 发帖数: 1782 | 8 if the question is just "avoid copying in growth", w/ any other expense
allowed, yes this works.
but w/ this scheme, obviously any vector variable would need more bytes
because of the index array. also memory fragmentation is worse.
and how about erase()?
anyway, this might be an open-end question and the interviewer just
wants to hear ur thoughts and ideas.
list of
which
find
done in
addresses of |
|
y*********e 发帖数: 518 | 9 I just provided a direction of thought. The solution can be further improved
to provide erase function as well as avoiding memory fragmentation.
A simple enhancement is that storage array size could be dynamic. Well, I agree
with you that depending on the situation and requirement, this is an
open-ended question. The interviewer is concerned about the approach that
the candidate takes. |
|
h*****g 发帖数: 312 | 10 template R function(N value);
Given the function template in the code sample above, which one of the
following code fragments correctly calls this function from your code?
A.
double d = 6.9;
int i = function(d);
B.
double d = 6.9;
int i = function<>(d);
C.
int i = 5;
double d = templatefunction(i);
D.
double d = 6.9;
int i = function(d);
E.
int i = 5;
double d = function(i);
a和d 感觉都对呀? |
|
c********1 发帖数: 161 | 11 我是这周三面试的,周四回来歇了两天,压跟就没有心情来版上询问。我总共面了6个
人,5个
leader(真的各个title都是leader or senior leader,我就纳闷,M家木有engineer
吗?)和一
个PM。 问题比较简单,
实现strcmp,
实现malloc and free,讨论memory leak怎么解决,以及memory fragment问题
pointer问题(这个问的很杂,比如什么指针存的是一个已经out of scope的address之
后会发生
什么之类的,具体记不清楚了)
multi-processor相关问题,比如multi-processor的机器实现lock要怎么做,我好像说
了memory
bus之类的,中断这时候不起作用了。
Open question(这个问题我用数学模型解释,以至于面我的人以为我是Math的。。。
。。。。。
)
reverse string(我被问到时很无语,面试官貌似对我的回答也很无语。。。。。。。
因为我说
这道题太简单了,能不能换个难点的,他还是让我写,写完他看完就没说啥了。。。。
。我非常
无语)
第四... 阅读全帖 |
|
c********1 发帖数: 161 | 12 我是MS,就是问怎么实现malloc和free,在讨论这个问题的时候,说如果malloc和
free的操作不当,可能造成memory leak,任何就讨论memory leak了,malloc 是还有
一个fragment的问题,也说了怎么解决。 |
|
x***i 发帖数: 64 | 13 之前的一个startup onsite
1. given curtain types of structure and their sizes, how to design malloc
and free. 随着问了许多问题,how to reduce fragmentation, how to track
available list in malloc. in free, how to find the position of the given
pointer and what should be done in free.
2. 扔个我memcached source code, ask to add a new function 'mult' similar to
'incr'
-------------------
1. 我的整个思路就是linux memory function - kmalloc_cache_.... 因为记不太清,
许多也就临时想些make sence的方法, 没有遇到特别拐弯抹角的问题
2. memcached我只是知道,没有用过,更不用说sour... 阅读全帖 |
|
i****1 发帖数: 445 | 14 我的感觉是:
1. circular link list不需要额外的data structure,直接在block的前面留两个byte
or word表示状态,即可。而且是直接访问,不想tree,那样间接访问。
2. 当需要merge/de-fragmentation时,link list就很方便了直接merge毫无压力,O(1)
时间。但是tree就不一样了,tree要满足bst的性质,旋转子树是在所难免的。
当然通常的search for a proper size block,link list需要O(N)时间,而tree则只需
要O(logn).但是实际系统应该是用一个额外的list来链接free block的。
tree |
|
n*****o 发帖数: 849 | 15 我能想到两个,不知道对不对
page allocation (e.g., fragment management)
page replacement (e.g., LRU) |
|
l********n 发帖数: 1038 | 16 Implement a class with have two basic member functions: memAlloc, memDealloc,
The class uses these two functions to manage 512M memory.
Please consider:
1)How to avoid memory fragment;
2)How to support multi-Thread;
3)How to test it. |
|
n****e 发帖数: 678 | 17 我觉得这个和blockingqueue很像
blockingqueue就是support多thread的put和take
这里的put是memAlloc, memDealloc 是take
avoid memory fragment就用circular buffer
support multi-thread用reentrantlock 和condition
test it 就是用写几个function call,先memAlloc再memDealloc,测试一下就可以了。
memDealloc, |
|
g*********e 发帖数: 14401 | 18 requestPage就是当前的free block都不够大了,再request一个新的。
不过如果malloc要求的空间大于1k,就挺难弄的。
这题还可以继续考free block如何管理,从而使得fragmentation尽量减少,以及free
的内存如何粘贴到已有的block里。问这种题的人脑子都不好使,铁了心搞你。 |
|
d******8 发帖数: 148 | 19 第二题其实就是自己写个malloc
如果要free的话:
1. 如果每次都申请固定大小的内存空间,用一个free list就好
2. 如果每次alloc的空间不固定,每次alloc的空间开头需要存该区域的大小,然后需
要维护内存fragment
另外,设计malloc的时候,考虑到多线程的问题,可以扯扯锁以及atomic operation |
|
o********t 发帖数: 1655 | 20 HR 通知说昨天寄出去了今天寄到。用的Fragment,和H4一起申的 |
|
R*******y 发帖数: 86 | 21 银行part-time机会,长期职位。收简历收不到同胞的,这里发一下。
银行有政策,必须绿卡或者公民。站内联系,非诚勿扰。
工作地点:IL Burr Ridge
时间:Three days a week in office
Data Analyst Student Intern - Part Time
Job Type: Part-Time
Location: Burr Ridge
Date Updated: February 10, 2015
Job Level: Entry Level (less than 2 years)
Years of Experience: 0-1 Years
Level of Education: Junior in college
Starting Date: ASAP
Job Description
As a data analyst student intern, you will be able to participate in our
rapid market place growth and the development ... 阅读全帖 |
|
L***s 发帖数: 1148 | 22 object models, metaclass, decorators, enhanced generators / coroutines
threading models, GIL, asyncio & alternative async libs like gevent/twisted
writing C/C++ extensions
writing 2/3 compatible Python code
(for web developers) familiar with django, flask, twisted or tornado
implementation of dict, OrderedDict, deque, etc. in CPython & implications
memory management & fragmentation prevention in CPython
PVM internals and optimization, opcodes and AST hacking
alternative implementations like PyPy... 阅读全帖 |
|
c***3 发帖数: 27 | 23 刚面完, 问题如下
1. A bag contains 40 balls, each of which is black or gold. A person reaches
into the bag and randomly removes two balls. Each ball in the bag is
equally likely to be removed. If the probability that two gold balls are
removed is 5/12, how many of the 40 balls are gold?
2. Player A and Player B will play 6 games of table tennis. Each is equally
likely to win any given game.
The probability that each of them will win 3 games out of 6 is 5/16.
What is the probability that Player A will w... 阅读全帖 |
|
h*********r 发帖数: 210 | 24 公司:Huami华米科技(小米生态链,负责可穿戴设备)
地点:湾区 Mountain view
联系方式:[email protected]
/* */
Job Position: Sr. Android Developer - Contract or Intern
Term: 3 month contract (extendable)
We are looking to hire a Sr. Android Mobile Application Developer to join
health care team at Huami, Inc. This is a 3 month contract to start. We are
looking for motivated and experienced engineers to develop the Android app
to put technology to use in exciting new ways.
Responsibilities:
1. Collaborate closely with the... 阅读全帖 |
|
b********w 发帖数: 110 | 25 问问HR有没有aws的核心组,Echo也可以。你提供的这些组,觉得都很一般。。。
建议不去TRMS,这个组很老了,很多去了一年的都跑了,亚麻好多组的机器学习都比他
们好点啊,技术和工具都新一点。
Customer Experience 但是其实是full fillment, 但是AWS什么都没提,如果技术
stack上还是legacy的也不用去了
TAM 这种支持seller的,也不用去了,因为亚麻用户体验好,都是对消费者的。seller
的系统一直很烂
International Retail 我觉得也不用去了,重复的东西往其他国家推推,根据国情打
打patch还好,万一有些国家市场特别fragmented, 要写很多customize的东西,。 以
上这些组,去做的东西感觉都没有什么visibility,听着都没劲
Community Shopping 听起来很不错,但是我看到了community platform组,这是我在
亚麻呆的第一个组,不过现在之前的coworker 也都走光了。我们当时一部分工作是支
持retail的review,我还做了一阵子spam filterin... 阅读全帖 |
|
h****6 发帖数: 42 | 26 Life Technologies is an industry leader in genetic analysis systems, and is
an integral part of today's genetic research, drug discovery, medical
diagnostics, and forensic applications. The successful candidate will be an
integral member of the Genetic Analyzer Software Development Team. They will
maintain current and develop new signal processing and other algorithms for
both sequencing and fragment analysis supporting the company's Genetic
Analyzer systems. The position involves analyzing larg |
|
发帖数: 1 | 27 Job Title: Marketing Assistant
Location: Monmouth Junction, NJ
Job Type: Part-time (with the possibility of transitioning to full-time
status after 6 months of successful employment, with company visa
sponsorship)
Hours: 15-30 hours/week
Job Responsibilities:
• Work closely with our business development managers to
facilitate forward movement of marketing projects and campaign strategies
• Assist in organizing webinars, campaigns/conferences and trade
shows
• Perform... 阅读全帖 |
|
t*****e 发帖数: 3544 | 28 中产定义来了:household $25,000 - $100,000/年税前。
The term middle class in more colloquial language use may refer to all those
individuals who might at one point or another be identified as middle class
, as they occupy neither extreme of the socio-economic strata. Most of those
with households income between $40,000 and $95,000 identify as "middle
class". The term can also be used to describe those at the actual center of
the income strata, who may also be referred to as the middle-middle class.
There a... 阅读全帖 |
|
a********e 发帖数: 3771 | 29 I suggest you use disposable CL. It's healthier and safer. For the fragment
of the lens, it is possible to be related with the improper fitting and your
improper wearing. Also please examine the ocular surface again, and clean the eye well.
For weekly disposable lens, you have to change for a new lens every week, at
least no longer than 10 days if carefully cared. |
|
c**i 发帖数: 6973 | 30 BBC Chinese, Jan 12, 2011.
http://www.bbc.co.uk/zhongwen
/simp/world/2011/01/110112_dna_test.shtml
My comment: The report is based on
Chiu RWK et al, Non-invasive prenatal assessment of trisomy 21 by
multiplexed maternal plasma DNA sequencing: large scale validity study.
British Medical Journal, 342: c7401 (2011).
http://www.bmj.com/content/342/bmj.c7401
(a) Quote from FULL TEXT (which is available free online by clicking the
button in the upper left corner of the web page):
"Cell-free DNA from... 阅读全帖 |
|
S*****a 发帖数: 142 | 31 觉得这两年真是很惨
去年夏天打网球的时候,竟然把膝盖的十字韧带扭断了,当时就无法行走了,只要使劲
就‘塌’了。马上去emergence,被告知骨头没问题。去看specialist,结果两周才排
上,期间腿在immobilizer 里固定,肌肉都萎缩了。好不容易看上医生,说acl断了,
其它没什么事,一周后手术。在手术前的一周拼命练range of motion和strength,可是
没有恢复到较好的程度,现在想想应该多恢复一下再手术,那样效果会好一些。唉,还
应该去找个second opinion,我那个医生真是二。
后来手术了,surgery report 上说干了三件事:
1. acl重建 using hamstring tendon
2. 切除medial plica
3. shave了一下后半月板,因为发现一点小伤
然后就pt什么的,要说有什么不正常那就是大概2,3周的时候腿伸直时膝盖骨会突然
shift一下,reflexion三个月时候140,也能伸直,就是没有以前的hyperextension了。
四个月的时候开始light jump,没什么大问题,就是膝盖在腿就快伸... 阅读全帖 |
|
|
g********x 发帖数: 4671 | 33 直接上template:
....................../′ˉ/)
....................,/ˉ../
.................../..../
............./′ˉ/'...'/′ˉˉ`·
........../'/.../..../......./¨ˉ\
........('(...′...′.... ˉ~/'...'\
.........\.................'...../
..........''...\.......... _.·′
............\..............(
..............\.............\...
to you and your Nigerian son.
Mr. Spammer, you swine. You vulgar little maggot. You worthless bag of
filth. As they say in Texas. I'll bet you couldn't pour piss out of a boot
with... 阅读全帖 |
|
z****l 发帖数: 5282 | 34 ☆─────────────────────────────────────☆
tangli411 (糖炒栗子) 于 (Thu Mar 22 12:12:30 2012, 美东) 提到:
大家好,我遇到了一个古怪的事情,不知道我这样做是否合法?请教大家的意见
事情是这样的,我在craigslist上卖二手的护肤品,因为就一百块钱,我是要求现金交
易的。有个人要买,最开始的时候,她说现在在加州,马上搬到我的城市来,她现在可
以给我a certified check。并付我额外的$20,目的是要我从craigslist上把我发的帖
子撤了并保证我的东西一定要给她留着,她会让她的mover来取东西并给我支票。我觉
着也可以接受就同意了。
今天,她跟我说,她的秘书已经把Cashier check 寄出来了,但是是和她以前拖欠的搬
家费开在一张支票上,一共$1985,因为mover说如果不一次付清就不能上门pickup。她
要我收到这个支票以后把卖东西的钱取出来以后,用西联汇款把剩下的钱给她的mover
,这样她的mover就可以pickup我卖的东西给她。
我家LD说有点古怪,怕是洗... 阅读全帖 |
|
M********t 发帖数: 1718 | 35 二、理论学习
看书之后发现了之前的几个重要误区。
sleep training和cry it out是完全不同的两个概念。四个月正是小人开始形成规律睡
眠的时候。闺女越来越利害的哭闹其实是overtired的表现。而训练的核心应该是让小
人可以在(1)正确的时间(2)自己睡一个(3)有长度(4)有质量的整觉。总结起来
就是right timing,self soothing,sleep duration and sleep consolidation。Cry
it out是解决self soothing的有效方法。但是更重要的,也是我们一开始没做到的,
是知道小人应该睡多少,应该什么时候睡,她的drowsy signs是什么,什么时候她已经
overtired了。
overtired是个很重要的问题。一旦过度疲劳,小人就会分泌激素自我激励,看起来可
能反而更精神了,但是会有如脾气暴躁(irritable)、注意力下降、凶(aggressive)
,爱哭闹等诸般恶行。更重要的是,长此以往,fatigue可以积累,会有种种长期不良
影响。训练的第一步就是按照时间表,让小人充分休息,slee... 阅读全帖 |
|
c**i 发帖数: 6973 | 36 BBC Chinese, Jan 12, 2011.
http://www.bbc.co.uk/zhongwen/simp/
world/2011/01/110112_dna_test.shtml
My comment: The report is based on
Chiu RWK et al, Non-invasive prenatal assessment of trisomy 21 by
multiplexed maternal plasma DNA sequencing: large scale validity study.
British Medical Journal, 342: c7401 (2011).
http://www.bmj.com/content/342/bmj.c7401
(a) Quote from FULL TEXT (which is available free online by clicking the
button in the upper left corner of the web page):
"Cell-free DNA from... 阅读全帖 |
|
J****3 发帖数: 805 | 37 从来没手洗过,从来都是和大人的衣服一起洗,只是洗衣液选的是那种dye free,
fragment free的。有那个手洗的时间和精力,不如用来多和娃玩玩或者自己休息 |
|
h***a 发帖数: 312 | 38 来自主题: NextGeneration版 - GMO Do you know that a lot of GMO is present in baby food?
http://www.aaemonline.org/gmopost.html
https://www.youtube.com/watch?v=eeW5yUSqdhY
American academy of enviromental medicine
Genetically Modified Foods
According to the World Health Organization, Genetically Modified Organisms(
GMOs) are "organisms in which the genetic material (DNA) has been altered in
such a way that does not occur naturally."1 This technology is also
referred to as "genetic engineering", "biotechnology" or "recombinant D... 阅读全帖 |
|
|
t*******s 发帖数: 492 | 40 来自主题: NextGeneration版 - 染色体异常 Array just gives more detailed information, and reveals smaller dna fragment
issues. Probably not very relevant in this case. But doesn't hurt to add to
the amino test, just one or two more tubes of fluid.
Array also takes longer time to grow. But you can always ask for the results
of pcr first, if you want to make decision as soon as possible. |
|
s**x 发帖数: 486 | 41 MM,超过3次IUI几率就大大下降了,我也是实话实说。
如果你相信中医,可以试试调经促孕丸,坚持一两个月。如果你相信西医,可以试试辅
酶Q10和DHEA(如果没有子宫肌瘤的话),也是坚持吃数月。
你说各项检查没问题,包含了HSG 子宫输卵管造影吗?或者是saline ultrasound? 保证
输卵管是通的,没有子宫粘膜下肌瘤? 同时,请你的老公去做SEMEN ANALYSIS,有条
件的话再做一个叫DNA FRAGMENTATION TEST https://www.scsadiagnostics.com/.
时间不等人,IVF是很贵,即使很多老美自己都是take loan去做的。可以找一些
DISCOUNT PROGRAM吧。除此之外只能碰运气。good luck. |
|
h***a 发帖数: 312 | 42 http://www.aaemonline.org/gmopost.html
American academy of enviromental medicine
Genetically Modified Foods
According to the World Health Organization, Genetically Modified Organisms(
GMOs) are "organisms in which the genetic material (DNA) has been altered in
such a way that does not occur naturally."1 This technology is also
referred to as "genetic engineering", "biotechnology" or "recombinant DNA
technology" and consists of randomly inserting genetic fragments of DNA from
one organism to ano... 阅读全帖 |
|
t*******r 发帖数: 22634 | 43 NLP 适合变量多但是 cost function 简单,能够 smooth 做成 continues
differentiable,并且有一个主要 cost func 最好是 convex 的情况。。。如果 cost
function 复杂或者解空间太 fragmented,不适合 NLP。
但你 7, 8 个变量这种七八个星星天外的问题,基本不太会是 NLP 的 sweet spot。。
。我们大多数的实际问题,一般要 1 million 变量才出门跟人打招呼。。。 |
|
a*****g 发帖数: 19398 | 44 Ohio and Illinois are the first states to release results from the spring
2015 Partnership for Assessment of Readiness for College and Careers (PARCC)
assessments, and it is now becoming apparent that cross-state comparisons
of student performance won’t be as easy as once thought.
The Ohio state school board voted to break from the score rating levels set
by PARCC states to allow students who are “nearing expectations” according
to PARCC to be considered “proficient” in Ohio. Had Ohio—which left... 阅读全帖 |
|
|
q*d 发帖数: 22178 | 46 ☆─────────────────────────────────────☆
swjtuer (swjtuer) 于 (Tue Mar 30 23:56:30 2010, 美东) 提到:
星期一
早餐 牛奶,煮鸡蛋,玉米馒头,榨菜
早点 芦柑
午餐 中大:绿豆饭,木须肉,海米冬瓜,棒骨菠菜汤
小婴:绿豆饭,三叶瓜炒肉,海米冬瓜,棒骨菠菜汤
午点 冰糖山楂水,蔬菜饼
晚餐 棒骨冬苋菜瘦肉粥,卤肉秋叶夹馍
星期二
早餐 牛奶,蒸鸡蛋,枣泥糕
早点 香蕉
午餐 中大:胡萝卜饭,芹菜炒牛肉,珊瑚豆腐,棒骨凤尾汤
小婴:胡萝卜饭,芹菜炒肉,珊瑚豆腐,棒骨凤尾汤
午点 果汁,卤猪肝
晚餐 豌豆肉末焖饭,番茄虾皮紫菜汤
星期三
早餐 南瓜粥,卤蛋,如意肉卷
早点 脐橙
午餐 中大:金银饭,咸烧白,海米儿菜,棒骨冬苋菜汤
小婴:金银饭,樱桃肉,海米儿菜,棒骨冬苋菜汤
午点 牛奶,蛋卷
晚餐 米饭,蒜苔炒肉,芙蓉蒸蛋,棒骨海带萝卜汤
星期四
早餐 牛奶,蒸鸡蛋,奶香馒头
早点 苹果
午餐 中大:南瓜饭,什锦鱼丸,韭菜炒豆干,番茄菌类鱼汤
... 阅读全帖 |
|
x***a 发帖数: 19 | 47 Dr. Yan received her M.D. from Fujian Medical University in 1983 and
completed Postdoctoral training at the Physicians & Surgeons College of
Columbia University in New York in 1993.
ShiDu Yan was a postdoc at Columbia in 90s. She stated very clearly in her
webpage. She is a very talented and productive researcher. FU Jin was
lucky to have opportunities to work with her therefore get her name included
in those papers.
http://www.pharmtox.pharm.ku.edu/index.php?page=content:faculty
FuJin has ne... 阅读全帖 |
|
w**********5 发帖数: 1741 | 48 今天《自然》发布重磅消息,中国将大力改革科研资助体系,传统的资助模式以及计划
可能全部进行改变。
到2017年,现行的973和863等重大科技资助项目将被停止,并整合国家自然科学基金,
重新设计5种不同类型的科研资助体系,科研部统一管理。这将是国家对竞争性科研计
划最大的一次改革。
1. the National Natural Science Foundation (which currently distributes
many of the small-scale competitive grants);国家自然科学基金(主要小额普惠型
资助)
2. national science and technology major projects;相当于原来的973(大型
国家科技项目)
3. key national research and development programmes;相当于以前的863 (重
大关键技术的突破性研究)
4. a special fund to guide technological innovation;技术创新... 阅读全帖 |
|
w**********5 发帖数: 1741 | 49 今天《自然》发布重磅消息,中国将大力改革科研资助体系,传统的资助模式以及计划
可能全部进行改变。
到2017年,现行的973和863等重大科技资助项目将被停止,并整合国家自然科学基金,
重新设计5种不同类型的科研资助体系,科研部统一管理。这将是国家对竞争性科研计
划最大的一次改革。
1. the National Natural Science Foundation (which currently distributes
many of the small-scale competitive grants);国家自然科学基金(主要小额普惠型
资助)
2. national science and technology major projects;相当于原来的973(大型
国家科技项目)
3. key national research and development programmes;相当于以前的863 (重
大关键技术的突破性研究)
4. a special fund to guide technological innovation;技术创新... 阅读全帖 |
|
e***y 发帖数: 4472 | 50 class x大概就是持续写入速度达到x MB/s, 不过, 往低了标当然没问题, 往高了标...
好像也没问题
不过这个卡我有, 10MB/s写入还是有的
zz
The Speed Class Rating is the official unit of speed measurement for SD
Cards, defined by the SD Association. The Class number represents a multiple
of 8 Mb/s (1 MB/s), and meets the least sustained write speeds for a card
in a fragmented state |
|