m********n 发帖数: 1602 | 1 【 以下文字转载自 Ski 讨论区 】
发信人: msuspartan (Spartan), 信区: Ski
标 题: 雪山飞龙 之十二: Brec Powder
发信站: BBS 未名空间站 (Sat Apr 21 18:50:57 2012, 美东)
SWadmin, Peter, Jacob and Spartan enjoy a powder day at Brec, 4/15/12. Peter
shows telemark. It was tax day, so SWadmin and Spartan had to pay for the
fun.
http://youtu.be/4gnP8fQJxME |
|
m********n 发帖数: 1602 | 2 【 以下文字转载自 Ski 讨论区 】
发信人: msuspartan (Spartan), 信区: Ski
标 题: 雪山飞龙 之十三: Brec Birds
发信站: BBS 未名空间站 (Thu Apr 26 17:05:22 2012, 美东)
Spartan and Nobody ski at Brec Peak 8, 4/22/2012. One more weekend to go.
http://youtu.be/dIayZonfwyA |
|
m********n 发帖数: 1602 | 3 【 以下文字转载自 Colorado 讨论区 】
发信人: msuspartan (Spartan), 信区: Colorado
标 题: 雪山飞龙 之三: Brec Early Birds
发信站: BBS 未名空间站 (Mon Dec 12 18:31:53 2011, 美东)
Spartan & Company arrived Brec early morning Dec. 11, 2011.
http://youtu.be/KkCHe_SI7-A |
|
f********y 发帖数: 883 | 4 Keystone is open for winter! 55 acres of top-to-bottom terrain from Spring
Dipper to River Run Village. Enjoy the new 8 passenger gondola while you
get your turns in! Plus, we're opening with even more park features than
last year, including walls, rails, boxes and our famously unique jibs.
Brec:
Peak 8
Springmeier Open
Springmeier Up Open |
|
m******e 发帖数: 4232 | 5 看了一下地圖﹐ Brec的應該是簡單綠道﹐而且很短。 |
|
f********y 发帖数: 883 | 6 brec浅蓝加绿,比较短。keystone很爽,从头开到脚,不过估计肯定很长的lift line.
.. |
|
C*****8 发帖数: 197 | 7 brec 好像只开了peak 8,所以看起来Keystone 的Trail 要长很多。 |
|
|
m********n 发帖数: 1602 | 9 【 以下文字转载自 Ski 讨论区 】
发信人: msuspartan (Spartan), 信区: Ski
标 题: 雪山飞龙 之十:Brec Easter Bunnies
发信站: BBS 未名空间站 (Tue Apr 10 22:33:57 2012, 美东)
Ejungle, Miata, Onedge, and 30+ friends from all over US gather at
Breckenridge on Easter Sunday. What a great party with line dance, spins,
races,jumps and falls!
Tried to replace the soundtrack, but could not do it yet. So you will hear
the cheers and wows.
http://youtu.be/RcvqarIkJ1k |
|
m********n 发帖数: 1602 | 10 【 以下文字转载自 Ski 讨论区 】
发信人: msuspartan (Spartan), 信区: Ski
标 题: 雪山飞龙 之十一: Brec Blues
发信站: BBS 未名空间站 (Thu Apr 19 10:59:33 2012, 美东)
OnEdge and friends at Breckenridge, 3/25/12.
http://youtu.be/hG02wNKIlZk |
|
m********n 发帖数: 1602 | 11 SWadmin, Peter, Jacob and Spartan enjoy a powder day at Brec, 4/15/12. Peter
shows telemark. It was tax day, so SWadmin and Spartan had to pay for the
fun.
http://youtu.be/4gnP8fQJxME |
|
|
w****x 发帖数: 2483 | 13 void MarkMap(const char* szStrs[], int n, int nBegIndex, bool chrMap[26][26])
{
assert(szStrs && nBegIndex >= 0 && n >= 0);
if (n <= 1) return;
int nDiv = -1;
for (int i = 0; i < n-1; i++)
{
char tmp1 = *(szStrs[i] + nBegIndex);
char tmp2 = *(szStrs[i+1] + nBegIndex);
assert(((tmp1 >= 'a' && tmp1 <= 'z') || tmp1 == 0));
assert(((tmp2 >= 'a' && tmp2 <= 'z') || tmp2 == 0));
if (tmp1 != 0 && nDiv < 0)
nDiv = i;
if (tmp1... 阅读全帖 |
|
w****x 发帖数: 2483 | 14 前天刚做过
//permutation of string with duplicate characters
//different from the subset problem, can't solve duplicated chars
//situation by sorting the array
void _inner_print(char strOrg[], char strCur[], int nLen)
{
assert(strOrg && strCur && nLen >= 0);
if (0 == nLen)
{
cout<
return;
}
//record if a character is calculated as a header
//to eliminate duplicated characters
bool bRec[256];
memset(bRec, 0, sizeof(bRec));
for (int i = ... 阅读全帖 |
|
w****x 发帖数: 2483 | 15 你看这样行不行:
void _inner_print(char strOrg[], char strCur[], int nLen)
{
assert(strOrg && strCur && nLen >= 0);
if (0 == nLen)
{
cout<
return;
}
//record if a character is calculated as a header
//to eliminate duplicated characters
bool bRec[256];
memset(bRec, 0, sizeof(bRec));
for (int i = 0; i < nLen; i++)
{
if (!bRec[strCur[i]])
{
swap(strCur[0], strCur[i]);
_inner_print(strOrg, strCur+1,... 阅读全帖 |
|
w****x 发帖数: 2483 | 16 你看这样行不行:
void _inner_print(char strOrg[], char strCur[], int nLen)
{
assert(strOrg && strCur && nLen >= 0);
if (0 == nLen)
{
cout<
return;
}
//record if a character is calculated as a header
//to eliminate duplicated characters
bool bRec[256];
memset(bRec, 0, sizeof(bRec));
for (int i = 0; i < nLen; i++)
{
if (!bRec[strCur[i]])
{
swap(strCur[0], strCur[i]);
_inner_print(strOrg, strCur+1,... 阅读全帖 |
|
w****x 发帖数: 2483 | 17 面试官第二题的考点是什么???
如果是RPC: bool GetIndex(int x, int y),
这个RPC是由比如master机器映射到不同机器上读取数据, 主要问题是Map太大了不能放
到一台机器上??
如果考分布式计算那么每台计算机计算一个block, 给每个block的端口编号, 每个编号
不同从 1...n, 然后计算所有两两之间的通路, 然后再把block连起来??
如果是这样的话既然不同block的端口不一样, 那么知道端口号也知道了block号, 也知
道这两点间怎么走.
把所有的端口到端口的pair混在一起来做一个3元组PORT_PATH:
1. 根据start point 和 end point 找到最近的端口ptBeg & ptEnd, 问题就是在<
port1, port2, path>这一堆3元组中找到通路让ptBeg ..... --> ptEnd
2. bool FindPath(int ptBeg, int ptEnd, map> mp, bRec[
n])
... 阅读全帖 |
|
z******o 发帖数: 3285 | 18 昨天去了Brec,挑战了一个双黑道,我现在胆子变小了,觉得滑的一坨屎很不爽。想几
个月前,会很兴奋,不管滑成啥样,对技术不怎么在意,就想“挑战”啊,用蛮力能解
决就行了。
爬坡的话,我之前带狗去过backcountry,是自己其实也不知道在干什么的情况下,大
部分时间在爬坡,也挺好玩的。后来也在brec 3900多米的地方往上爬过几十米。高原
耐力运动需要额外训练,尤其是住在平原的人(即使是跑马拉松的),缺氧太严重了。 |
|
S********t 发帖数: 3431 | 19 负责任的说,你被spoiled了!
CO两次trip我滑了ks, Vail, brec, BC四家,每家都有很多蘑菇可以练习。BC的绿蘑菇
,ks后山的蓝蘑菇,vail的4号lift,Brec 的crescendo,都是可圈可点很好的练习的
地方。其他的科州雪场蒸汽船Tellerude,CB,都有蘑菇道。Abasin也是有名的蘑菇雪
场,春天pro云集的。
而科州最著名的蘑菇雪场还不是上面这几个,Copper和MJ名气还更大(蘑菇而言)。
Mogulskiing.net的老大好像就是Copper mtn负责grooming, trail maintenance的
staff! |
|
x*****i 发帖数: 4035 | 20 谢谢大家关心丽丽!网站上又更新了,今天第一次手术,祝福!
志愿者秋叶——
昨天星期天,好多朋友都去看望了丽丽,@顺子032 更是一家三口都到了,为丽丽买来
吃的和玩具,他的三岁宝贝女儿和丽丽玩了一会后就很熟络了,在医院大厅里追来追去
好开心啊!还有来自杭州、上海的几位美国朋友,@外国孩 等都是从网站上看到消息后
和我约好后赶过来医院了,为丽丽带来许多礼物。细心的Brec为丽丽带来小手机,还有
新的MP4,并在MP4里面拷了好多的动漫和歌曲,他说怕丽丽手术后在医院太寂寞,美国
的大老爷们,心比我们都细呢!真的好感动!烈日炎炎、大家的心却如沐春风,都在盼
望着丽丽快快变成美丽公主的那一天呢! |
|
x*****i 发帖数: 4035 | 21 谢谢大家关心丽丽!网站上又更新了,今天第一次手术,祝福!
志愿者秋叶——
昨天星期天,好多朋友都去看望了丽丽,@顺子032 更是一家三口都到了,为丽丽买来
吃的和玩具,他的三岁宝贝女儿和丽丽玩了一会后就很熟络了,在医院大厅里追来追去
好开心啊!还有来自杭州、上海的几位美国朋友,@外国孩 等都是从网站上看到消息后
和我约好后赶过来医院了,为丽丽带来许多礼物。细心的Brec为丽丽带来小手机,还有
新的MP4,并在MP4里面拷了好多的动漫和歌曲,他说怕丽丽手术后在医院太寂寞,美国
的大老爷们,心比我们都细呢!真的好感动!烈日炎炎、大家的心却如沐春风,都在盼
望着丽丽快快变成美丽公主的那一天呢! |
|
m********n 发帖数: 1602 | 22 I am going to Keystone tomorrow. They got faster 8-person gondola plus
Monzuma lift. Beginners can learn at mountain top, with magic carpet and a
short lift on backside. |
|
|
|
m********n 发帖数: 1602 | 25 Some resorts have beginner areas that do not require a ticket to access. For example Peak 9 at Breckenridge, or Arapahoe Basin. Both places have magic carpets at learning areas that move people uphill. First timers can spend a few hours there to study Ski 101.
Afterwards, students can move to the nearby T-bar at Brec, or Molly lift at A-Basin. Instruction is required before using a T-bar or chair lift.
Students may be able to ski down a green run after 3PM, when tickets are no longer checked at |
|
|
|
f********y 发帖数: 883 | 28 They got it done early. Wonderful!!! |
|
|
k*9 发帖数: 471 | 30 it has 22' base as opposed to 18' at all other places...... |
|
k*9 发帖数: 471 | 31 唉,上次在keystone摔狠了,还心有余悸中。。。。。。 |
|
p********r 发帖数: 1432 | 32 Toooooooooo many people in breck and keystone.
How about A-basin? |
|
k*9 发帖数: 471 | 33 ft, 你们上周不是说a-basin人多,转战到keystone的么? |
|
p********r 发帖数: 1432 | 34 We got over loveland pass and approached A-basin first.
Only few people in line. It's a good sign.
However, someone in the group insisted to continue down to check out
keystone. There were many cars in bound to A-basin from Keystone. A loooong
line was waiting at the keystone gondola. Felt like everyone was trying to
get on the 2012 ships. |
|
m********n 发帖数: 1602 | 35 Brec has one ski resort. Start from Peak 9 and take lessons. |
|
k*9 发帖数: 471 | 36 super~~~I am in for sure~~~
anyone going to vail this weekend? the other day could be at brec... |
|
f********y 发帖数: 883 | 37 brec got 8 inch fresh last night(64' season total), why not the night before
??? |
|
f********y 发帖数: 883 | 38 I will check the report early tomomrrow morning, if the damn great madness
goes on, I will do half a day at brec or keystone. But you do not have a
pass there, right? |
|
|
m********n 发帖数: 1602 | 40 Economy is good at Vail and Brec...they are building too. |
|
m********n 发帖数: 1602 | 41 I am going to Keystone/Brec on Sunday. |
|
m********n 发帖数: 1602 | 42 Saturday afternoon was very windy at Brec. I heard that the upper lifts were
closed. Sunday was pretty nice. |
|
|
g***1 发帖数: 515 | 44 Nice.
But I like your old ones with music better. You gonna try again to put the
soundtrack in? |
|
|
s*****n 发帖数: 617 | 46 今年流行original soundtrack, 不带音乐的? |
|
m********n 发帖数: 1602 | 47 I have trouble adding music on Youtube. Maybe it's the computer setting. |
|
r******c 发帖数: 765 | 48 小家伙都玩上telemark了,那两下还象模像样,牛啊!
只是少了fly。
Peter |
|
|
|