由买买提看人间百态

topics

全部话题 - 话题: uncheck
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
r******r
发帖数: 700
1
来自主题: JobHunting版 - Apple Siri 组 Java 测试题
/**
* 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() {
... 阅读全帖
j********x
发帖数: 2330
2
来自主题: JobHunting版 - Google电面汇报
unchecked exception

InputStream
m*****n
发帖数: 204
3
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
攒了个段子请大牛点评一下:
// Not thread-safe
// Talk about validation requirement: none vs in next() vs in constructor
private static class DeepIterator implements Iterator {
private final Iterator myIterator;

private final Class eleType;

private final Iterator empty = new ArrayList().iterator();

private Iterator head = empty;

DeepIterator(List list, Class eleType) {
this.myIterator = list.iterator();
this.eleType = e... 阅读全帖
b*****6
发帖数: 179
4
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
我也被问过这个问题,当时没写好,现在再写一个:
public class DeepIterator {
private Stack stack;
public DeepIterator(List list) {
stack = new Stack();
stack.push(list);
advanceToNext();
}
public boolean hasNext() {
return !stack.isEmpty();
}
public int next() {
if (!hasNext())
throw new RuntimeException("no next");
int result = (Integer) stack.pop();
advanceToNext();

return result;
}
... 阅读全帖
m*****n
发帖数: 204
5
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
攒了个段子请大牛点评一下:
// Not thread-safe
// Talk about validation requirement: none vs in next() vs in constructor
private static class DeepIterator implements Iterator {
private final Iterator myIterator;

private final Class eleType;

private final Iterator empty = new ArrayList().iterator();

private Iterator head = empty;

DeepIterator(List list, Class eleType) {
this.myIterator = list.iterator();
this.eleType = e... 阅读全帖
b*****6
发帖数: 179
6
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
我也被问过这个问题,当时没写好,现在再写一个:
public class DeepIterator {
private Stack stack;
public DeepIterator(List list) {
stack = new Stack();
stack.push(list);
advanceToNext();
}
public boolean hasNext() {
return !stack.isEmpty();
}
public int next() {
if (!hasNext())
throw new RuntimeException("no next");
int result = (Integer) stack.pop();
advanceToNext();

return result;
}
... 阅读全帖
h***s
发帖数: 45
7
来自主题: JobHunting版 - LinkedIn 面试题讨论
这样可以吗?好像就是直接的DFS了。
public int getSum(List list)
{
return dfs(list, 1);
}
@SuppressWarnings("unchecked")
public int dfs(List list, int level)
{
if ( list == null ) return 0;

int sum = 0;
for ( Object obj : list )
{
if ( obj instanceof Integer )
{
sum += ((Integer) obj) * level;
}
else if ( obj instanceof List)
{
sum += dfs(((List) obj), level + 1);
}
}

return sum;
}
l******9
发帖数: 579
8
I am compiling C# (designed by others) on Visual Studio 2013.
But, in one of the projects, it has two key files that are password
protected.
The compiling (for debug) cannot be done because the key file cannot be
imported.
In the project property, I unchecked the "Sign the assembly" and then
deleted the two key files.
But, it still cannot be compiled because of the error of "cannot import the
key files" .
Any help would be appreciated.
Thanks !
g****w
发帖数: 523
9
来自主题: JobHunting版 - 请教输入可能为null的处理方法
初学者请教一个入门级问题。面试的时候如果有个输入为数组,我们需要判断这个数组
是不是null。我一般问面试官需不需要处理null的情况?如果需要处理,是立马return
null还是抛异常。
我之前碰到的面试官都说直接返回null就行(如果输出也是数组)。那天碰到一个面试
官反问我觉得应该怎样?我想了想,因为觉得返回null相当于把错误往后传了,就说应
该抛异常。然后他就让我写,我当时就傻了,因为平时没写过抛异常,我就写了个
throw new Exception()。面试官估计当场无语,他先帮我改成throw new
NullPointerException()。然后问我,这是checked还是unchecked。我答不上来,就让
我跳过这个问题了。
所以我想请教面试的时候,对于可能输入为null的情况,正确处理是什么?如果想抛异
常,应该怎么写?是不是不用写多余语句,系统自己会抛异常?
c********t
发帖数: 5706
10
来自主题: JobHunting版 - 问一个java generic的问题
这句java
List[] list = (List[]) new ArrayList[10];
会有 unchecked cast warning, 如何改写才能 type safe? (不要SuppressWarnings
.)
L*********s
发帖数: 3063
11
来自主题: JobHunting版 - 问一个java generic的问题
public static void main(String[] args) {
List[] lists = new List[10];
lists[0] = new ArrayList<>();
lists[0].add(1);
System.out.println(lists[0].get(0));
}
no unchecked warning

SuppressWarnings
u********s
发帖数: 1047
12
一般背景调查填表会让你选要不要联系当前雇主,uncheck那个选项就行
H******7
发帖数: 34403
13
来自主题: Living版 - 听说H&R报税不好?
现在还有卖吧。$0.01.
http://shop.ca.com/ca/landingpages/2011/search/av_hrblock.asp?
SRCCODE=CAEMWB78W29&utm_source=eml&utm_medium=main&utm_campaign=CAEMWB78W2
9
Uncheck shipping $9.99
F***Q
发帖数: 6599
14

我昨天花了两个小时,按照[1]的说明,试图把第二个router设成repeater,但只要把"
Enable DHCP server"给uncheck了,连到第二个router的设备就没有办法获得ip。不知
道我忽略了什么东西。目前我只能把第二个router设成一个单独的dhcp地址段和独立的
ssid,用起来也还行。
[1] http://www.hciguy.com/2010/07/19/how-to-turn-your-d-link-router-into-an-access-point-repeater-to-extend-your-wireless-coverage/
P******l
发帖数: 1648
15
来自主题: Living版 - air duct cleaning 经验分享
amazon local(就是以前的living social 是washington DC区域的公司 几年前被
amazon买了)
上最近有coupon $39 for air duct cleaning
多十刀 $49 可以加上dryer vent cleaning服务(小二最后说 这个完全没有必要
dryer 每次烘完衣服去掉filter上的纤维就可以了)
检查烟囱 小二花一秒钟看了一眼 说没问题(烟囱本来就从来没用过)
这些service都是limited 1 voucher per purchaser, limited 1 voucher per
household
只能用于1 main 1 return
现在我知道trick在于 不管是town house还是single house 都是两个main vent 一个
进indoor furnace a/c unit
一个出indoor furnace a/c unit
一般的房子都有三个return vent
所以他们进家门后肯定要额外加钱 给我的报价一个 additional main vent$17... 阅读全帖
w*******e
发帖数: 135
16
昨天做的Inspection,晚上收到报告。第一次做买房inspection,对报告里的各种问题
的严重程度和花费都没经验,昨晚在网上搜了一些相关资料,但还是有很多拿不准的,
想请教版上的xdjms给看看,(知道不可能让卖家全部或者大部分cover,)怎么选择要
修的跟卖家谈。这个报告里问题还不少: ( 房子是90年代的。
****************************************************************************
*********
Major:
1. Trim/Overhang Cladding: Wood rot noted on trim. We are unable to
investigate if the damage is more than surface damage. Recommend a qualified
carpenter evaluate the cause and correct as needed.
2. Vent/Exhaust Condition: Water Heater- Exhau... 阅读全帖
a*****n
发帖数: 5158
17
来自主题: Money版 - ING为啥只给我87.12$?
contact ing telling them that you are not subject to federal irs withholding
next time when you open account, don't choose that option, default is
unchecked, but you choose it by yourself
m*******7
发帖数: 318
18
来自主题: Money版 - 新手问yodlee使用经验
1. 怎么看cc的statement day? 好像只能看due day?可以设statemnet day alert么?
2. 可以在calendar看next due day么?(能一张日历看所有cc多好)
3. 可以schedule一个帐户还cc的款么?(payment account?要给个人资料发到equifax验证?)
4. 怎么关闭某一条alert?譬如我不想收到apr change的alert? (uncheck某项alert好
像只是不update setting, 而不是deactivate)
新手问得比较多哈~
b*********e
发帖数: 2642
19
来自主题: Money版 - 新手问yodlee使用经验
1
不是可以设置statement出来之后的提醒么。我从来都是这样的,statement一出来
就提醒,另外在设个due day前一周的提醒,以防万一哪个statement出来时候忘了
付钱了。
2
有bill reminder
4
就是uncheck

验证?)
b**********g
发帖数: 5537
20
Debit transactions may be processed via the STAR, Pulse, ACCEL, or NYCE
networks. Please uncheck this checkbox if you do not want your transaction
processed via the STAR, Pulse, ACCEL, or NYCE networks so your transaction
can be routed through the Visa or MasterCard network, as appropriate.
通过STAR, Pulse, ACCEL, or NYCE会被收费吗? 或是通过visa, mastercard会被收费?
我就是张里面放了点钱的debit卡, 是不是只能通过前面那种? 谢谢.
e******e
发帖数: 10121
21
你要北京到SFO还是SFO到北京,前者显示整个月都没有直飞。
如果是SFO到北京有。你可以UNCHECK NON-STOP选项,然后找一个时间最短的,比如14
小时也还好。
另外北京直飞LAX9月底还有一些,比如国航的CA983,不过也很少了!
a*******e
发帖数: 3897
22
在rewards checking拿high interest的童鞋们,现在amazon上买小额gc又可以算做non
-pin based purchase了,不用再为每月做不了刷十几甚至几十笔debit card的任务而
发愁了。
方法如下:
Opt Out of PIN-less Debit
You can opt out of PIN-less Debit on Amazon.com.
To opt out of PIN-less Debit:
Go to Your Account.
Click Manage Payment Options under Payment Methods.
Click Edit for the payment method that you would like to change.
Uncheck the box that is next to Processed as a debit card.
Click Confirm at the bottom of the page.
http://www.amaz... 阅读全帖
f****y
发帖数: 2196
23
那頁面這個選項怎樣弄, check還是uncheck
Yes, my credit history is clear of bankruptcies or seriously delinquent
accounts and I have not been denied credit by Chase within the last 6 months.
y****i
发帖数: 17878
24
you can go to your amazon "payment methods", and uncheck the box that says "
process as debit card" for your debit card
http://www.amazon.com/gp/help/customer/display.html?nodeId=2011
V**A
发帖数: 1596
25
来自主题: Money版 - Sams club不能guest checkout了吗
Check out 时最下面可以把Membership 那项uncheck的。
c*****z
发帖数: 3090
26
来自主题: Money版 - 请教MR转ANA的问题
查票的时候把“我也travel”uncheck,就可以了

★ 发自iPhone App: ChineseWeb 1.0.6
d********f
发帖数: 8289
27
好像amz改版了以后没法选择了。
你说的是这个是吧?
Opt Out of PIN-less Debit
You can opt out of PIN-less Debit on Amazon.com.
To opt out of PIN-less Debit:
Go to Your Account.
Under Payment Methods, select Manage Payment Options.
Next to the payment method you would like to change, select the down
arrow.
Select Edit.
Uncheck the box that is next to Processed as a debit card.
SelectSave.
y****i
发帖数: 17878
28
来自主题: Money版 - target gc buy ebay gc
get one first, then save it as a payment method in your target online
account
often times I go to target mobile site in browser using android phone,
uncheck the box before the default payment method which is the red card,
check the box for target gift card
on a computer, you need to choose the red card and go all the way to the
last page, then click a link that says "pay with a target giftcard"
you should be able to pay 100% using your target GC and still get 5% off
k***n
发帖数: 313
29
【 以下文字转载自 Donation 讨论区 】
发信人: kewen (乡下妞), 信区: Donation
标 题: Your $10 donation will be matched Oct 10-20
发信站: BBS 未名空间站 (Sun Oct 10 22:17:43 2010, 美东)
Hi everyone,
JustGive.org is running a 10 anniversary year program. They will match $10
gift when you donate to your favorite charity (at least $10). Please take
this opportunity to help your charity to collect some extra donations!!!
Here is how you could do:
1.Go to
www.justgive.org/10years
2.Search your favorite charity.
For example, you type... 阅读全帖
p******i
发帖数: 1322
30
来自主题: Parenting版 - Bullying without end? ZZ
http://blogs.greatschools.org/greatschoolsblog/2010/10/bullying-that-ends-in-suicide.html
October 14, 2010
Jon Carmichael, age 13
Hope Witsell, age 13
Justin Aaberg, age 15
Asher Brown, age 13
Seth Walsh, age 13
Phoebe Prince, age 15
Billy Lucas, age 15
All of these children — from places like Houston; Tehachapi, Calif.; and
Rushkin, Fla. — killed themselves this year. Each was a victim of bullying,
or what is now called “bullicide.” Many of these teens were also victims
of anti-gay hate crimes.... 阅读全帖
w*******g
发帖数: 9932
31
来自主题: Parenting版 - discrimination in school
I started to get worried about discrimination of Chinese children in school.
My 6 year old felt terrible when bullies in school and summer camp started
to use derogatory terms to call him because he is a Chinese. Do your
children have the same problem?
I think this is a very hard problem to address. Individually I try to talk
about the Chinese heritage to my son and help son develop a stronger sense
of belonging. At the same time, we need to change the overall culture that
is hostile to us.
I us... 阅读全帖
h********e
发帖数: 319
32
update:
后来我在网上搜一下antispyware soft,发现在登陆windows和病毒开始运行之间有十几
秒钟,利用这空隙,进入start-->run-->type 'msconfig'-->startup,在开机选项中
uncheck 以 tssd结尾的exe程序,然后重启,病毒暂时不会运行,然后用杀毒软件,我
用360安全卫士里有杀木马选项,杀了100个木马出来,清除再重启,就OK 了,不需要
装额外的软件或重装系统。赞免费杀毒软件360安全卫士,很好用!
c********2
发帖数: 2773
33
来自主题: PennySaver版 - 哪里有Lumene的4off
You can print out 4 coupons on one page.
Choose 3.5 X 5, unchecked "Fit picture to frame", then input 4 for Copies of
each picture.
You can see now it shows 4 coupons on one page.
Cut them apart. This is a really good size to use in the store.
No beeping.
i******4
发帖数: 20643
34
我也上当了,回家后uncheck了5off又买了一张50才搞定
o*o
发帖数: 5155
35
来自主题: PennySaver版 - coupon.com如何同时打相同的两张
clip你想要的coupon后,再打开一个window或tab,到同样的页面。
打完一个后,再打另一个。
改主意了?右下角选“Clip All”,然后弹出的窗口点print later,
然后uncheck “Clip All”。
x***8
发帖数: 530
36
来自主题: PennySaver版 - mm免费6刀master卡
谢谢楼主.
刚试了三个手机,中了一个
另外,买亚马逊GC的时候,似乎输入名字可以随意,我输的是MM,hip2save也有人输入
其它的通过的。需要uncheck ‘Pay as a debit card’, card type 就由Debit变成了
Master.
y********3
发帖数: 787
37
来自主题: PennySaver版 - mm免费6刀master卡
昨天折腾了没有发到邮箱,今天居然又中了。我去amazon上输入卡号,自动变成debit.
然后就付款了。在哪儿可以
uncheck ‘Pay as a debit card’
谢谢
o*o
发帖数: 5155
38
scroll to bottom, check "Clip All", then uncheck "Clip All",
then clip your coupon.
q**********O
发帖数: 571
39
来自主题: PennySaver版 - sam's club $20 gift card restocked.
no need.
you can uncheck $45 membership in cart.
q*d
发帖数: 22178
40
☆─────────────────────────────────────☆
swjtuer (swjtuer) 于 (Tue Mar 30 23:56:30 2010, 美东) 提到:
星期一
早餐 牛奶,煮鸡蛋,玉米馒头,榨菜
早点 芦柑
午餐 中大:绿豆饭,木须肉,海米冬瓜,棒骨菠菜汤
小婴:绿豆饭,三叶瓜炒肉,海米冬瓜,棒骨菠菜汤
午点 冰糖山楂水,蔬菜饼
晚餐 棒骨冬苋菜瘦肉粥,卤肉秋叶夹馍

星期二
早餐 牛奶,蒸鸡蛋,枣泥糕
早点 香蕉
午餐 中大:胡萝卜饭,芹菜炒牛肉,珊瑚豆腐,棒骨凤尾汤
小婴:胡萝卜饭,芹菜炒肉,珊瑚豆腐,棒骨凤尾汤
午点 果汁,卤猪肝
晚餐 豌豆肉末焖饭,番茄虾皮紫菜汤
星期三
早餐 南瓜粥,卤蛋,如意肉卷
早点 脐橙
午餐 中大:金银饭,咸烧白,海米儿菜,棒骨冬苋菜汤
小婴:金银饭,樱桃肉,海米儿菜,棒骨冬苋菜汤
午点 牛奶,蛋卷
晚餐 米饭,蒜苔炒肉,芙蓉蒸蛋,棒骨海带萝卜汤
星期四
早餐 牛奶,蒸鸡蛋,奶香馒头
早点 苹果
午餐 中大:南瓜饭,什锦鱼丸,韭菜炒豆干,番茄菌类鱼汤
... 阅读全帖
b*****t
发帖数: 3396
41
来自主题: shopping版 - Dell mini 10v $229
* Dell Home has Dell Mini 10v 10" Netbook for $229 with free shipping
* It features:
o Intel Atom N270 1.6GHz / 10.1" LED Screen
1G DDR2 RAM / 160 Hard Drive
Webcam /XP Home/ 3 cell battery
* How:
o Click here to start
o Uncheck Bluetooth 2.1 module with EDR [$20]
o Add to cart and free shipping
http://configure.us.dell.com/dellstore/config.aspx?c=us&cs=19&l=en&s=dhs&kc=&oc=dnpdfy1
b*****t
发帖数: 3396
42
来自主题: shopping版 - X200 P8600/4G/250G./9Cell $708 HOT!
* Lenovo CPP has ThinkPad X200 12.1" Core 2 Duo Laptop for $708 with free shipping
* It features:
o Intel Core 2 Duo Processor P8600 2.4GHz / 12.1" LED
4GB DDR2 RAM / 250GB Hard Drive
Webcam / Windows 7 / 9 Cell
* How to get it ?
o Go to Lenovo CPP
o Sign in with password familyandfriends
o Then click here to see X200 (Deal of Week Version $849 one )
o [-$170 ]Uncheck ThinkPad X200 UltraBase
o [+$2
c*a
发帖数: 806
43
来自主题: shopping版 - 没人喜欢dell studio 15?
http://slickdeals.net/forums/showthread.php?t=1915694
thinkpad t510 还是太贵,看来板上都是有钱人
Dell has a good deal on a Studio 15 laptop. As configured, price is $548 and
$13 shipping. Thank you tara_k
Be sure to uncheck Dell 90 Watt 3 Prong AC Adapter with 3-ft Power Cord and
select Monster cable outlets (-$49)
Specs:
Intel Core i3-330M 2.13GHz (3M cache)
4GB Shared Dual Channel DDR3 at 1066MHz
500GB SATA Hard Drive (7200RPM)
15.6” High Definition (720p) LED Display with TrueLife and Camera
8X Slot Load C
b****m
发帖数: 39
44
我也有这个问题,一直identify..., 还能把我家的无线网搞断(很神奇),试改网卡
设置没什么用,后来我在网络adpater属性中,uncheck那个IPV6的东东,后来就没什么
问题了。
q**j
发帖数: 10612
45
来自主题: shopping版 - 再发一个,[Thinkpad OEM Win7 x64/x86]
我这里安装老金的指示一步一步的进行。只出现了一个问题。就是安装lenovo的power
management/monitor的driver不知道怎么回事出错了。启动的时候总是报错。当然我跑
到lenovo网上重新下载了driver们,这个问题就没有了。
但是,但是:现在我不能再task bar上面隐藏power managemnt的两个icon了。其他的
icon,比如internet access和thinkpad tools都可以隐藏掉。(右点task bar,
uncheck toolbars)。请问如何隐藏掉这两个icon?我喜欢简洁一些的东西。Windows7
自己带的东西挺好用的,不想要lenovo这个。
对了,lenovo的power management, internet access utilities 比windows 7 强么?
为什么要lenovo的?如何不必Windows7好,能不能卸了?
t*h
发帖数: 922
46
多谢
查了一下,网上有人说是这样:
Click on Start
Click Run and type msconfig
Enter
On the window that opens click the tab that is labeled startup
Look for an entry for Lenovo Veriface and uncheck it
Reboot PC
After you log in a window will pop up saying something about configuration,
just check the box and close.
All done, to restore it just go back and recheck the box.
不过又有人说这样也没用,呵呵,似乎uninstall是终极选择
回去试试再说
c****n
发帖数: 1486
47
来自主题: shopping版 - $785的X201又来了
Lenovo Thinkpad X201 Ultraportable: Core i5-560M 2.66GHz, 4GB DDR3, 320GB HD
, 12.1" WXGA (1280x800) LCD w/ Camera
SPP
# If you do not have an account yet, create one, or log in
# Click on notebooks, thinkpads, x-series, web special, and select "ThinkPad
X201 laptop - Web Special w/ Ultrabase"
# Uncheck ThinkPad X200 UltraBase - $170
# Click "continue" until you see "Add to cart"
# Enter code USET410SX1012 to bring price down to $785 (using cheapest
upgrade option)
c******f
发帖数: 2622
48
感谢建议.
app 默认是自动载入当前论坛(如Hot Deals)的前两页(不只是第一页)。当初这样设计
的原因是我在个人使用中发现,真正去抓deal,只看Hot deals论坛的前两页即可,不
会超过两页,查找其他的帖子都是用搜索功能。
当然添加这个功能很容易,我考虑添加一下。
点击post进去后,自动载入 slickdeals 当前post的mobile页面,我个人感觉翻页还是
很容易的啊。
1.1 会添加的功能包括:
+ Slicks List added. All "SD" deals will be automatically added in this
table view to be easily found for the user. New "SD" deals will be shown in
blue color.
+ "Reset Slick List" button added in the setting page.
+ Home screen will show number of current unchecked SD deals.
* Fix sev... 阅读全帖
Z*****N
发帖数: 112
49
来自主题: shopping版 - firefox几乎不能用了
Try this
Tools-->option-->security-->uncheck the box (K)
f****g
发帖数: 23666
50
来自主题: shopping版 - 求教,outlet单子被cancel,求原因
LOL, it is like applying credit card, you can always uncheck "US citizenship"
and get your application denied.
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)