由买买提看人间百态

topics

全部话题 - 话题: drawback
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
m****n
发帖数: 142
1
来自主题: JobHunting版 - 郑重建议有别的Offer的不要去EPIC了
转一个Glassdoor review:
Epic Systems Corporation Software Developer in Verona, WI: (Current
Employee)
“You'll ruin your life working here”
9 of 10 people found this helpful
Pros
- Great benefit package, insurance is cheap and covers everything
- Good pay, especially for fresh grads
- Really nice campus with unique design
- Subsidized food (very cheap and healthy)
Cons
- Working here basically means no future. The company uses Cache and VB
which have absolutely no marketing value and career ... 阅读全帖
s*****b
发帖数: 106
2
It is easier to 骑驴找马.
Possible drawbacks
1.It would be harder for you to find spare time for onsite interviews.
2.Some companies check candidates' salary history to offer compensation package, so it could hurt your future salary.
v***n
发帖数: 5085
3
来自主题: JobHunting版 - Epic的on-site,犹豫啊
One of the best reviews online (not from glassdoor though)
From Verona, WI — 11/14/2008
I worked at Epic for 7+ years as a developer. Left the company roughly
4 months ago.
Pay: I more than doubled my salary in my 7+ years. Starting pay was
so-so but thru nice raises, I quickly felt like I was well
compensated.
Respect: I respect the vision of the company. Being privately held in
this industry is a huge competitive advantage as Epic can really put
the patient and customer ahead of the shareholde... 阅读全帖
l*****a
发帖数: 14598
4
来自主题: JobHunting版 - what is the internal implementation of Deque
if so, how do u push_front and pop_front
Double ended queue
deque (usually pronounced like "deck") is an irregular acronym of double-
ended queue. Double-ended queues are a kind of sequence container. As such,
their elements are ordered following a strict linear sequence.
Deques may be implemented by specific libraries in different ways, but in
all cases they allow for the individual elements to be accessed through
random access iterators, with storage always handled automatically (
expanding an... 阅读全帖
m****r
发帖数: 141
5
Given a sequence of data (with duplicates), move a fix-sized window along
the data sequence and find mode in the window at each iteraion, where the
oldest data is removed and a new data is inserted to the window.
I cannot find better solutions here.
My idea: Use a hashtable, key is the data, key's data is the frequency of
the data occuring in the window.
At the first iteration, iterate each data in the window and put it to the
hashtable, meanwhile cout the frequency of each data. After that, tra... 阅读全帖
G******i
发帖数: 5226
6
☆─────────────────────────────────────☆
millin (millin) 于 (Thu Jun 16 01:26:51 2011, 美东) 提到:
最近Epic在系统性的大幅裁员,有传闻公司遇到财务困难。
被裁的很多都是中国和东亚的H1b员工(Epic 内部歧视亚裔几乎都是公开的秘密),完
全没有提前通知,很多人都是立刻通知当天走人。每个组都至少裁掉了1-2个,有的整
个组都被裁掉了。
很多人都是才来2年左右的,当年被很多空头许诺骗来放弃很多很好的offer (我认识一
个放弃MS SDET的offer来的),但是等被fire的时候才发现这些许诺没有一个是写在
agreement里面的。
最近HR在搞全公司skill assessment, 其实就是预示这近期要有大幅裁员。
这种Private的公司最好别来,CEO一人专断,公司业绩完全不公开。每每公司大会也都
是报喜不报忧,没人知道公司到底在发生什么。
公司技术落后,这种工作经历写在简历上完全不是亮点而是污点。(很多NY和加州的
Headhunter都跟我这么说过)
建议接受Epic o... 阅读全帖
h*******0
发帖数: 270
7
来自主题: JobHunting版 - yelp 电面面经应该已跪了
为什么要把所以东西都写道一个函数里面呢? 为什么不先找node,然后在打印该node
下的所有leaf呢? 你这个drawback是每次都要遍历所有的点。 其实有些情况是不需要
遍历所有点的。
f********d
发帖数: 51
8
来自主题: JobHunting版 - 发觉自己的Java编程风格在变
scala functin is anonymous inner class which is the same as guava in byte
code level.
but writing anonymous inner class in java is just not that convinient.
for the case sin(a)+sin(b)+sin(c).
why you need to seperate into different lines and debug because you DO NOT
have enough test coverage for sin().
this is not a drawback of writing in one line, but a push to get better test
coverage.
r*******d
发帖数: 45
9
来自主题: JobHunting版 - xilinx怎么样?
hardware. The only drawback could be so limited to FPGA.
s*********l
发帖数: 103
10
来自主题: JobHunting版 - 杂七杂八的一些面经 (转载)
> Q9:为什么有时候K means算法不能converge?
http://en.wikipedia.org/wiki/K-means_clustering
The algorithm has converged when the assignments no longer change. Since
both steps optimize the WCSS objective, and there only exists a finite
number of such partitionings, the algorithm MUST converge to a (local)
optimum. There is NO guarantee that the global optimum is found using this
algorithm.
...
As it is a heuristic algorithm, there is no guarantee that it will converge
to the global optimum, and the result m... 阅读全帖
y***1
发帖数: 18
11
来自主题: JobHunting版 - 新鲜Google面经
背景: cs Ph.D, 已经毕业工作3年,在学校里做faculty. 本来完全没想过去公司,
前几天不知google recruiter 怎么地就找到我的联系方式问有无兴趣跳槽,那就试试
吧。
昨天面的,背景聊了快20分钟,然后
(1)what is BST?
(2) 可不可以里面有duplicate value.
(3) 如何handle duplicate value, 不同handle 策略有什么优缺点。
(4)然后选了一种我说的,把duplicate全放在left sub tree, 然后写一个function
判断是不是BST, 就是 validateBST
我写了一个最简单的,分析了复杂度, 是O(n^2), 问可不可以optimize,我说可以。
便写了一个O(n)的用low 和high 来bond.
然后程序有个小bug,经提示改了,又问这个方法有什么drawback,我说遇到 root=INT_
MAX, root->right=INT_MAX会overflow, 然后要求处理overflow.
面了50分钟。
今天打电话过来说要onsite.
给大家一个参考。。
b*****a
发帖数: 70
12
I can answer your first question.
1. Definitely a workable code in the language you choose. That is one of
major drawbacks of cracking the coding interview -- some of their codes don'
t work, and the code quality is poor.
R*******d
发帖数: 13640
13
来自主题: JobHunting版 - HR来信疑问,求解..
The Functional Interview
The functional interview should be used when you are looking for job
specific information, such as particular skill sets, how well the applicant
communicates, enthusiasm for the job, and the ability to interact with
others as a team player. You should expect traditional answers that can help
you evaluate how well this person will fit into your organization. One of
the drawbacks of functional interviewing, however, is that it stresses the
intended relationship that the in... 阅读全帖
g********t
发帖数: 39
14
来自主题: JobHunting版 - 贡献Rocket Fuel 4 hour online test
贡献刚做的online test,职位是Machine Learning related。
Question 1 / 2 (LaserMaze)
You are standing in a rectangular room and are about to fire a laser toward
the east wall. Inside the room a certain number of prisms have been placed.
They will alter the direction of the laser beam if it hits them. There
are north-facing, east-facing, west-facing, and south-facing prisms. If the
laser beam strikes an east-facing prism, its course will be altered to be
East, regardless of what direction it had been goi... 阅读全帖
M****g
发帖数: 162
15
来自主题: JobHunting版 - 急求rocket fuel 3小时的online test!!!
Question 1 / 2 (LaserMaze)
You are standing in a rectangular room and are about to fire a laser toward
the east wall. Inside the room a certain number of prisms have been placed.
They will alter the direction of the laser beam if it hits them. There
are north-facing, east-facing, west-facing, and south-facing prisms. If the
laser beam strikes an east-facing prism, its course will be altered to be
East, regardless of what direction it had been going in before. If it hits
a south-facing prism... 阅读全帖
s******i
发帖数: 31
16
来自主题: JobHunting版 - Hiring DevOps Engineer
Please send resume to f******[email protected]. 在纽约。有投必回
DevOps:
As our first DevOps Engineer you will be working on scaling and automating
our platform to support our ever-growing client roster of some of the
largest retailers like CVS.com, Wal-Mart, Johnson & Johnson and L’Oreal.
You will design and build our continuous delivery environment
You will manage our cloud deployment & configuration across production,
staging, and dev/test environment servers
You will become a portal of knowledge by parti... 阅读全帖
g********t
发帖数: 53
17
来自主题: JobHunting版 - 今天面试碰到个刷题王
题目做的好,现在也成drawback了?
T*********0
发帖数: 1372
18
一点都不蹊跷,参见解释
http://thevisabulletin.com/2008/03/h1b-cap-predate-lca/
LCA Timing Issues
The LCA cannot be submitted to the Department of Labor earlier than six
months prior to the start date of the period of intended employment (see 20
CFR § 655.730(b)). For most H-1B petitions being filed April 1st, the
intended start-date will be October 1, 2008 – the first day of Fiscal Year
2009. So the earliest an LCA could be filed would be April 1st (6 months
prior to start-date of October 1st ). But the LC... 阅读全帖
t****m
发帖数: 140
19
来自主题: JobHunting版 - 谷歌电面二面面筋(悲剧了)
谢谢谢谢
我觉得new grad根本没多少经验,system design肯定是弱项
但是有些东西还是要准备,比如多看科技公司的博客,多看系统设计的video,慢慢积累
也可以看一 些经典system design题, 比如shorten url,对大概怎么答这些题有个大
体概念
剩下的就看命了,个人感觉面试你的时候大多数面试官心里有一个expected solution
,这个时候察言观色的能力就很重要了,要是面试的时候我蹦出一个想法,看到面试官
脸一黑,我会说:“Well, even though this solution does work in a few
scenario, it does come with few drawbacks...”
所以说人生如戏,全靠演技啊...
以上都是个人的分析,仅供参考

cc
b*****n
发帖数: 618
20
前段时间骑驴找马终于告一段落,感觉本版的技术贴和面经贴帮助非常之大,也非常感
谢共享资源的各路大牛。希望提供一些信息和个人感受给还在找工的童鞋,有帮助最好
,但是毕竟本人资历尚浅,如果有不对的地方也请轻喷。
背景:
ms毕业不到两年
主要申请公司:
offer:facebook,google,uber,palantir,sumo logic,walmartlab,yahoo,
amazon,apple
reject:dropbox
主要几个包裹:
U: 145k base + 25k股 RSU
F: 150k base + 40k signon + 10%bonus + 260k美元 RSU
W: 165k base + 50k signon + 20%bonus + 35k美元 RSU每年(
这个略复杂,相当于每年35k美元RSU的refresh,但是每次refresh分四年给)
再上各个公司的面经和感受:
Yahoo:
最早面的公司,面的是Flurry Team,Yah... 阅读全帖
f*******r
发帖数: 976
21
恭喜,都是好包袱!

关键字: 面经
发信站: BBS 未名空间站 (Sat Jun 13 17:27:31 2015, 美东)
前段时间骑驴找马终于告一段落,感觉本版的技术贴和面经贴帮助非常之大,也非常感
谢共享资源的各路大牛。希望提供一些信息和个人感受给还在找工的童鞋,有帮助最好
,但是毕竟本人资历尚浅,如果有不对的地方也请轻喷。
背景:
ms毕业不到两年
主要申请公司:
offer:facebook,google,uber,palantir,sumo logic,walmartlab,yahoo,
amazon,apple
reject:dropbox
主要几个包裹:
U: 145k base + 25k股 RSU
F: 150k base + 40k signon + 10%bonus + 260k美元 RSU
W: 165k base + 50k signon + 20%bonus + 35k美元 RSU每年(
这个略复杂,相当于每年35k美元RSU的refres... 阅读全帖
p**f
发帖数: 3549
22
AR眼镜公司Magic Leap狂揽13.9亿美元投资,估值45亿美元,几乎可以说业内人尽皆知
。然而Magic Leap这头独角兽到底是不是真货,可能很多人心里会打一个问号。回顾
Magic Leap所有对外新闻,基本套路都是:看似牛逼的宣传概念视频(比如那个球场鲸
鱼)、所谓的界面演示图(福布斯记者对外公布)以及各种华丽的辞藻和对Magic Leap
的赞美。
但在高估值和高调赞美下,Magic Leap却从未披露过的任何产品的详细信息,再加上内
部纠纷打官司这种八卦消息,使得外界对Magic Leap的质疑声音开始愈演愈烈。
最近硅谷付费媒体The Information发布长文对Magic Leap进行了扒皮,由于该媒体付
费读者大多为硅谷资深投资人,加上Magic Leap融资额度巨大,一石激起千层浪,这家
秉承神秘主义的公司又一次遭遇了信任大危机。
注:文中关于Rony Abovitz的采访和前员工爆料来自于The Information报道
质疑和真相一:对外使用误导性演示
Magic Leap曾多次利用YouTube视频来展示其AR技术,比如官网的微型大象站在人手掌
上... 阅读全帖
r********k
发帖数: 258
23
来自主题: JobHunting版 - 找工作求建议求收留
if you are good at C++, it is not hard to write java or python code. There
are many people here to do internal recommendation, and if you are still
looking, might check out if you have some drawbacks to cover them up?
s******i
发帖数: 31
24
来自主题: JobMarket版 - Hiring DevOps Engineer (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: shihouzi (孙悟空), 信区: JobHunting
标 题: Hiring DevOps Engineer
关键字: computer,engineer,developer
发信站: BBS 未名空间站 (Mon Jun 2 01:50:35 2014, 美东)
Please send resume to f******[email protected]. 在纽约。有投必回
DevOps:
As our first DevOps Engineer you will be working on scaling and automating
our platform to support our ever-growing client roster of some of the
largest retailers like CVS.com, Wal-Mart, Johnson & Johnson and L’Oreal.
You will design and build our continuous delivery e... 阅读全帖
m****s
发帖数: 18160
25
来自主题: JobMarket版 - internal refer 俩个职位
【 以下文字转载自 Programming 讨论区 】
发信人: shihouzi (孙悟空), 信区: Programming
标 题: internal refer 俩个职位
关键字: developer,engineer,computer,manager
发信站: BBS 未名空间站 (Mon Jun 2 02:18:15 2014, 美东)
有兴趣发给f******[email protected]. 在纽约。
PYTHON DEVELOPMENT MANAGER
In addition to building out new product enhancements to help scale our
technology, this person will also be working to support our ever-growing
client roster of some of the largest retailers like CVS.com, Wal-Mart,
Johnson & Johnson and L’Oreal.
You will lead and ... 阅读全帖
r*******n
发帖数: 1739
26
来自主题: Living版 - 完了,要jumbo loan啦
How does that work? any drawbacks? our loan amount is 50k over the
conforming limit. thanks.
j*k
发帖数: 11
27
We bought our house new a year and half ago. The heating system is radiant,
which has water pipes under floor. And the floor is all oak except in the
bathroom. The floor does dry out and have spaces during winter months (not
very noticeable), and back to normal after winter. The only drawback is it
takes a long time for the house to come up/down in temperature. So if you
use radiant floor,the temperature should be set to constant.
s******e
发帖数: 67
28
多谢恢复!
closing 和 morgage 分开有什莫benefit 和 drawback ?
c********n
发帖数: 104
29
来自主题: Living版 - 关于loan, refi,怎样做最好?
I would suggest you refi 5ARM first. As primary residency, you can get a
very good rate now. Otherwise, with 2 loans (one floating + one equity loan)
on the house, you may have trouble to get loan on a new house. After you
buy a new house, your old house becomes investment property, you will never
have chance to get a rate as good as that for primary residency.The only
drawback is that your down payment for a new house may not be very high, so
your offer may not be very attractive if you buy a b
f*****i
发帖数: 3558
30
来自主题: Living版 - 如果你rent 1/1 condo
要是laundry set和bathroom是在bedroom里面的
bathroom没有窗只有风扇
还有厨房open式的,但是没有独立的抽油烟机,只有microwave底下的那个
你们会很在意吗?
如果这个unit在top floor,
窗外是风景,
离公司很近。。。
如果介意那些不好的地方的话,rent比同样的没有这些drawback的低多少,你们会接受
呢?$50? $100? 还是不会rent at all?
就想看看大家对renting的preference
先谢谢了
j****9
发帖数: 50
31
I did some research on both range hoods. I had a feeling that mamale will
have better performance than zephyr. However mamale's looking is ugly and
material is cheap. Zephyr's big drawback is that it hardly can collect the
waste oil into the waste cup. So have to use self clean funtion almost every
week to clean the range hood in order to wash the waste oil into waste cup.
I am still debating which one I should choose.
D****9
发帖数: 10889
32
来自主题: Living版 - Is townhome good?
any drawback?
f********o
发帖数: 2181
33
来自主题: Living版 - 靠近highway的房子可以考虑么
昨天看了个房子, 很心动
后院连着golf course, 有个很大的patio, view 非常好
不爽的是侧面400ft就是是local highway, 车流量挺大
这房子是高速边上第七幢, 在外面能听到很响的声音
因为那段路靠近桥, 声音比一般路要大些
在屋子里面倒是听不到什么声音
这是不是一个很大的drawback
多谢了~~
p******b
发帖数: 523
34
来自主题: Living版 - 靠近highway的房子可以考虑么
That's a huge drawback. Stay away from it. I once rent an apartment that's
close to a factory with big venting system, I almost got depressed with the
noise. Left there after a month.
b*******m
发帖数: 72
35
Hi:
this house is in market for about 2 years, it is a huge house builded by
shea, Shea builds nice house in charlotte and other cities, not sure about
Cary.
I talked to the owner, she bought the house for 700K in 2006, only live
there for 3 years. later decided to default on the loan.
there are several drawbacks: lot is small compared to the footprint of the
house, next to main road, not sure if a commercial building could be builded
in your backyard, especially a gas station. no swimming pool,... 阅读全帖
w*******r
发帖数: 7276
36
来自主题: Living版 - offer rejected
Well, got official counter letter, they did lower by 5k, make it 845k. But
that still seems to show they are extreamly confident about their asking
price. While I feel it is worth at most 820k based on neighbouring sales
past year, although I can afford higher than that.Really haven't decided
whether I should try to counter another time to 815k or 820k. Although I
think even that price doesn't have a good chance to be accepted.
Maybe because it is ealy spring, they are not in a hurry? BTW, they ... 阅读全帖
c***h
发帖数: 51
37
Nobody recommends westchester? Both of them work within 10 minute walk to
Grand Central. Westchester will fit them best. Scarsdale can get them under
1 hour commute door to door. Chappaqua is just 15 minutes further.
WC has top schools, easy drive to most places like airports, flushing. Its
population is less condensed than NJ. The drawbacks are lack of good Chinese
restaurants, old houses, high property values, and in turn high property
taxes. But really in the tri-state, only places with low p... 阅读全帖
c***h
发帖数: 51
38
Nobody recommends westchester? Both of them work within 10 minute walk to
Grand Central. Westchester will fit them best. Scarsdale can get them under
1 hour commute door to door. Chappaqua is just 15 minutes further.
WC has top schools, easy drive to most places like airports, flushing. Its
population is less condensed than NJ. The drawbacks are lack of good Chinese
restaurants, old houses, high property values, and in turn high property
taxes. But really in the tri-state, only places with low p... 阅读全帖
g*****y
发帖数: 6325
39
下面是一条大马路,是我们市贯穿东西的一条主要大路。也不算高速,但是车速确实比
较快。 房子离大马路还搁着一组房子。 我站在房子门口可以听到车辆的声音,房子
里面听不到。大家觉得这个距离可以接受吗? 将来卖的时候应该不是什么drawback吧
t*****e
发帖数: 15794
40
来自主题: Living版 - 谁对LED灯泡有研究?
看篇好文
March 21, 2013, 3:15 pm 285 Comments
Addressing Fears About LED Light Bulbs
In my Times column Thursday, I reviewed a new generation of LED light bulbs.
They last 25 times as long as regular bulbs, use maybe one-eighth the
electricity, work with dimmers, turn on instantly to full brightness and
remain cool to the touch. A big drawback has always been cost, but now, I
noted, the prices have fallen.
This column generated a lot of reader e-mail, probably because LED
represents change. And chan... 阅读全帖
l**a
发帖数: 12455
41
来自主题: Living版 - 工作换动vs房子
paying 700K for a 50-60 year old house is not "too bad", at least you get
over 1500 sq ft living space, which does meet most regular families' housing
needs, plus, such a house is very likely to be located in a relatively good
school district, which saves you much money for children's schooling. and
everyone knows that CA life is enjoyable compared to most places, no matter
in which regard. probably the only drawback of CA life is that the housing
is not as big as other places, but it is definit... 阅读全帖
f*1
发帖数: 837
42
来自主题: Living版 - 后院草地上很多moss,怎么办
The key is to know whether you have those problems, and the only way to
known accurately is to do a soil test from some reputable lab. You can
check your local Cooperative Extension Office or your state university's
agriculture departments to see if they provide a soil test service, or you
can send your soil samples to UMass soil lab or Logan Labs.
A soil test before planting and a test every couple of years afterwards is
highly recommended for anybody who is serious about his/her lawn.
If a la... 阅读全帖
w********d
发帖数: 225
43
Try it, simple and no drilling. If you need a camera to monitor every single
little motion everyday, then don't buy this battery powered product. But if
you need something for more serious things, this should work. For me, it
records the usps guy dropping a package at my front door, so how could you
miss a break-in? For battery, mine have been for four months and they are
still good. However, the major drawback is that someone can take them away
if he knows that they are only secured by magnets.... 阅读全帖
t*******n
发帖数: 4445
44
1. Did you follow all the dentist's aftercare suggestions (e.g.
prescription rinse, not chewing using the area)?
2. It's possible for bone grafts to fail, and it may be impossible to tell
beforehand. If you doubt the dentist, get a second opinion though.
3. Look into other options. Check that there is still enough bone for
implants without successful grafting. The alternative would be denture or
bridge. These are cheaper but have drawbacks (less comfortable, modifying
health teeth, and le... 阅读全帖
p****x
发帖数: 4260
45
☆─────────────────────────────────────☆
iceui (iceui) 于 (Sun Jul 19 01:11:03 2009, 美东) 提到:
Over many issues between them, one drawback of the Schwab Visa card is that
there’s no pre-set spending limit. When a credit card has no pre-set
spending limit, the credit line on credit report will appear as zero, which
may not be a good thing as far as your credit score is concerned.
☆─────────────────────────────────────☆
billniu (billniu) 于 (Sun Jul 19 01:14:08 2009, 美东) 提到:
Do you mean Fidel
f*******e
发帖数: 1
46
来美国一段时间,最近一个多月开始网赚经验,拿到了$30 amazon giftcard(国内的
同学可以在淘宝出售)和一双手套也总结了一些拿免费giftcard的经验部分还没有在网
上被总结过,觉得独乐乐不如众乐乐所以和大家交流一下,不知道发的版面对不对,再
附上应该符合版面的两个少被人关注的deal网站,希望扔鸡蛋的手下留情:P
先说一下,网赚这个事情其实是蛮耗时间的,一般适合想赚一点小零花钱的家庭主妇,
学习有余的牛人以及上网成瘾又不想完全浪费时间的人(鄙人为第三项....)。对我来
说网赚是代替在线游戏的好方法,既有赚点升级的满足感,又可以拿到现实中的礼物,
一举两得~hoho,经过一个多月的搜寻各大论坛总结,鄙人认为要网赚拿现金实在是很
麻烦,相反那些赚点那giftcard的倒是容易到手
不罗嗦了介绍第一个我的最爱
Swagbucks:
大家随意,觉得不错支持一下我的referal link: http://www.swagbucks.com/refer/stonedalin
swagbucks是我目前拿到giftcard的唯一网站(只玩了一个月多点),网站支持多种赚
钱方式,... 阅读全帖
l*******z
发帖数: 4276
47
Definitely not on Delta skymiles.
For most people, you should put into Alaska airlines, because it partners
with most members of skyteam (of which Delta is a member of), and oneworld (
of which AA is a member of). You can collect Alaska miles and elite miles by
flying Alaska and any of its partners. And you can redeem your miles on on
their flights too. It is definitely better than collecting Delta skymiles (
which can only be used on skyteam which is not easy), or AA miles (which can
only be us... 阅读全帖
n****n
发帖数: 281
48
The only drawback I can think of is that you don't get one stopover for the
one-way ticket. But if you just want to travel between two countries, then
just go ahead and book two one-ways
m*****a
发帖数: 2609
49
DD is usually needed to avoid a monthly fee. For e-checking, there is
potentially NO monthly fee at all, so no DD is necessry. The only drawback
is that you can't use the banker service at a branch but do everything at
the ATM. Here is details:
"No Monthly Fee when you do both of the following every month:
Enroll in and use paperless statements
and
Use self-service options (such as our ATMs and Online Banking instead of a
teller) for deposits and withdrawals
Otherwise $12 every month
"
https://w... 阅读全帖
g***t
发帖数: 83
50
I have this for more than 5 years. It worked great for all my 3 kids. It
just broke last night and now in the market for a new one.
The only drawback of this stroller is the sun shade, useless.
I paid $30 at the time.
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)