由买买提看人间百态

topics

全部话题 - 话题: unset
1 (共1页)
L******r
发帖数: 199
1
来自主题: Programming版 - 这Shell脚本哪里有问题
我直接用setenv一点问题没有,而且执行sh a.sh后,根本就没进入PerlExe.
#!/bin/tcsh
unset auto-logout
unset autologout
setenv DISPLAY HPLAPTOP11.aXh.XX.edu:0
cd PerlExe/
a.sh: line 2: unset: `auto-logout': not a valid identifier
a.sh: line 4: setenv: command not found
m******i
发帖数: 26
2
来自主题: JobHunting版 - Leetcode一题(非OJ)
新手问一下,这里面试可以是用现成的function 吗,还是每一行都要自己码? 比如
PHP
$S1 = "q a b c d";
$S2 = "a b c d e";
$list1 = array_unique(explode(' ',$S1));
$list2 = array_unique(explode(' ',$S2));
$work_list1= $list1;
$work_list2= $list2;
for($i=0;$i if (($key =array_search($list2[$i],$work_list1)) !==false) {
unset($work_list1[$key]);
}
}
for($i=0;$i if (($key =array_search($list1[$i],$work_list2)) !==false) {
unset($work_list2[$key]);
}
}
pri... 阅读全帖
c*******4
发帖数: 51
3
来自主题: JobHunting版 - Simple Database设计问题,附code
详细信息在下面网址:
https://www.thumbtack.com/challenges/simple-database
面试一道题目,题目是设计一个Simple Database,我提交的解法说有问题然后被拒了。
只想各位大神帮我看看code有哪些毛病,feedback说算法不是最优的,function大小写
没有注意。
目前我觉得自己问题在NUMEQUALTO复杂度n不是1,方程都大写了,想请教下还有什么问
题。
下面是我python的代码。再次感谢大家的帮助,我只想知道代码哪里还出了问题。
import sys
class Database(object):
def __init__(self):
self._history = [] #list to store transaction history
self._database = {} #dictionary store key value pair
def BEGIN(self):
self._history.append({})
def S... 阅读全帖
c*******4
发帖数: 51
4
来自主题: JobHunting版 - Simple Database设计问题,附code
详细信息在下面网址:
https://www.thumbtack.com/challenges/simple-database
面试一道题目,题目是设计一个Simple Database,我提交的解法说有问题然后被拒了。
只想各位大神帮我看看code有哪些毛病,feedback说算法不是最优的,function大小写
没有注意。
目前我觉得自己问题在NUMEQUALTO复杂度n不是1,方程都大写了,想请教下还有什么问
题。
下面是我python的代码。再次感谢大家的帮助,我只想知道代码哪里还出了问题。
import sys
class Database(object):
def __init__(self):
self._history = [] #list to store transaction history
self._database = {} #dictionary store key value pair
def BEGIN(self):
self._history.append({})
def S... 阅读全帖
f*******r
发帖数: 976
5
来自主题: JobHunting版 - Simple Database设计问题,附code
这种题目都出来了,难度不小啊

详细信息在下面网址:
https://www.thumbtack.com/challenges/simple-database
面试一道题目,题目是设计一个Simple Database,我提交的解法说有问题然后被拒了。
只想各位大神帮我看看code有哪些毛病,feedback说算法不是最优的,function大小写
没有注意。
目前我觉得自己问题在NUMEQUALTO复杂度n不是1,方程都大写了,想请教下还有什么问
题。
下面是我python的代码。再次感谢大家的帮助,我只想知道代码哪里还出了问题。
import sys
class Database(object):
def __init__(self):
self._history = [] #list to store transaction history
self._database = {} #dictionary store key value pair
def BEGIN(self):
self._history.appe... 阅读全帖
m******g
发帖数: 91
6
thx... just follow their tips (#54) to build Oracle8.1.7 on Mandrake8.1,
but still have this error even I've unset LANG:
[oracle@yw216 Disk1]$ unset LANG
[oracle@yw216 Disk1]$ ./runInstaller
[oracle@yw216 Disk1]$ Initializing Java Virtual Machine from ../stage
/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre.
Please wait...
/home/oracle/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded
/linux/bin/linux/native_threads/jre: error while loading shared libraries:
li
y****e
发帖数: 1012
7
我想同时画bar和line,请问能在同一个图里面输出吗?
这样行不行呢?
set term postscript eps color blacktext "Helvetica" 24
set output '600030macd.eps'
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "MACD Chart"
set xlabel "date"
set ylabel "s
D****r
发帖数: 309
8
set term postscript eps color blacktext "Helvetica" 24
set output '600030macd.eps'
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "MACD Chart"
set xlabel "date"
set ylabel "score"
#set key 0.01,100
set xrange [0
y****e
发帖数: 1012
9
来自主题: TeX版 - 请教一个gnuplot画图问题
unset log
unset label
数据部分:
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0
1 0 0 0 0 0 0 0 0 0
0 0 0 0 0
2 0 0 0 0 0 0 0 0 0
0 0 0 0 0
3 0 0 0 0 0 0 0 0 0
0 0 0 0 0
4 0 ... 阅读全帖
r*****z
发帖数: 906
10
来自主题: TeX版 - 请教一个gnuplot画图问题
我用的是gnuplot 4.4,所以需要对你的命令做一点儿修改。
修改后的如下:
set term postscript eps color blacktext "Helvetica" 24
set output 'p1.eps'
set autoscale # scale axes automaticallyun
unset log
unset label
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "I/O Traffic"
set xlabel "Interval(5s)"
set ylabel "Data(KB)"
set key at 1,100
set xr [0:100]
set yr [0:10000]
plot "p1.tmp" using 1:2 title 'r0' with li... 阅读全帖
s********l
发帖数: 998
11
请牛人讲讲
这个题 怎么做啊??
谢谢
L******t
发帖数: 1985
12
来自主题: JobHunting版 - 工作不好找么?我们找不着老中!
做网络的大公司,在加州湾区,做data center switch的。有好几个位置,需要几年工
作经验。结果过来的简历都是老印。
上周面试了一个Tellabs过来的女老印,印度本科,有7年工作经验。谈吐不错(绝大部
分老印都如此)。问概念问题回答得很不错,确实做过相关工作。但一到编程让人大跌
眼镜!问了她几道C的题目:
bitmap操作,给一个index,写code set/unset 1 bit。几经提醒20分钟才搞对。
int *p = 0x1000, p+1 = ? 初始答案是0x1032
Fibonacci sequence,写出recursive and non-recursive的函数。non-recursive的写
不出来。
据说binary tree遍历写的不错,估计练过。
最后5个feedback,2个average,3个above average。要了。估计她起薪10万左右。
如果你觉得你有相关背景、编程比这位强、感兴趣,站内给我发信附上你简历的链接。
如果合适我会转发给hiring manager。不保证回复你(如果邮件太多的话)。
注:Fresh graduda... 阅读全帖
b*****a
发帖数: 70
13
I don't think there is any problem since the problem is only looking for "a"
path from source to destination. If you unset the visited notation, the
algorithm will become much slower. Therefore, I think this implementation is
pretty good in my opinion.
P.S. I think you can always ask the authors questions by emailing them. From
their amazon reviews, it seems they are really responsive and knowledgeable
.
s*****n
发帖数: 994
14
来自主题: JobHunting版 - 问三个问题,大大们帮忙看一下
1. float f = 1/10在计算机中是怎样被存储和近似的? 32bits中最近的那一个?
2. http://en.wikipedia.org/wiki/Virtual_method_table 里面
virtual method table of D (for B2):
+8: D::f2() // B2::f2() is overridden by D::f2()
为什么这地址是+8而不是0?
3. Implement a buddy bitmap with APIs for setting and unsetting bits in the
bitmap 这道题思路是怎样的?有什么tricky的地方吗?
z***e
发帖数: 58
15
来自主题: JobHunting版 - G电面
估计是跪了
简历题, 网站架构方面。
第一道题 nondetermistic testing 怎么测试, 这个题卡住了 不知道怎么回答。
第二题: 有序数组中查找第一个出现的数,数组里面可能有重复。 做完之后写test
case,如何设计test case, 考虑哪方面, 感觉还行。
第三题: 就是这个题把我整跪了,
def inc:
while True:
v = v + 1 //---A
set(s) // ---B
def disp:
while True:
wait(s) //---C
print v //----D
求输出序列的可能情况 v 是shared value 初始为0
s是binary semophore 初始为0。set(s) 置s为1,wait(s) unset s 并且blocking。
第一问 0 是否能输出, 回答 不能,因为会blocking , OK。
第二问, 后面的情况,会输出什么样的递增数字, 我一想执行序列可能为 ABABCD,
这样的话 有些number 就m... 阅读全帖
f******s
发帖数: 25
16
来自主题: JobHunting版 - G onsite题目
(⊙o⊙)哦, 没有注意maximize len*len的条件。
那就把所有的string都在inverted index中扫一遍,然后选一个符合条件的最长串和他
匹配。
需要事先按照串的长度sort一下。
找符合条件的最长串可以用一个bitset,unset所有不符合条件的串, 然后用位操作找
出least significant 1的位置就是最长的串
n********e
发帖数: 41
17
来自主题: JobHunting版 - Leetcode的系统真是弱爆了
楼主 看到 你 isDiffByOne 函数就知道你必然要超时
Leetcode免费给你用 就别挑剔了。凡事要先从自身找问题
你那个测试不是大数据
真正的大数据在这里:
start = "nanny";
end = "aloud";
String[] d = {"ricky","grind","cubic","panic","lover","farce","gofer
","sales","flint","omens","lipid","briny","cloth","anted","slime","oaten","
harsh","touts","stoop","cabal","lazed","elton","skunk","nicer","pesky","
kusch","bused","kinda","tunis","enjoy","aches","prowl","babar","rooms","
burst","slush","pines","urine","pinky","bayed","mania","light","flare","
wares","wom... 阅读全帖
f******h
发帖数: 45
18
也找工作了一段时间了,从版上学了很多,上周G家面完了,求个bless。
之前的一些都挂了,还在继续找其他的。等定下来之后一定发面经回报本版。
谢谢大家啦!!
1. http://www.mitbbs.com/article_t/JobHunting/32005597.html
1) Implement a simple calculator (+,-,*,/);
2) Implement "+1" for a large integer;
3) How to match Ads to users;
4) How to extract useful information from a forum webpage (list all
kinds of useful signal you can think of)
5) How to detect the duplicate HTML pages (large scale);
6) Find all the paths between two places on Google map;
7)... 阅读全帖
z**a
发帖数: 69
19
来自主题: JobHunting版 - 愿意自断经脉的VMware面试经历
已跪,回想我的这次onsite经历,那就是一个joke啊,浪费了我的时间,也浪费了面试
官的时间。还浪费了我一天PTO飞过去。
第一轮,关键词,无厘头。开始先各自寒暄了几句,天真的我没有想到后来的尴尬。第
一个问题是:“如果有一个大文件,只有小写的(关键)的a-z(关键),那么怎么压
缩这个文件呢?”我是最近看大数据的东西看得有点太投入了,上来就说把文件分段,
hash每段,有个server专门存内容,bla,bla…,他问,那怎么恢复呢,我说每个文件
最后表现为一串hash key,恢复的时候按hash key找到存放的位置就行了。他没说啥,
我意识到这不是他想要答案,不过我最后才意识到这其实都不是想要问的问题。。。为
了引导我,他举了个例子说比如:abcd…z重复了一百遍。这你怎么存呢?当时我有点
懵了,我说:”这不就是存个abcd…z,然后存个100不就得了?”,他又问还有“怎么
恢复“,我老实点的说:”有多少遍,恢复的时候写多少被“. 他接着说:”abcd…z
100遍不是连续的呢?“我以为他说的是先50遍在这,后50遍在那,虽然我现在感觉有
点地方不对劲了,也只有硬着头皮说,... 阅读全帖
m**********r
发帖数: 30
20
I am on a business trip in Houston. I have a 2 month old baby. I keep
pumping and would like to give milk to the mothers who need more milk for
their babies. I am flying out early tomorrow morning but unfortunately the
person who wanted the milk is out of touch tonight. It's not a big deal but
a little unsetting because I requested the hotel to put a freezer in my
room and I wasted a lot of storage bags to freeze down the milk for the past
3 days. I am staying in Hilton Americas downtown. ... 阅读全帖
v*****r
发帖数: 2325
21
if Monday afternoon 4pm i will be in.
unset Rates w/cart $21.00
p*******r
发帖数: 180
22
来自主题: Outdoors版 - TR: A fun run in the Gorge
Where: Columbia River Gorge - PCT > Wahtum Lake > Eagle Creek Loop
What: Trail Run, 33 mi, 6,000 ft gain/loss
Pain factor: 4 (1 to 5)
Fun factor: 6 (1 to 5)
Gear: Hydration pack, bottles, water pump, Probars, GU
It is a love/hate affair to be a climber in Portland and you feel blessed
and cursed at the same time. Driving 600 miles for 6 pitches or 2,000 miles
for five climbs gets old after you have done it over and over the whole
summer. So after nonstop road trips for solid two months (on weeke... 阅读全帖
X******7
发帖数: 3297
23
来自主题: WaterWorld版 - 话谈在美国的平均月消费。
人家一般说什么都不会让我UnSet,本来就是讨论而已。我只是有回复帖的习惯,再说
,这不是我自己起的头吗,总得解释清楚,这个是我一般的处事方式。话说我这好像有
点斤斤计较了,=_=
c***t
发帖数: 383
24
来自主题: WaterWorld版 - [合集] 话谈在美国的平均月消费。
☆─────────────────────────────────────☆
Xiaoya77 (Xiaoya) 于 (Sun Mar 17 20:02:49 2013, 美东) 提到:
特别申明, 此贴本意是大家探讨个无关于任何人的新话题。发这贴的起因是对人家跟
贴回复的不赞同。原跟贴转在本帖的第16页308楼,本无意兜进老话题,但是就有爱抱
不平
的人士自动转移话题,引起争论。真要评论谴责人的请重头至尾地看完起因经过结果再
批判。=_=
大家觉得一般的生活水准该多少,单身的不算。看到有人谈了5000~8000的月消费是正
常消费。我看着觉得这个费用不是一般大众的费用,一般有家庭的,1家5口,像我这种
夫妻2人带3个小孩一条狗,我觉得基本费用在3500左右。这个算是平民百姓的生活标准
了吧?结果就赤裸裸的被鄙视了。原来我这不是在中层啊,是在底层?纠结了。
☆─────────────────────────────────────☆
OHVAOHCA (蚊香) 于 (Sun Mar 17 20:06:47 2013, 美东) 提到:
第一反应是,你在哪个州阿?这... 阅读全帖
a****e
发帖数: 173
25
来自主题: EnglishChat版 - sonnet 16
But wherefore do not you a mightier way
Make war upon this bloody tyrant, Time?
And fortify yourself in your decay
With means more blessed than my barren rime?
Now stand you on the top of happy hours,
And many maiden gardens, yet unset,
With virtuous wish would bear you living flowers
Much liker than your painted counterfeit:
So should the lines of life that life repair,
Which this Time's pencil, or my pupil pen,
Neither in inward worth nor outward fair,
Can make you live yourself in eyes of men
R*o
发帖数: 3781
26
作者:馬強盛/顏美娟夫婦
「歪理不會因為被大眾接納而演變成真理;而真理不會因為不被接納而變成為歪理。」
-匿名者
首先,什麼是「一次得救、永遠得救」?
直到今天,仍然有些加爾文主義者(Calvinist)的牧師認為:基督徒一次得救,就永遠得
救,即使「犯罪不願意悔改」,仍然不會失去救恩。換句話說,他們相信一個基督徒可
以殺人、犯姦淫100次,還是不會失去救恩。這個概念就像加爾文所相信的一樣,他自己
殺人不悔改,他也不認為自己會失去救恩。有些人稱這種相信是「極端加爾文主義」(e
xtreme Calvinism)。
「一次得救、永遠得救」或「聖徒永蒙保守」的說法很容易就可以被追溯到加爾文(Joh
n Calvin, 1509-1564)。但是加爾文的各樣說法可以被追溯到更早的奧古斯丁(Augusti
ne of Hippo , 354-430)。奧古斯丁開始了「聖徒永蒙保守」(Perseverance of the s
aints)的說法,而後來被加爾文而提倡和支持。資料來源:《Paul and Perseverance》
Judith M. Gundry Volf, p. 1。
根據教... 阅读全帖
I*l
发帖数: 1649
27
【 以下文字转载自 Linux 讨论区 】
发信人: IIl (梦里不知身是客), 信区: Linux
标 题: 登录远程系统老是自动logout是怎么回事?
发信站: BBS 未名空间站 (Sat Nov 21 14:39:06 2009, 美东)
在家里,新的router
ssh到remote machine大概1分钟不操作就死了。autologout 之类的已经unset了
并且电脑换一个网络就没有任何问题。
我猜是和router有关,请问router上有啥可以设置的么? 谢谢
j**c
发帖数: 596
28
来自主题: Apple版 - 请教XQuartz 运行的问题
X窗口的图标有,但是好像redirect X 有问题,desktop的图形界面没有出来。
X11.app: No launchd socket handed off, unsetting DISPLAY
X11.app: do_start_x11_server(): argc=1
argv[0] = XQuartz
Xquartz starting:
X.Org X Server 1.10.1
Build Date: 20110429
X11.app: DarwinProcessFDAdditionQueue_thread: Sleeping to allow xinitrc to
catchup.
(EE) Error loading keymap /tmp/server-0.xkm
(EE) XKB: Failed to load keymap. Loading default keymap instead.
t********k
发帖数: 808
29
来自主题: Database版 - Linux 7.3下装ORACLE8.1.7新问题
在装前执行 unset LANG后,安装介面是乱码的问题解决了
然后按网上的风意进行安装
1.安装Jdk1.1.8_v3到/usr/local
cp jdk118_v3-glibc-2.1.3.tar.bz2 /usr/local/
cd /usr/local
bunzip2 jdk118_v3-glibc-2.1.3.tar.bz2
tar -xvf jdk118_v3-glibc-2.1.3.tar
ln -s jdk118_v3 java
2.准备用户环境
加了dba,oinstall组
半加了oracle用户
建了一目录,用于装oracle,/u01
编辑.bash_profile,加上下面内容
. /usr/i386-glibc21-linux/bin/i386-glibc21-linux-env.sh
export LD_ASSUME_KERNEL=2.2.5
export LDEMULATION=elf_i386_glibc21
export GCC_EXEC_PREFIX=/usr/i386-glibc21-linux/lib/gcc-lib/
export ORACL
c*a
发帖数: 806
30
来自主题: EmergingNetworking版 - transparant mode in netscreen 5gt
good point. Read her original post again, seems that .25 can always ping .26
not vice versa, even by swapping two endpoints to different zones.
I was originally thinking of "unset interface vlan1 bypass-non-ip", but now
looks like .26 is not responding to ping anyway
also she might want to check forwarding table (arp table)

ARP
c*a
发帖数: 806
31
来自主题: EmergingNetworking版 - transparant mode in netscreen 5gt
good point. Read her original post again, seems that .25 can always ping .26
not vice versa, even by swapping two endpoints to different zones.
I was originally thinking of "unset interface vlan1 bypass-non-ip", but now
looks like .26 is not responding to ping anyway
also she might want to check forwarding table (arp table)

ARP
s****n
发帖数: 786
32
vi $HOME/.vnc/xstartup
make it look like this:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startx &

la
can
I*l
发帖数: 1649
33
在家里,新的router
ssh到remote machine大概1分钟不操作就死了。autologout 之类的已经unset了
并且电脑换一个网络就没有任何问题。
我猜是和router有关,请问router上有啥可以设置的么? 谢谢
m**********w
发帖数: 4161
34
这个对ubuntu不行。
必须加这两行:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
w*m
发帖数: 1806
35
来自主题: Linux版 - 菜鸟问个问题
edit ~/.vnc/xstartup
here is a copy of mine,
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
startx &
ps: startx will start gnome or kde.
S*A
发帖数: 7142
36
来自主题: Linux版 - 一个ssh 诡异的问题
unset SSH_AUTH_SOCK SSH_ASKPASS
不行就 logout, login
再不行就 su -c "reboot"
1 (共1页)