由买买提看人间百态

topics

全部话题 - 话题: rotating
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
O*********h
发帖数: 4674
1
网上看到一个帖子,看来是不要做rotate了,要做就每个月rotate
蓝魔
Apr 10th, 2012, 12:27
大街上开的family car哪那么多讲究,而且你只要勤rotate不会有任何问题,我以前的
mustang每三个月rotate一下。我觉得自己做rotate还可以,要是花钱请人做就不值了。
要看车的悬挂怎么设计的,是否对 tire balance 比较 sensitive。
BMW 的车如果 5000 km 后才 rotate 的话,一上高速,就震动,起码要开一个礼拜才
逐渐消失。这不是讲究,是很明显的不舒服和不安全。所以真要对调的话,最好 2000-
3000km 就做。
其它车没那么明显,每年夏季胎和冬季胎对调时 rotate 就行了。
h***t
发帖数: 43
2
来自主题: JobHunting版 - rotate 2D array (rotate image)升级版
电面,碰到传说中的“国人大哥”,上来考了rotate array (leetcode 原题),很快搞
定。接着说要出一个2D array rotation问题,当时还庆幸又是原题(rotate image)
,大哥不错啊,知道放水。
接着听就不对劲了。不是90度旋转,而是要把每一个element都顺时针移动 k steps。
比如n = 5, k = 3,
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
变为
16 11 6 1 2
21 18 17 12 3
22 19 13 7 4
23 14 9 8 5
24 25 20 15 10
本来想这两道题一起出,我就用一下rotate array的程序吧,就是把每一个circle的
element取出来放到一个Array里,rotate完了,再放回去,但大哥说复杂度太高。再想
,,,
那就只有用rotate image的思路了,一个个挪,时间O(n*n),空间O(1)。
思路对了,接着写程序,才发现没那么简单,而且时间也快到了。... 阅读全帖
n*********u
发帖数: 1030
3
来自主题: JobHunting版 - rotate 2D array (rotate image)升级版
好像就是1D array rotate加个转圈就行了吧?转圈那个确实有点麻烦。
一共有n/2个圈要转。
试着把每个圈都铺平了,当linked list一样做rotate,也就是写个新的self.next()
function。
大概这样?
for offset in range(0, n/2):
# do while loop in python
x = offset
y = offset
while True:
# rotate x, y, by k steps
# 记不得怎么写rotate list的懒人路过
(x, y) = get_next(n, x, y, offset)
if x == y:
#回到出发点结束
break
# rotation 的 self.next() function。
# offset can be calculated with n, x, y, but it'll be available anyways.... 阅读全帖
D**C
发帖数: 331
4
来自主题: Automobile版 - tire rotation 的问题
If your car tires can be rotated, you should rotate them every 5,000 miles
to get longer life.
Not all the car's tires can be rotated, some have difference size front and
back, some are designed to only rotate in one direction.
Also if you have a full size spare, you should also put that into rotation
too, give you 25% more life. (tires have a shelf life after they are made, a
5 year old tire that is brand new is not as safe, rubber will age)
G***G
发帖数: 16778
5
来自主题: Faculty版 - 这种rotation接收吗?
学生带着前一个rotation的project来接着做rotation?
他的请求rotation的来信,同时发给我,也发给他前rotation实验室老板。
这种rotation如果不接收的话,会得罪人吗?
l*********8
发帖数: 4642
6
来自主题: JobHunting版 - Rotating an array in place
Another method (Block swap algorithm for array rotation):
void swapBlock(int a[], int block1, int block2, int blockSize)
{
int block1End = block1 + blockSize;
while (block1 < block1End) {
int tmp = a[block1];
a[block1++] = a[block2];
a[block2++] = tmp;
}
}
void leftRotate(int a[], size_t N, int k)
{
if (N<2) return;
k = (k%N + N) % N;
if (k == 0) return;
int start = 0; // start index of unprocessed array
int end = N; // end index of unprocessed array
int leftK ... 阅读全帖
d****g
发帖数: 7460
7
娃快八岁了,在酱油队游泳。我这个业余观众时不时还能发现点问题。好比他自由游,
先纠正过他一加速躯干就扭来扭去的问题。(想象战士在铁丝网下匍匐。)一说他就不
扭了,但也不太敢加速了。习惯一阵儿好点了。然后又告诉他不要扭腰,但要使劲身子
可以rotate。一试,25码掉了好几秒。(24-19。7,包括跳水的进步)
不过这个rotate,现在还有问题,他两面换气,换气时候自然rotate很足,但不换气中
间那次趴着游,好像就不好rotate,看着还不如换气那下子游的快。中间这次的发力是
需要有意识的rotate吗?
不扭腰后,现在又在正他的滑手。他经常一着急加速,手就从屁股左右出水,而不是从
大腿。结果看着闹腾反而还游不快。现在纠正他的手要从大腿侧出水。看着舒服多了。
希望下次能再掉点时间。
但蛙泳我就很不懂。。我能看出来他的踢腿很没劲儿。别人踢一下出去很远。他就不能
。这个蛙腿最重要的是什么要点啊?真希望也能纠正一个要点就掉好几秒。
m********4
发帖数: 607
8
Dear xdjm:
I have decided to take one term hands-on clinical rotation in a medical
university hospital. The paper work has be started early this week. I am
going to have a meeting with the person who charges the student clinical
rotation next week to talk about my rotation schedule.
I am writing to ask you to help me to make a best rotation plan before next
week meeting.
This is my primary thought on the rotation schedule, list as the time order.
1) Internal medicine (3mos--14 weeks)
a. ICU--... 阅读全帖
J******s
发帖数: 913
9
来自主题: _pennystock版 - Sector rotation
As long as there are weak sectors, the overall market will continue to go up
, or at least will not collapse. Sector rotation can happen in many
different ways. Example:
(1) rotation among financial/consumers/material/energy/technology/health/...
(2) rotation among large/mid/small-caps
(3) rotation between value and growth stocks.
......
During the past months, we have seen a major sector rotation: developed
market versus emerging market. Emerging market indexes lagged at least 15%
to 20% in a f... 阅读全帖
J******s
发帖数: 913
10
来自主题: _pennystock版 - Sector rotation
As long as there are weak sectors, the overall market will continue to go up
, or at least will not collapse. Sector rotation can happen in many
different ways. Example:
(1) rotation among financial/consumers/material/energy/technology/health/...
(2) rotation among large/mid/small-caps
(3) rotation between value and growth stocks.
......
During the past months, we have seen a major sector rotation: developed
market versus emerging market. Emerging market indexes lagged at least 15%
to 20% in a f... 阅读全帖
y****z
发帖数: 1606
11
去年在sears换了四个胎,之后三次换油都是在dealer那边换的,dealer说是换油加
rotation以及39点检测,我也没在意。今天把车开到sears特意做rotation and
balance,结果他们经理说车胎又要换了。我说车胎是一年前刚换的,看起来磨损并不是
太厉害,更何况还有4万迈warranty,结果他说因为我没有在他那里没隔3000迈做一次
rotation的记录,这个warranty是作废的。我跟他吵了半天无果,最气愤的是我当初换
胎特意问过4万迈warranty的事,他也没提醒一定要在他那里做rotation。感觉是吃哑
巴亏了,提醒大家一下。另外goodyear的胎才开15000迈就要换也真的太次了,开了这
么多年的车从来没有这个现象,以前的车换一次胎至少得开个3-4年,不知道是否和佛
州天气热,经常要过drawbridge有关。那个经理的态度实在太傲慢,一点商量的余地都
没有,谁给支支招,另外也请推荐换胎的deal和信得过的车胎。多谢!
m*y
发帖数: 1778
12
来自主题: Automobile版 - 周末DIY rotation, 悲剧
呵呵,真没想着省钱,就是玩玩,自己捣鼓车的大部分不为省钱吧
rotation 这东西在修车铺也属于费力不赚钱的吧,能赖就赖了。俺其实抓到过3次,车
铺rotation根本没做,包括dealer 和costco。按照pattern 做rotation 就更不用想了
,顶多前后换,spare 肯定不会帮你rotate。
a******7
发帖数: 7936
13
来自主题: Automobile版 - 低于4/32的轮胎不能做rotation?
刚去walmart想做个rotation,结果小二不给做,说前胎磨损太严重,tread已经低于4/
32。
我看了一下确实前胎磨损比后胎多。FWD。但是不至于后胎还有7/32,前胎已经低于4了
。去年10月刚换的新胎。一直按3000miles rotate一次,这次稍微懒了一点开了4000多
mile了。
打算明天找附近的车铺再看看
请问有这个说法么,低于4/32的轮胎不能rotation?小二说如果我给你rotate了,你的
轮子会blow off,我们walmart也要blow off.......我当场就无语了。。。。
i******e
发帖数: 1811
14
来自主题: Automobile版 - 新车多久做rotation?
一年换两次engine oil,一次rotation.
现在买十个月,今天换了第二次油,因为开到一万四了,可是我要求rotation,他们没
给做,还说下次一起做rotation.
可是下次换机油大约六个月以后了,这样安全吗?
而且超出一年的这次也要收费啦吧。。。
是不是年底前最好去rotation一次?,多谢
D**W
发帖数: 797
15
来自主题: Automobile版 - 大家轮胎Rotation都是在哪里做的?
新车去Dealer那儿免费换油。女小二说每7000Miles车胎需要Rotation一下,25还是30
一次,没记清,我说Rotation难道不是免费的,说没有。我说那好吧。
后来换完油,女小二说我的车胎状况挺好,可以再开7000左右才Rotation,可能我们是
每天开80,90英里高速的原因。
大家一般都是去哪里给车胎做Rotation?多久一次,多少钱一次?
y*******n
发帖数: 99
16
来自主题: Automobile版 - 请教轮胎rotate的问题
请教一个轮胎rotate的问题
之前在dealer那换过两次机油,7500迈或者一年一换,开得少,所以一年一换, $50一
次。最近一次一个月前,换机油后,dealer说front shock坏了,要换报$1000,还说轮
胎要全部换了,我觉得他扯淡,就没鸟它。
最近engine灯亮,拿去一家修车店修,被告知oil pressure 测量器出了问题。同时也
说轮胎也是有问题的,轮胎内测磨损严重,我问他是不是由于front shock坏了导致的
,他说,不是,front shock很正常,是由于长期没有rotate tire导致,说需要
rotating tires every oil change。
这两家,到底谁说的靠谱点? 车是前驱,轮胎4.5w迈2011年时候换的bridgestone新胎
,现在就6.5w迈,有磨损的这么快的吗? 一般胎不是5,6w的warranty么? 真的是因为
没有及时rotate轮胎导致的吗?
y*******n
发帖数: 99
17
来自主题: Automobile版 - 请教轮胎rotate的问题
。。。第一辆车,没概念,不知道特地要求换油的时候rotate。
不是四年没转,2013年的时候,轮胎有个钉子,在discount tire补的时候,rotate过
。也就是说两年没有rotate,就到今天这样的结果,不rotate缩短轮胎2/3的寿命?
f****i
发帖数: 129
18
来自主题: MedicalCareer版 - externship vs clinical rotations???
I shadowed with my boss in ICU. I did physical exams, and took history. How
would I call for this experience? i heard that we should avoid terms like
observership/externship, so what should I call it? Someone said I should
use clinical rotations? But for me rotation means rotate in different
department, in my case I just stay in ICU, so can i still call it rotation?
Thanks!
j*********g
发帖数: 324
19
来自主题: Pharmacy版 - 咨询有关P1 summer rotation
刚得到师兄在duke做了P1 community pharmacy的回复:
The rotation at the Cancer Center was exhilirating yet, very challenging. Dr
. Sheffield is a great preceptor but is very specific and straightforward.
He can be intimidating at times, but he is very nice and is willing to sit
down and talk to you about your progress, expectations and any concerns you
may have about the rotation.
There are two pharmacists and two technicians that work there. It gets
really crazy and hectic when one of the pharmacists is on v... 阅读全帖
b****e
发帖数: 1
20
Rotate是调节轮胎相对于车轴的位置。主要是防止某个轮胎过度磨损或
高速是有噪音或震动感。
我们自己前后左右调一下只解决基本问题。我说做不了的是高速Rotation.
那是调节轮胎质心与圆心(车轴)一致。需要把轮胎协下,装在专门的电机
上高速转动。
Alignment是调节车轴对车身的角度。如果某个轴这个角度不合适(过
大或过小),那相应轮胎就会只磨损轮胎内侧或只磨损外侧。干这个需要
专门的量具及存贮原厂家角度信息的计算机。

