由买买提看人间百态

topics

全部话题 - 话题: attrib
1 (共1页)
R*****d
发帖数: 420
1
一个较难的python输出函数运行信息的project.
有一个 web service,类似这样
#!/usr/bin/env python
import web
import xml.etree.ElementTree as ET
tree = ET.parse('user_data.xml')
root = tree.getroot()
urls = (
'/users', 'list_users',
'/users/(.*)', 'get_user'
)
app = web.application(urls, globals())
class list_users:
def GET(self):
output = 'users:[';
for child in root:
print 'child', child.tag, child.attrib
output += str(child.attrib) + ','
output += ']';
... 阅读全帖
R*****d
发帖数: 420
2
一个较难的python输出函数运行信息的project.
有一个 web service,类似这样
#!/usr/bin/env python
import web
import xml.etree.ElementTree as ET
tree = ET.parse('user_data.xml')
root = tree.getroot()
urls = (
'/users', 'list_users',
'/users/(.*)', 'get_user'
)
app = web.application(urls, globals())
class list_users:
def GET(self):
output = 'users:[';
for child in root:
print 'child', child.tag, child.attrib
output += str(child.attrib) + ','
output += ']';
... 阅读全帖
R*****d
发帖数: 420
3
一个较难的python输出函数运行信息的project.
有一个 web service,类似这样
#!/usr/bin/env python
import web
import xml.etree.ElementTree as ET
tree = ET.parse('user_data.xml')
root = tree.getroot()
urls = (
'/users', 'list_users',
'/users/(.*)', 'get_user'
)
app = web.application(urls, globals())
class list_users:
def GET(self):
output = 'users:[';
for child in root:
print 'child', child.tag, child.attrib
output += str(child.attrib) + ','
output += ']';
... 阅读全帖
s******g
发帖数: 17
4
推荐个好地方。

地址在:
http://bbs.cssa-union.org/
telnet://bbs.ppunion.org 8888 之大学申请版:
http://bbs.cssa-union.org/bbsdoc?board=Application
各科选校成功经验谈!等等,建议先看该板文摘区!!

经典文章有:
1、关于推荐信的几个重要问题
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1068574779.A&num=323
3&attrib=g
2、到底该如何寄材料到美国? N种可选方式 :)
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1067891931.A&num=300
1&attrib=g
3、呕心沥血奉献:美国加拿大大学录取时的12大决定因素-----文章在:
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1064725064
s******g
发帖数: 17
5
我们的校友主持的国外学生会的BBS,上面提供了很多成功校友的经验录.供安答们参考.
地址在:
http://bbs.cssa-union.org/
telnet://bbs.ppunion.org 8888 之大学申请版:
http://bbs.cssa-union.org/bbsdoc?board=Application
如何套词与套词的误区\各科选校成功经验谈!等等,建议先看该板文摘区!!
填表的问题,请看板内标志m的文章.

经典文章有:
1、关于推荐信的几个重要问题
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1068574779.A&num=32
3
3&attrib=g
2、到底该如何寄材料到美国? N种可选方式 :)
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1067891931.A&num=30
0
1&attrib=g
3、呕心沥血奉献:美国加拿大大学录取时的12大决定因素-----文章在:
d*****1
发帖数: 123
6
那个所谓的木马是批处理文件,人家的源码都给了,用EXEScript打包的。垃圾杀软就
这样。
sigh
附上源代码:
@Echo Off
COLOR 2F
Set Prog=老毛桃制作的 WinPE 专用安装工具
Set L1=      ╭══════════════════╮
Set L2=      ║                  ║
Set L3=   ╭══┤ %Prog%  ├══╮
Set L4=   ║  ║                  ║  ║
Set L5=   ║  ╰══════════════════╯  ║
Set L6=   ║                        ║
Set L7=   ╟════════════════════════╢
Set L8=   ║ 版权所有:老毛桃  仅供网友们交流 翻版不究 ║
Set L9=   ╰————————————————————————╯
Title %Prog%
Set PEFile=WinPE.IS_
Set PEIni=外置程序\WinPE.INI
Set LogFile=PEIn... 阅读全帖
R*****l
发帖数: 310
7
来自主题: Security版 - pagefile.pif这个木马还是挺霸道的
最近频繁遇到。不知道是否算“落雪”的变种,但比落雪凶悍多了。
症状:所有逻辑分区根目录下全部被加上autorun.inf和pagefile.pif
两个文件。在system32/com/下面多了两个木马程序lsass.exe和smss.exe,
一直后台运行,无法杀掉。在startup里面加了一个~MSDOS启动程序。
机器运行爆慢,所有exe程序被锁住,运行任何exe都将启动木马进程,
双击盘符也将启动木马进程,防火墙和杀毒软件均被屏蔽。
解决方法: 重起到安全模式下,
start->run->cmd打开command prompt窗口,
删掉每个分区下面的autorun.inf和pagefile.pif。
attrib -r -s -h autorun.inf
attrib -r -s -h pagefile.pif
del -f autorun.inf
del -f pagefile.inf
去system32/com/下面删了lsass.exe和smss.exe,去startup下面删除~MSDOS。
重起后,search最近被修改过的文件。发现所有分区的很多html/htm文
j*****o
发帖数: 320
8
来自主题: Windows版 - Re: 怎么去掉这个东西?

