由买买提看人间百态

topics

全部话题 - 话题: empty
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
a********r
发帖数: 217
1
在leetcode上总是TLE, 基本想法是:建一个二维表(vector>)vvi记录
所有palindrome的位置,如果s[i]是一个palindrome的开头,则vvi[i]的vector记录所
有的下一个palindrome的开始位置。Vector dp记录最小分割数,dp[i]是sub
string s[i...n-]的最小分割数。从右到左扫描vvi,就可以建立dp[].最后输出dp[0].
这个方法应该是O(n^2) time 和 O(n^2) space.
int minCut(string s) {
int n=s.size();
if(s.size()==1) return 0;
if(setTable(s)) return 0;
vector dp(n);// dp[i] store the minCut for s[i...n-1]
dp[n-1]=0;
for(int i=n-2; i>=0;i--){
dp[i]=n-i-1;
for(auto... 阅读全帖
a***e
发帖数: 413
2
还是开始没想清楚,发现用2个stack要清楚很多,2个vector就搞晕了。
Sigh,贴一个终于通过的明天再看再简化。每次碰到这种开始以为简单又老是写不对的
题就很有挫折感!
vector > zigzagLevelOrder(TreeNode *root) {
vector> ret;
vector levelVals;

stack curLevel;
stack nextLevel;
if (root==NULL)
return ret;

TreeNode *r = root;
curLevel.push(r);
bool l2r = true;

while(!curLevel.empty())
{
if (!l2r)
... 阅读全帖
z***m
发帖数: 1602
3
主要是auxilary stack 太浪费, 只有当进来的数小于等于getMin(), 才push进。
void push(int x) {
if (st_aux.empty()) st_aux.push(x);
else {
if (x <= getMin()) {
//We only push to the min stack when the value being pushed onto
the main stack
//is less than or equal to the current min value
st_aux.push(x);
}
}
st.push(x);
}
相应的,pop的时候,只有当要出去的数等于getMin时才pop auxilary stack
void pop() {
if (!st_aux.empty() && st.to... 阅读全帖
f**********t
发帖数: 1001
4
来自主题: JobHunting版 - 求助一面试题
// Given an string array sorted by characters in another string.
// Return that sorting base string.
// Example. give you
// {foo, cat, cao, bag, bat, aac}
// return: fcbagto
void buildGraph(vector &vs, unsigned col, unsigned up, unsigned down,
map> &res) {
char pre = '#';
unsigned count = 0;
unsigned uu = up;
for (unsigned i = up; i < down; ++i) {
if (vs[i].size() <= col) {
break;
}
if (vs[i][col] == pre) {
++count;
} else {
... 阅读全帖
z***y
发帖数: 73
5
来自主题: JobHunting版 - 请教两道F面试题的follow up
void printPath2(TreeNode* root)
{
if ( !root ) return;
std::stack st;
std::stack parents;
std::string prefix;
st.push(root);
while ( !st.empty() )
{
TreeNode* p = st.top();
st.pop();
if ( !p->left && !p->right ) {
std::cout << prefix << p->val << std::endl;
if ( st.empty() ) break;
while ( !parents.empty() && st.top() != parents.top()->right ) {
parents.pop();
... 阅读全帖
o********r
发帖数: 79
6
来自主题: JobHunting版 - google面经(挂了)
不要吵了。
我按beanbun的思路写了一遍,指教一下
typedef pair COORD;
void extend(COORD cur,
vector >& visited,
vector > matrix,
queue& current,
queue& next )
{
vector shift;
shift.push_back(make_pair(0,-1));
shift.push_back(make_pair(0,1));
shift.push_back(make_pair(1,0));
const int m = matrix.size();
const int n = matrix[0].size();
for(const auto s:shift)
... 阅读全帖
y*********e
发帖数: 518
7
来自主题: JobHunting版 - LC的题确实变难了。。。
想了下,这个题用greedy算法解。有点类似dijkstra算法求最短路径。
首先用一个priority queue来装已经发现的字符串,按照字典序排序。
比如输入是cbacdcbc,
scan到了第三个字符的时候,p_queue里面只有一个值 cba。
当scan到第四个字符c的时候,有了重复。这个时候有两个选择:
a. 把 c 从 cba 里面删除,变成 bac。
b. 不理会新遇到的 c,还是 cba。
把a选项和b选项再重新丢回p_queue。
如此重复一直到字符串结尾。返回p_queue的第一个值。因为p_queue是一个按照字典序
排好的priority queue,所以返回的结果一定就是答案。
伪代码如下:
let q = p_queue
for each c in string:
let s = q.empty() ? "" : q.dequeue()
if not c in s
s += c
q.push(s)
else:
s1 = del c in s
s1 += c
q.push(s)
q.push(s1... 阅读全帖
y****1
发帖数: 213
8
yes. for the empty bottle. I return 3 bottles, one is sealed, one is half
and one is empty.
At first, the staff didn't know the recall and wouldn't like to deal with
the empty bottles. The manager just came and told him the recall.

you
y***d
发帖数: 2330
9
来自主题: Parenting版 - 我这妈妈是不是不够坚强
http://www.parentdish.com/2009/04/30/empty-threats-how-bad/
Ah, empty threats. They're like chocolate ice cream in the morning. We know
we shouldn't, but then it just... happens. The following How Bad? question
is from a dad who says he has a "friend" with an empty threat problem...
t*******r
发帖数: 22634
10
来自主题: Parenting版 - [转载] Are We Overpraising Our Children?
以下为转载,link 在第二页。
Are We Overpraising Our Children?
The negative effects of overpraising kids
Posted Dec 10, 2013
Research has shown that there are positive effects of praising children, but
it depends on what kind of praise we’re dishing out. A recent Stanford
Study (link is external) of toddlers showed that “praising effort, not
talent, leads to greater motivation and more positive attitudes toward
challenges” down the road. These findings are consistent with previous
research, which has connec... 阅读全帖
y****g
发帖数: 38
11
应该行动起来了!两分钟填写问卷投诉“杀光中国人”的Jimmy Kimmel.
【 以下文字转载自 WaterWorld 讨论区 】
发信人: firekimmel (Fire Kimmel), 信区: WaterWorld
标 题: 通过 FCC Complaint 调查 Jimmy Kimmel 节目
发信站: BBS 未名空间站 (Mon Oct 28 00:37:26 2013, 美东)
ABC不用理会普通观众,但无法将联邦政府调查员拒之门外。现在的电视节目大多是有
剧本的,Federal Communications Commission (FCC)有必要调查 Kill Everyone In
China 这句台词的用意。大多数人认为这句话有严重的种族歧视 (racial
discrimination) 及煽动性。
FCC在接到观众投诉后会进行调查,比如 2004年的 Janet Jackson Wardrobe
Malfunction 导致了50万件投诉。如果调查结果认为违规,FCC会处以罚款。
请到以下网站投诉:
http://www.fcc.gov/complaints... 阅读全帖
y****g
发帖数: 38
12
应该行动起来了!两分钟填写问卷投诉“杀光中国人”的Jimmy Kimmel.
【 以下文字转载自 WaterWorld 讨论区 】
发信人: firekimmel (Fire Kimmel), 信区: WaterWorld
标 题: 通过 FCC Complaint 调查 Jimmy Kimmel 节目
发信站: BBS 未名空间站 (Mon Oct 28 00:37:26 2013, 美东)
ABC不用理会普通观众,但无法将联邦政府调查员拒之门外。现在的电视节目大多是有
剧本的,Federal Communications Commission (FCC)有必要调查 Kill Everyone In
China 这句台词的用意。大多数人认为这句话有严重的种族歧视 (racial
discrimination) 及煽动性。
FCC在接到观众投诉后会进行调查,比如 2004年的 Janet Jackson Wardrobe
Malfunction 导致了50万件投诉。如果调查结果认为违规,FCC会处以罚款。
请到以下网站投诉:
http://www.fcc.gov/complaints... 阅读全帖
l****z
发帖数: 29846
13
By ANDREW JACOBS
BEIJING — Liu Yang, a coal miner’s daughter, arrived in the capital
this past summer with a freshly printed diploma from Datong University, $140
in her wallet and an air of invincibility.

北京— 刘扬是一位矿工的女儿,今年夏天怀揣大同大学新近颁发的毕业文凭和1000元
人民币来到北京时,眼前似乎没有战胜不了的困难。

Her first taste of reality came later the same day, as she lugged her
bags through a ramshackle neighborhood, not far from the Olympic Village,
where tens of thousands of other young strivers cram four to a room.

到达北... 阅读全帖
b*********y
发帖数: 240
14
来自主题: Stock版 - 今天搞不好要狂飙了。
我还以为你用的汉语模式,结果查了一下字典,还真有empty words这个词, 赞严谨!
Noun 1. empty words - loud and confused and empty talk; "mere rhetoric"
W***n
发帖数: 11530
15
Cleveland's plan to destroy nearly 6,000 homes
By Les Christie @CNNMoney November 13, 2014: 6:00 PM ET
NEW YORK (CNNMoney)
In and around Cleveland, nearly 6,000 foreclosed and abandoned homes are
being destroyed in an effort to save neighborhoods from blight, crime and
sinking home prices.
Instead of trying to rebuild on these properties, however, the city has been
turning the empty lots into parks, greenhouses, even vineyards.
"For the larger body -- the neighborhood -- to survive, you have to... 阅读全帖
l*****d
发帖数: 7963
16
来自主题: I485版 - [合集] 485 填表求问 (转载)
【 以下文字转载自 EB23 讨论区 】
发信人: moneybull (moneybull), 信区: EB23
标 题: [合集] 485 填表求问
发信站: BBS 未名空间站 (Sat Mar 24 08:17:47 2012, 美东)
☆─────────────────────────────────────☆
xiangxiang2 (luckygirl) 于 (Sun Nov 20 13:35:28 2011, 美东) 提到:
俺在填485表, 不明白这个A number 是什么?
是140 approval 表上的?
还是以前老EAD 卡上的?
两个不一样?
☆─────────────────────────────────────☆
noles (mileman) 于 (Sun Nov 20 13:54:23 2011, 美东) 提到:
140 approval 表上的
☆─────────────────────────────────────☆
skymount (心在天山) 于 (Sun Nov 20 14:06:11 2011... 阅读全帖
m*******l
发帖数: 12782
17
来自主题: EB23版 - [合集] 485 填表求问
☆─────────────────────────────────────☆
xiangxiang2 (luckygirl) 于 (Sun Nov 20 13:35:28 2011, 美东) 提到:
俺在填485表, 不明白这个A number 是什么?
是140 approval 表上的?
还是以前老EAD 卡上的?
两个不一样?
☆─────────────────────────────────────☆
noles (mileman) 于 (Sun Nov 20 13:54:23 2011, 美东) 提到:
140 approval 表上的
☆─────────────────────────────────────☆
skymount (心在天山) 于 (Sun Nov 20 14:06:11 2011, 美东) 提到:
Re.
BTW, 副申请人的(领导的) 要空着。

☆─────────────────────────────────────☆
xiangxiang2 (luckygirl) 于 (Sun Nov 20 14:11... 阅读全帖
u*****g
发帖数: 1632
18
【 以下文字转载自 Military 讨论区 】
发信人: yeweiyang (只听老歌), 信区: Military
标 题: 关于抗议ABC 的信息汇总。(尽可能全, 欢迎补充)
发信站: BBS 未名空间站 (Fri Oct 25 11:30:54 2013, 美东)
抱歉不能一一注明出处了。希望对一些还没有行动但是想出力的人一点帮助。
同时,请大家转发给认识的人和中国团体。
(中国学生,中文学校, 行业协会, 地区协会等等)
• 白宫情愿连接,原视频连接,参加游行注册
http://www.weidb.com/investigatejimmy/
(this webpage has the link to the white house petition, the JK show video,
signing up to join protest and more)
• 给JK办公室直接打电话: 323-860-5900
Call JK’s office directly to complain against JK’s kids table ... 阅读全帖
u*****g
发帖数: 1632
19
【 以下文字转载自 Military 讨论区 】
发信人: yeweiyang (只听老歌), 信区: Military
标 题: 关于抗议ABC 的信息汇总。(尽可能全, 欢迎补充)
发信站: BBS 未名空间站 (Fri Oct 25 11:30:54 2013, 美东)
抱歉不能一一注明出处了。希望对一些还没有行动但是想出力的人一点帮助。
同时,请大家转发给认识的人和中国团体。
(中国学生,中文学校, 行业协会, 地区协会等等)
• 白宫情愿连接,原视频连接,参加游行注册
http://www.weidb.com/investigatejimmy/
(this webpage has the link to the white house petition, the JK show video,
signing up to join protest and more)
• 给JK办公室直接打电话: 323-860-5900
Call JK’s office directly to complain against JK’s kids table ... 阅读全帖
G****e
发帖数: 11198
20
投诉链接:
http://esupport.fcc.gov/complaints.htm
选:Broadcast (TV and Radio), Cable, and Satellite Issues
然后
选:Unauthorized, unfair, biased, illegal broadcasts (does NOT include
Obscene, Profane or Indecent material)
然后:
Online Form - Recommended Method
Complete the form <- 点击这里
然后:
1. Name of the company: ABC
2. N/A
3. N/A
4.a Network: ABC
4.b Program name: Jimmy Kimmel Show
4.c Date of program: 10/16/2013
4.d Leave empty
5.a Leave empty
5.b Leave empty
5.c Limited under 1000 characters
【 以下文字转载自 Wa... 阅读全帖
m*******r
发帖数: 7495
21
来自主题: Carolinas版 - [合集] 北卡三月
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:30:33 2009, 美东) 提到:
周日到达,一下灰机,顿感热浪袭人。弯曲几年,已经不知炎炎盛夏的滋味,人的忘性
可真大,后来知道是97度。不过车里开空调还不错,但怕是等我的老爷车运到,那个
漏空调顶不住。
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:30:59 2009, 美东) 提到:
周一上班,有段单LANE的路,一个TRACTOR在前面开,堵了一排车,心里不停念CURSE
WORDS。总算等了个左转LANE,超了过去。这边人挺NICE,偶这么MEAN会不会有抱应?
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:31:27 2009, 美东) 提到:
晚上在住的地方发现了TRADE
l*********e
发帖数: 5385
22
来自主题: Carolinas版 - [合集] 北卡三月
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:30:33 2009, 美东) 提到:
周日到达,一下灰机,顿感热浪袭人。弯曲几年,已经不知炎炎盛夏的滋味,人的忘性
可真大,后来知道是97度。不过车里开空调还不错,但怕是等我的老爷车运到,那个
漏空调顶不住。
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:30:59 2009, 美东) 提到:
周一上班,有段单LANE的路,一个TRACTOR在前面开,堵了一排车,心里不停念CURSE
WORDS。总算等了个左转LANE,超了过去。这边人挺NICE,偶这么MEAN会不会有抱应?
☆─────────────────────────────────────☆
dean (empty bottle) 于 (Thu Jul 16 00:31:27 2009, 美东) 提到:
晚上在住的地方发现了TRADE
s*******h
发帖数: 3219
23
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Inde... 阅读全帖
b**L
发帖数: 646
24
【 以下文字转载自 WaterWorld 讨论区 】
发信人: tobuto (tobuto), 信区: WaterWorld
标 题: Re: 通过 FCC Complaint 调查 Jimmy Kimmel 节目
发信站: BBS 未名空间站 (Tue Oct 29 00:02:22 2013, 美东)
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Method", click "Complete the form"
Step 5: ... 阅读全帖
y****i
发帖数: 17878
25
☆─────────────────────────────────────☆
mirrorjj (人在天涯) 于 (Fri Aug 2 21:09:06 2013, 美东) 提到:
谢谢sato!
上次参加了聚会还想再聚的,上次没有参加版聚的,或者上次版聚没有尽兴的,8/11
SABPA野餐会结束后,一起去喝茶聊天唱歌吧!
时间暂定:8/11星期天, 3:00 pm to 8:00pm
地点:亮点KTV
7327 Clairemont Mesa Blvd
San Diego, CA 92111
Neighborhood: Kearny Mesa
这里有点介绍和评论:
http://www.yelp.com/biz/spot-ktv-and-restaurant-san-diego
报名可以跟贴,也可以发信给我。如果想只参加唱歌,咱们可以3:00在那边门口碰头。
我统计个数,订个座。
费用:因sato大侠赞助,本次活动免费参加,五小时,有送饮料鸡块
赞助名单
weiqing: $20.00 (超过8人)
sato (~eMpTy): $200.00
欢迎继续赞助
如需... 阅读全帖
G***y
发帖数: 103
26
Hope it helps:
TRAVELLING WITH CHILDREN
(Please note: these are tips and suggestions and every child and trip is
different. Try what you feel comfortable with and see what works for you)
Air travel
-If you’re travelling to the airport in a taxi: the law in Toronto says
children in taxis should be strapped into carseats. (Adherence seems to vary
, by driver.) If you don’t want to travel with your carseat, ask a friend (
or a parent in our group!) to drive you to the airport.
-If you have a spare ... 阅读全帖
s*******h
发帖数: 3219
27
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Inde... 阅读全帖
s*******h
发帖数: 3219
28
Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Me... 阅读全帖
c*****e
发帖数: 3226
29
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Inde... 阅读全帖
t****1
发帖数: 873
30
I believe sending complains to FCC or ABC is another effective way to vent
our anger, even just a few hundreds. I just sent a complain to FCC.
Here is a step by step FCC complain Jimmy Kimmel instruction:
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
It's very easy and it only took me a few minutes while I was eating my lunch
at desk.
--------
另外还有一个 www.change.org/petition
http://www.change.org/petitions/stop-jimmy-kimmel-and-abc-from-
已有2070人 Signed, 只再需要4... 阅读全帖
s*******h
发帖数: 3219
31
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Inde... 阅读全帖
s*******h
发帖数: 3219
32
Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Me... 阅读全帖
s*******h
发帖数: 3219
33
Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Me... 阅读全帖
b*********2
发帖数: 534
34
看起来星期四去最划算了,老人不要钱,自己或娃一人5刀搞定
Any Day: McDonald's offers $4 off General Admission with one of their State
Fair coupons (available on tray liner or bag stuffer) any day of the Fair. A
free child ticket (with purchase of general admission) coupon is also
distributed by McDonald’s. Offer may not be combined with any other offer.
Dr Pepper $5 after 5: Any day after 5 p.m. Bring an empty Dr Pepper can and
enter for $5 after 5 p.m.
Dr Pepper $4 Tuesdays: Every Tuesday during the 2011 season, bring an e... 阅读全帖
s*******h
发帖数: 3219
35
Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Me... 阅读全帖
s*******h
发帖数: 3219
36
Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Me... 阅读全帖
P*******e
发帖数: 39399
37
来自主题: Football版 - 签完了Petition 的到这里领包子
Step by step FCC complaints
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Indecent material) click "next"
Step 4: Under "Online Form - Recommended Method", click "Complete the form"
Step 5: It will bring you to https://esupport.fcc.gov/ccmsforms/form2000.
action?form_type=2000E
In Consumer Information Section
These i... 阅读全帖
b*****l
发帖数: 8603
38
来自主题: loseweight版 - Top 11 Biggest Lies:1. Eggs Are Unhealthy
发信人: joyjoy (joy), 信区: loseweight
标 题: Top 11 Biggest Lies:10. Sugar is Unhealthy Because it Contains “
Empty” Calories
发信站: BBS 未名空间站 (Tue Oct 1 23:18:01 2013, 美东)
It is commonly believed that sugar is bad for you because it contains empty
calories.
It’s true, sugar has a lot of calories with no essential nutrients. But
that is just the tip of the iceberg.
Sugar, primarily because of its high fructose content, affects metabolism in
a way that sets us up for rapid fat gain and metabolic diseas... 阅读全帖
t****1
发帖数: 873
39
【 以下文字转载自 Seattle 讨论区 】
发信人: tz1981 (左推右攻), 信区: Seattle
标 题: 简单的FCC/Petition 抗议杀中国人投诉的步骤
发信站: BBS 未名空间站 (Tue Oct 22 16:22:21 2013, 美东)
I believe sending complains to FCC or ABC is another effective way to vent
our anger, even just a few hundreds. I just sent a complain to FCC.
Here is a step by step FCC complain Jimmy Kimmel instruction:
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
It's very easy and it only took me a few minutes while I was eating my lunc... 阅读全帖
R*****s
发帖数: 41236
40
☆─────────────────────────────────────☆
Jason (JRider) 于 (Wed Mar 26 13:33:30 2014, 美东) 提到:
http://online.wsj.com/news/articles/SB1000142405270230394970457
"'I will run it off'—that attitude clearly prevails among the marathoners
themselves, almost sometimes to an arrogance," said Paul Thompson, a veteran
marathoner who is chief of cardiology at Hartford Hospital.
A growing body of research shows the error of that thinking. A study
published in the current edition of Missouri Medicine found... 阅读全帖
p*****k
发帖数: 318
41
来自主题: BrainTeaser版 - 问个排列组合的问题
sure.
we first calculate the number of combinations with at least one box is empty.
apply inclusion-exclusion principle:
http://en.wikipedia.org/wiki/Inclusion-exclusion_principle
with set A_i indicating i-th box is empty. i will follow the wikipedia notation.
for |A_i|, i-th box is empty, so each ball has the other (d'-1) boxes to go into, which gives (d'-1)^d combination. there are total of C(d',1) terms, hence the first sum is C(d',1)*(d'-1)^d;
now |intersection of A_i and A_j|: C(d',2) term
j**y
发帖数: 7014
42
【 以下文字转载自 TonyXuClub 俱乐部 】
发信人: buddyboy (hello), 信区: TonyXuClub
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live! (转载)
发信站: BBS 未名空间站 (Sun Oct 27 16:46:39 2013, 美东)
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast... 阅读全帖
j**y
发帖数: 7014
43
【 以下文字转载自 TonyXuClub 俱乐部 】
发信人: buddyboy (hello), 信区: TonyXuClub
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live! (转载)
发信站: BBS 未名空间站 (Sun Oct 27 16:46:39 2013, 美东)
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast... 阅读全帖
K*****u
发帖数: 241
44
来自主题: LeisureTime版 - 这篇英文微型小说看不懂
怎么一个故事写了两次,前后描述还有差异?恳请能看懂的人指点。
Nothing Has Changed by Colin Thubron
Colin Thubron started his career in documentary film and in TV. He made
his reputation, though, as a travel writer, especially in the Middle East.
He has more recently turned to novels. There is a journey in this story; it
is an exploration of the writer's own feelings when faced with both his loss
and someone else's. Whether the woman in the story really existed or not
does not matter; the situation is a very human one.
We writ... 阅读全帖
a*o
发帖数: 25262
45
来自主题: LeisureTime版 - 【纽约客】中餐馆背后的辛酸
http://www.newyorker.com/magazine/2014/10/13/cooka%C2%80%C2%99s
The Kitchen Network
America’s underground Chinese restaurant workers.
By Lauren Hilgers
Chinatown employment agencies can get immigrants kitchen jobs in a few
hours. Credit Photograph by Annie Ling
In a strip mall on a rural stretch of Maryland’s Indian Head Highway, a
gaudy red façade shaped like a pagoda distinguishes a Chinese
restaurant from a line of bland storefronts: a nail salon, a liquor store,
and a laundromat. On ... 阅读全帖
C*******y
发帖数: 351
46
Met my old lover in the grocery store
The snow was falling Christmas Eve
I stole behind her in the frozen foods
And I touched her on the sleeve
She didn't recognize the face at first
But then her eyes flew open wide
She went to hug me and she spilled her purse
And we laughed until we cried.
We took her groceries to the checkout stand
The food was totalled up and bagged
We stood there lost in our embarrassment
As the conversation dragged.
We went to have ourselves a drink or two
But couldn't find... 阅读全帖
x****n
发帖数: 2297
47
来自主题: MusicPlayer版 -
一个同为器材组的国内朋友在email里说到“Most people who spend on things
which are not must-have, the underlying reason is loneliness and emptiness”
看来做器材组,其实只是为了抚慰空虚寂寞的灵魂。
Smashing Pumpkins 的Zero 里有一段歌词是
“Emptiness is loneliness; loneliness is cleanliness; cleanliness is
godliness; And god is empty just like me” 嗯
x5
发帖数: 27871
48
来自主题: PhotoGear版 - [合集] 版务为什么删我的贴?
☆─────────────────────────────────────☆
Terminator (魔鬼终结者) 于 (Mon Apr 4 10:33:36 2011, 美东) 提到:
我说基督徒信错了上帝,我才是上帝的贴?
不信或者信错了上帝,死后都要下地狱,难到违反版务了么?
☆─────────────────────────────────────☆
carbonplay (~~ 贪玩) 于 (Mon Apr 4 10:36:40 2011, 美东) 提到:
请自己认真读版规
☆─────────────────────────────────────☆
Terminator (魔鬼终结者) 于 (Mon Apr 4 10:37:58 2011, 美东) 提到:
请问是哪一条版规?

☆─────────────────────────────────────☆
carbonplay (~~ 贪玩) 于 (Mon Apr 4 10:40:57 2011, 美东) 提到:
quote:
除换届非常时期外,本版不承担大量讨论版务管... 阅读全帖
x5
发帖数: 27871
49
☆─────────────────────────────────────☆
SEM (Slow Eye Movement) 于 (Sun Apr 3 12:59:26 2011, 美东) 提到:
发现从单细胞进化到人太容易了
但要从primordial soup进化出单细胞生物简直难得不可想象
☆─────────────────────────────────────☆
zx1106 (某人) 于 (Sun Apr 3 13:00:42 2011, 美东) 提到:
从原核到真核就不容易
☆─────────────────────────────────────☆
empty (听说听说的都是胡说) 于 (Sun Apr 3 13:01:03 2011, 美东) 提到:
单细胞之前不是还有更初级的么
☆─────────────────────────────────────☆
tortex (硬派) 于 (Sun Apr 3 13:10:04 2011, 美东) 提到:
要在之前先进化出个神来岂不是更难
☆────────────... 阅读全帖
s*******h
发帖数: 3219
50
【 以下文字转载自 Military 讨论区 】
发信人: helloterran (hi you), 信区: Military
标 题: Step by step, 花两分钟向FCC投诉Jimmy Kimmel Live!
发信站: BBS 未名空间站 (Thu Oct 24 14:26:51 2013, 美东)
https://sites.google.com/site/boycottjimmykimmelandabc/step-by-step-fcc-
complaints
这个网址里把show的名字搞错了,我更正如下:
Step 1. Open http://www.fcc.gov/complaints
Step 2: Choose Broadcast (TV and Radio), Cable, and Satellite Issues click "
next"
Step 3: Choose Unauthorized, unfair, biased, illegal broadcasts (does NOT
include Obscene, Profane or Inde... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)