由买买提看人间百态

topics

全部话题 - 话题: operator
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
M*********t
发帖数: 257
1
来自主题: Programming版 - string operator +
I am actually confused about what you mean by user-defined operand.
if I understand correctly you mean for a simple expression like a+b
both a and b must be of user defined type in order for a compiler
to consider using overloaded operator functions.
But for builtin type like string there are also a list of overloaded
operator functions for + (as LZ listed out)
Either your concept of operator overloading is wrong or I misunderstood what
you mean by user-defined operand.
j******6
发帖数: 146
2
来自主题: Programming版 - c++ operator overloading question
sometime I see
T& operator() {...}
another time I see
operator T*() {...}
why the keyword "operator" sometimes is ahead of the return type
and sometimes it is after that?
BTW,
why are these kind of functions are called implicitly?
r*g
发帖数: 186
3
struct S{
S(int){}
};
struct SS{
int m;
SS(int x): m(x){}
explicit operator S(){return S(m);}
};
void f(S s){}
int main()
{
SS ss(1); // ok; 默认构造函数
S s1 = ss; // 错误; 拷贝构造函数不能使用显式转换
S s2(ss); // ok; 直接构造函数可以使用显式转换 ???
// 为什么? 这里难道不是 S s2(static_cast(ss))吗???
// 而且我的理解这里是先ss转成S型的临时变量
// 然后调用copy constructor
// 为什么说这里是直接构造函数?
f(ss); // 错误; 从SS向S的转换必须是显式的.
// 译注: 强制类型转换也可使... 阅读全帖
r*g
发帖数: 186
4
标准中说引入explicit是为了抑制意料之外的隐士类型转换
这个东西来自于C, 在C++中继承了这一特性
但是就挖出了这么多坑
最开始explict Constructor(other)
是为了抑制其他other2 先转换为other再调用
Constructor(other)
引入operator other()的目的是有时候other类是使用者无法修改的
比如是一些闭源的代码
这时候other2类中加入operator other()的自定义转换函数就能使得
从other可以转换到other2 other2也能转换到other
作为一种"对称". (我参考的原帖下面reference中解释)
但是引入了这个东西后
就使得影视类型转化变得更加复杂
于是又引入了explicit operator other()的概念
........
m*****k
发帖数: 17
5
From http://madodin.gh0st.net/
Version 1.0.1
Finding a way to secure operating systems today is a complicated and donating
task to say the least. This document will probably not help much with the problem of
securing a OS, but instead, will find new ways to detect security compromises. Yes this
article is depicting a theory for a new Operating system for Intrusion Detection. This is
not an intrusion detection system (IDS) in it's self, but instead a operating system made
specifically for IDS bas
w*y
发帖数: 47
6
来自主题: Unix版 - [转载] Operating System
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: wly (特别的爱给特别的你), 信区: Linux
标 题: Operating System
发信站: The unknown SPACE (Thu May 16 23:48:43 2002) WWW-POST
I want to learn "Operating System" by myself.
I have a book "Operating System" English book(THU's ABROAD CS TEXTBOOK) , but
it is based on MINIX.
I guess MINIX is dying.
Could someone please recommend a good OS book based on Linux,
and easy to understand, interesting to read? ( I do not like abstract and
not-understandble book,
Thanks a lot,
d****t
发帖数: 26
7
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: dotnet (dot), 信区: Linux
标 题: Linux successfully operating on Xbox!
发信站: The unknown SPACE (Fri Aug 16 23:48:06 2002) WWW-POST
Linux successfully operating on Xbox for first time
EUROPE -- August 16 2002 -- Today the Xbox Linux project
http://xbox-linux.sourceforge.net/ announced that it had succeeded in fully
booting Linux on the Microsoft(R) Xbox(TM) Gaming System. The free operating
system Linux is able to be booted either from flash memory, or (more easily)
w*****j
发帖数: 49
8
来自主题: Unix版 - a question about operating system
Hi, everyone. I just started learning operating system and have a lot of
confusion.
a program written in c will invoke the system call in operating system.
but what about a operating system written in c? where does it find the
system call?
h*********n
发帖数: 915
9
来自主题: Business版 - after-tax operating cash flow (转载)
【 以下文字转载自 Accounting 讨论区 】
发信人: heavyburden (nothing), 信区: Accounting
标 题: after-tax operating cash flow (转载)
发信站: BBS 未名空间站 (Wed May 25 20:35:42 2011, 美东)
发信人: heavyburden (nothing), 信区: Quant
标 题: after-tax operating cash flow
发信站: BBS 未名空间站 (Wed May 25 20:33:23 2011, 美东)
在看capital budgeting的章节。有几个疑问。
after-tax operating cash flow = (s-c-d)*(1-t)+d = (s-c)*(1-t)+t*d
1. 这里的cf是股东和债权人总共的cf,对吗?
2. interest expense不是可以抵税吗?这里为什么只考虑depreciation的抵税效应?是假定债
权人也要缴纳税金,并且税率和公司税率一样?
E*********6
发帖数: 13
10
1。有什么区别?为什么在不同的学院?
2。operations research的phd有可能找商学院的发考题么?
3。听说商学院就认几个top journal,是不是工科的operations research认的journal
杂一些,好发一些?
多谢
t*****e
发帖数: 224
11
来自主题: Mathematics版 - 有关operator一问
We have two functions, f and g,
f(x) = sum_i b_i * (x-x0)^i,
g(x) = sum_i a_i * b_i * (x-x0)^i,
where b_i and a_i are constants, and abs(a_i) < 1.
Obviously these two functions are related by a bounded linear operator rho(),
ie, g(x) = rho(f)(x)
Does the operator have a name? Does it have a natural adjoint operator?
Thanks a lot!
f*****d
发帖数: 2726
12
看到 D.E. Shaw 的一个工作叫“Finance and Operations Generalists”, 请问有没
有人指点一下是什么工作啊?看介绍好像是很无聊的工作,不知道是不是理解错误。轻
拍轻拍。
Finance and Operations Generalists have the opportunity to gain diverse
experience in management reporting, financial reporting, treasury, and trade
accounting and operations, and to work closely with our proprietary trading
, private equity, investor relations, and software development groups. Daily
responsibilities may include cash management and liquidity analysis, profit
and loss computa
j***g
发帖数: 158
13
【 以下文字转载自 Business 讨论区 】
发信人: jlong (不经常换), 信区: Business
标 题: 投行的operation部门有前途吗
发信站: BBS 未名空间站 (Wed Oct 31 22:16:07 2007)
假如本身不是finance背景的,进不了投行的核心部门(IBD,EQUITY,etc)但是进
operation部门(很可能是其中跟private wealth management直接相关的team)的话将
来再自学finance,考CFA逐渐往核心部门转的话,不知道这个版上走过这条路的人多吗?
BTW,很可能进的这家公司倒是行内很好的公司。现在面临phd毕业,到底是老老实实走
本专业还是直接转行,正在考虑中,也在痛苦中,呵呵。
另外,假如进这个operation的话也是analyst,很难给associate的level。
b***k
发帖数: 2673
14
☆─────────────────────────────────────☆
ccca (cc) 于 (Wed Jul 2 16:25:35 2008) 提到:
发信人: ccca (cc), 信区: Programming
标 题: Re: C++: operator new 为啥要是 static的, 不是有啥影响?
发信站: BBS 未名空间站 (Wed Jul 2 16:25:26 2008), 转信
class A{
public:
void* operator new(size_t){A* p=this;};
}
编译器如是说,
d:\documents\visual studio 2005\projects\xx1\xxx1\xxx1.cpp(20
) : error C2671: 'A::operator new' : static member functions do not have
'this' pointers

☆─────────────────────────────────────☆
binrose (BigHead) 于 (
w*******y
发帖数: 60932
15
Kidde Battery-Operated Carbon Monoxide Alarm with Digital Display (KN-COPP-B
-LPM) $13.56 Free shipping with Prime (FSSS) from Amazon
Extra 15% off shown at checkout
$54.49 on sale for $15.95 - 15% Discount = $13.56Large digital backlit
display is easy to read, even in low-light conditions
Peak-level memory displays the highest CO concentration measured since the
last reset
Meets the requirements of Underwriters Laboratories (UL)
Battery operated with three AA batteries included
Backed by a five... 阅读全帖
c**i
发帖数: 6973
16
来自主题: Military版 - 1st THAAD Operational Test Successful
Press release: THAAD Weapon System Achieves Intercept of Two Targets at
Pacific Missile Range Facility. Lockheed Martin, Oct 5, 2011
http://www.lockheedmartin.com/news
/press_releases/2011/MFC_100511_THAADAchievesIntercept.html
("During the mission, the first THAAD missile intercepted an air-launched
short-range ballistic missile target. The second THAAD missile intercepted a
sea-launched short-range ballistic missile target a short time later. Since
2005, the program has completed 12 flight tes... 阅读全帖
j**y
发帖数: 335
17
公司里partner或operating partner,managing director有何区别
会不会partner或operating partner就是普通职员,因为看到很多人是啊
d**********i
发帖数: 4877
18
--摘几个
---我今年29岁,看完了象个傻瓜一样泪流满面
---这个中国女孩比很多俄罗斯人更俄罗斯人,前进,达瓦里西
---看了三遍哭了三遍
---中国人的热血和俄罗斯人的热血一样,都是红色的
近日在国内网络上蹿红的动画《前进,达瓦里希》被上传到了俄罗斯著名视频网站oper
.ru上,迅速引起俄网民热议。热情的网民1天内刷了200楼评论,甚至超过了一些热映
大片的评论数量。
《前进,达瓦里希》是一部近期在国内引起热议的动画短片
《前进,达瓦里希》的作者王一琳是北京电影学院2013级毕业生,这部动画短片是她的
毕业设计。用作者自己的话来说,短片讲述的是一个“就是一个女孩走着走着,后来她
死了”的故事,但是由于在剧中运用了大量的苏联文化元素,许多细节也勾起了中国观
众的回忆,因此在国内网络上引起热议。
昨天,这部动画短片被转帖到了俄罗斯的著名视频网站OPER.RU,顿时引来大量俄罗斯
网友的追捧。他们留下的评论数量甚至超过了同一网站上对《云图》等美国大片的评论
数量。
现将其中部分评论翻译如下,看看俄罗斯网民怎么看这部动画。
对该影片的第一条评论称:“看着就很邪恶,不想看了。”
随即有网... 阅读全帖
l****z
发帖数: 29846
19
Over the weeks, we have presented to you many stories about one story: Fast
& Furious, the notorious federal operation that facilitated the otherwise
illegal flow of guns to Mexican criminal organizations.
The heart of the program was the policy of watching the guns as they "walked
." This is a common tactic in law enforcement for the purposes of learning
how criminals operate. This tactic was tragically performed by the Bureau of
Alcohol, Tobacco, Firearms and Explosives, as its agents routinel... 阅读全帖
g***j
发帖数: 248
20
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: gvosj (↑↑↓↓←→←→BABA), 信区: SanFrancisco
标 题: 请问DMV的PNO在哪里在线申请?(Planned Non-operation)
发信站: BBS 未名空间站 (Fri Aug 3 13:30:02 2012, 美东)
我在DMV的主页上找不到online Planned Non-operation.
只看到这个:
http://www.dmv.ca.gov/pubs/brochures/fast_facts/ffvr01.htm
谢谢!!
x******i
发帖数: 148
21
来自主题: Classified版 - Hiring Office Operation Manager-San diego CA
1. Maintains office services by organizing office operations and
procedures.
2. Process payroll system and control employees’ attendance and program
employees’ benefits.
3. Control correspondence; process group data filing systems; reviewing
supply requisitions for management; assigning and monitoring clerical
functions.
4. Provides historical reference by defining procedures for retention,
protection, retrieval, transfer, and disposal of records.
5. Maintains office efficiency by... 阅读全帖
j********2
发帖数: 10
22
We are a National Tour Association (NTA) member doing event planning and
MICE/leisure travels. We have a vacancy of tour operator/event planner in
our office within blocks to McCormick Place, Chicago.
Job responsibilities:
- Event planning and implementation;
- Travel operations such as itinerary design, hotel/transportation/
restaurant reservation, tour guides/drivers/interpreters dispatch, paperwork
preparation, office support, vehicle management, etc.;
- Supplier management and relationship m... 阅读全帖
i******8
发帖数: 123
23
懒人版步骤:
一:上https://sync.americanexpress.com/XBox/CardCapture,这个网站将你的卡
sync,其中邮箱是你接受确认信的邮箱,可以不是马甲邮箱,
二,注册hotmail马甲(注册时 年龄必须填21以上),然后把sync的code和马甲帐号,
密码发给我
三,等确认信(7工作日内到,我自己的是3天整到的,建议大家还是提早)
deal 提示:等到halo成就信后去bestbuy买100刀以上可以返60(12.31之前),1.1-1.
31只能返50(昨天下午twitter的offer刚dead,否则可以去bestbuy买200返10+20+50。
是的,您已经错过了twitter,您还想再错过halo么?)
代打halo 4成就“Operation Completed”
没有xbox live帐号,可以给我一个马甲hotmail和密码(注册时 年龄必须填21以上)
如有需求请发到i******[email protected](没收到我回复邮件的请pm我,有些邮件不知道怎
么回事在垃圾箱里,真不好意思)
每天前10名优惠,价格为$12.99,之后$1... 阅读全帖
f****4
发帖数: 1359
24
来自主题: JobHunting版 - 请教operator const char*() 的问题
conversion Operator :)
// code explains itself
class Test{
public:
operator const char*(){cout<<"Test"< };
void f(const char*)
{
cout<<"f()"< }
int main(){
Test t;
f(t);
return 0;
}
e**c
发帖数: 95
25
来自主题: JobHunting版 - 请帮忙看道题 c++ operator overload
(1)const xyz& operator+(const xyz &rhs) const;

(2)const xyz& operator+(const xyz &lhs, const xyz &rhs) const;
有什么区别?
我不太明白用(1)的话, a=b+c 是如何实现的?
a********u
发帖数: 4
26
来自主题: JobHunting版 - 请帮忙看道题 c++ operator overload
补充一点
(1)必须把 operator+ 定义在 class 里面
(2)要把 operator+ 定义成global 函数,然后 declare成 class 的 friend 函数
r********e
发帖数: 27
27
来自主题: JobHunting版 - 请帮忙看道题 c++ operator overload
弱问一下,xyz& operator+(int m) “const”, 最后那个const表示什么意思?是不
是说first
operand is const?
const xyz& operator+(const xyz &rhs) “const”, 需要这个设成const吗?
谢了
x***y
发帖数: 633
28
来自主题: JobHunting版 - C++ Q48: illegal operation (C33)
It really depends on how you overload these operators...If you follow the
convention of built in types and types in standard libraries ( return a non-
const reference to *this) a) actually works; but for b), the self-assignment
can often lead to mistake for badlly overloaded = operator...
x***y
发帖数: 633
29
来自主题: JobHunting版 - C++ Q48: illegal operation (C33)
returning a reference to a heap-allocated in this one is a bad idea, as
there is no way for you to delete it; about reference to a local static
object, your statement is right, local static works, but it's weired to use
it here, especially it will create problems for multithreaded application
when + is such a freqently used operator.
Without definition of operators, the answer is that it depends. However, in
my opinion, from pratical perspective, either time overhead is very high for
synchroniz
j**a
发帖数: 24
30
我们希望您有扎实的计算机基础,踏实肯干,有上进心,有较强的学习能力,良好的沟
通能力,有意愿长期从事主机操作系统或者主机应用程序的研发工作。
有意者请将您的简历发到c***[email protected],并注明应聘主机操作系统开发职位。如有
疑问,欢迎来信询问。多谢。
Job Description:
System z Software Development organization (in CSTL) is seeking software
engineers taking the responsibilities for design, development and test of
zOS and other System z software products. This team is an integral part of
the STG System z global team and support System z expansion and growth in
the China market.
zOS XML team is to design, implement ... 阅读全帖
j**y
发帖数: 335
31
公司里partner或operating partner,managing director有何区别
会不会partner或operating partner就是普通职员,因为看到很多人是啊
d****n
发帖数: 1637
32
知道很无聊一个题,拿出来解闷。bit shift operator都被人玩出好多花样了。
http://stackoverflow.com/questions/11694546/divide-a-number-by-
// replaces the + operator
int add(int x, int y) {
int a, b;
do {
a = x & y;
b = x ^ y;
x = a << 1;
y = b;
} while (a);
return b;
}
int divideby3 (int num) {
int sum = 0;
while (num > 3) {
sum = add(num >> 2, sum);
num = add(num >> 2, num & 3);
}
if (num == 3)
sum = add(sum, 1);
return sum;
}
D*********D
发帖数: 6
33
来自主题: JobHunting版 - JOB OPPORTUNITY - OPERATIONS ENGINEER
Looking for an Operations Engineer, can work remotely from home. Please
message me - leave your name and email address if you think you are
qualified. Thanks!
OPERATIONS ENGINEER
Are you a pro? Work well with other pros? Do you demand responsibility for
your work and development environment? Our business is growing fast and we
need your help!
Join our great team based in Portland, Oregon. We have remote members in San
Diego, Los Angeles, Bend and Winnipeg. Our very nice office is in Southeas... 阅读全帖
L********u
发帖数: 186
34
【 以下文字转载自 Engineering 讨论区 】
发信人: LittleBuBu (BuBu), 信区: Engineering
标 题: Job Opportunities at Praxair - Supply Chain/Operations Research Engineer
发信站: BBS 未名空间站 (Wed May 11 15:25:44 2016, 美东)
站内联系
KEY ACCOUNTABILITIES:
• Involved in technology development programs from concept
initiation through commercialization, and be expected to work closely with
the Business Organizations globally.
• Develop credible business cases for new technology programs,
actively participate in the ... 阅读全帖

发帖数: 1
35
The description of the problem is : Write a function which takes a positive
integer as a string and returns the minimum number of operations needed to
transform the number to 1. The number is up to 309 digits long, so there won
't too many character than you can express in that many digits. The
transform process is limited to three operations: 1. Add 1 2. Subtract 1 3.
Divide the number by 2 (only even number allow here)
我的想法是用dfstraverse所有可能, 用memorization来剪枝,但是最后还是超时了,
求教如何进一步优化或者一种方法处理。 因为输入时... 阅读全帖
s****e
发帖数: 19
36
We are currently looking for an Operation Manager based at San Jose
Headquarter, if you are interested, please send me an email to
s********[email protected]
Thanks very much!
Position: Operation Manager
Company: MA Labs Inc. www.malabs.com
Founded in 1983 and headquartered in San Jose of California, MA LABS is a 2
billion global computer product distributor and DRAM/Flash product
manufacturer. The company's product line encompasses everything in the PC,
including memory modules, CPUs, storage produc
s****e
发帖数: 19
37
Dear Friend,
Please send me your resume to s********[email protected] if you are interested in
the Operation manager position. or if you have any friend you want to refer!
Thanks very much!
Position: Operation Manager
Company: MA Labs Inc.
www.malabs.com
Founded in 1983 and headquartered in San Jose of California, MA LABS is a 2
billion global computer product distributor and DRAM/Flash product
manufacturer. The company's product line encompasses everything in the PC,
including memory modules, CPUs,
k*******6
发帖数: 18
38
来自主题: JobMarket版 - Computer Operator (3rd SHIFT), chicago area
JOB ID: 38241BR
please include job ID in your email
send your resume to k*******[email protected]
.............
Suggested Compensation Range 34,800 to 52,200 USD
Percent Travel Required 0
Alternate Work Arrangement Compressed Work Week
Job Description NOTE: 3rd Shift Operator, 12-hour workday (6:00pm - 6:00am)
, Wednesday, Thursday, Friday, and every other Saturday.
Perform operator duties in an IS function such as backups, running online
and batch jobs, scheduling and running jobs, user administra
c*r
发帖数: 5
39
An e-commerce start-up located in Marlborough, Massachusetts is looking for
a full-time operation manager who will assume the following roles:
1. Fulfill customers' orders, including delivering order to USPS and
customers' site.
2. Handle customer service.
3. Handle daily operations including logistics from suppliers, warehouse
maintenance and etc.
You must meet the following qualifications:
1. Must work full-time.
2. Can drive to work. There will be no provided transportation.
3. Fluently speak... 阅读全帖
p*********4
发帖数: 9
40
来自主题: JobMarket版 - Operations PM needed in Seattle area
Title: Operations PM in Microsoft(vendor)
Duration: long term
Hourly rate:$37/hr with full benefits (family health insurance/ 2 weeks
vacation/ holidays)
Contacts: 425 999 8422 or p***[email protected]
Capacity Planning/Operations Program Manager
Main responsibilities
- Designed and implemented reporting and metrics structure for our team.
- Responsible for Capacity Planning and Deployments in production
datacenters in Washington, California, Amsterdam, Tokyo & Singapore.
- Responsible for datacent... 阅读全帖
D*********D
发帖数: 6
41
来自主题: JobMarket版 - JOB OPPORTUNITY - OPERATIONS ENGINEER
Looking for an Operations Engineer, can work remotely from home. Please
message me - leave your name and email address if you think you are
qualified. Thanks!
OPERATIONS ENGINEER
Are you a pro? Work well with other pros? Do you demand responsibility for
your work and development environment? Our business is growing fast and we
need your help!
Join our great team based inPortland, Oregon. We have remote members in San
Diego, Los Angeles, Bend and Winnipeg. Our very nice office is in Southeast... 阅读全帖
x******i
发帖数: 148
42
1. Maintains office services by organizing office operations and
procedures.
2. Process payroll system and control employees’ attendance and program
employees’ benefits.
3. Control correspondence; process group data filing systems; reviewing
supply requisitions for management; assigning and monitoring clerical
functions.
4. Provides historical reference by defining procedures for retention,
protection, retrieval, transfer, and disposal of records.
5. Maintains office efficiency by... 阅读全帖
j********2
发帖数: 10
43
We are a National Tour Association (NTA) member doing event planning and
MICE/leisure travels. We have a vacancy of tour operator/event planner in
our office within blocks to McCormick Place, Chicago.
Job responsibilities:
- Event planning and implementation;
- Travel operations such as itinerary design, hotel/transportation/
restaurant reservation, tour guides/drivers/interpreters dispatch, paperwork
preparation, office support, vehicle management, etc.;
- Supplier management and relationship m... 阅读全帖
d********w
发帖数: 40
44
【 以下文字转载自 JobHunting 讨论区 】
发信人: darkshadow (北加州暗夜), 信区: JobHunting
标 题: 可以内推:湾区IT Company招Network/Operations Engineer
发信站: BBS 未名空间站 (Thu Mar 13 17:13:24 2014, 美东)
跟这个组的manager关系很好,吃饭时候他托我帮他看看有没有合适人选
我第一时间就先考虑推荐内推中国人了,哪怕不认识
但是我们需要local candidate.
update:怎么收到的简历都是Software developer的
这里主要是招network/operations engineer
要求:(他自己说的,按照重要性排序)
1. 懂linux
2. 懂script (python, ruby),不仅仅是shell
优点: (也是他自己说的)
1. You will work with both physical structure and cloud
2. Team做东西没太多限制, 想做什么可以马上去做

Sponsor H1B,... 阅读全帖
W*******e
发帖数: 21
45
Operation Coordinator – Order Department
Overview
We are in an urgent need for a full time passionate professional to join our
Special Order team to facilitate order and production process. The
Operation Coordinator will work as a back-end support for the customer
service team in our Order Department. This role is critical in aiding in
achieving successful sales results and profitability across both the inside
and field level sales associates.
Job Responsibilities
• Work closely with Or... 阅读全帖

发帖数: 1
46
APPLICANTS FOR THIS POSITION MUST SPEAK AND WRITE ENGLISH AND CHINESE
FLUENTLY! APPLICATIONS THAT DO NOT MEET THIS CRITERIA WILL NOT BE CONSIDERED
.
Draco Natural Products is a manufacturer of bioactive and organic
ingredients for the nutritional supplement, food and beverage, and cosmetic
industries.
This candidate must have the flexibility to multi-task and coordinate
several projects simultaneously in a fast-paced environment.
This is a full-time position located at our San Jose, CA headquart... 阅读全帖

发帖数: 1
47
【急聘】📢📢📢 目前帮国内一家B轮融资刚结束的知名机器人
公司招一名Operation Specialist 工作地点在Cupertino 有1-2年admin或者operation
经验即可 此工作不能sponsor 必须有身份 有兴趣的朋友 请加微信 或者投简历至
[email protected]发邮件时请注明姓名
n*******t
发帖数: 1296
48
应该装battery operated还是water powered backup sump pump?
我知道water powered backup sump pump的好处,只要有水就会工作.可是我觉得从水管
连一根管子到sump pump,会不会污染饮用水呀?比如sump pump发生故障,水倒流之类的.
一般的battery operated的在连续工作的情况下(比如大雨),能坚持多长时间?
D**f
发帖数: 439
49
我打了两个ops,杀了无数敌人,完成任务后显示chapter complete,就是没看到"
Operation Completion",到哪儿知道自己搞定了?另外,看下面我copy的term,没说
要spartan ops啊。
- Complete the "Operation Completion" achievement and get $50 back as a
one-time statement credit when you spend $100+ at Best Buy with your
synced Card. You must wait until you receive an email confirmation
before redeeming this offer, which may take up to 7 business days.*
o**********e
发帖数: 18403
50
28 week preggy. I just failed my 1-hour glucose test: 50mg glucose, 1 hour
later, blood measures 221. is this bad? how bad is it?
I haven't had time to see ob/gyn yet, later today i need to have another
unrelated operation under general anesthia. Would my insulin level be
monitored during the operation? What risk is there?
thanks!
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)