跟rotat
f*****y
发帖数: 142
21
no. there are uneven tire worns at different wheels.
if not doing rotation, a good tire can worn out at one point
much faster without reaching its warranty range.
most places has lifetime free balance and rotation
when you bought tires. need to do it every 7500 miles
or half year.
for existing tires, walmart has $7.5 per tire lifetime
balance and rotation plan to purchase additionally too.
a******g
发帖数: 1538
22
来自主题: Automobile版 - tire rotation pattern
周末去Costco给车做了rotation. 出门之后看到报告上标着前后rotation.
我记得以前做rotation时都是后面换到前面,然后前面交叉换到后面。 为什么这次
costco给我做的不一样了? 哪种更合理? 下次再做需要自己提出选择什么样的
pattern吗?
s********o
发帖数: 861
23
来自主题: Automobile版 - 换新胎时rotation和balance都要做吗?
rotation:把几个轮胎对调,这样磨损均匀。新轮胎做rotation属于吃饱了撑的。
Costco 买的轮胎可以终身免费rotation。
balance:轮胎在轮子上放正了。所有装轮胎的地方都应该一并做。轮胎安装费用应该
包括了。Costco 买的轮胎的安装包括balance。
alignment:轮轴相对于车底盘放正了。这个和轮胎无关。如果你的车轮内八字、外八
字、方向盘打正时车往一边偏就需要做。比较贵。和换新胎无关。
旧胎:除非你要拿回家搞个轮胎公园什么的,否则当然让装轮胎的拿走。要收费就认了
吧。
b****g
发帖数: 1204
24
来自主题: Automobile版 - 轮胎可以只做rotation不做balance吗?
我只记得balance&rotation,这两个似乎是在一起的。dealer换完油,rotation之后回
家感觉车到60迈开始抖,找到dealer说balance没做好。 dealer说厂家cover的maintenance只
包括rotation,balance另加45刀。我觉得dealer是不是有点无耻?
M********G
发帖数: 1207
25
我的车子STATE INSPECTION 没过,说是后轮两个轮胎太薄了,因为我是3年前在COSTCO
换的米其林轮胎,保修8万迈,才开了4万多迈,于是就开到COSTCO要他保修。小二查看
了我的记录后说我的轮胎没有定期做ROTATION,所以磨得特别快,不给保了,我说我是
在别的地方做的,他要我出示证明,我没找到,最后他还是坚持说要每7千到一万麦定
期做ROTATION才给保,后来我只好自己掏钱又买了两个新胎。
其实我一开始也在COSTCO做FREE的ROTATION,后来嫌每次都要等很久,就懒得去了,不
过话说回来米其林的胎也太不经磨了。
m*******n
发帖数: 50
26
小seden很久没有做tire rotation(至少10k miles),不久前发现前后轮磨损程
度不同,前轮磨损较大。故决定作tire rotation。前两天在dealer service那里做了
之后,dealer说:前后轮调换了,但原后轮磨损不好,所以现在开始开车会感觉到前轮
有‘突、突、突’响声,应该不会有什么问题。
我这两天开车,是感觉到‘突、突、突’的响声从前方发出,像是前面轮胎上有哪
一个位置不正常。虽然声音不大,但在车内能感觉得到。方向盘没有震动,手松开方向
盘车子也不会偏。车子停下来之后,看轮胎也看不出有什么异常。让别人开我的车,我
站在外面看,也看不出两个前轮有明显的装歪(我的车还有wheel lock,轮胎应该是锁
紧的了)。
做tire rotation之前没有任何问题。我担心的是,长此下去,会不会致使wheel变
歪了?我需不需要现在就把轮胎给换新的,反正过半年我也差不多要换新轮胎了?
恳请求教!
v********d
发帖数: 3531
27
昨天发现车后轮有钉子,补胎,打气,顺便做了rotation. 后轮很新,前轮磨损很严重
,rotation,做的x rotation. 今天头一次上高速,速度超过40mile,车方向盘抖动得很
厉害。我觉得是轮胎需要balance. discount tire 要60元,4个轮子做balance. 我记
得以前一个朋友说得,主要是前轮需要做balance. 不知道是不是真的。
反正4个都做了balance, 一共60元。20分钟就好了。车一点都不震动了。
上freeway很平稳。我觉得上次补胎的那个地方不地道。也不推荐一下balance.
D*****3
发帖数: 259
28
来自主题: Automobile版 - 到哪里找rotate 轮胎的地方
我去年中在附近一家老中店换了4个轮胎, 都是bridge stone的。自己有fire stone 终
生alignment的服务。现在想rotate一下轮胎。肯定是不去那个老中店了,因为发现他
家很不实在。想找个地方rotate 轮胎,然后再开到fire stone做alignment. 什么地方
能光rotate 比较好?
Z***e
发帖数: 2983
29
You are right.
and I read some article as well and second your opinion. common knowledge
believes that if the tires are balanced, they will tend to stay balance
unless they are mounted to different wheels.
Rotation should switch the tire and wheel together.
Usually, rotation plus balance cost between $25-40.
I already paid $30 for the rotation, and my tires were balanced. I think it
is reasonble for me to ask them to check the balance with no more than $10.

