j*******7 发帖数: 6300 | 1 How Can We Answer the Challenge of Pain and Suffering?
The economy is in tough shape. The culture seems to be more and more hostile
to Christianity. Many regions of the world appear to be on the brink of war
with growing turmoil in North Korea, Syria and Iran. Some of our friends
are ill or suffering loss. How are we, as Christians, to respond to the pain
and suffering we see all around us? Many skeptics point to this suffering
as an evidence that God does not exist. If there is an all-powerful ... 阅读全帖 |
|
c****i 发帖数: 2635 | 2 感觉幸福就是有人照顾自己。。。 爱情就是被照顾后会想着折腾人家。。。
//blushing~```
今天阴差阳错地被一个印度MM拉到佛庙里去了。。。 听着梵音想着菩萨普度众生的宽
宏和金刚怒目的霹雳~``
忽然觉得派克博士的那些拿来搞团队还可以,要是感情生活也这么折腾,直接出家接受
供奉就成了,不需要沐浴人间烟火了~~` :">
ref: 附上一段,供童鞋们修行。。。
-----------------wiki--------------------
Theories
[edit] Discipline
In The Road Less Traveled,[6] Peck talked of the importance of discipline.
He described four aspects of discipline:
* Delaying gratification: Sacrificing present comfort for future gains.
* Acceptance of responsibility: Accepting respons... 阅读全帖 |
|
m*********y 发帖数: 389 | 3 Here are some questions I copied from online.. Obviously LouZhu is a lazy
ass... these questions are everywhere... :-)
SQL Interview questions
Below is a list of questions in this blog post so you can test your
knowledge without saying answers. If you would like to see questions and
answers please scrool down.
Question: What type of joins have you used?
Question: How can you combine two tables/views together? For instance one
table contains 100 rows and the other one contains 200 rows, have exac... 阅读全帖 |
|
P********R 发帖数: 1691 | 4 SELECT Partid, Description, Price
FROM INVENTORY
WHERE Price = (SELECT MAX (Price) FROM INVENTORY);
出错,错误码是:
ORA-00911: invalid character
00911. 00000 - "invalid character"
*Cause: identifiers may not start with any ASCII character other than
letters and numbers. $#_ are also allowed after the first
character. Identifiers enclosed by doublequotes may contain
any character other than a doublequote. Alternative quotes
(q'#...#'... 阅读全帖 |
|
s**********0 发帖数: 5 | 5 Definition: for single keyword X(consists of one or more characters),
*f_start1(X)
means the earliest poistion of the first character of X in the article.
*f_end1(X)
means the latest position of the first character of X in the article.
*f_start2(X)
means the earliest poistion of the last character of X in the article.
*f_end2(X)
means the latest position of the last character of X in the article.
For n keywords X1,X2,X3...,Xn, suppose the starting and ending position
of the shortest sub-article |
|
O******e 发帖数: 734 | 6 Each of the following is different from the other:
character(len=3)::sa ! rank=0 (scalar), size=na, shape=na, type=3-byte char
character(len=1),dimension(3)::sb ! rank=1, size=3, shape=(3), type=1-byte
char
character(len=3),dimension(1)::sc ! rank=1, size=1, shape=(1), type=3-byte
char
character(len=1),dimension(1,3)::sd ! rank=2, size=3, shape=(1,3), type=1-
byte char
character(len=1),dimension(3,1)::se ! rank=2, size=3, shape=(3,1), type=1-
byte char
(dennny's example is the first one, it |
|
S*******C 发帖数: 822 | 7 Input: WORD.LST
And a randomly picked 1000 words from the same WORD.LST for querying.
This is a list of > 100,000 English words. It is sorted alphabetically.
Your task is to create a Compact Trie. Each node of trie will contain,
(1) A leading character (possibly empty (for root))
(2) String Label (possibly null (for root))
(3) Boolean IsWord , indicating whether the current node represents a whole
word or not (this is helpful when one word may be a prefix of another).
(4) Node *RightSIbling
(5)... 阅读全帖 |
|
g*****g 发帖数: 34805 | 8 我来贴标准答案了。把radix hardcode成10就行。
public static int More ...parseInt(String s, int radix)
440 throws NumberFormatException
441 {
442 if (s == null) {
443 throw new NumberFormatException("null");
444 }
445
446 if (radix < Character.MIN_RADIX) {
447 throw new NumberFormatException("radix " + radix +
448 " less than Character.MIN_
RADIX");
449 }
450
451 if (radix > Character.... 阅读全帖 |
|
a*****g 发帖数: 19398 | 9 #!/usr/bin/env pike
// legal.pike - Count the number of legal go boards.
// Copyright 2005 by Gunnar Farneb?ck
// [email protected]
/* */
//
// You are free to do whatever you want with this code.
//
//
// This program computes the number of legal go board configurations
// for a rectangular board of a given size. It is efficient enough to
// handle boards up to 8x8 within minutes and up to 11x11 in less than
// 24 hours (on a fast computer). For rectangular boa... 阅读全帖 |
|
y***a 发帖数: 840 | 10 >>> import re
>>> re.sub(r'\$xxx', 'yyy', '$xxxxx')
'yyyxx'
为啥会MATCH&REPLACE?
我的理解是 r'\$xxx' 就是‘\$xxx', 所以'$xxxxx'不会MATCH,不应该有REPLACE发生
。 ANY COMMENT? THX
When an "r" or "R" prefix is present, a character following a backslash is
included in the string without change, and all backslashes are left in the
string. For example, the string literal r"\n" consists of two characters: a
backslash and a lowercase "n". String quotes can be escaped with a backslash
, but the backslash remains in the string... 阅读全帖 |
|
w*****s 发帖数: 122 | 11 Why does software xxx work with Big5: the documentation says it does not?
Big5 is an "7-bit unsafe" "ASCII-family" coded character set.
"ASCII-family" coded character sets (ASCII, ISO646, ISO8859-*, UTF-8, EUC, Big5, GB2312) means all the sets
which have the ASCII characters in the ASCII codepoints. (E.g., where "A" has the codepoint 65 (0x41).) All ASCII
characters have a value less than decimal 128 (0x80).
An "8-bit safe" characters encodings is one in which, if a byte appears |
|
w*****s 发帖数: 122 | 12 What is Big5/GCCS, EUDC, and Big5plus?
(1998-12-31)
EUDC (Extended User-defined Characters) is the general name used in Hong Kong for standard sets of user-defined
characters (sometimes called by the Japanese term gaiji). They include R&D EUDC, HKUST EUDC and GCCS EUDC.
Big5 was developed in Taiwan. The "traditional" characters are also used in Hong Kong. But Hong Kong also uses other
characters which are rarer in Taiwan. The Hong Kong Government has made the Government Chinese Character Set
(GC |
|
a****t 发帖数: 95 | 13 INTRODUCTION
Cancer Translational Medicine provides rapid and efficient peer-review
publications on innovative cancer investigation or translational work
related to oncology and precision medicine. Contributions focusing on
systemic anticancer therapy including gene-therapy, immuno-therapy, and some
new bio-therapies, randomized trials (including negatives ones), top-level
guidelines, molecular pathology, bioinformatics, modern statistics, and
biotechnologies. Radiotherapy, chemotherapy, surgery... 阅读全帖 |
|
a****t 发帖数: 95 | 14 INTRODUCTION
Cancer Translational Medicine provides rapid and efficient peer-review
publications on innovative cancer investigation or translational work
related to oncology and precision medicine. Contributions focusing on
systemic anticancer therapy including gene-therapy, immuno-therapy, and some
new bio-therapies, randomized trials (including negatives ones), top-level
guidelines, molecular pathology, bioinformatics, modern statistics, and
biotechnologies. Radiotherapy, chemotherapy, surgery... 阅读全帖 |
|
a*****g 发帖数: 19398 | 15 【 以下文字转载自 Programming 讨论区 】
发信人: ananpig (●○ 围棋数学一把抓的安安猪), 信区: Programming
标 题: 计算围棋棋盘合法图案的源代码
发信站: BBS 未名空间站 (Fri Jan 22 10:39:02 2016, 美东)
#!/usr/bin/env pike
// legal.pike - Count the number of legal go boards.
// Copyright 2005 by Gunnar Farneb?ck
// [email protected]
/* */
//
// You are free to do whatever you want with this code.
//
//
// This program computes the number of legal go board configurations
// for a rectangular board of a given size. It is ef... 阅读全帖 |
|
w*******n 发帖数: 469 | 16 请问下面的R Code 怎么用Loop来实现?
这里的comb是list.
先谢谢了!
comb$I.1<-as.integer(as.character(comb$I.1))
comb$I.2<-as.integer(as.character(comb$I.2))
comb$I.3<-as.integer(as.character(comb$I.3))
comb$I.4<-as.integer(as.character(comb$I.4))
comb$I.5<-as.integer(as.character(comb$I.5)) |
|
d******9 发帖数: 404 | 17 "Q30 我的疑问---关于auto conversion of character-to-numeric variable:
当character variable和一个numeric value比较时,auto conversion will happen,
为什么这里不行?
when a character variable compared to a numeric value, the character
variable will be auto-converted to numberic variable --- from SAS base Prep
Guide P402"
Do not forget, the character value contains a comma ","
26,700
Then, how can SAS convert it automatically without any informat???????
So, SAS fail to execute it and print an error message. |
|
P*****i 发帖数: 63 | 18 按照SAS手册定义,substr返回值不应该是一个子字符串,长度就是该子字符的长度吗?
SYNTAX
The SUBSTR function has three arguments:
SUBSTR(SOURCE, POSITION, N)
The function returns N characters, beginning at character number
POSITION from the string SOURCE.
SOURCE—This is the larger or reference string. It can be a
variable or a string of characters.
POSITION—This value is a positive integer and references the
starting point to begin reading the internal group of characters.
N—This value is a positive integer and references the number... 阅读全帖 |
|
l*******s 发帖数: 1258 | 19 cont:
Use tag B I O to indicate beginning, inside, and outside of a word.
Each character in URL will be assigned a tag, B, or I, or O.
Then this becomes a classification task, just with 3 class labels: BIO.
Grab any classifier you want, mine is MaxEnt
Feature engineering:
convert each character to a feature vector. The most helpful features will
be: n gram character before or after current charactor, length of url,
whether there is a digit or letter in neighboring characters, and of course
curre... 阅读全帖 |
|
l*******s 发帖数: 1258 | 20 cont:
Use tag B I O to indicate beginning, inside, and outside of a word.
Each character in URL will be assigned a tag, B, or I, or O.
Then this becomes a classification task, just with 3 class labels: BIO.
Grab any classifier you want, mine is MaxEnt
Feature engineering:
convert each character to a feature vector. The most helpful features will
be: n gram character before or after current charactor, length of url,
whether there is a digit or letter in neighboring characters, and of course
curre... 阅读全帖 |
|
l*******s 发帖数: 1258 | 21 cont:
Use tag B I O to indicate beginning, inside, and outside of a word.
Each character in URL will be assigned a tag, B, or I, or O.
Then this becomes a classification task, just with 3 class labels: BIO.
Grab any classifier you want, mine is MaxEnt
Feature engineering:
convert each character to a feature vector. The most helpful features will
be: n gram character before or after current charactor, length of url,
whether there is a digit or letter in neighboring characters, and of course
curre... 阅读全帖 |
|
|
发帖数: 1 | 23 A Chinese-language final exam paper at a high school in New York has
left internet users amused and confused, reported guancha.cn on Saturday.
据观察者网上周六报道,纽约一所高中的中文期末试卷让网民们既困惑又欢乐。
The CLA (Collegiate Learning Assessment) test paper for course FMS63
Chinese 3 was prepared for students in Foreign Language Department at
Franklin Delano Roosevelt High School, a coeducational public school.
这份“FMS63 Chinese 3”课程的CLA(大学学习评估)试卷是为富兰克林·德拉诺
·罗斯福高中外语系的学生们准备的,这是一所男女同校的公立学校。
The paper had seldom-used Chinese ... 阅读全帖 |
|
|
w****2 发帖数: 12072 | 25 发信人: youdu (youdu), 信区: Military
标 题: 军版各位,有没有研究过锡安长老教义?
发信站: BBS 未名空间站 (Sat Nov 26 13:15:49 2011, 美东)
对理解过去三百年很有帮助。
http://www.biblebelievers.org.au/przion1.htm#TABLE OF CONTENTS
THE PROTOCOLS DIGEST-ED
Since discourse in the Protocols is often disjointed, we have taken the
liberty of grouping quotations (from Victor Marsden's 1934 edition) in what
seems a logical order of subject. We have also tried to minimize the more
offensive ones. Contemptuous references to goyim (the unfortunate Talmudi... 阅读全帖 |
|
H****g 发帖数: 14447 | 26 1. 证实了毛泽东1975年写给周恩来这首诗。
《江山靠谁守·诉衷情》
当年忠贞为国筹,
何曾怕断头?
如今天下红遍,
江山靠谁守?
业未竟,
身躯倦,
鬓已秋。
你我之辈,
忍将夙愿,
付与东流?
2. 证实了1976年之前根本没有所谓饿死三千万或者大饥荒之说。
3. 毛泽东1975年的担心,或者说1964年的担心,都变成了现实。
4. 毛泽东唯一的遗产就是留给人民的造反精神,终将成燎原之火。
Mao Tse-Tung: Father of Chinese Revolution
By Fox Butterfield
Special to The New York Times
HONG KONG, Sept. 9--Mao Tse-tung, who began as an obscure peasant, died one
of history's great revolutionary figures.
Born at a time when China was wracked by civil strife, beset with terrible
poverty and enc... 阅读全帖 |
|
s*****d 发帖数: 66 | 27 I loved you" [11 characters, 11 bytes]
我爱过你 [4 characters, 8 bytes]
"I love you" [10 characters, 10 bytes]
我爱你 [3 characters, 6 bytes]
没看出英文怎么简洁了
称谓系统明显中文精确一些
1 写出来一样清楚
2 如果你不想表达出性别时怎么办呢? 这在口头交流的时候并不罕见
中文其实可以做到即精确又简洁,而且还有足够的灵活性让你可以有意的模糊一些。
就看你用的到不到家了
谢谢! |
|
s*******s 发帖数: 9926 | 28 本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花点时间注册并不吃亏.
http://www.saynosca5.com/
美亚团结促进会的United Against SCA5 - Please click here to sign letter to
contact your elected representatives选项... 阅读全帖 |
|
b********n 发帖数: 38600 | 29 The Eroding Character of the American People
The question is: why do Americans not only sit silently while the lives of
innocents are destroyed, but also actually support the destruction of the
lives of innocents?
http://www.paulcraigroberts.org/2015/07/23/eroding-character-am
The failure of the American character has had tremendous and disastrous
consequences for ourselves and for the world. At home Americans have a
police state in which all Constitutional protections have vanished. Abroad,
Ira... 阅读全帖 |
|
发帖数: 1 | 30 希望能好好爽1爽
2024 Avatar 4 (characters) (pre-production)
2025 Avatar 5 (characters) (filming)
2021 Avatar 3 (characters) / (written by) (post-production)
2020 Avatar 2 (characters) / (screenplay) (post-production) |
|
b********n 发帖数: 38600 | 31 Norma Rae, Martin Ritt, 1979 - Union Sign Scene
https://www.youtube.com/watch?v=X8ulYIVcCeY
40 Years Ago, Norma Rae Understood How Corporations Weaponized Race
The most enduring image of the film Norma Rae, which was released 40 years
ago, is surely Sally Field’s titular character silently standing on a table
, holding up a cardboard sign with the word union scrawled on it. One by one
, her fellow factory workers shut off their deafening textile machines in
solidarity. The climactic scene sugges... 阅读全帖 |
|
L*********s 发帖数: 3063 | 32 This is the article I wrote yesterday, first posted Chinese.
是啊,中国共产党是一个邪教。
在70多年前,中国处于长期半分裂状态,美英法德俄意日等在中国都有区域代理人。中
华民国中央政府受制于不与国家配合的地方军阀,国家连铁路在地方省份上的口径都无
法统一时,中国孱弱无力。我们作为一个延续了几千年的政治实体,却被西方看作是下
等人,愚昧的低级动物时,是中国共产党,通过内战结束中国的这个状态。
所以,在除台湾外的基本的国家统一下,中共有了它的第一个原罪:中央集权。
在60多年前,除了中国仅承认的西方殖民地香港和澳门,两个不属于中华人民共和国的
城市土地外,中共驱逐了所有的境外资本势力、特工与军队。在1956年。中国共产党迫
使自己的老师,苏联共产党,从中国辽宁省大连市的旅顺特别区撤军的时候,不惜与全
世界两大霸权国家美国和苏联同时交恶,被全世界进行经济封锁,中共才终于结束了作
为列强的傀儡而存在。无论是西方还是苏联。在苏联的长波电台和联合舰队倡议被中共
拒绝后,中苏彻底交恶,紧接着就是中共备受诟病的三年困难时期饿死成百上千万人。... 阅读全帖 |
|
L*****g 发帖数: 646 | 33 I disagree with your comments on Glee's portrayal of gay characters. Dave
Karofsky,the closeted football student athlete in Glee is not girly at all.
Blaine Anderson, the newer gay singer character presents a very neutral
mannerism despite his homosexuality..
Straight characters are singing and dancing in the show.
I think Glee did a great job in terms of providing a variety of characters
regardless their gender, appearance, and sexual orientation.
reveal
player
individuals |
|
g********d 发帖数: 4174 | 34 The recurring question of whether "Sesame Street" characters Bert and Ernie
are gay has raised its head anew. And the answer from "Sesame Street" is, as
always, a resounding no.
"Sesame Street" today posted the following statement on its Facebook page:
Bert and Ernie are best friends. They were created to teach preschoolers
that people can be good friends with those who are very different from
themselves.
Even though they are identified as male characters and possess many human
traits and chara... 阅读全帖 |
|
l****z 发帖数: 29846 | 35 By M. Zuhdi Jasser, M.D.
Over the past few years, numerous hearings have already been conducted on
Capitol Hill, in both the House and Senate, looking into domestic Islamist
terrorism and ‘radicalization'. Unfortunately, those hearings garnered
little attention and few tangible results - because they avoided discussing
the root causes. Those hearings instead focused only on "violent extremism"
a useless concept addressing a symptom and not the disease. Up to now the
combined efforts of the force... 阅读全帖 |
|
S*********n 发帖数: 4050 | 36 You are a retard again.
Newt denied the allegation that he tried to negotiated an open marriage deal
with his ex, but he never denied the infidelity.
He's criticized by Ron Paul and Santorum
from CNN -
Character issues are fair game
While his pushback against the "open marriage" question was aggressive,
Gingrich did not completely sideline the issue of his past infidelities -- a
topic that frequently bubbles up across South Carolina in conversations
with Republican voters.
Gingrich's two main ri... 阅读全帖 |
|
d*******p 发帖数: 2525 | 37 排华法案已经失效超过半个世纪了,现在继续拿排华法案来说某个法律是歧视中国人,
甚至说是禁止中国人拥有土地,这已经不是被洗脑,而是自卑自恨华人身份到极点的体
现,左棍们舔黑jb已经舔到脑袋里面只剩jy了。
什么叫不具备资格成为美国公民:
Good Moral Character
To be eligible for naturalization you must
be a person of good moral character. USCIS
will make a determination on your moral
character based upon the laws Congress has
passed. In the following section, we describe
some of the things USCIS may consider.
Criminal Record.
Committing certain
crimes may cause you to be ineligible for
naturalization (USCIS calls t... 阅读全帖 |
|
s*******s 发帖数: 9926 | 38 本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA5, 不要浪费时间, 要这样做才有帮助, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花点时间注册并不吃亏.
http://www.saynosca5.com/
美亚团结促进会的United Against SCA5 - Please click here to sign letter to
contact your elected represe... 阅读全帖 |
|
s*******s 发帖数: 9926 | 39 本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA5, 不要浪费时间, 要这样做才有帮助, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花点时间注册并不吃亏.
http://www.saynosca5.com/
美亚团结促进会的United Against SCA5 - Please click here to sign letter to
contact your elected represe... 阅读全帖 |
|
s*******s 发帖数: 9926 | 40 大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 怎么样对抗SCA-5种族歧视呢? 下面有教你要怎样做的方法..
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花点时间注册并不吃亏.
http://www.s... 阅读全帖 |
|
s*******s 发帖数: 9926 | 41 大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 不要等到这趋势蔓延到其他州时, 才后悔莫及, 怎么样对抗SCA-5种族歧视呢? 下面
有教你要怎样做的方法.
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花... 阅读全帖 |
|
t*******y 发帖数: 21396 | 42 嗯,这些选民连续傻逼了太多年了:
Bush's Record of Shame
George W. Bush's past is, to say the very least, shady. He stands as the
only American president with a criminal record. As the new hero of the party
that, prior to his election, touted "character" as the ultimate defining
characteristic of any American president, this Republican icon's past
demonstrates a man who is chronically definitively bereft of character, to
say the least.
This record chornicles Bush's less-than-reputable past up to the year 2001,
i... 阅读全帖 |
|
J*******3 发帖数: 1651 | 43 丰田2013年6月6日公开了预计将于年内作为2014年款投放市场的新一代“卡罗拉”(北
美版)的概要,价格及详细性能指标将在临近上市时发布。
这是第11代卡罗拉,为了吸引更年轻的用户而非维持以往用户,继“Avalon”
及“RAV4”之后,丰田再次采用了个性强烈的外观设计。前脸以较扁的前大灯以及下部
带大开口的保险杠等为特点,并搭配大幅膨出的翼子板以及向后平缓下滑的C柱。
新款卡罗拉的外形尺寸为长4639×宽1776×高1455mm,与上代车型相比车长增
加99mm,车宽扩大16mm,但车高降低10mm。轴距为2700mm,比上代车型长100mm。由于
轴距更长,因此后座臀点后移了75mm,另外还通过减薄前座靠背,使后座乘坐空间变得
宽敞。
图2:“LE Eco”的后视图 (点击放大)
图3:侧视图 (点击放大)
图4:LE Eco的内装 (点击放大)
图5:S的内装 (点击放大)
新一代卡罗拉设有“L”、“LE”、“S”和“LE Eco”四种级别。前三个级别
的款... 阅读全帖 |
|
s*******s 发帖数: 9926 | 44 大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 怎么样对抗SCA-5种族歧视呢? 下面有教你要怎样做的方法.
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: 下面网站里选Act Now有两个请愿投票, 有时间先去投票, 这样才能壮大声势.
这两个网站都需要注册, 但是Change.org和Whitehouse.gov是最常见的请愿网站, 将
来一定该还有用到的机会, 花点时间注册并不吃亏.
http://www.sa... 阅读全帖 |
|
h*****n 发帖数: 99 | 45 有同感,其实每个发烧友心里都有一个理想的声音的标准。这个标准是从一开始的朦胧
,模糊, 到一点点的确定和完善。恭喜jwalk和其他的烧友如果你们知道你们要的是什
么,那下一步就是去寻找哪个系统可以给你要的声音。
我budget有限,而且比较懒散,所以系统变化升级比较慢。无论是从价位和品牌都与大
家的相差甚远。但在ATLANA时有参加Audio Club,听到过avant-garde,Audio
research ref, Art Audio, Cary audio, etc.. 也有不错的dealer朋友给了诚心的建
议,所以应该讲还是知道自己想要的是什么声音。从刚开始一味追求解析力到认识到音
域平衡的重要性,从盲目地相信Stereophile 和TAS及其他Reviews到知道自己的判断是
最重要的,从追求到追求音乐,期间的甘苦我想每个发烧友都会有共鸣。同时人生的阅
历积累也让我对音响有了深一层的思考。以下就算是抛砖引玉,大家有兴趣一起讨论。
就像我们要把人的Character和personality区分一样,音响系统的好坏当以character
来评价。只有在好的character... 阅读全帖 |
|
c***x 发帖数: 22 | 46 经常在这个版潜水,得到不少有用的信息。今天也来回报一下社会。
1. 有一个矩阵A,找出这个矩阵中所有的A(i,j),它所在的行和列都是0.
2. 不知道链表的头,只知道指向其一个节点的指针,要求删掉这个节点。
3. 有一个变长的characters system, 每个character所占的bytes数不固定。每个
character的最后一个byte的值是0. 一个字符串由这些变长的characters组成。字符串
的最后两个bytes是0. 要求反转这个字符串。额外空间使用越少越好。
4. 有n张扑克牌,从中随机选出几张。要求找出所有的选法,使得所选扑克牌的点数的
和是s. 不用recursion,代码行数越少越好。
面试的有一个老中,一块儿吃的午饭。除了面试的时间,都跟他说中文。呵呵。感觉跟
中国人交谈更舒服一些。还有就是感觉他们对program有没有bug挺重视的。 |
|
t******e 发帖数: 1293 | 47 2.Wildcard string matching
非suffix tree,而用递归的代码,希望有帮助
这个题目有几个变种:
第一个变种:类似DOS文件名的Wildcard string matching,代码在
http://xoomer.virgilio.it/acantato/dev/wildcard/wildmatch.html
他们能做到的是满足以下条件的match
# Character matching is case insensitive.
# The metacharacter '*' matches any sequence of zero or more characters.
For instance "*.ZIP" matches ".zip", "A*.bbb" matches "A.bbb" or "Axyz.BBB".
# The metacharacter '?' matches exactly one character unless that character
is a period ('.').
# File name matching |
|
m*******y 发帖数: 68 | 48 I guess the question is:
given a list of characters and an integer n, reorder the characters to
generate one sequence (or all sequences) such that, for any character at
position i in the sequence, the next position that the same character shows
up must be less than or equal to i+n.
Ex: inputs are "aaaaabbbbcc" and n=2
one of the outputs is: aabaababbcc
the
thousand of terabyte)
most points on it. |
|
z****o 发帖数: 78 | 49 1. use an integer Mark[i] to represent the character set for word[i] in the
dict; use lower 26 bits, each represent whether a certain character appears
in the word.
(Mark[i] & Mark[j]) == 0 means word[i] and
word[j] are disjoint.
2. at the mean time of calculating the Mark[i], we update the maximum-length
word index in
Longest[(~Mark[i]) & 0x03ffffff];
this means eg.
if word[i] = "abcdefg........uvwabcdefg.....uvw", Longest[(~
Mark[... 阅读全帖 |
|
q****x 发帖数: 7404 | 50 anyone know the answer of the following?
CLRS v3:
As Exercise 11.3-3 asks you to show, choosing m = 2^p - 1 when k is a
character string interpreted in radix 2p may be a poor choice, because
permuting the characters of k does not change its hash value.
11.3-3
Consider a version of the division method in which h(k) = k mod m, where
m = 2^p - 1 and k is a character string interpreted in radix 2^p. Show
that if we can derive string x from string y by permuting its characters,
then x and y hash to... 阅读全帖 |
|