attrib -r -s -h boot.ini
attrib +r +s +h boot.ini
p*********w
发帖数: 23432
9
2010-10-25 访民人权博览会 资料光盘zz
访民人权博览会.iso 3.42G
其中包括冯正虎《上海访民人权博览会》搜集的60案例,和《新唐人》《百姓话坛》《大
都市里的怒吼》的11集访谈录像,以及相关 Youtube 录像。
下载:
ed2k://|file|%E8%AE%BF%E6%B0%91%E4%BA%BA%E6%9D%83%E5%8D%9A%E8%A7%88%E4%BC%9A
.iso|3672047616|C34F0D132069F4AB814B0DBA0826BA4E|h=
A5O4O2TNIXN6IV3PWB2BULYE4BCG6RKT|/
Contents of folder: \访民 2010-10-25 04:48
Date Time Attrib Bytes File name
w********9
发帖数: 8613
10
来自主题: Military版 - 惊讶于德国人的英语能力
这是Shorter Oxford American English Dictionary第五版列出的与德语或者日耳曼语
相关的英语词根或词汇。
-at, suffix2. + -dom, suffix. + -ed, suffix1. + -ed, suffix2. + -en, suffix1
+ -en, suffix2 + -en, suffix5 + -en, suffix6 + -er, suffix1. + -er, suffix3
. + -er, suffix5. + -est, suffix1. + -est, suffix2. + -et, suffix2. + -eth,
suffix1. + -hood, suffix. + -ing, suffix1. + -ing, suffix3. + -ish, suffix1.
+ -kin, suffix. + -le, suffix1 + -le, suffix3 + -less, suffix. + -ling,
suffix1. + -ling, suffix2 + -ly, suffix1. + -ly, s... 阅读全帖
m**************h
发帖数: 1
11
来自主题: Gowest版 - 电话面试大全--推荐 !!!
发现一篇极好的关于电话面试的文章,超级推荐的说//////
来源:海阔天空站“大学申请”板 http://bbs.cssa-union.org/
http://bbs.cssa-union.org/bbscon?board=Application&file=M.1077680959.A&num=5009&attrib=g
1。面试的时间
2。面试前的准备工作
3。面试开始了,电话铃响了
4。面试结束后
5。附录
1)可能遇到的问题
2) The professor may tell you the several word listed below
3) 你可以做的提问:
4)客套话:
5)听不懂时,听不清时:
6)不好回答时:
7)表忠心:
G******n
发帖数: 749
12
来自主题: JobHunting版 - VS 2010下的 warning
我在vs 2010下 用-wall编译 出了无数warning。第一个是
h:\microsoft visual studio 10.0\vc\include\wchar.h(109):warning C4820: “_
wfinddata64i32_t”:“4”字节填充添加在 数据成员“_wfinddata64i32_t::attrib”后
这是怎么回事啊
能不能去掉?
st
发帖数: 1685
c****p
发帖数: 6474
14
cd
dir
attrib
copy
format
del
autoexec.bat
小学二年级的时候从报纸上抄一个BASIC程序,程序快敲完的时候家里停电了,程序没
保存。哭了一晚上。
用286/386玩大富翁的时候还是我爸用软盘拷给我的。
f*******3
发帖数: 584
15
Try this --
at command window,
attrib -s -h E: \ work \ consulting \ SH \ projectxx
(THE LAST PART OF THE PARAMETERS OF THE COMMAND IS THE FULL PATH OF THE
FOLDER.).
t*******r
发帖数: 122
16
dark seed 非常经典 很恐怖呀
copy con config.sys
copy con autoexec.bat
dir/s
dir/w
delete
copy
format
attrib
还有很多 呵呵
AR
发帖数: 436
17
来自主题: WmGame版 - monk solo sand drake farming
I can kill 3 drakes or 3 scorpions at the same time following Lighter's
post. Still got owned by the lvl 26 drake boss tho.
Since i'm an e/mo there is no divine attrib for me.
b*s
发帖数: 82482
18
来自主题: LeisureTime版 - 爱情
参见一个homage单词的OED词条:
homage, n.
View as:
Outline |
Full entry
Quotations:
Show all |
Hide all
Pronunciation: Brit. /hmd/ , U.S. /(h)ɑmd/ (also, chiefly in sense 3b)
Brit. /mɑ/ , U.S. /omɑ/
Forms: ME homoge, ME omage, ME umage, ME ummage, ME–15 hommage, ME–
homage; Sc. pre-17 homadge, pre-17 homag, pre-17 homege, pre-17 omage, pre-
17 ymage (perhaps transmission error), pre-17 17– homage. (Show Less)
Etymology: < Anglo-Norman homaige, humage, Anglo-Norman and Old French
omage, A... 阅读全帖
b*s
发帖数: 82482
19
来自主题: LeisureTime版 - 爱情
比较一下词条的详细程度:
torpedo:
torpedo, n.
View as:
Outline |
Full entry
Quotations:
Show all |
Hide all
Pronunciation: /tpid/
Forms: Also 15 -ido. Pl. torpedoes.
Etymology: < Latin torpēdo stiffness, numbness, also the cramp-fish or
electric ray, < torpēre to be stiff or numb; = Spanish torpedo, Portuguese
torpedo, Italian torpedine. Compare French torpille, Italian torpiglia from
the same verb.(Show Less)
1.
Thesaurus
Categories
a. A flat fish of the genus Torpedo or family Torpedini... 阅读全帖
d********u
发帖数: 5383
c*****s
发帖数: 180
21
来自主题: WaterWorld版 - PURE WATER DO NOT NETER PLEASE
SAS OnlineTutor®: Advanced SAS®
Combining Data Horizontally 7 of 47
backnextlesson menuLearning Pathhelp menu

