【 以下文字转载自 CivilSociety 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: CivilSociety
标 题: 掌握主动权: TODO and SIGNON
发信站: BBS 未名空间站 (Sat Nov 9 20:59:16 2013, 美东)
嗯。 我们不能等待Kimmel的反应,Media的反应,Obama的反应。 我们坚持道德
制高点,但是我们必须掌握主动权。 所以该干实事了。
星星之火,可以燎原 is really a statement about viral effect and exponential
effect.
Please come sign up to the todo list for our next step. I need only get 4-5
people to sign up. That 4-5 people get 4-5 more of their friends to sign
up. A few rounds, we are a stronger comm... 阅读全帖
【 以下文字转载自 CivilSociety 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: CivilSociety
标 题: 掌握主动权: TODO and SIGNON
发信站: BBS 未名空间站 (Sat Nov 9 20:59:16 2013, 美东)
嗯。 我们不能等待Kimmel的反应,Media的反应,Obama的反应。 我们坚持道德
制高点,但是我们必须掌握主动权。 所以该干实事了。
星星之火,可以燎原 is really a statement about viral effect and exponential
effect.
Please come sign up to the todo list for our next step. I need only get 4-5
people to sign up. That 4-5 people get 4-5 more of their friends to sign
up. A few rounds, we are a stronger comm... 阅读全帖
【 以下文字转载自 CivilSociety 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: CivilSociety
标 题: 掌握主动权: TODO and SIGNON
发信站: BBS 未名空间站 (Sat Nov 9 20:59:16 2013, 美东)
嗯。 我们不能等待Kimmel的反应,Media的反应,Obama的反应。 我们坚持道德
制高点,但是我们必须掌握主动权。 所以该干实事了。
星星之火,可以燎原 is really a statement about viral effect and exponential
effect.
Please come sign up to the todo list for our next step. I need only get 4-5
people to sign up. That 4-5 people get 4-5 more of their friends to sign
up. A few rounds, we are a stronger comm... 阅读全帖
【 以下文字转载自 CivilSociety 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: CivilSociety
标 题: 掌握主动权: TODO and SIGNON
发信站: BBS 未名空间站 (Sat Nov 9 20:59:16 2013, 美东)
嗯。 我们不能等待Kimmel的反应,Media的反应,Obama的反应。 我们坚持道德
制高点,但是我们必须掌握主动权。 所以该干实事了。
星星之火,可以燎原 is really a statement about viral effect and exponential
effect.
Please come sign up to the todo list for our next step. I need only get 4-5
people to sign up. That 4-5 people get 4-5 more of their friends to sign
up. A few rounds, we are a stronger comm... 阅读全帖
这个TODO list里面的几个事情,优先级应该怎么安排?
复习巩固提高一下 time series analysis,把Tsay的那本《Analysis of Financial
Time Series》系统的看一下。
(背景:以前看过一些章节,做过几个time series analysis的课程project,但没有
系统的看完这本书。)
修炼C++,《Thinking in C++》第二本还没看完,把它给看完了,然后多找些编程的东
西练练手。
(背景:目前看完了《Thinking in C++》第一卷,C++编程经验只有几千行,以前主要
是写Java的)
Stochastic Calculus for Finance II (by Shreve) 的7到11章
(背景:前面6章已经看过了,学过SDE的课程)
看第二遍John Hull书
(背景:看过一遍,看前半部分的时候比后半部分看得扎实,基本上习题都做,由于时
间的关系,后半部分的习题没怎么做)
学习一下SQL相关的数据库方面的知识?
星星之火,可以燎原 is really a statement about viral effect and exponential
effect.
Please come sign up to the todo list for our next step. I need only get 4-5
people to sign up. That 4-5 people get 4-5 more of their friends to sign
up. A few rounds, we are a stronger community as a result.
I created a signup sheet and please use "boycottDisney" as the accesscode: http://www.signupgenius.com/index.cfm?go=s.SignupLogin&urlid=10
The sign-up items don't completely correspond to the goals ... 阅读全帖
Please look through the todo list, and take ownership of a small piece, no
matter how small and how local. Help us recruit more people and set a goal
for yourself, and knock the small piece out of the park.
Another todo item is voice our thoughts via media, traditional news channels
reviews, Wikipedia articles. We need volunteers to speak out on these
channels.
my experience is that keeping dialogues with other white, black readers can
work.
Link: http://www.eversave.com/travel/cerritos-surf-colony;jsessionid=
$289 for a six-night, seven-day stay in a private one-bedroom villa or a
four-night, five-day stay in a two-bedroom private villa
o All taxes and resort fees included
o Located 35 minutes north of Cabo, 10 minutes from artist colony Todos
Santos and an hour from the airport
o Enjoy an infinity pool with a swim up restaurant-bar, a beach well known
for great surfing, and free Wi-Fi
o Activities like surf lessons, ocean swimming... 阅读全帖
代码如下:
import java.util.*;
class MapEQ {
public static void main(String[] args) {
Map m = new HashMap();
ToDos t1 = new ToDos("Monday");
ToDos t2 = new ToDos("Monday");
ToDos t3 = new ToDos("Tuesday");
m.put(t1, "doLaundry");
m.put(t2, "payBills");
m.put(t3, "cleanAttic");
System.out.println(m.size());
} }
class ToDos{
String day;
ToDos(String d) { day = d; }
public boolean equals(Object o) {
return ((ToDos)o).day == this.day;
}
//public int hashCode() { return 9; }
... 阅读全帖
i really dont think so
public class Test {
public static void main(String[] args) {
Map m = new HashMap();
ToDos t1 = new ToDos("Monday");
ToDos t2 = new ToDos("Monday");
ToDos t3 = new ToDos("Tuesday");
m.put(t1, "doLaundry");
m.put(t2, "payBills");
m.put(t3, "cleanAttic");
System.out.println(t1.hashCode());
System.out.println(t2.hashCode());
System.out.println(t3.hashCode());
... 阅读全帖
Many people speak English and Mandarin.
How many people who speak Mandarin (and English) can speak fluently a second
foreign language, such as French, German, Spanish, Russian, Italian,
Japanese, Korean, Arabic, and others?
It is hard to pronounce English (particularly British English) correctly.
It is probably even harder to pronounce (Parisian) French correctly.
Please try to read aloud any of the following versions in a second foreign
language: French, Spanish, Italian, and German.
Russian is... 阅读全帖
/**
* Using {@link AppleExercise.Problem1.SampleCache} as a starting point,
answer questions 1-3 by
* creating 3 new inner classes within {@link AppleExercise.Problem1}
below.
*/
public static class Problem1 {
public interface Cache {
public void put(Object key, Object value);
public Object get(Object key);
}
public static class SampleCache implements Cache {
private Map map;
public SampleCache() {
... 阅读全帖
。
容
同
。
要
吗
具
。
Task is not a part of "Javadoc" though you can add your own "task" to
your Javadoc. You can also add xdoclet annotations to your javadoc, but
obviously xdoclet is not a part of "Javadoc" as well.
Also, there is not a standard of "Task". Eclipse has its own Task(s).
Actually it supports 2 types of "Task"s: Java comment "TODO" and
Eclipse project Task.
"TODO" can be put into Javadoc, but not necessary. You can add your "TODO"
annotation in normay comment:
//TODO: remove this todo
非法移民的成功奋斗实例, 非法移民的生活很艰苦
Age: 58
Country of origin: El Salvador
Occupation: President and CEO, Todos Supermarket
His advice to immigrant entrepreneurs: "Never let discrimination be an
excuse for not being successful."
Castro fled to California from civil war-torn El Salvador in 1980 at age 26,
forced to leave his wife and young children behind. "At the time, I worked
in the factories. The guerilla unions were taking over the factories and the
jobs . . . there were many kidnappings and killings," ... 阅读全帖
原文连接,请注意这是一个瓦伦西亚媒体: http://www.superdeporte.es/futbol/2011/11/04/
villa-echa-valencia/143661.html
Villa echa de menos Valencia
El Guaje no es feliz en Barcelona por la situación que vive, pero la
operación retorno no es una posibilidad.
C. IZQUIERDO Villa echa de menos Valencia. El Guaje recuerda con nostalgia
su etapa como blanquinegro y los sentimientos que se palpitan cuando pisa
Mestalla van del cariño al enamoramiento. No hace falta remontarse muy
atrás en el tiempo, la última visita d... 阅读全帖
create a .vim directory under you home directory(there is a dot before
vim)
and then create a syntax directory under it
and then create a sas.vim file under the syntax directory
==============sas.vim======================
if version < 600
syntax clear
elseif exists("b:current_syntax")
finish
endif
syn case ignore
syn region sasString start=+"+ skip=+\\|\"+ end=+"+
syn region sasString start=+'+ skip=+\\|\"+ end=+'+
" Want region from 'cards;' to ';' to be captured (Bob Heckel)
sy... 阅读全帖
Dear Parents and Guardians,
Last week, the Board of Education approved All-Day Kindergarten (ADK) for
all Naperville 203 schools beginning in 2014-2015. The expanded day of
learning All Day Kindergarten provides maximizes the unique developmental
window that belongs to five and six year olds and helps build the foundation
for cognitive development, critical thinking, social skills and
independence.
This message is for families who will have a child entering kindergarten
next year. If you know of... 阅读全帖
有没有人喜欢laura pausini?
贴个她的情歌,Víveme,意大利文。 http://www.youtube.com/watch?v=jKlYf1oArQg
No necesito más de nada ahora que
me iluminó tu amor inmenso fuera y dentro.
Créeme esta vez
créeme porque
créeme y verás
no acabará, más.
Tengo un deseo escrito en alto que vuela ya
mi pensamiento no depende de mi cuerpo.
Créeme esta vez
créeme porque
me haría daño ahora, ya lo sé.
Hay gran espacio y tú y yo
cielo abierto que ya
no se cierra a los dos
pues sabemos lo que es necesidad.
Víveme sin miedo ahora... 阅读全帖
你这版本,神的众子为什么翻译成天使,另外据说圣经是有圣灵随着你们,是大有神迹
,不可能有错误冲突滴? 另外你这没回答,我问的是在创造人类之前就造了上亿天使
的原文是什么,另外按你这逻辑,晨星也是耶稣的称号,你是不是可以认为,有很多耶
稣啊?
真有意思阿
Bible VersionsJob 38Job 38:7Compare Translations
Job 38:7 NIV
New International Version
while the morning stars sang together and all the angels shouted for joy?
Read Job 38 NIV | Read Job 38:7 NIV in parallel
Job 38:7 ASV
American Standard Version
When the morning stars sang together, And all the sons of God shouted for
joy?
Read Job 38 ASV | Read Job 38:7 ASV in p... 阅读全帖
http://es-us.noticias.yahoo.com/el-hurac-n-sandy-obliga-cancela
El huracán Sandy obliga a cancelar miles de vuelos
The Hurricane Sandy Forces the Cancellation of Thousands of Flights
颶風“三弟”迫使取消上千航班
Por Por The Associated Press | Associated Press – Hace 3 horas
美聯社西班牙文電訊
NUEVA YORK (AP) — El huracán Sandy obligó a cancelar miles de vuelos del
noreste de Estados Unidos el lunes y alteró planes de viaje en todo el
mundo, varando a pasajeros desde Hong Kong hasta Europa.
La gigantesca tormenta amen... 阅读全帖
#include
#include
using namespace std;
class Matrix
{
public:
Matrix(int r, int c)
{
pData = new int[r * c];
_rowNum = r;
_colNum = c;
}
// TODO pData is a pointer, so deep copy struct is needed
// TODO write copy structor and assign operateo
//Matrix(Matrix& m)
//{
//}
//Matrix& operator = (Matrix& m)
//{
//}
void SetNum(int r, int c, int num)
{
pData[r * _colNum + c] = num;
}
const i... 阅读全帖
while (1){
int pos = getNewLinePos(ptr, bufSize);
if (pos > 0){
// found new line char in the buffer
output = realloc(output, outputSize+pos+1); // one extra char for '
\0'
// TODO: check realloc return value
memcpy (output + outputSize, ptr, pos);
output[outputSize + pos] = '\0';
... 阅读全帖