由买买提看人间百态

topics

全部话题 - 话题: charact
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
g********2
发帖数: 6571
1
Why Voting for Donald Trump Is a Morally Good Choice
Wayne Grudem
Some of my Christian friends tell me they can’t in good conscience vote for
Donald Trump because, when faced with a choice between “the lesser of two
evils,” the morally right thing is to choose neither one. They recommend
voting for a third-party or write-in candidate.
As a professor who has taught Christian ethics for 39 years, I think their
analysis is incorrect. Now that Trump has won the GOP nomination, I think
voting for Tru... 阅读全帖
L****n
发帖数: 12932
2
you are talking about revoking citizenship by birth (except the lying in
application)For neutralized citizen, requirement is much broader.
generally you have to be a good moral character. If you are found guilty of
certain felonies later on, they would say you are NOT a good moral character
, therefore you had lied in your application, and obtained your citizenship
illegally.
from justice.gov:
it is a requirement of being naturalized that the applicant be "a person of
good moral character." INA... 阅读全帖
i**********e
发帖数: 1145
3
来自主题: JobHunting版 - 问一道google题
Duplicated characters is not an issue here.
It is only required that characters that appeared in word A do not appear in
word B.
Therefore, assuming a word can contain only characters from 'a' to 'z' all
lowercase, then each character can be mapped to a bit in an integer using
only 26 bits.
If 'a' appeared in a word, bit 1 is set. If 'z' appeared, bit 26 is set.
This integer will form the hash for a word.
To find out if all characters that are in word A are not in word B, just
simply do bit AND ... 阅读全帖
P**********c
发帖数: 3417
4
来自主题: JobHunting版 - A onsite被拒,面经,求分析失败原因
根据LZ说的,我觉得是这个意思。
先找到第一个substring A。 从string1的头开始扫,扫到所有的string2的character
都包含为止, count所有string2 character出现的次数。这个可能需要两个hash table
, 一个用来判断是否在string2, 一个用来数个数。
然后从A的头开始一个character一个character的减掉,如果character的count没有变
成0,update length和起始index, 如果某个character的count是0了,就从后面开始补
,一直补到它是1为止,update当前的end index。
s******d
发帖数: 61
5
我的返回结果是这个,不知道哪里错了
d:1e:1h:1l:1o:1r:1w:1
import java.util.Collection;
import java.util.Collections;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.Vector;
public class Findfrequency {
public String find(String s){
char[] ch=s.toCharArray();
Hashtable hash=new Hashtable();
for(int i=0;i Character temp=new Character(ch[i]);
if(!hash.contains(temp)){
hash.put(temp, new Integer(1));
}
else{
Integer in=hash.get(temp);
in++;... 阅读全帖
w*******s
发帖数: 96
6
再来一个拍拍:
////////////////////////////////////////////////////////////////////////////
////////
// Problem 1.1:
// Analysis and points:
// 1. strig operation(scan)
// 2. How to determine whether it's duplicate string?
// Method 1: using one hashtable, if it's already in
hashtable,
// it's duplicate, otherwise add into hashtable.
Complexity O(n)
// Method 2: for each characer, check whether it's duplicated
// ... 阅读全帖
e****e
发帖数: 418
7
来自主题: JobHunting版 - 昨天的F家店面
public class LineReader {
private int pos = 0;
private List chars = null;

public Character[] readLine() {
if ( chars == null || chars.size() == 0 )
chars = Arrays.asList( read4096() );

List line = new ArrayList();

int i = pos;
while ( i < chars.size() && chars.get(i) != '\n' && chars.get(i) !=
'\0' )
line.add( chars.get(i++) );

if ( chars.get(i) == '\n' ) {
... 阅读全帖
b*******S
发帖数: 17
8
来自主题: JobHunting版 - 一个答案看不明白谁解释一下
題目問
有一個 ransom string,還有一個magazine string
然後要求是不是能從magazine string裡面湊出ransom string裡面要用的所有
characters,而且從magazine string找出的character只能在ransom string裡用一次
比如說ransom string="hello"
magazine string="heeollo"
這樣就應該傳回true
第一解是說在兩個string都去算character counts, 如果對每個字母,magazine string
的character count比ransom string的character counter都高 那就是true
以上為例 ransom string的o有1個, magazine string的o有兩個 所以true
第二解是說 若magazine string超長 那我們是不是可以先把ransom string的char
counts算出來 然後在慢慢掃過magazine string. 遇到一個character就把他對映在
rans... 阅读全帖
L*********r
发帖数: 9
9
来自主题: JobHunting版 - find first nonduplicate unicode questions
For your reference.
public Character findFirstCharAppearingOnlyOnce(String s) {
Set dups = new HashSet();
Set uniques = new LinkedHashSet();

for ( Character c : s.toCharArray() ) {
if ( !dups.contains( c ) ) {
if ( uniques.contains( c ) ) {
uniques.remove( c );
dups.add( c );
} else
uniques.add( c );
}
... 阅读全帖
x*******i
发帖数: 26
10
来自主题: JobHunting版 - 讨论:这个题怎么解
Given a byte array, which is an encoding of characters. Here is the rule:
a. If the first bit of a byte is 0, that byte stands for a one-byte
character
b. If the first bit of a byte is 1, that byte and its following byte
together stand for a two-byte character
Now implement a function to decide if the last character is a one-byte
character or a two-byte character
Constraint: You must scan the byte array from the end to the start.
Otherwise it will be very trivial
s*****i
发帖数: 32
11
来自主题: JobHunting版 - 这个G题是DFS还是DP
Given a byte array, which is an encoding of characters. Here is the rule:
a. If the first bit of a byte is 0, that byte stands for a one-byte
character
b. If the first bit of a byte is 1, that byte and its following byte
together stand for a two-byte character
Now implement a function to decide if the last character is a one-byte
character or a two-byte character
Constraint: You must scan the byte array from the end to the start.
Otherwise it will be very trivial.
r****r
发帖数: 159
12
来自主题: JobHunting版 - 求解一道题 思路也好
ReplacementGrammar
Problem:
You will receive a message that must be translated by several string
replacement rules. However, the exact replacement rules are not fixed - they
will be provided as part of the input. You are to write a program that
receives a list of string replacements rules followed by a message, and
outputs the translated message.
Details:
0) A 'newline' consists of a carriage feed 'r' followed by a line feed 'n'.
1) The input will begin with any number of 'string replacement rul... 阅读全帖
U***A
发帖数: 849
13
来自主题: JobHunting版 - 请教一道老题目
就是没有看懂题目。
Given a byte array, which is an encoding of characters. Here is the rule:
a. If the first bit of a byte is 0, that byte stands for a one-byte
character
b. If the first bit of a byte is 1, that byte and its following byte
together stand for a two-byte character
Now implement a function to decide if the last character is a one-byte
character or a two-byte character
Constraint: You must scan the byte array from the end to the start.
Otherwise it will be very trivial.
能否请高人给个例子。谢谢
t***h
发帖数: 40
14
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
)
----------------------------------------------------------------)
APPELLANT’S... 阅读全帖
w***1
发帖数: 9
15
【 以下文字转载自 Military 讨论区 】
发信人: yecao (野草), 信区: Military
标 题: 看一看美国的司法腐败, 法官是怎样把一个无故孩子从妈妈身
发信站: BBS 未名空间站 (Fri Nov 23 20:28:00 2012, 美东)
这是真人真事, 请大家舆论支持。
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
... 阅读全帖
B*****I
发帖数: 1378
16
☆─────────────────────────────────────☆
tshch (大丈夫) 于 (Mon Nov 19 03:35:51 2012, 美东) 提到:
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
... 阅读全帖
s*******s
发帖数: 9926
17
来自主题: NextGeneration版 - 反对SCA-5具体有效的步骤, 请转发
全美国华人行动起来, 同心协力对抗SCA-5种族歧视.
大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 不要等到这趋势蔓延到其他州时, 才后悔莫及, 怎么样对抗SCA-5种族歧视呢? 下面
有教你要怎样做的方法.
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都... 阅读全帖
y***o
发帖数: 145
18
请看这法律问件, 美国的法官是怎样腐败, 把孩子从妈妈身边强走的。请舆论只持。
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
)
-------------------------------------... 阅读全帖
m****m
发帖数: 101
19
来自主题: Parenting版 - 作文点评
儿子6年级,不知道他的写作水平在同龄孩子中怎样。比如作文的长度,用词。能帮看
看吗?下面是最近language art布置的两篇作文。第一个是读一本小说然后给author写
信。第二个是读两本小说,然后比较。
========================
Dear Cynthia Kadahata,
I have strong, massive feelings for your first book, Kira-Kira. I hand
down my feelings to your greatly-written literature, and to you, because
your story is a blend of joy and pain. Kira-Kira may teach young readers to
see life in a different perspective, to see how lucky we are today. I’m
happy because we are not living in times of pain an... 阅读全帖
s*******s
发帖数: 9926
20
来自主题: Parenting版 - 反对SCA-5具体有效的步骤, 请转发
全美国华人行动起来, 同心协力对抗SCA-5种族歧视.
大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 不要等到这趋势蔓延到其他州时, 才后悔莫及, 怎么样对抗SCA-5种族歧视呢? 下面
有教你要怎样做的方法.
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都... 阅读全帖
s*******s
发帖数: 9926
21
本文的网路版本在这里: 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
con... 阅读全帖
s*******s
发帖数: 9926
22
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都需要注册, 但是
Change.org和Whitehouse.gov是最常见的请愿网站, 将来一定该还有用到的机会, 花点
时间注册并不吃亏. 不過必須強調這兩個投票實際效果是零, 並不能解決問題, 其主要
功能就僅僅是壮大声势.
Step 2: http://findyourrep.legislature.ca.gov/
住在加州的朋... 阅读全帖
s*******s
发帖数: 9926
23
本文的网路版本在这里: 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
con... 阅读全帖
s*******s
发帖数: 9926
24
来自主题: SanFrancisco版 - 【NOTICE】 反对SCA5 汇总贴
本文的网路版本在这里:
http://nosca5.blogspot.com/2014/02/sca5.html
如果对SCA-5法案有任何疑问或不了解, 请先参阅SCA-5法案问答集, 有清楚扼要的回答
SCA-5法案的对华人的影响, 连结如下:
http://nosca5.blogspot.com/2014/03/sca-5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都需要注册, 但是
Change.org和Whitehouse.gov是最常见的请愿网站, 将来一定该还有用到的... 阅读全帖
s*******s
发帖数: 9926
25
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都需要注册, 但是
Change.org和Whitehouse.gov是最常见的请愿网站, 将来一定该还有用到的机会, 花点
时间注册并不吃亏. 不過必須強調這兩個投票實際效果是零, 並不能解決問題, 其主要
功能就僅僅是壮大声势.
Step 2: http://findyourrep.legislature.ca.gov/
住在加州的朋... 阅读全帖
s*******s
发帖数: 9926
26
本文的网路版本在这里: 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
con... 阅读全帖
s*******s
发帖数: 9926
27
本文的网路版本在这里: 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
con... 阅读全帖
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
con... 阅读全帖
s*******s
发帖数: 9926
29
来自主题: SanFrancisco版 - 炎黄子孙是不屑于SCA5的
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都需要注册, 但是
Change.org和Whitehouse.gov是最常见的请愿网站, 将来一定该还有用到的机会, 花点
时间注册并不吃亏. 不過必須強調這兩個投票實際效果是零, 並不能解決問題, 其主要
功能就僅僅是壮大声势.
Step 2: http://findyourrep.legislature.ca.gov/
住在加州的朋... 阅读全帖
b*s
发帖数: 82482
30
我唯一追完了的是Battlestar Galactica……
New Yorker的评价还行:
It’s easy for people who aren’t science- fiction enthusiasts to laugh at
the genre—its earnestness, its lingo, its fans’ awestruck romance with the
idea that God is in the details of equipment and uniforms and security
codes and how many moons orbit Planet X and why it’s called Planet X in the
first place. Does it have something to do with the number ten, or is it
meant to be a leaning cross, or is it a reference to the mark on Captain
Blah’s foreh... 阅读全帖
a*o
发帖数: 25262
31
看过一点,估计第一本 1/3, 除了那些东西,没什么情节,没兴趣就没看了。。
fifty shades of grey 很多女人喜欢看,在车上见过,在沙滩里也见到一边晒太阳,
一边看。
以前看到这个 amazon.com 的评论,笑喷了:这是最多人喜欢的 review。。2万多个喜
欢。。哈哈哈。
http://www.amazon.com/review/R2JF7E91JJVHAT/ref=cm_cr_pr_viewpn
Did a teenager write this???, April 15, 2012
This review is from: Fifty Shades of Grey: Book One of the Fifty Shades
Trilogy (Paperback)
I really don't like writing bad reviews. I admire people who have the
courage to put pen to paper and expose themselves to the whole world,
especiall... 阅读全帖
a*o
发帖数: 25262
32
amazon 的这个几万人喜欢的 review, 至今难忘。。太搞了:哈哈哈。。
25,266 of 26,237 people found the following review helpful
Did a teenager write this???
By meymoon TOP 50 REVIEWER on April 15, 2012
Format: Paperback Verified Purchase
I really don't like writing bad reviews. I admire people who have the
courage to put pen to paper and expose themselves to the whole world,
especially those writing erotica. Having just finished this book, however, I
feel compelled to write a review.
About half way through the book, I look... 阅读全帖
e****s
发帖数: 258
33
来自主题: Movie版 - django unchained真好
There are still rational people, nevertheless.
The worst movie I've seen since 'Soul Plane', 26 December 2012
Author: Shamontiel Vaughn from United States
*** This review may contain spoilers ***
I wanted to see this movie for two reasons: 1) I am a big music and movie
fan of Jamie Foxx. 2) I wanted to know why Nate Parker turned the movie down
and seemed so disappointed in the script when he did an interview on The
Breakfast Club.
I didn't know the movie was going to be 2 hours and 45 minutes l... 阅读全帖
e****s
发帖数: 258
34
来自主题: Movie版 - django unchained真好
There are still rational people, nevertheless.
The worst movie I've seen since 'Soul Plane', 26 December 2012
Author: Shamontiel Vaughn from United States
*** This review may contain spoilers ***
I wanted to see this movie for two reasons: 1) I am a big music and movie
fan of Jamie Foxx. 2) I wanted to know why Nate Parker turned the movie down
and seemed so disappointed in the script when he did an interview on The
Breakfast Club.
I didn't know the movie was going to be 2 hours and 45 minutes l... 阅读全帖
s*******s
发帖数: 9926
35
全美国华人行动起来, 同心协力对抗SCA-5种族歧视.
大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 不要等到这趋势蔓延到其他州时, 才后悔莫及, 怎么样对抗SCA-5种族歧视呢? 下面
有教你要怎样做的方法.
本文的网路版本在这里: http://nosca5.blogspot.com/2014/02/sca5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民主党, 25席共和党. 对这个法案SCA5的支持是党派分票, 所以我们只需要保证 2个以
上民主党议员勇敢地站出来, 投票反对, 我们就可以让法案胎死腹中. 现在我们可以做
的是写信给代表我们选区的加州众议员, 去他们的网站给他们写.
Step 1: http://nosca5.blogspot.com/2014/03/sca-5_9.html
上面连结最上面有两个请愿投票, 有时间先去投票, 这两个网站都... 阅读全帖
s*******s
发帖数: 9926
36
本文的网路版本在这里: 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
con... 阅读全帖
v********d
发帖数: 3531
37
来自主题: Piebridge版 - Why You're Not Married from tracy Mcmillan
Tracy McMillan is a TV writer whose credits include Mad Men and The United
States of Tara. Her memoir I Love You and I'm Leaving You Anyway is now
available in paperback from Harper Collins/It Books. She lives in Los
Angeles with her 13-year-old son. Follow her on Twitter.
你没有结婚 排名前10位的原因
1. 你是一个来势汹汹的女人
2。你浅薄。
3. 你是一个荡妇。
4. 你是个骗子。
5. 你自私。
6. 你还不够好。
底线是,婚姻仅仅是一个长期的实践机会,爱好的人,甚至当他们这样做不值得。因为大部分时间,你的凌乱,放屁,通心粉和奶酪吃的人不会做你想要他。但是,你给他反正爱 - 因为你已经决定了你的头脑转变成自己一个人,谁是执业仁慈,深的,良性的,真实的,给予,而最重要的是,接受自己亲爱的自我 - 你会发现,你会... 阅读全帖
y**********o
发帖数: 7947
38
来自主题: Beijing版 - 无聊
funny review
http://www.amazon.com/review/R2X80Y9JHWXQRU/ref=cm_cr_pr_viewpn
83 of 88 people found the following review helpful
Hope men don't read this and think that this kind of behaviour is what
women want, May 23, 2012
By SetaAmazon Verified Purchase(What's this?)
This review is from: Bared to You: A Crossfire Novel (Kindle Edition)
What I liked:
GOOD WRITING: I've read Sylvia Day in the past, and her writing flows. There
are no annoying typos, actually I found one, but the novel is not typ... 阅读全帖
w***n
发帖数: 4358
39
☆─────────────────────────────────────☆
shhyin (pat) 于 (Thu Nov 4 17:13:36 2010, 美东) 提到:
1。The social network。
据说这是一个关于凤凰男情商很低智商很高的故事。首先要赞这个剧本写得好。全片对话和人物个性驱动,节奏很紧凑。摄影一流,男主很酷很A-hole,值得一看。片子试图对Zukerberg这个人的character进行分析,是否与事实相符,个人认为并不重要。但一般这种题材都是年代久远
鞴呕蚪咏鞴藕蟛拍茏芙嵝缘嘏某隼矗晌帐酢D芤曰钭诺娜耍⑶夷敲茨昵岬娜俗髂0澹某鲇幸庖宓母鲂苑治觯故峭芬换胤⑾帧K杂腥顺扑猧nstant classic。
2。 Animal Kingdom。
给大家推荐一下这部澳大利亚新片。在犯罪类型片里这部算很强的,很真实,剧情也新颖。菜鸟导演告诉你有什么事情即将发生,但你不看永远不知道。有足够的波折但行文简练,镜头语言很流畅。演员除了男小一号,包括Guy Pearce在内,群体演出够强。大概有点The Sapranos的
枪“嘣”的一生真过瘾啊,相比... 阅读全帖
p*********s
发帖数: 2
40
As long as you define the character using the right character sets, it should
be no problem.
Even you define the character sets as GB2312, as long as the english version
also had that character sets installed, and choose that as default character
sets, the moving will not be a problem either.
DTS, Data Transformation Service, will do that for you.
However, never done that before, just my thought. It would be save to define
the character sets as English sets and try to avoid using the NCHAR.
j********e
发帖数: 7
41
来自主题: Programming版 - one question about algorithm
Let me try:
step 1: traverse the string once, and count the occurance of each key
characters in the search string: i.e. a:3, c:3, d:1, e:1
step 2 : Recursion
/*"count" maps key characters to the # of occurance*/
/*"stringPath" is the longest string path so far containing all key characters
*/
void checkShortest(deque& stringPath, Map& count)
{
char head = stringPath.front();
char tail = stringPath.back();
/*Head character is not a key character*/
/*Or it is a key character, and h
k**e
发帖数: 2728
42
来自主题: MedicalCareer版 - [合集] 快到9.1,提醒大家几点
☆─────────────────────────────────────☆
teabao (teatea) 于 (Mon Aug 30 07:55:05 2010, 美东) 提到:
浏览了一下最近的发帖,有一些原则性的东西想要提醒大家。我起个抛砖引玉的作用,
大家有则改之,无则加勉,祝大家申请顺利。
1. PS里的人生故事一定要make sense。类似以前在国内做内分泌,出国做血液研究,
以后想做消化的故事会让PD质疑你的committment. 不管现在想申请那一科,将来像继
续做什么专科,写在PS里就一定要有充分的理由,这是个反应你思想成熟与否的事情。
至于进去了以后到底做什么,将来还是你自己说了算。
先去上班了,大家要有什么问题,可以发在这里,晚上回来接着写和回答。Have a
good day!
☆─────────────────────────────────────☆
clamchowder (DDD) 于 (Mon Aug 30 08:31:19 2010, 美东) 提到:
沙发

☆──────────────────────────────... 阅读全帖
d******9
发帖数: 404
43
来自主题: Statistics版 - SAS BASE 快疯掉了!!!!
Sorry, I was wrong.
The true reason is because of the below notes from SAS support:
Comparisons
*
The LENGTHC function returns the length of a character string,
including trailing blanks, whereas the LENGTH and LENGTHN functions return
the length of a character string, excluding trailing blanks. LENGTHC always
returns a value that is greater than or equal to the value of LENGTHN.
*
The LENGTHC function returns the length of a character string,
including trailing blanks, where... 阅读全帖
s*******s
发帖数: 9926
44
来自主题: CivilSociety版 - 反对SCA-5具体有效的步骤, 请转发
全美国华人行动起来, 同心协力对抗SCA-5种族歧视.
大家不要觉得今天不是发生在我这里, 发生在加州就觉得无所谓, 不关我的事, 海外中
国人应该团结一致, 才能对抗种族歧视, 一起行动, 大家应该要效法犹太人团结的精神
, 不要等到这趋势蔓延到其他州时, 才后悔莫及, 事实上这股种族歧视的风潮已经有扩
大的现象, 最近纽约市新任民主党市长积极推动在纽约市八所重点中学采用族裔入学,
以减少这些重点中学学生亚裔比例, 这个政策震撼众多亚裔家长, 而要怎么样对抗SCA
-5种族歧视呢? 下面有教你要怎样做的方法.
本文的网路版本在这里:
http://nosca5.blogspot.com/2014/02/sca5.html
如果对SCA-5法案有任何疑问或不了解, 请先参阅SCA-5法案问答集, 有清楚扼要的回答
SCA-5法案的对华人的影响, 连结如下:
http://nosca5.blogspot.com/2014/03/sca-5.html
反对SCA-5具体有效的步骤, 请转发
从我做起, 从现在做起! 我们还来得及反对SCA5. 目前, 加州众议院的80席中, 有55席
民... 阅读全帖
c*********l
发帖数: 3438
45
【 以下文字转载自 Military 讨论区 】
发信人: mitcoin (米特币), 信区: Military
标 题: 一些中文、英文,音义都相似的词汇
发信站: BBS 未名空间站 (Wed Jan 22 00:56:05 2014, 美东)
焙bei4: Eng. bake, 古之部,just a 轉 away from -k in Wang Li's systems.
陋lou4: Eng. low
擰ning2: Eng. wring [if wr were n would match] e.g., wring dry
民min2, {Cantonese, Mandarin]: Eng. people: man
賠pei2: Eng. pay, 費, 費:fee! ...free...
設S. Min. set [siat]: Eng. set [up]; Setting: 設定!
殺Cant. etc. saat: Eng. -cide (suicide...)
毒Hakka: tuk: Eng. tox[ic]
割S. Min, etc. got: Eng. cut... 阅读全帖
g*********o
发帖数: 4653
46
TEHRAN – After raiding Barbie doll to ward off Western culture, Iran is
also banned toy or puppet characters The Simpson.
According to reports from a number of media, the Iranian government banned
toy or puppet characters from the U.S. to counteract the influx of Western
culture. However, Iran does not prohibit the circulation of Superman and
Spiderman toys because the two characters is the character of the superhero
defenders of truth and savior of the oppressed people.
“We do not want to promo... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)