case
m**********e
发帖数: 12525
30
现在的车胎都是单向转动,里外非对称,要rotate必须先把橡胶
轮胎从金属wheel上拆下来,rotate后再mount上去
所以你自己完全没法做,
早点洗洗睡吧,明天掏钱交给shop rotate.
j*****e
发帖数: 11116
31
来自主题: Automobile版 - tire rotation要多少钱?
轮子比较大的265 18的。有的店是换tire的时候如果你买hazzard保险,就免费
rotation。我再想这个花不划算,保险是100块钱4个tire,如果一次rotation要25,那
4次就回本,8000mile一ro的话,4次就是3w2这个tire也基本到寿命了吧,也就是刚刚
收回100成本。但是考虑还有额外的保险作用,so还是值得?
还是说换4个tire的话,本来一般店就提供终身rotation?
t***5
发帖数: 1057
32
来自主题: Automobile版 - tire rotation要多少钱?
不少男生自己就可以rotate。有些店换机油免费rotate,比如TirePlus。一般一万迈
rotate一次,十几刀,dealer收得贵点。
N*****r
发帖数: 2108
33
来自主题: Automobile版 - Tire rotation
27000迈的旧车,昨天做的tire rotation发现前后轮磨损不一致,应该是前任车主一直
没做过tire rotation。我以后是不是不应该再做rotation,直接开到换轮胎了?
d******3
发帖数: 279
34
tire是在discount tire购的4只,每6000做一次rotate,
(1)但balance 多长时间做一次?这一次rotate做完后,车子及方向盘有明显的震动
感觉,是不是他们在rotate的时,按要求同时做balance啊?否则要求他们做balance?
还有一个问题:
(2)刹车时,车子有一顿一顿的感觉,是刹车片还是悬挂?
多谢了
i*****t
发帖数: 24265
35
来自主题: Automobile版 - 看来rotate tire应该废除掉
按照理论,tread多的必须放后面,不少shop只给新胎装后面,然后你换个地方rotate
下,效果不是一样新胎变前面了么?
看来rotate完全违背了这个理论,应该废除rotate tire。
w***3
发帖数: 938
36
来自主题: Automobile版 - Tire Rotation真是力气活。。。。
rotation 真没多少钱。
以前学生的时候,换机油,也ROTATION过,确实累,但不是搬轮胎,主要是手动拧那几
个螺丝,费老劲了,上个EXTENTION bar都不太好用。
其实我去dealer那里,一般等换油coupon的时候($25 for regular oil),再加个$10,
dealer就给我tire rotation了。
f*****7
发帖数: 1008
37
来自主题: Automobile版 - 怀疑dealer 没有真的给我rotate tire
直接告诉他们我知道没做rotation,打回去重做。
而且我的轮胎是directional tire,只能前后rotation。竟然有小工给我顺时针
rotation,被我发现了才没话说。。。
t*****z
发帖数: 812
38
昨天去costco做轮胎rotation的时候他们给做了tire balance(如果轮胎不是他们那里
买的话要$16)。这个是怎么回事,跟普通的blance有什么区别?我记得普通的blance是
用电脑做的,不便宜
如果自己DIY rotation的话要不要做balance?是不是意味着以后rotation都得到外面
做了?
t*****z
发帖数: 812
39
算了,自己不折腾了,rotation就是个体力活,没有好工具能折腾你半天,准备到
walmart去了,$9.00 lifetime rotation。属于一次性投资