Working with Lookup Values Outside of SAS Data Sets (continued)
User-Defined SAS Formats
You should be familiar with the syntax and use of the FORMAT procedure with
the VALUE statement. You can associate a format with a variable permanently
by using a FORMAT or ATTRIB statement in a DATA step or PROC step that
creates a SAS data set. In a DATA step
c*****s
发帖数: 180
22
来自主题: WaterWorld版 - PURE WATER DO NOT NETER PLEASE
SAS OnlineTutor®: Advanced SAS®
Combining Data Horizontally 7 of 47
backnextlesson menuLearning Pathhelp menu

Working with Lookup Values Outside of SAS Data Sets (continued)
User-Defined SAS Formats
You should be familiar with the syntax and use of the FORMAT procedure with
the VALUE statement. You can associate a format with a variable permanently
by using a FORMAT or ATTRIB statement in a DATA step or PROC step that
creates a SAS data set. In a DATA step
H********g
发帖数: 43926
23
关于那个archive 选项,你可以在命令行下把所有的文件的Archive属性去掉
ATTRIB /s -R *.*
The archive attribute of files was invented so that backup programs could
determine whether a file had been changed since the last time it was backed
up. The OS marks the archive bit ("archive me") when a file is changed, and
the backup program clears it after the file has been archived. Whether this
attribute has any other, more modern meaning or use, I have no idea.
s******y
发帖数: 28562
24
不需要那么麻烦,两个简单DOS命令即可
ATTRIB +R solar:earthhumanNoah_family /S
DEL solar:earthhuman*.*
o******a
发帖数: 435
25
来自主题: Midlife版 - America's most and Least Favorite Cities
Best Cities to Work and Live: Chicago
Rank: 9
Workers who would like to move there: 6%
Median household income: $45,505
Median home value: $234,643
Annual home price change: -8.9%
Chicago, hometown of President-elect Barack Obama, is the
third-largest city in the U.S. and is one of its major financial
centers. The city is known for its architecture, museums, shopping,
and nightlife. The area's top employers include Jewel-Osco supermarkets,
United Airlines, and J.P. Morgan. The city's best attrib
C*****e
发帖数: 367
26
来自主题: TrustInJesus版 - Glossary to the Westminster Confession
【 以下文字转载自 Church 俱乐部 】
发信人: CCBible (神同在圣经), 信区: Church
标 题: Glossary to the Westminster Confession
发信站: BBS 未名空间站 (Tue Apr 24 21:16:33 2012, 美东)
Glossary to the Westminster Confession
Explanations of all archaic and uncommon words, usages, and expressions, in
the order in which they occur.
Title Confession. n. Public statement of religious beliefs.
1.1 Providence. n. Divine care. Manifest. v. Show. Are they. idiom. T
hey are. Unto. prep. With regard to. Sundry. adj. Separate. D... 阅读全帖
w*****u
发帖数: 5
a***a
发帖数: 14
28
西四的老栋长是姓杨,不过是个女的。和这个杨师傅是同一个人吗?

