由买买提看人间百态

topics

全部话题 - 话题: def
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
N**********d
发帖数: 9292
1
【 以下文字转载自 Programming 讨论区 】
发信人: NeedForSpeed (working~~~~~), 信区: Programming
标 题: sed里面正则表达式匹配字符越少越好怎么写?
发信站: BBS 未名空间站 (Sun Mar 13 20:56:30 2011, 美东)
例如:其中引号内长度不定
"abc", "def"
".*"
引号里面内容越少越好,我不想是 abc", "def
想要分别是
abc和def
这个该怎么写呢?
i***r
发帖数: 1035
2
【 以下文字转载自 Programming 讨论区 】
发信人: iiiir (哎呀我最牛), 信区: Programming
标 题: python code performance --- normal or too slow?
发信站: BBS 未名空间站 (Tue Jan 7 11:21:52 2014, 美东)
file is 2.5GB with 18,217,166 lines
my python script took about 20-30 minutes to finish
seems slow?
Thanks!!
input file data structure (showing first two lines, wrapped):
chromo pos ref alt dc1 dc2 dc3 dtm bas din
crw itb ptw spw isw irw inw ru1 ru2
ru3 im1 ... 阅读全帖
O*******d
发帖数: 20343
3
来自主题: Programming版 - 一个面试题目,用C实现
Do you notice that the char pointer passed to the function is not a constant
. The content it points to has changed after the function call.
char ch[]="abc def ghi jkl mni"; allow the string to be changed because ch
has its own memory.
char *ch="abc def ghi jkl mni"; does not allow the string to be changed
because "abc def ghi jkl mni" is a constant and ch points to it.
s***e
发帖数: 122
4
做个table就可以了。
比如说这样
char * keys[2] = {"abc", "def"};
int abc;
int def;
int * values[2] = {&abc, &def};
然后你找出你的a在keys里面的下标,就查出它的value了
k***r
发帖数: 4260
5
来自主题: Programming版 - 有人用Haskell吗
The code structure info will not be lost. It's probably a bit
more work to implement but it's doable. Let me give you an example.
Let's say you have:
def f1():
____print 'f1'
def f2():
____print 'f2'
And we want to inline f2() into f1(). You cut f2's code,
and go to f1, right after the ":", hit enter. The carret will be
indented automatically because it's inside a function. Before you
do Paste, the code looks like this:
def f1():
____<- this is where the carret is
____print f2
Then you hit "Past
g*********s
发帖数: 1782
6
来自主题: Programming版 - 一个popen加gzip的问题
FILE *fp = popen(gzip_file(fileName), "w");
...
gzip_file是这样定义的:
const char* gzip_file(const char* file_name)
{
static sda::string cmd;
cmd = _gzip_path + sda::string(" > ") + sda::string(file_name);
return cmd.c_str();
}
现在传进的参数文件名比较怪异,带空格的,比如"abc def.gz"。这样gzip command变
成了:gzip >abc def.gz。然后gzip报错:gzip: def.gz: No such file or
directory。但是abc文件还是生成了,而且文件指针也返回了。问题在于abc这个文件
根本无法写入,所以后面又出现了fwrite error。
有什么办法第一时间抓住这个gzip错误呢?不许用parser提前分析文件名。
N**********d
发帖数: 9292
7
例如:其中引号内长度不定
"abc", "def"
".*"
引号里面内容越少越好,我不想是 abc", "def
想要分别是
abc和def
这个该怎么写呢?
d****n
发帖数: 1637
8
来自主题: Programming版 - return value of a python function...
My simple ideas.
1. use global in your function
def func( ):
global myLargeObj
modify myLargeObj
2. pass obj by parameter but all your change is on a mutable obj.
def func(myLargeObj):
modify myLargeObj
"""
Note: dont use return statement here.
"""
E.g.
>>> d={}
>>> d[1]=123
>>> def func(dd):
... del dd[1]
...
>>> func(d)
>>> d
{}
>>>
l*******G
发帖数: 1191
9
来自主题: Programming版 - Python擂台:算24点
#!/usr/bin/python
def permu(xs):
if xs:
r , h = [],[]
for x in xs:
if x not in h:
ts = xs[:]; ts.remove(x)
for p in permu(ts):
r.append([x]+p)
h.append(x)
return r
else:
return [[]]
def product(*args, **kwds):
# product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
... 阅读全帖
l*******G
发帖数: 1191
10
来自主题: Programming版 - Python擂台:算24点
#!/usr/bin/python
def permu(xs):
if xs:
r , h = [],[]
for x in xs:
if x not in h:
ts = xs[:]; ts.remove(x)
for p in permu(ts):
r.append([x]+p)
h.append(x)
return r
else:
return [[]]
def product(*args, **kwds):
# product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
... 阅读全帖
f********o
发帖数: 1163
11
#!/usr/bin/python
import os;
import sys;
class Person:
''' Defines a Person class '''
population = 0
def __init__(self,name):
''' I really hate the indents. '''
self.name = name;
print 'The person'"'s"'name is %s' % self.name;
Person.population += 1;
def __del__(self):
print '%s says bye;' % self.name
Person.population -= 1
if Person.population == 0:... 阅读全帖
d********g
发帖数: 10550
12
来自主题: Programming版 - 抛砖引玉,来谈谈functional programming
数字大了不行,recursion无优化算不出fib(1000),而且效率很低。有个矩阵的解法还
可以:
def _mul(A, B):
a, b, c = A
d, e, f = B
return a * d + b * e, a * e + b * f, b * e + c * f
def _pow(A, n):
if n == 1:
return A
elif n & 1 == 0:
return _pow(_mul(A, A), n // 2)
else:
return _mul(A, _pow(_mul(A, A), (n - 1) // 2))
def fib(n):
return n if n < 2 else _pow((1, 1, 0), n - 1)[0]
普通笔记本算fib(1000000)也就一两秒
d********g
发帖数: 10550
13
来自主题: Programming版 - 抛砖引玉,来谈谈functional programming
数字大了不行,recursion无优化算不出fib(1000),而且效率很低。有个矩阵的解法还
可以:
def _mul(A, B):
a, b, c = A
d, e, f = B
return a * d + b * e, a * e + b * f, b * e + c * f
def _pow(A, n):
if n == 1:
return A
elif n & 1 == 0:
return _pow(_mul(A, A), n // 2)
else:
return _mul(A, _pow(_mul(A, A), (n - 1) // 2))
def fib(n):
return n if n < 2 else _pow((1, 1, 0), n - 1)[0]
普通笔记本算fib(1000000)也就一两秒
H****S
发帖数: 1359
14
来自主题: Programming版 - 判断Python程序员水平的一个试题
很简单,写一个Python Singleton Class。
类似于这样的不算,
class foo(object):
_instance = None
@classmethod
def get_instance(cls, *args, **kargs):
if cls._instance is None:
cls._instance = foo(*args, **kargs)
return cls._instance
...
因为用户还是可以直接调用foo(*args, **kargs)来创建新的object,而Python是没
有private/protected这样的access modifier的。
我的答案,
class foo(object):
_instance = None
def _initialize(self, *args, **kargs):
# do your initialization here
def __new__(cls, *args, **karg... 阅读全帖
p**o
发帖数: 3409
15
import struct
import socket
def inet_atoi (ipstr):
""" Converts xxx.xxx.xxx.xxx IPv4 string to a 32-bit int.
"""
#Equivalent pure Python implementations:
#lambda ipstr: reduce(lambda x, y: (x << 8) | y,
# map(int, ipstr.split('.')))
#lambda ipstr: long(''.join("%02x" % int(i)
# for i in ipstr.split('.')), 16)
#
return struct.unpack ("!I", socket.inet_aton (ipstr)) [0]
def inet_itoa (ipint):
""" Converts 32-bit int IPv4... 阅读全帖
H****S
发帖数: 1359
16
来自主题: Programming版 - scala 真是一个无法无天的糟货
Scala最大的benefit其实还是type safety。前面有人好像有人说太多option放在一起
不是每次都能记得做pattern match。其实懂一点Monads的人可以这么做
def a:Option[A]
def b(aa:A):Option[B]
def c(bb:B):Option[C]
val r:Option[C] = for {
aa <- a
bb <- b(aa)
cc <- c(bb)
} yield cc
这样写code一目了然,并且type safe。
d*****u
发帖数: 17243
17
来自主题: Programming版 - Python有什么好的方法建two-way pipe?
我找到一个相对简单的办法,贴一下。
自己定义一个class,
read和write代替默认的读写方式
class Pipe(subprocess.Popen):
def __init__(self, argv, timeout = 0):
self.timeout = timeout
subprocess.Popen.__init__(self, argv, stdin = subprocess.PIPE,
stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
def write(self, data):
poll = select.poll()
poll.register(self.stdin.fileno(), select.POLLOUT)
fd = poll.poll(self.timeout)
if len(fd):
f = fd[0]
if f[1] > 0:
... 阅读全帖
L******3
发帖数: 18
18
来自主题: Programming版 - Python and C/C++ Question
用Python实现了一个简单的class,如下:
class Multiply:
def __init__(self):
self.a = 6
self.b = 5

def multiply(self):
c = self.a*self.b
print 'The result of', self.a, 'x', self.b, ':', c
return c

def multiply2(self, a, b):
c = a*b
print 'The result of', a, 'x', b, ':', c
return c
用C写了个一个程序去instantiate上面class的实例,并调用两个method,一切都没什
么问题。可是发现,当我在python scrip... 阅读全帖
i***r
发帖数: 1035
19
file is 2.5GB with 18,217,166 lines
my python script took about 20-30 minutes to finish
seems slow?
Thanks!!
input file data structure (showing first two lines, wrapped):
chromo pos ref alt dc1 dc2 dc3 dtm bas din
crw itb ptw spw isw irw inw ru1 ru2
ru3 im1 im2 im3 im4 xj1 xj2 qh1 qh2
ti1 ti2 glw mxa rwa ysa ysb ysc cac jaa
jac
chr01 242806 G ... 阅读全帖
H****S
发帖数: 1359
20
来自主题: Programming版 - 看来跳了Scala的坑是对的
如果只有flatMap,unit是必须要有的,否则map无从实现
def map[B](f: A => B): Option[B] = this flatMap (a => unit(f(a)))
这些细节对于application developer来说其实并不重要,大多数人实际过程中直接让
for comprehension做所有的heavy lifting
def zip[A, B](oa: Option[A], ob: Option[B]) = for {
a <- oa
b <- ob
} yield (a, b)
BTW, 我个人其实比较偏向这样写来着
def zip[A, B](oa: Option[A], ob: Option[B]) = (oa, ob) match {
case (Some(a), Some(b)) => Some((a, b))
case _ => None
}
而且个人认为对于scala的使用不用过于强调它的FP特性。我之前写程序过于强调
procedure一定要足够pure,如果有一个var存在即便是在actor内部,那就像吃了... 阅读全帖
m********2
发帖数: 89
21
来自主题: Programming版 - 问个PYTHON问题
@XXX(5)
def LLL():
...
is the same as
def LLL():
...
LLL = XXX(5)(LLL)
so the new LLL is the same as
def S(*args,**kwds):
for i in xrange(5):
print 20+LLL(*args, **kwds), ","
return S
L***s
发帖数: 1148
22
来自主题: Programming版 - python一问,怎么实现这个函数

需求提得有问题,会写程序的人一般不这么问
我猜你可能想要下面的效果,猜得不对你自己酌情修改
In [4]: class Foo (object):
...:
...: def __init__ (self, raw_dict):
...: self.num_to_string_set = {}
...: for tup, string in raw_dict.iteritems():
...: for num in tup:
...: self.num_to_string_set\
...: .setdefault(num,set())\
...: .add(string)
...:
...: def query (self, *nums):
...: assert len(nums) > 0
...: ... 阅读全帖
l**********n
发帖数: 8443
23
来自主题: Programming版 - Scala question
下面的代码是不是很变态:
case class Alcohol(liters: Double)
case class Water(liters: Double)
case class Fire(heat: Double)
trait Flammable[A] {
def burn(fuel: A): Fire
}
implicit object AlcoholIsFlammable extends Flammable[Alcohol] {
def burn(fuel: Alcohol) = Fire(120.0)
}
def setFire[T] (fuel: T) (implicit f: Flammable[T] ) = f.burn (fuel)
setFire (Alcohol (1.0) ) // ok
setFire(Water(1.0)) // FAIL -
// See more at: http://www.azavea.com/blogs/labs/2011/06/scalas-numeric-type-class-pt-1/#sthash.2A2Wo4uH... 阅读全帖
l**********n
发帖数: 8443
24
来自主题: Programming版 - 继续吐槽scala
case class是scala的algebraic data types
example:
sealed trait Order {
def execute: Unit // ignore that Unit return type is not a great idea...
}
case class MarketOrder extends Order {
def execute {
println "executing market order"
}
}
case class LimitOrder extends Order {
def execute {
println "executing limit order"
}
}
An order is either a market or limit order not both. This is what is called
as a Sum type and MarketOrder and LimitOrder are value constructors for the
type Orde... 阅读全帖
i*******e
发帖数: 29
25
来自主题: Programming版 - 求救, F家onsite算法题
def print_combo(n):
q = []
re_print(q, 1, 100, n)
def re_print(q, h, t, n): # queue, head, tail, depth
if n == 0: # exit condition
print_array(q)
for i in range(h, t - n + 2):
re_print(q.append(i), i+1, t, n-1)
def print_array(q):
print(' '.join(q))
出来的永远是升序的排列,因此不会重复
d******c
发帖数: 2407
26
来自主题: Programming版 - groovy 不错啊
随便搜出来的,不是我写的
def quicksort(list) {
if (list.size() < 2) return list
def pivot = list[list.size() / 2]
def items = list.groupBy { it <=> pivot }.withDefault { [] }
quicksort(items[-1]) + items[0] + quicksort(items[1])
}
f*******y
发帖数: 45
27
\def\fileversion{2.4}
\def\filedate{2005/02/24}
\def\docdate{2005/02/24}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{aaacsthesis}
[\filedate\space v\fileversion\space
aaa University thesis class]
\newif\ifaaa@title@page \aaa@title@pagetrue
\newif\ifaaa@signature@page \aaa@signature@pagetrue
\newif\ifaaa@first@signature \aaa@first@signaturetrue
\newif\ifaaa@permission@page \aaa@permission@pagetrue
\newif\ifaaa@contents@page \aaa@contents@pagetrue
\newif\ifaaa@tables@page
b*****i
发帖数: 491
28
xslt code
=========
http://www.w3.org/1999/XSL/Transform">











阅读全帖
b*****i
发帖数: 491
29
xslt code
=========
http://www.w3.org/1999/XSL/Transform">











阅读全帖
p*******l
发帖数: 10
30
千人彭金荣担任动物科学学院和生命科学学院两个院长, 从2008年回国后发表的SCI论
文(说明:IF标注的是2013的),包括综述。
1: Zhu Z, Chen J, Xiong JW, Peng J. Haploinsufficiency of Def activates p53-
dependent TGFβ signalling and causes scar formation after partial
hepatectomy. PLoS One. 2014 May 6;9(5):e96576. (IF=3.534)
2: Ou Z, Yin L, Chang C, Peng J, Chen J. Protein interaction between p53 and
Δ113p53 is required for the anti-apoptotic function of Δ113p53. J Genet
Genomics. 2014 Feb 20;41(2):53-62.
(IF=2.924)
3: Tao T, Shi H, Huang D, Peng J. Def... 阅读全帖
s***5
发帖数: 203
31
来自主题: Mathematics版 - 想到一个有趣的数学题
三角形ABC可以覆盖三角形DEF的充要条件:点D,E,F在三角形ABC内部(含在边界的情
形)。
证明非常简单:
必要性:如果三角形ABC可以覆盖三角形DEF,当然点D,E,F在三角形ABC内部(含在边
界的情形)
充分性:如果点D,E,F在三角形ABC内部(含在边界的情形),
1)由于三角形ABC是凸的,可知线段DE,EF,DF,都在三角形ABC内部,
2)对于三角形DEF内部不在边界上的点X,延长DX,就可以交于线段EF,把交点叫Y吧,
由1)知Y也在三角形ABC内部,这样点D和Y都在三角形ABC内部,由于三角形ABC是凸的
,线段DY在三角形ABC内部,当然线段DY上的点X在三角形ABC内部。(含在边界的情形)
图不好,见笑了。
A
********************* B
* F Y E *
* 。。。。。。。 *
* 。X 。 。 *... 阅读全帖
s***5
发帖数: 203
32
来自主题: Mathematics版 - 想到一个有趣的数学题
好了,出题人解释了,明白了。
ABC 坐标是{ (0,0), (1,0), (0,2) }, DEF坐标是 { (0,0), (1,0), (0,-2)}。
按照菠萝的充要条件,ABC不能覆盖DEF。
按照你的cookie模型,ABC就能覆盖DEF。
S******y
发帖数: 1123
33
来自主题: Statistics版 - 请教如何这样保存数据 SAS
#Try this in Python.. (you need to define -abnormal- better)
#Print location and value of first abnormal if found
import math
def mean(l):
return sum(l)/len(l)
def stdv(l):
m=mean(l)
sumx = sum([(lx - m) * (lx - m) for lx in l])
return math.sqrt(sumx / len(l))
#function to find first abnormal
def find_abnormal(my_list):
index_item = [-1,-1]
origin = mean(my_list)
std_dev= stdv(my_list)
max_val = max(my_li
l*******m
发帖数: 1096
34
I think your distance function was defined in a wrong way. Here is an
example
def test_pyfunc_metric():
def dist_func(x1, x2, p):
return np.sum((x1 - x2) ** p) ** (1. / p)
X = np.random.random((10, 3))
euclidean = DistanceMetric.get_metric("euclidean")
pyfunc = DistanceMetric.get_metric("pyfunc", func=dist_func, p=2)
D1 = euclidean.pairwise(X)
D2 = pyfunc.pairwise(X)
assert_array_almost_equal(D1, D2)
I didn't know it before, just checked source codes for you.
... 阅读全帖
B*****g
发帖数: 34098
35
来自主题: DataSciences版 - 求助:关于2个python的题目
啥也不说了,你直接发包子吧
1
def numRepeats(numlist, num):
return numlist.count(num)
or
def numRepeats(numlist, num):
return sum(1 for s in numlist if s==num)
2
def diagonal(multiArray):
return [s[idx] for idx,s in enumerate(multiArray)]
s*********e
发帖数: 2076
36
按照传统(其实是西方的传统),求婚或订婚时男方要送女方一枚钻戒(称为engagement
ring),女方是不送男方钻戒的(看来只有男方向女方求婚了)。结婚时双方互赠素圈戒
指(称为wedding bands),这才是以后生活中经常戴的戒指。wedding bands因为 便宜
所以经常戴着也不用怕掉怕被抢,而engagement ring因为很贵所以一般都是在某些场
合才戴上的。
我上个月花了折合8400元买了一对白金wedding bands,没有任何样式,就是一对
圈 圈。需要说明的是白金不是铂金(platinum),白金是white gold,还是gold的一种
, 不过因为颜色是白的而与黄金(yellow gold)区分开来,价钱上白金和黄金是一样的
, 都大大低于铂金的价格。另外需要说明的是要去好的商家买,以后若是圈圈的尺寸
不合适了还可以拿过去改尺寸。
买engagement ring花了我很多时间,需要说明的是,如果有条件,一定要买个钻
戒 送给女方。如果你仔细看过一颗ideal cut的钻石的话,你一定会为它的brilliance
和 fire感到... 阅读全帖
s*********e
发帖数: 2076
37
4C:4C是评估钻石的基础,当然也决定了钻石的价值。包括切磨(cut)、颜色(color)、
净度(clarity)及克拉(carat)。
color等级由高到低是DEFGHIJKL...XYZ。DEF的钻
石都属于无色,它们放在一起普通人是不可能看出区别的,只有专业宝石鉴定师在
使用仪器的情况下能看出一点点不一样。但DEF的钻石和GHI的钻石放在一起对比时,
普通人仔细看的话是可以看出GHI的钻石有点点偏黄。至于J以后的钻石不需要对比
也能观察到颜色发黄。所以考虑自己的预算后,DEF是首选,GH是次选,I级别已经
开始有点泛黄了。H级别是color的底线。
w*******y
发帖数: 60932
38
来自主题: _DealGroup版 - 【$】Gamestop Power Saver Sale 4-1-11
There is more to this and lasts to near end of the month..Thought people
would like to know this slick deal before it hits stores..
**Some deals are only for a LIMITED TIME (1 week only) and will not be on
sale for the whole duration. Which leads me to believe they could add more
games throughout the sale**
The Power Save Sale starts this Friday April 1, 2011 and ends at the close
of business on Sunday April 24, 2011
SPECIAL PROMOTIONS
Free Little Big Planet (PSP) with a purchase of a PSP 30... 阅读全帖
f**********r
发帖数: 2137
39
来自主题: _Stockcafeteria版 - ERTS,下一个WNR?
EA盈利的两大块
1. 传统的packaged, standard def平台(ps2,wii,psp,nds)大幅下跌, high-def(ps3,xbox,pc)
增长25%左右,两个net一下大概持平小跌的样子,但这个应该是老新闻了,high-def增长势
头很好,而且今年又有kinect之类的新玩意,估计后面就是小增长吧;
2. digital下载(facebook社交游戏, ios/android移动游戏,其他console上的直接下载)是主要的
增长点, non-GAAP涨20%YoY,但只占总revenue的20%,估计后面会再买几家小游戏公
司,他们说估计今年会涨到$700m(现在是$166m). 其中的手机部分,暂时只有$49m左
右,因为非智能手机还在拖后腿,但都升级到智能手机的话很快也会爆发了。社交游戏可能记
错了没那么多。
i*****f
发帖数: 578
40
来自主题: _Python版 - Static variables in function
# method 1: a callable instance
# pros: good encapsulation
# cons: too verbal
class _func_with_static_var:
def __init__(self):
self.static_var = 0
def __call__(self, *args):
self.static_var += 1
print self.static_var
func_with_static_var = _func_with_static_var()
# method 2: pass as a list with default value
# pros: less verbal
# cons: affect the function interface
def func_with_static_var( arg1, arg2, static_var = [0] ):
static_var[0] += 1
print static_var[0]
# met
i*****f
发帖数: 578
41
来自主题: _Python版 - setter and getter
class Planet:
@property
def diameter(self):
# a getter
return self.__diameter
@diameter.setter
def diameter(self, diameter):
# a setter
if diameter<0:
raise ValueError("impossible")
self.__diameter = diameter
def __init__(self, diameter):
self.diameter = diameter
mars = Planet(100)
print mars.diameter
mars.diameter = -10 # ValueError
Z**********g
发帖数: 14173
42
来自主题: History版 - 大家说说反右运动吧!
尼玛,海日的经典句式:
毛泽东让做ABC,没让你DEF,邓小平做了DEF,所以罪过是邓小平的。
m*****d
发帖数: 5
43
知乎热议话题
http://www.zhihu.com/question/22249076
排名第一的答案,建议点开链接看:
声明:本人不会在百度贴吧参与任何关于种族歧视的讨论。任何使用我头像和名字的百
度账号都是冒充,目的是为了歪曲我的文章,煽动对我的人身攻击,以及污蔑我的声誉
。对情节严重者,我保留民事诉讼的选项。请个别贴吧用户自重。
----------------------------------------------------------------------------
---------------------------------------------------------------
在另一个问题下,我把本文的主要观点通过一个类比简单阐释了一下,更加简练易懂,
欢迎关注:种族主义是错误的吗?为什么?
发现有些知友误解了我的意思,在此说明一下:
我的这个回答没有想证明"黑人智商低"这个命题是错的,也没有想证明“黑人智商和其
他种族相同/相近”这个命题是对的,只是想说明:
支持"黑人智商低"这个命题的论据有不少漏洞,逻辑上,数据上都有,所以命题是否成
立存疑... 阅读全帖

发帖数: 1
44
【 以下文字转载自 BetterStock 俱乐部 】
发信人: drugbull (药牛), 信区: BetterStock
标 题: VolumeWeighted-MACD的公式,编程,及应用,代替常规MACD
发信站: BBS 未名空间站 (Sun Jun 17 18:36:30 2018, 美东)
declare lower;
input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;
def fastAvg = sum(data = (close * volume), length = fastLength)/sum(data = v
olume, length = fastLength);
def slowAvg = sum(data = (close * volume), length = slowLength)/sum(data = v
olume, length = slowLength);
plot Value = fastAvg - slowAvg;
plot Avg = ExpAver... 阅读全帖
l****z
发帖数: 29846
45
来自主题: USANews版 - 2个月后的debt ceiling还得涨
说里根无限制是胡扯吧. 看数据好了.最高也不过GDP的5%左右.现在是多少?
FY Receipts Outlays Surp / (Def) GDP Surp/(Def) % of GDP
1981 599,272 678,241 (78,969) 3,054,700 -2.59%
1982 617,766 745,743 (127,977) 3,227,600 -3.97%
1983 600,562 808,364 (207,802) 3,440,700 -6.04%
1984 666,486 851,853 (185,367) 3,840,200 -4.83%
1985 734,088 946,396 (212,308) 4,141,500 -5.13%
1986 769,215 990,441 (221,226) 4,412,400 -5.01%
1987 854,353 1,004,083 (149,730) 4,647,100 -3.22%
1988 909,303 1,064,481 (155,178) 5,008,600 -3.10%

clinton
e*0
发帖数: 27
46
来自主题: Automobile版 - bmw的柴油车怎么样
I don't think this is true. You got a warning of DEF low at 1000 mile
before you can not start your car any more. Also, it is easy to refill DEF
yourself since a lot of stores have it for the diesel truck. It is
basically urea solution.
g********d
发帖数: 19244
47
来自主题: Automobile版 - [合集] mdx,xc90,q7,谁来比较一下
☆─────────────────────────────────────☆
lateleo (lateleo) 于 (Mon May 6 15:25:46 2013, 美东) 提到:
娃要出来了,准备买个7人座,看了3款,mdx2013标配大概4万2,xc90顶配大概4万4,
q7普配大概6万。。。求大牛给个比较,有包子。。。
☆─────────────────────────────────────☆
ssteff (Sf) 于 (Mon May 6 16:29:05 2013, 美东) 提到:
Q7的第三排最宽敞,品牌和操控最好,也最贵
XC90安全性出众
MDX可靠性不错,详见本版车友cost的大作,分析的狠全面
☆─────────────────────────────────────☆
lateleo (lateleo) 于 (Mon May 6 16:31:52 2013, 美东) 提到:
我试开的时候,觉得q7第三排不如mdx宽敞。。。cost的链接在哪儿?谢谢,包子奉上
。。。

☆──────────────────────... 阅读全帖
n******y
发帖数: 1821
48
来自主题: Automobile版 - 【提醒】珍惜生命,远离GLK250
9月刚买了2014 GLK250,刚开3天Engine Light就亮了,Screen报警“Remaining
Starts: 10”,Google了说Bluetech DEF fluid空了,启动10次就死机不能开了。赶紧
送回dealer去修,(单程100迈,买车一定要就近啊。。。)。Dealer开箱发现DEF
fluid是满的,请来德国的technician来修过,都没用,2周同样的毛病出现了3次。
Service说美国已经出现了好几例同样的问题。怒了,已经准备退货了。
上来吐槽一下,建议大家要买GLK的或者MB Diesel的千万要3思。
g********d
发帖数: 19244
49
☆─────────────────────────────────────☆
njutruly (oops) 于 (Wed Oct 2 23:06:10 2013, 美东) 提到:
9月刚买了2014 GLK250,刚开3天Engine Light就亮了,Screen报警“Remaining
Starts: 10”,Google了说Bluetech DEF fluid空了,启动10次就死机不能开了。赶紧
送回dealer去修,(单程100迈,买车一定要就近啊。。。)。Dealer开箱发现DEF
fluid是满的,请来德国的technician来修过,都没用,2周同样的毛病出现了3次。
Service说美国已经出现了好几例同样的问题。怒了,已经准备退货了。
上来吐槽一下,建议大家要买GLK的或者MB Diesel的千万要3思。
☆─────────────────────────────────────☆
cxfcxf (MGM) 于 (Wed Oct 2 23:24:02 2013, 美东) 提到:
不会给你退的....除非你能quote lemon law
... 阅读全帖
k*******n
发帖数: 5546
50
来自主题: Automobile版 - GLK250(Diesel) 开2年了

恩就是买来自己加,我想问的是加DEF的时机。
是用到快没了感应器报警了加,稀释老的DEF。
还是赶在报警前加,防止感应器不自己RESET还得跑DEALER去RESET麻烦。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)