由买买提看人间百态

topics

全部话题 - 话题: ele
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
L*******y
发帖数: 231
1
来自主题: HiFi版 - used KEF at Boston
好像boston特别喜欢KEF,这又有人清场了。
KEF Q95C Centre Speaker - $80 (Newton)
http://boston.craigslist.org/gbs/ele/1644473477.html
KEF Q55 Loudspeakers - $120 (Newton)
http://boston.craigslist.org/gbs/ele/1644468596.html
还有 $150 for loudspeakers and centre speaker together
i*d
发帖数: 2640
2
别多找了。
http://minneapolis.craigslist.org/hnp/ele/1632097560.html
这个一代低音炮之王,paradigm servo 15。
再加上这套除去低音炮
http://minneapolis.craigslist.org/hnp/ele/1646995967.html
paradigm studio 80。
比你列的这些好很多很多。

to
u*f
发帖数: 59
3
来自主题: HiFi版 - 这两b&w怎么样?
http://seattle.craigslist.org/skc/ele/1908799421.html
http://seattle.craigslist.org/see/ele/1912361770.html
原来的KEF IQ3拿去接receiver了,考虑用这个接NAD C325,价钱和这样搭配如何?
m***s
发帖数: 215
4
I recommend used Klipsch speakers. I used Quartet for my Karaoke system. I
occasional use my vacuum tube amp, Triangle Antal speakers, Beringer 10FX
Mixer, and the sound is even better.
I think these Klipsch speakers are good in terms of sound and price:
http://sfbay.craigslist.org/eby/ele/3208698045.html
http://sfbay.craigslist.org/sfc/ele/3215463299.html
My personal experience on mixer is that Karaoke mixer is easier to use for
most people. Not many people want to mess around with all the butt... 阅读全帖
m******t
发帖数: 164
5
来自主题: HiFi版 - McIntosh的选择?
声明先,不急,可以等。
车程附近有两个lists,
a)http://detroit.craigslist.org/okl/ele/3354392454.html
b)http://annarbor.craigslist.org/ele/3359804087.html
最近有点迷麦家,不过太贵的买不起。
其实这个帖子也是想让版上牛人指导一下我的下一步升级道路。预算基本上是1000音源
,1000功放,1000音箱。可以进出一些但基本上就是这种量级。
我的现有装备如下:
双声道:
1)Turntable:Technics SL-1200 MKII ($120左右买的,品相一般。卖家还留了一
个,看样子是个DJ。左声道没有声音一段时间了,还得琢磨如何弄好呢)。唱放是TCC
TC-760LC。
2)团购708(http://www.mitbbs.com/article/HiFi/31250247_3.html),团购另一个耳放和DAC(http://www.mitbbs.com/article_t/HiFi/31199343.html
3)Sonic Impact Super T Amp(... 阅读全帖
UD
发帖数: 182
6
书房(14x15),主要听钢琴小提琴(比如梁祝之类)
没有cd/dvd/blueray player,有计算机,网线, 有nas (windows home server)
当然我不一定要用前级和后级,用Integrated Amplifier也可以, 如果这样更可行的
话。
我在西雅图,看了看craig's list, 似乎有些东西卖,但当然我不确定。
比如说下面这个NAD功放,算是个好deal吗?
http://seattle.craigslist.org/see/ele/3979404302.html
还有rotel,在温哥华实在想的话,就开车去啦:
http://vancouver.en.craigslist.ca/van/ele/3952907536.html
y****p
发帖数: 87
o******e
发帖数: 74
8
来自主题: JobHunting版 - 求高手解答cs 面试题?
对于5个的情形,可以分成2和3来解决。 对于每一个特定的target, 3个元素的找法可
以O(n^2)得到。(通过先对原来的数组排序,再利用 三个指针)
而对于两个元素的和,可以用 O(n^2)建立hashtable, 依次exhaust里面所有的元素ele
, 在3里面找对用的 target = 0 - ele
总时间是O(n^4)
a*******y
发帖数: 1040
9
现场写一个吧:
void Subset(int A[],int n)
{
int number = 1< for (int i = 0;i < number; i++)
{
int temp = i;
int* ele = A;
cout << "{"
while (temp > 0)
{
if (temp&0x01)
count <<*A;
temp >>=1;
++ele;
}
cout <<"} "
}
}
l*****a
发帖数: 14598
10
来自主题: JobHunting版 - 问求array中3个数和最接近k的解法
问别人好歹拿点readable的code吧?
what does below 2 statements mean?
ele = arr[i] - k;
if(*front *rear == ele)
f**********t
发帖数: 1001
11
来自主题: JobHunting版 - LinkedIn 面试题讨论
class Component {
public:
virtual char next() = 0;
virtual bool hasNext() = 0;
virtual void traverse() = 0;
};
class Leaf : public Component {
char val;
bool _hasNext;
public:
Leaf(char v) : val(v), _hasNext(true) { }
char next() {
_hasNext = false;
return val;
}
bool hasNext() {
return _hasNext;
}
void traverse() {
cout << val << ' ';
}
};
class Composite : public Component {
vector children;
size_t _idx = 0;
void goNext() {
while (_... 阅读全帖
M*****M
发帖数: 20
12
来自主题: JobHunting版 - 一道面试题
类似找最大BST subtree, bottom up.
bool findsubtree(TreeNode *node, unordered_set &set, vector
&vec) {
if(not node) {
return true;
}
unordered_set leftset;
unordered_set rightset;
bool left = findsubtree(node->left, leftset, vec);
bool right = findsubtree(node->right, rightset, vec);
if(left&&right) {
//leftset and rightset overlap
for(auto ele:leftset) {
if(rightset.find(ele)!=rightset.end()) {
... 阅读全帖
g****9
发帖数: 163
13
My code also complains memory limit exceed. Any suggestions why?
LinkedList stack = new LinkedList();
LinkedList ministack = new LinkedList();

public void push(int x) {
stack.add(x);
if (ministack.isEmpty() || ministack.getLast() >= x) {
ministack.add(x);
}
}
public void pop() {
if (stack.isEmpty()) {
return;
}
int ele = stack.removeLast();
if (!ministack... 阅读全帖
r*g
发帖数: 186
14

yes you are right,
I tried your idea and it's much faster than before.
int calcHash(std::vector &v)
{
int res = 0;
for(auto ele: v){
res = res * 2 + ele;
}
return res;
}
bool canIWin(int, int sum, std::vector &v, int obj,
std::unordered_map &cache)
{
int key = calcHash(v);
if(cache.find(key) != cache.end()){
return cache[key];
}
... 阅读全帖
r*****y
发帖数: 3406
15
normally you pay ele every 3 month. what else did you do?
also, $1500 even for 3 month is unbelievable, you should really argue this
with your landlord, ask him to talk to ele company.
my bills last 3 month for 3 people is around $300 only.
b*****k
发帖数: 33
16
all prices are negotiable! must go by this Saturday.
If you are interested ,please contact a***********[email protected]
mattress/box/frame $120
http://boston.craigslist.org/gbs/fuo/2515134388.html
seven-drawer cart (very good condition) - $10
http://boston.craigslist.org/gbs/clo/2515142217.html
breakfast table set (with two chairs,very good condition) - $20
http://boston.craigslist.org/gbs/fuo/2515152906.html
chair - $5
http://boston.craigslist.org/gbs/fuo/2515157529.html
shoe shelf $10
http://bosto... 阅读全帖
l****x
发帖数: 1356
e*******n
发帖数: 1
18
搬家了,只能忍痛卖掉喜欢的家具。如果你也喜欢 comtemporary style, 就来看看吧
。照片和详细情况都在每样东西下方的craiglist link 里。 有兴趣可以email :
[email protected]
/* */
白色真皮沙发 $ 249
ikea 羊毛地毯 $ 45
照片及详情请见: http://boston.craigslist.org/gbs/fuo/5139413840.html
大理石arc落地灯 $190
照片及详情请见: http://boston.craigslist.org/gbs/ele/5139408509.html
Insignia TV stand for TV up to 55'' $99
详情请见: http://boston.craigslist.org/gbs/fuo/5139431667.html
ViewSonic 24寸LED 电脑显示器 $99
详情请见: http://boston.craigslist.org/gbs/sys/5139447999.html
Kenmore 2.1 cu.... 阅读全帖
rs
发帖数: 29
19
All are located close to MIT campus, pick up only. Price negotiable. thanks!
Contact me: [email protected]
/* */
1. Full size memory foam mattress $80
http://boston.craigslist.org/gbs/fuo/5138959996.html
2. nightstand $10
http://boston.craigslist.org/gbs/fuo/5140603273.html
3. night stand lamp $10
http://boston.craigslist.org/gbs/fuo/5140593513.html
4. computer chair $5
http://boston.craigslist.org/gbs/fuo/5140602971.html
5.desk lamp $5
http://boston.craigslist.org/gbs/fuo/5140602810.html
... 阅读全帖
i*d
发帖数: 2640
20
要2000 mile大搬家,moving sale.
有什么各位看的上的,虽不便宜,但是确实优惠多多。
在craigslist上也放了,版友八折优惠。
物件比较沉,芝加哥附近的比较可行。
1. Jamo THX one 5.2音箱套装,3个 LCR前置音箱,两个3三极环绕,2个巨大12寸无源
低音炮。MSRP$5500(千真万确)。估计得有上百磅重吧。世界上第一套THX认证的音箱
。全黑的。
http://chicago.craigslist.org/wcl/ele/1734628727.html
2. M&K MX-70 低音炮一个。双八寸单元,四十磅重。体积小,但是效果一点不小
。MSRP接近$1000。
http://www.audioreview.com/mfr/m-and-k/floorstanding-speakers/mx-70b/PRD_120102_1594crx.aspx
http://chicago.craigslist.org/wcl/ele/1734641027.html
3. YAMAHA RX-V1 当年(2000年)旗舰级别的功放,MSRP $3300。
s*******c
发帖数: 5161
21
来自主题: Chicago版 - Moving Sale
帮朋友转发,谢谢!
========================================================================
Location Evanston, Noyes CTA station
Price negotiable
Kitchen appliances
http://chicago.craigslist.org/nch/app/3270540765.html
Comcast modem and routers
http://chicago.craigslist.org/nch/ele/3270552056.html
TV set
http://chicago.craigslist.org/nch/fuo/3270559743.html
New and almost new printer/scanner/copier
http://chicago.craigslist.org/nch/ele/3270512187.html
Contact q*******[email protected]
m*****g
发帖数: 79
a*****g
发帖数: 336
23
TV stand - $15
Pioneer A/V Multichannel receiver - $50
Labtec computer speakers - $10
有兴趣的给我打电话 404-771-0830
详情请见
http://atlanta.craigslist.org/ele/1083046244.html
http://atlanta.craigslist.org/ele/1083139961.html
http://atlanta.craigslist.org/sys/1083159291.html
a*****g
发帖数: 336
24
TV stand - $15
Pioneer A/V Multichannel receiver - $50
Labtec computer speakers - $10
有兴趣的给我打电话 404-771-0830
详情请见
http://atlanta.craigslist.org/ele/1083046244.html
http://atlanta.craigslist.org/ele/1083139961.html
http://atlanta.craigslist.org/sys/1083159291.html
l*****i
发帖数: 16
d*******l
发帖数: 308
26
moving sale, everything need to go:
全部家具,电器,等各种,照片价格都在下面craigslist链接中:
http://atlanta.craigslist.org/nat/fuo/3776589999.html
http://atlanta.craigslist.org/nat/ele/3777443826.html
http://atlanta.craigslist.org/nat/ele/3777456970.html
地点在大中华附近,请联系a******[email protected]
p******z
发帖数: 216
l**********o
发帖数: 34
c**********g
发帖数: 40
c**********g
发帖数: 40
30
吸尘器一个立式一个手持的
拖把是Swiffer组装式的,全新
http://tippecanoe.craigslist.org/ele/2877847228.html
音箱
http://tippecanoe.craigslist.org/ele/2877794420.html
自行车
http://tippecanoe.craigslist.org/bik/2877799350.html
空调是PV用的,不知道现在有没人买了
http://tippecanoe.craigslist.org/app/2877856125.html
茶几
http://tippecanoe.craigslist.org/fuo/2877859515.html
价钱图片联系方式链接里都有。有意者请联系。
c**********g
发帖数: 40
31
7个相框总共$15
http://tippecanoe.craigslist.org/hsh/2888159751.html
电饭锅 $10
茶壶 $5
food multi-slicer $5
以上都是近似全新
cooktop cleaner $5
这个为全新,尚未拆包。
http://tippecanoe.craigslist.org/hsh/2888188340.html
还有一个熨斗,全新,没拍照片。$8
扶手椅 $20
总裁椅 $30 (在craigslist上写的是$50)
普通转椅 $5
http://tippecanoe.craigslist.org/fuo/2888204203.html
豪华按摩椅 $100
非常好用。5个模式9个强度,可调节热度、座椅斜度、按摩时间和部位等。
适合孕妇,按摩脊椎和肿胀的腿。
http://tippecanoe.craigslist.org/fuo/2888215524.html
另外继续卖
茶几 $20
http://tippecanoe.craigslist.org/fuo/2877859515.html
山地车 $20
http... 阅读全帖
t*******n
发帖数: 90
32
来自主题: Indiana版 - 暑期清理家用物品
显示器
ASUS LCD monitor 19 inches - $40
http://tippecanoe.craigslist.org/ele/5102352666.html
音箱
Logitech X540 Speaker System - $40
http://tippecanoe.craigslist.org/ele/5102362614.html
卧推
Bench Weight Set 100-Pound - $40
http://tippecanoe.craigslist.org/spo/5102376606.html
一些零碎
A lamp - $5
A floor lamp - $8
A lap pad - $3
3 pieces of tv cables - $5 each piece
http://tippecanoe.craigslist.org/fuo/5102387669.html
价格可以再商量。
请联系 [email protected]
/* */
A*******a
发帖数: 5
33
来自主题: LosAngeles版 - Moving Sale
请看看有没有需要的东西。 Price are negotiable. Pickup required.
http://losangeles.craigslist.org/wst/fuo/4669362793.html
http://losangeles.craigslist.org/wst/fuo/4669408395.html
http://losangeles.craigslist.org/wst/ele/4668025165.html
http://losangeles.craigslist.org/wst/ele/4667997676.html
Also has a treadmill. No picture for now. Please contact Tony @ 310-469-4823.
l*******3
发帖数: 1074
34
来自主题: Minnesota版 - CTC 搬家甩卖
双人自行车
http://minneapolis.craigslist.org/ram/bik/2188338998.html
滑雪 skis 和 boots
http://minneapolis.craigslist.org/ram/spo/2188350962.html
27寸电视
http://minneapolis.craigslist.org/ram/ele/2188361140.html
双人沙发
http://minneapolis.craigslist.org/ram/fuo/2188368824.html
落地灯,电风扇,面包机
http://minneapolis.craigslist.org/ram/ele/2188381552.html
美能达胶片相机
http://minneapolis.craigslist.org/ram/pho/2188411143.html
价格可议,站内联系(或者craigslist邮件联系),还有很多家具(书桌,床垫,座椅
等)、家用
物品没有列出,CTC附近的欢迎参观。
谢谢!
J*****n
发帖数: 4859
s********3
发帖数: 21
36
来自主题: NewMexico版 - 【Albuquerque回国甩卖!】
大家好!我即将回国,正在甩卖个人物品。物品照片和价钱请见2楼附件。所有物品都
可以讲价. 只现金交易. 地址1501 Indian School Rd NE, Albuquerque, NM 87102.
抱歉不能送货请自取.
联系方式:email: [email protected];QQ: 479010314;电话: 443-799-5805 (请先邮
件联系再致电)。
物品列表(每件物品后面是craigslist的链接,可看到更多照片):
42寸电视机:$150. https://albuquerque.craigslist.org/app/6100439720.html
Dell 23寸显示器一对:单买一个$80,两个全买$150. https://albuquerque.
craigslist.org/sop/6143280571.html
带遥控器电暖器:$30. https://albuquerque.craigslist.org/app/6100443689.html
室内晾衣架:$15. https://albuquerque.craigslist.org/... 阅读全帖
J*****n
发帖数: 4859
37
http://newyork.craigslist.org/mnh/ele/3220982117.html
http://newyork.craigslist.org/mnh/ele/3220989313.html
http://newyork.craigslist.org/mnh/bik/3220971215.html
还有,电熨斗,电吹风,大的烫衣板,合在一起35块。基本是新的。
有兴趣的朋友,站内联系。
i*****c
发帖数: 78
i*****c
发帖数: 78
i*****c
发帖数: 78
k*******n
发帖数: 2399
41
In the future, historians may likely mark the 2010 midterm elections as the
end of the California era and the beginning of the Texas one. In one stunni
ng stroke, amid a national conservative tide, California voters essentially
ratified a political and regulatory regime that has left much of the state u
nemployed and many others looking for the exits.
California has drifted far away from the place that John Gunther described i
n 1946 as "the most spectacular and most diversified American state .... 阅读全帖
s**********e
发帖数: 29
w********l
发帖数: 9
W*********7
发帖数: 426
44
Just checked har.com, this is a house in Stonebridge subdivision of
Silverlake but is already sales pending:
http://search.har.com/engine/3118-Valley-Ct-Manvel-TX-77578_HAR
Stonebridge is the most southern and also the newest subdivision in
Silverlake community, with last few houses built around 2008-2009(but these
new ones are not on market yet).
Here is another house in Fieldstone(subdivision on Southfork Dr), still on
market for sale:
http://search.har.com/engine/3119-Autumnjoy-Pearland-TX-77... 阅读全帖
g********0
发帖数: 15010
45
来自主题: WashingtonDC版 - apartment in Gaithersburg?
The elementary schools (Fields Rd. and Brown Station schools) of the Orchard
Pond and Government are very bad.
Brighton Village goes to Diamond Ele. school, which is much better than
above two ele. schools.
The two middle schools for the three apartments are at the same level. All
three apartments go to the same high school.
g********0
发帖数: 15010
46
来自主题: WashingtonDC版 - 借人气问下NIST附近租房
Yes, It is cheaper in east side of I270 than in west side. There are several
apartments along MD 355 which is not far away from NIST.As you have school
kid, I do not recommend you live there. There are many Lao Mo and Lao Hei
there. So the housing is cheaper. Generally speaking, west side of I270 is
better than east side of I270. west side of MD 355 is better than the east
side of MD 355.
I recommend Bright Village (as I know, the only apartment goes to Diamond ele.) to you as the elementary sc... 阅读全帖
j*****7
发帖数: 318
47
来自主题: WashingtonDC版 - 借人气问下NIST附近租房
真详细。
非常感谢!

several
school
ele.) to you as the elementary school (Diamond ele.
afford
c*h
发帖数: 33018
48
来自主题: WashingtonDC版 - 请问住在哪里比较好?
发信人: george9900 (小小虎), 信区: WashingtonDC
标 题: Re: 借人气问下NIST附近租房
发信站: BBS 未名空间站 (Sun Apr 8 22:52:11 2012, 美东)
Bright Village
Yes, It is cheaper in east side of I270 than in west side. There are several
apartments along MD 355 which is not far away from NIST.As you have school
kid, I do not recommend you live there. There are many Lao Mo and Lao Hei
there. So the housing is cheaper. Generally speaking, west side of I270 is
better than east side of I270. west side of MD 355 is better than the eas... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)