http://bbs.ppunion.org/bbscon?board=HUST&file=M.1054700766.A&num=238&attrib=N
o*f
发帖数: 9
29
封师傅和杨师傅人都很不错!也特别勤快,C4打扫得就挺赶紧的!
住一楼的时候就老去值班室聊天,有电扇,赫赫。
住五楼的时候不愿爬楼,把碗放在值班室,中午晚上直接拿碗去打饭,然后又在值班室吹
吊扇,赫赫。
andrews, tzq是不是也有这样的经历:)?



http://bbs.ppunion.org/bbscon?board=HUST&file=M.1054700766.A&num=238&attrib=N
o*f
发帖数: 9
b****r
发帖数: 2555
31
我毕业的时候教六的师傅居然到我宿舍来偷东西,把我的相机偷走了。mmd,偷
毕业生的东西不是在太岁头上动土么?要不是几个95的师弟拦着我当时就打过去
了。




http://bbs.ppunion.org/bbscon?board=HUST&file=M.1054700766.A&num=238&attrib=N
t******8
发帖数: 2803
32
来自主题: Hardware版 - SSD真的有用吗?
今天中午刚刚写了个批处理文件把硬盘里的所有RAW文件都隐藏了。Picasa不会去打开。
attrib +h "路径\*.NEF" /s
l*********s
发帖数: 5409
33
来自主题: Programming版 - 有人熟悉xml么?
equal to
t********k
发帖数: 808
34
来自主题: Security版 - 注册表里突然发现有这么一项
在RunServices里,键名是@,值是
cmd /c "attrib -s -h -r \WINNT\System32\Wqk.dll | del \WINNT\System32\Wqk.dll"
wqk.dll是木马么?
另外还有dw.exe,savenow.exe,在Run里有键名 New.net Startup 值为
rundll32 D:\PROGRA~1\NEWDOT~1\NEWDOT~1.DLL,NewDotNetStartup
装有Norton Antivirus,怎么没反应啊
e****s
发帖数: 46
35
来自主题: Security版 - 中了Yaha病毒
Yes, I got the virus the same way as you did. The attrib of the virus is hide,
mostly under c:/Winnt/system32 foler. You can check the following link to see
the details. I scaned my camputer using Stinger.exe, it seems fine now.
http://vil.nai.com/vil/content/v_99918.htm

