g***l 发帖数: 18555 | 1 我找到了一个SCRIPT LOGIN的
USE master
GO
IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL
DROP PROCEDURE sp_hexadecimal
GO
CREATE PROCEDURE sp_hexadecimal
@binvalue varbinary(256),
@hexvalue varchar (514) OUTPUT
AS
DECLARE @charvalue varchar (514)
DECLARE @i int
DECLARE @length int
DECLARE @hexstring char(16)
SELECT @charvalue = '0x'
SELECT @i = 1
SELECT @length = DATALENGTH (@binvalue)
SELECT @hexstring = '0123456789ABCDEF'
WHILE (@i <= @length)
BEGIN
DECLARE @tempint int
DECLARE @firstint in... 阅读全帖 |
|
|
|
|
a****2 发帖数: 3735 | 5 【向美国国土安全部DHS举报孙维用假身份申请移民】-----
举报地址:http://www.ice.gov/exec/forms/hsi-tips/tips.asp
步骤:
1. 在II.Violator Information里面选other, 在下面框中写“Disguise Identity/
Identity fraud”
在The This complaint involves a下面选择中间的:individual
2. 在The information about the individual下面写:First name:Shiyan;Last
name:Sun
4. Have you previously submitted this information to any law enforcement or
government agency?
选NO
5. 简述孙维的违法行为:Please provide a summary of the criminal activity:
Shiyan sun AKA Wei sun, jasmine sun h... 阅读全帖 |
|
b********n 发帖数: 38600 | 6 ”According to "The Miracle" by Michael Schuman shortly after Singapore's
separation from Malaysia he attended a conference in the US filled with
executive's from US companies. There he learned to his surprise that US
executives would like to build factories off shore. All Lee had to do was
minimize the transaction cost for doing so. That he did
He built modern industrial parks and provided a disciplined English speaking
labor force. Lee tried to make Singapore so American like that an exec
would... 阅读全帖 |
|
a**********0 发帖数: 422 | 7 The Unix Commands
其实就是攒了一下网上的资料
# Create a new tar archive.
# the folder dirname/ is compressed into archive_name.tar
tar cvf archive_name.tar dirname/
# Extract from an existing tar archive
tar xvf archive_name.tar
# View an existing tar archive
tar tvf archive_name.tar
# Search for a given string in a file (case in-sensitive search).
grep -i "the" demo_file
# Print the matched line, along with the 3 lines after it.
grep -A 3 -i "example" demo_text
# Search for a given string in all files recur... 阅读全帖 |
|
g**e 发帖数: 6127 | 8 也对,哈哈。我只是想写个不用semaphore的,肯定要麻烦点,而且容易写错。这个应
该对了。。。
public class PrintFooBar2 {
public void print(int n) {
AtomicBoolean flag = new AtomicBoolean(true);
ExecutorService exec = Executors.newCachedThreadPool();
exec.execute(new Worker("foo", flag, n / 2, true));
exec.execute(new Worker("bar", flag, n / 2, false));
exec.shutdown();
}
public static void main(String[] args) {
new PrintFooBar2().print(6);
}
}
class Worker implements Runnabl... 阅读全帖 |
|
|
|
o****d 发帖数: 5454 | 11 社会太扭曲了,在大学里,校长,系主任,教授工资远低于足球教练,篮球教练。
参见如下部分信息和链接
Dennis B Erickson Head Coach Football Ica Administration $1,275,
000 2008
Herbert J Sendek Head Coach Men's Basketba Ica Administration $
900,000 2008
Shay Marie Masterson Student Worker V Res Life Rha $520,000
2008
Michael M Crow President Office Of The President $475,000
2008
George Henry Poste Dir AZ BioDesign Institut Biodesign Institute
$456,825 2008
Robert Mittels... 阅读全帖 |
|
|
|
w*s 发帖数: 7227 | 14 sorry was cooking food, taking care of kids ...
thank you so much !
/*Define dependencies.*/
var express = require('express');
var multer = require('multer');
var app=express();
var done=false;
var exec = require('child_process').exec;
var cmd = 'echo ';
/*Configure the multer.*/
//var istarUpload = app.use(multer({ dest: './uploads/'}).single('myUpload')
);
var istarUpload = app.use(multer({ dest: './uploads/',
rename: function (fieldname, filename) {
return filename+Date.now();
... 阅读全帖 |
|
j***y 发帖数: 2074 | 15 haha, let me reply myself:
in the file ".openwin-init", write as follows:
exec xterm -geometry 80x24+15+5 &
exec xterm -geometry 80x24+515+5 &
exec xterm -geometry 80x24+15+365 &
exec xterm -geometry 80x24+515+365 &
thank microbe for his hints.
:
多 |
|
p******f 发帖数: 162 | 16 exec builtin -> exec(2)
system -> fork(2), exec(2) and waitpid(2)
qx or `` -> fork, exec, and waitpid
all of these will result in system calls, at least for *nix systems. |
|
w*******y 发帖数: 60932 | 17 I have been looking for a good deal on Breaking Bad Season 2 Blu Ray. DVD
Empire has Breaking Bad: The Complete Second Season on sale for $19.98
Link:
http://www.dvdempire.com/exec/v4_item.asp?userid=99366865786201
Apply coupon code 1564839 to bring the price down to $17.98.
Shipping is $1.98 and your total is $19.96 shipped. No tax for most. This
is a great deal for an excellent TV show. Or, if you want to order anything
else to get the total over $25, the shipping is free.
I ordered Robin... 阅读全帖 |
|
|
|
|
x*g 发帖数: 689 | 21 和公司的HR和TOP EXEC商量结果:
一个TOP EXEC(中国人)要一比一match
公司所有除他自己以外的人的所有捐款。
然后公司再一比一match。
相当于在我们公司里的捐款一变四了。
感谢那个TOP EXEC,也感谢公司! |
|
b********n 发帖数: 38600 | 22 "You only have to look at the Internal IBM ‘blogsphere’ to see how
dysfunctional things are. It a system not dissimilar to hollywood back-
patting. One of the huge army of senior execs will post something with the
‘party line’ in it. It is immediately followed by other Execs sucking up.
Telling him/her how great they are. Followed by wannabees who want the
visibility. I rarely see anyone in the professional community that I know &
respect responding to these. They are not engaged. I did a little... 阅读全帖 |
|
|