rotation
Y****a
发帖数: 17170
40
来自主题: Automobile版 - 日托平时做不做tire rotation?

所有的车的手册都会要你rotate的。反正rotate更好了。
我只是说,按道理讲,FWD的车不需要rotate
n***p
发帖数: 7668
41
来自主题: Automobile版 - bimmer原来不建议做rotation
Volvo的也不推荐tire rotation。小二说汽车的电脑已经适应了轮胎的现状,要是
rotate的话,汽车需要重新学习,调整,适应。而且rotate之后轮胎噪音会增大。
N****2
发帖数: 531
42
来自主题: Automobile版 - bimmer原来不建议做rotation
They want you do the alignment after tire rotation which is expensive.
Actually not long ago, they rotates tires for you during scheduled
maintenance.
I will rotate the tires somewhere else.
G********r
发帖数: 3161
43
来自主题: Automobile版 - 问一下轮胎Rotation的问题
去年冬天车胎被扎了,Walmart说不能补,就在Sam's Club买了一个新的换上了,好象
它家是终身免费Rotation,但是我4个轮胎只在它家买了一个,可以在家终身免费
Rotation吗?还是说这个终身免费Rotation是要换4个轮胎才行?谢谢了。
d******y
发帖数: 11545
44
来自主题: Automobile版 - 换机油的时候顺便tire rotation?