emails
normal
I***O
发帖数: 188
36
来自主题: Security版 - pagefile.pif这个木马还是挺霸道的
D盘右键第一项是自动播放,双击不能打开.
是Autorun.inf这个文件的问题,就像有些光盘的自启动一样,你双击不一定能进入光盘,
而是弹出一个安装的画面,就是Autorun.inf这个文件里做了设置,很多病毒都会在这个
文件里动手脚,先杀病毒。其他盘正常吗?
确定无毒后打开我的电脑-工具-文件夹选项-文件类型, 找到“驱动器”,
点下方的“高级”-点选“编辑文件类型”里的“新建”-操作里填写“open”(这个
可随意填写)-用于执行操作的应用程序里填写explorer.exe-确定
应该能解决问题!
还有个方法:鼠标双击我的电脑-工具-文件夹选项-查看-显示所有文件和文件夹,
然后进入d盘,把autorun.inf删除,重启即可。
如果找不到autorun.inf,那么
1、开始-->运行-->cmd(打开命令提示符)
2、dir autorun.inf /a (没有参数a是看不到的,a是显示所有的意思),此时你会发
现一个autorun.inf文件
3、attrib autorun.inf -s -h -r 去掉autorun.inf文件的系统、只读、隐藏属性,否
则无法删除。
p****t
发帖数: 11416
37
来自主题: Software版 - 老凶,要卸载Win2K吗?
我们从最坏的情形说起吧:
设若你只有一个分区而且被转化为了NTFS的话……
唉,怎么会有这么不小心留条后路的DD存在呢?
不过,Don't Worry,Be Happy!
我们从软盘或者CD-ROM进入98的DOS窗口,之后
祭起法宝——PQMagic,把这个分区妖怪收入
炼妖壶中以三味真火熔炼九九八十一天之后,它
就变成无色无味无毒无害的FAT32了。
好了,Stage 1 Cleared,我们进入下一关。
如果你的分区本来就是FAT32的,当然更好(选关
密码上上下下左右左右BA启动)。
之后,我们进入下一回合。在DOS窗口下把C:\Winnt
目录给Deltree,好爽快!
之后到C:根目录下面把下面几个小妖干掉:
ntldr
NTDETECT.COM
bootsect.dos
boot.ini
pagefile.sys
hiberfil.sys
不一定全有,也不定能看到(笨,Dir /A不就看到了?)
时候统统Delete掉,什么?不让删?
知道什么叫Attrib -r -s -h吗?
好了,Stage 2 Cleared。
最后收尾,就是Sys C:了,把Win98的启动覆盖
G****n
发帖数: 32
38
来自主题: Software版 - Re: minitab help?
Minitab13Demo文件只能使用30天,30天就要求用户注册,而且在一般情况下,
因为Minitab会在注册表中写入一些东西,除非用户重新安排Windows系统,没有正确
的注册码,就无法再使用了,令人十分恼火。现觅得一日期限制破解方法,不敢独吞
,拿出来与大家共享。
1.使用控制面板中的添加/删除程序卸载Minitab。
2.在Windows系统中有两个地方记录着个人电脑独特的Machine ID,一个是C盘根
目录下的os******.bin文件,一个是WINDOWS/SYSTEM(Win9x系统)或WINNT/SYSTEM32
(WinNT/2000系统)下的ws******.ocx文件,这两种文件都是隐藏文件,因此要通过
文件夹选项的查看工具或DOS下的Attrib命令去除它们的隐藏属性,然后将它们删除

3.运行Windows安装目录下的regedit文件(或在开始菜单的运行框中打键入regedit
),
①找到“HKEY_CLASSES_ROOT\.INF\”,Minitab会在\.INF\下写入一些子键,将
这些子键统统删除。
②找到“HKEY_CLASSES_R
r****y
发帖数: 26819
39
来自主题: Software版 - Re: 请教有关98和XP双启动的问题
use "attrib -s -h -r c:\boot.ini" to make boot.ini editable.
Then edit it.
Another way is to run msconfig.
e**n
发帖数: 478
40
来自主题: Windows版 - Re: 垃圾箱总是无法清空
firstly:
attrib , /s
then deltree.
p****t
发帖数: 11416
41
来自主题: Windows版 - [转载] 老凶,要卸载Win2K吗?
【 以下文字转载自 Software 讨论区 】
【 原文由 piglet 所发表 】
我们从最坏的情形说起吧:
设若你只有一个分区而且被转化为了NTFS的话……
唉,怎么会有这么不小心留条后路的DD存在呢?
不过,Don't Worry,Be Happy!
我们从软盘或者CD-ROM进入98的DOS窗口,之后
祭起法宝——PQMagic,把这个分区妖怪收入
炼妖壶中以三味真火熔炼九九八十一天之后,它
就变成无色无味无毒无害的FAT32了。
好了,Stage 1 Cleared,我们进入下一关。
如果你的分区本来就是FAT32的,当然更好(选关
密码上上下下左右左右BA启动)。
之后,我们进入下一回合。在DOS窗口下把C:\Winnt
目录给Deltree,好爽快!
之后到C:根目录下面把下面几个小妖干掉:
ntldr
NTDETECT.COM
bootsect.dos
boot.ini
pagefile.sys
hiberfil.sys
不一定全有,也不定能看到(笨,Dir /A不就看到了?)
时候统统Delete掉,什么?不让删?
知道什么叫Attrib -r -s -h吗?
好了
j*****o
发帖数: 320
42
来自主题: Windows版 - Re: where is the boot.ini file
先开个DOS窗口,然后attrib -r -s -h c:\boot.ini
就能看见了。
让Windows Explorer显示隐藏的系统文件也可以。
q*c
发帖数: 9453
43
来自主题: Windows版 - 我把一个目录搞成“hidden"了
CMD 下面 dir /a
然后用 attrib /? 解决一切.
r****y
发帖数: 26819
44
来自主题: Windows版 - windows start problem
attrib -h -s -r c:\boot.ini
D*V
发帖数: 567
45
start -> run -> cmd.exe
type the command:
attrib -r -h -s c:\boot.ini
f*****n
发帖数: 202
46
赞DRV!不过,汗。。。。努力理解最后一行的意思
是说在那个dos的界面下敲这个命令:attrib r h s c:/boot.ini,再按照你指示的办
法修改boot.ini?中间是连字符,或空格?大汗...
哦滴神,业余该学学电脑,或者是长期贿赂一位身边的高手。
l*****e
发帖数: 3343
47
微软真糙蛋,我今天下班鼓动了三个小时才搞明白,为什么我的win7不能升级到win10,
以下是通过google搜到的好用的几个方法,去解决三个不同的错误信息!!!!!希望
对大家有用!一定要升级到win10,为了安全起见。。。
Error1: Failed to install, because windows can’t fail some critical updates
- goto Step9
Error2: Windows 10 upgrade couldn’t update the system reserved partition -
goto Step1
Error3: Shown in windows update, error code-”WindowsUpdate_80240020” -goto
Step7
1. press win+r and type diskmgmt.msc
2. System partition (no drive letters) listed at 100MB, right click on it
and go to change dr... 阅读全帖
y*m
发帖数: 102
48
来自主题: Statistics版 - How to reorder variables in a SAS data set
Have seen many people asking this question over and over again, here is a
solution from SAS support,so I guess it's a legal solution.
http://support.sas.com/kb/8/395.html
Any of the following statements can be used to change the order of
variables in a SAS data set:
ATTRIB, ARRAY, FORMAT, INFORMAT, LENGTH, and RETAIN.
For any of these statements to have the desired effect, they must be
placed prior to a SET/MERGE/UPDATE statement in the DATA step. All of
these statements are declarative state
z**l
发帖数: 82
49
来自主题: Statistics版 - sas help!!
请求帮助,我有一个问题。我想保留每个ID 每月销售最低的那条记录,输出的数据就
象data b.
多谢!
data a;
input id date sale;
attrib date informat= mmddyy10. format=mmddyy10.;
cards;
1 08/01/2007 3400
1 07/02/2007 2300
1 08/08/2007 6400
1 02/12/2007 1300
2 04/11/2007 2500
2 05/09/2007 7300
2 06/28/2007 400
2 06/10/2007 1900
3 03/11/2007 6200
3 01/06/2007 5400
3 10/24/2007 5100
3 03/11/2007 1200
;
run;
proc print data=a;
run;
data b:
1 02/12/2007 1300
1 07/02/2007 2300
1 08/01/2007 3400
2 04/11/2007 2500
2
1 (共1页)