难道rotation和balance不是一起做的吗?
我以前在walmart换胎就直接买life time的rotation和balance,从来没听说做了
rotation不做balance的。
w******r
发帖数: 936
45
来自主题: Automobile版 - costco换轮胎后6k mi要再去rotation吗
如果每次换油做rotation,四个全新米其林能跑多少mile?


: 应该每次换油都要做。你前后轮磨损不一样,Costco就不给你做rotation了。不做

: rotation,4个全新米其林就4万麦吧。

d**e
发帖数: 6098
46
请不要发信问我关于这个职位的情况,因为我也只是转这个email,或者可能版上很多同
学也收到.
-------------------------------------------
RF or Firmware Rotation - Multiple Entry Level or New Grad Engineering
Openings- San Diego- (LTE, Systems, HSPA, M2M, Device, Broadband, Wireless,
On-site gym, Tennis)
Have you graduated within the last 3 years or less with your BS/ MS in CS,
CE, EE, or similar and you are looking for a challenge in the mobile device
space?
Novatel Wireless Inc. is offering this opportunity with perks such as yoga/
aerobi... 阅读全帖
w**********5
发帖数: 232
47
来自主题: Working版 - 好老板vs rotation哪个重要
i haven't seen many success stories from rotational programs.
说到底,要突飞猛进就必须要有后盾挺你,有上面人为你说话。rotation的时候大家都
知道你早晚要走,重要的活不见得给你,几个rotation下来不见得有人会力挺你。
好老板很重要,好好想想吧
w*********i
发帖数: 658
48
多谢回复。想进一步请教一下,我作为职场新人还挺喜欢公司HIGH ROTATION的,不过
HIGH ROTATION是在GLASSDOOR里面看人评论的,但实际情况不晓得如何。面试时候也忘
了问。不知可否直接问公司HR我这个职位可否参加公司的ROTATION PROGRAM?
谢谢!
s******s
发帖数: 43
49
来自主题: Virginia版 - Asian Rotating Singles Dinner in DC/MD/VA
Asian Rotating Singles Dinner in DC/MD/VA
WHEN: Saturday, September 24, 2011 from 07:00 PM - 10:00 PM
WHERE: Babe's Sports Bar 1115 East West Hwy Silver Spring, MD 20910 Walking
distance from the Silver Spring Metro Station.
Our singles dinners are some of our most popular events, and this promises
to be a great evening and a unique opportunity to meet your fellow Asian
professionals. We will seat you at a table with people of similar interests,
and then we will rotate you multiple times after d... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)