Redian新闻
>
civil engineering 找 technology specialist 求教
avatar
civil engineering 找 technology specialist 求教# Law - 律师事务所
z*e
1
竟然都没人出来嚷嚷。唉。
avatar
K*g
2
Description
A software company in MI is currently seeking a motivated PHP/MYSQL
Developer to manage existing websites as well as develop new features and
maintain tools and systems. Our ideal candidate is someone with at least 1
years of experience developing websites.
This is a full-time, ON-SITE, hands-on role and requires the ability to plan
, multi-task and follow through on projects. Responsibilities include site
operations support and the ongoing development and maintenance of web
content.
QUALIFICATIONS:
Knowledge of HTML (hand-coding), JavaScript
knowledge of LAMP, MySQL database, PHP
Experience with MySQL database server configuration and maintenance.
Excellent communications and organizational skills.
Bachelor’s degree minimum.
1+ or years’ experience or strong project portfolio in Web PHP & MySQL
Database development is required
Competitive salaries and Full benefits plan
10 Paid company holidays and paid time off (PTO)
email:a********[email protected]
avatar
A*B
3
就是那个1400元三口人的政府补贴,当时报税的时候,我没有绿卡,导致全家都不能拿
到,
请问我现在能补申请吗?
谢谢:)
avatar
y*2
4
http://ymk.im/c1F
機車高速騎過減速丘的下場就是這樣的
avatar
s*t
5
落幕了。
人们纷纷散去。
人们只是临时相聚,
并无友谊。
剧场中,
只剩下我一个人。
我一边演戏一边看戏,
像个无聊的影子。
我想起了一些面孔,
想起了那并不熟悉的梧桐叶子,
它们已无法触及。
我对着寂静哭泣。
又开幕了,
又是新的一天。
我已换了一副容颜。
又对着新的人群演戏。
avatar
Y*6
6
刚开始学,第三堂课就遇到困难。。。实在弄不出来。。。
题目是这样的
* Write a program that reads from a file called input.txt until the file
contains the word end.
* For each word you encounter, you will determine if the word is
alphabetically before or after the previous encountered word.
* For a word that is alphabetically after the previous word, write the word
to the screen and then say AFTER. For words that are before the previous,
write the word BEFORE. For the first word, write COMES FIRST. For words that
are the same, write SAME AS.
Sample input:
Alpha Tango Bravo Epsilon Epsilon Delta end
The program should output:
Alpha COMES FIRST
Tango AFTER Alpha
Bravo BEFORE Tango
Epsilon AFTER Bravo
Epsilon SAME AS Epsilon
Delta BEFORE Epsilon
If you want, you may use char instead of string for no penalty. In this case
, use the character 'q' instead of the word "end". Please note that you are
doing this in your readme file.
我选了简单的,只写char
假设input文件里一列字母A B D K L E H H L X Q
我自己乱弄,可是显示的结果还是不对
int main()
{char word;
ifstream myfile ("input.txt");
myfile >> word;
cout<
fstream in;
char c, c1;
c1 = word;
int a, b;
b = word -'0';
in.open("input.txt",ios::in);
while(!in.eof())
{
in>>c;
a = c - '0';

if (c != 'q')

{
if (a > b)
{
cout<}
else if (a < b)
{
cout<}
else
{
cout<}
c1 = c;
b = c1 - '0';
}

}
cin.get();

return 0;
}
显示第一行
A Comes First
A SAME AS A (这里A字母出现了两次,我不知道怎么跳过A,直接读第二个字母)
谢谢
avatar
v*e
7
谁给说说,没有data时是不是很多功能都没有了?
avatar
m*p
8
如何提取一个executable的所有dependency, e.g. dll?
目的是为了能够在另一台电脑上精确的run这个exe.
avatar
f*r
9
大家好,我是新人,fresh phd毕业,civil专业,有心想要转到ip 这个行业,可是上
网搜了搜招civil的很少啊,其实我的研究主要是mechanical的内容,但是我老板在我
读博的时候是在civil系,一般的civil的专业我还不懂,郁闷。。。所以找工作很困难
,顶着个civil的名字还不会干civil的活。。
最近找工作压力很大。。每天晚上发现没有投出一个简历就觉得自己又浪费了一天。。
。想问问大家我这个专业是不是很难啊。。。
avatar
i*l
10
还不算破。摩擦一下而已。要有比较大幅度的抽插才能破
avatar
l*a
11
又来一次
#include
#include
#include
using namespace std;
int main()
{
ifstream fin("test.txt");
string curWord, lastWord = "";
fin >> curWord;
while (curWord.compare("end")!=0)
{
if (lastWord.empty())
{
cout << curWord << " COMES FIRST" << endl;
}
else if (curWord>lastWord)
{
cout << curWord << " AFTER " << lastWord << endl;
}
else if (curWord{
cout << curWord << " BEFORE " << lastWord << endl;
}
else
{
cout << curWord << " SAME AS " << lastWord << endl;
}
lastWord = curWord;
fin >> curWord;
}
fin.close();
return 0;
}
avatar
A*s
12
哪个厂商要被运营商绑架成这个样子你大可不必和他们再打交道了。。。

【在 v****e 的大作中提到】
: 谁给说说,没有data时是不是很多功能都没有了?
avatar
a*l
13
I don't think it is possible with 100% accuracy. One can easily create an
executable that is mathematically impossible to infer the dependency.

【在 m*p 的大作中提到】
: 如何提取一个executable的所有dependency, e.g. dll?
: 目的是为了能够在另一台电脑上精确的run这个exe.

avatar
p*n
14
来了来了~~~ 这不是意料之中的嘛,大家这不都等着反清复明了,所以也没嘛。

【在 z******e 的大作中提到】
: 竟然都没人出来嚷嚷。唉。
avatar
K*n
15
牛,赞“lastWord”,呵呵

【在 l********a 的大作中提到】
: 又来一次
: #include
: #include
: #include
: using namespace std;
: int main()
: {
: ifstream fin("test.txt");
: string curWord, lastWord = "";
: fin >> curWord;

avatar
v*e
16
貌似Palm Pre在运行时要不停的和Palm的Server连接。不知道没有data链接是还能剩下
什么功能

【在 A*****s 的大作中提到】
: 哪个厂商要被运营商绑架成这个样子你大可不必和他们再打交道了。。。
avatar
M*t
17
check this out
www.dependencywalker.com
I do not know how though
if yo ask me to write a C++ function to print out
the list of all dependencies

【在 m*p 的大作中提到】
: 如何提取一个executable的所有dependency, e.g. dll?
: 目的是为了能够在另一台电脑上精确的run这个exe.

avatar
z*e
18
唉。每次都让散户听到利好就慌张。然后就站岗放哨了。

【在 p***n 的大作中提到】
: 来了来了~~~ 这不是意料之中的嘛,大家这不都等着反清复明了,所以也没嘛。
avatar
A*s
19
Palm可以去了。。。

【在 v****e 的大作中提到】
: 貌似Palm Pre在运行时要不停的和Palm的Server连接。不知道没有data链接是还能剩下
: 什么功能

avatar
x*u
20
展开讲讲,动态加载的不算的话。

【在 a****l 的大作中提到】
: I don't think it is possible with 100% accuracy. One can easily create an
: executable that is mathematically impossible to infer the dependency.

avatar
p*n
21
我读上个星期sina财经,发现风向转了,开始说国际经济危机了。所以证监会早就找到
救命稻草, 护不护盘已经不重要了, 因为"完全是国内形势不好造成的股市下跌".

【在 z******e 的大作中提到】
: 唉。每次都让散户听到利好就慌张。然后就站岗放哨了。
avatar
A*s
22
http://en.wikipedia.org/wiki/Palm_Web_OS
没看到相关说法啊
要是脑残到一定程度肯定上wiki了

【在 v****e 的大作中提到】
: 貌似Palm Pre在运行时要不停的和Palm的Server连接。不知道没有data链接是还能剩下
: 什么功能

avatar
m*p
23
hey, guys, actually our company is gonna buy a license of this software,
which can do that precisely, quite amazing. I spent an hour observing and
can't figure out how they do it....
there is free license to play with.
http://www.xoreax.com/news/company_news066.htm
avatar
j*n
24
现在AH的价差太大,是造成本周A股崩盘的根本原因,
我认为本周A股极有可能出现连续暴跌的机会。
avatar
v*e
25
网上看的:
Originally Posted by Dunpeal View Post
You are jumping to conclusions based on not understanding how the technology
in the phone works. I am also speaking to people who side with you on your
statement also.
When starting the phone up it requires to connect to the Internet in order
to create a profile. There is no way to activate the device unless there is
data connection. Setting up a profile that connects directly to Palm's
servers is obligatory in order for teh device to complete the se

【在 A*****s 的大作中提到】
: http://en.wikipedia.org/wiki/Palm_Web_OS
: 没看到相关说法啊
: 要是脑残到一定程度肯定上wiki了

avatar
x*u
26
这个东西无非是对PE做分析,找出所有的直接依赖来,然后再递归的找出间接依赖。对
COM什么的东西是无能为力的。

【在 m*p 的大作中提到】
: hey, guys, actually our company is gonna buy a license of this software,
: which can do that precisely, quite amazing. I spent an hour observing and
: can't figure out how they do it....
: there is free license to play with.
: http://www.xoreax.com/news/company_news066.htm

avatar
A*s
27
Palm去矣哈哈
我要是黑客就天天炸他们的服务器,炸到所有pre都退货为止

technology
your
is

【在 v****e 的大作中提到】
: 网上看的:
: Originally Posted by Dunpeal View Post
: You are jumping to conclusions based on not understanding how the technology
: in the phone works. I am also speaking to people who side with you on your
: statement also.
: When starting the phone up it requires to connect to the Internet in order
: to create a profile. There is no way to activate the device unless there is
: data connection. Setting up a profile that connects directly to Palm's
: servers is obligatory in order for teh device to complete the se

avatar
f*y
28
sounds similar to ldd in linux.
avatar
v*e
29
跟Palm这么大仇?如果炸估计也是果蝇干的。
据说因为Pre出来,ATT要给爱粪的plan降价了。

【在 A*****s 的大作中提到】
: Palm去矣哈哈
: 我要是黑客就天天炸他们的服务器,炸到所有pre都退货为止
:
: technology
: your
: is

avatar
m*p
30
that's what I guess...
at the agent machine, i can only see the EST.exe running, which means this
software is able to obtain all exe+dll etc and wrap them up into one single
exe, which is so cool!
Why is not working with com?

【在 x****u 的大作中提到】
: 这个东西无非是对PE做分析,找出所有的直接依赖来,然后再递归的找出间接依赖。对
: COM什么的东西是无能为力的。

avatar
A*s
31
我现在手上的就是centro
我觉得连Palm都开始干这种和运营商勾勾搭搭的动作,手机市场基本没戏了
以后还是老老实实的搞个PDA吧,反正发展的趋势肯定是大城市里热点越来越多

【在 v****e 的大作中提到】
: 跟Palm这么大仇?如果炸估计也是果蝇干的。
: 据说因为Pre出来,ATT要给爱粪的plan降价了。

avatar
a*l
32
就是动态的有问题啊!静态的当然好找,搜一遍文件名字符串就出来了.动态的,如果编程
的人有意不让你知道调用的关系,可以用各种trick隐藏,就没那么好找了.所以说,这是
防君子不防小人.

【在 x****u 的大作中提到】
: 展开讲讲,动态加载的不算的话。
avatar
b*e
33
热点在多也不如手机信号随要随有方便阿

【在 A*****s 的大作中提到】
: 我现在手上的就是centro
: 我觉得连Palm都开始干这种和运营商勾勾搭搭的动作,手机市场基本没戏了
: 以后还是老老实实的搞个PDA吧,反正发展的趋势肯定是大城市里热点越来越多

avatar
x*u
34
看了一下说明,dependency实际上还有个调试器,可以hook住dll加载的消息,得到更
完整的一张表。

single

【在 m*p 的大作中提到】
: that's what I guess...
: at the agent machine, i can only see the EST.exe running, which means this
: software is able to obtain all exe+dll etc and wrap them up into one single
: exe, which is so cool!
: Why is not working with com?

avatar
A*s
35
方便但是贵啊。。。

【在 b*****e 的大作中提到】
: 热点在多也不如手机信号随要随有方便阿
avatar
x*u
36
可以搞个调试器动态监测,为了防这个小trick就不太够了。

【在 a****l 的大作中提到】
: 就是动态的有问题啊!静态的当然好找,搜一遍文件名字符串就出来了.动态的,如果编程
: 的人有意不让你知道调用的关系,可以用各种trick隐藏,就没那么好找了.所以说,这是
: 防君子不防小人.

avatar
b*e
37
所以需要sero...

【在 A*****s 的大作中提到】
: 方便但是贵啊。。。
avatar
a*l
38
是的,调试器会更有效的,但是也不是没办法的.比如说,随便弄10个DLL,然后用机器的
serial number产生一个hash,根据结果调用其中一个DLL,这样一来你调试的时候能看到
调用了哪个,结果移植到另一台机器上就是missing dll crash了.如果我把这几个文件
分散到不同的目录中,然后靠计算产生目录的名字,你就不那么好找了.然后你可能发现
移植的机器10台中随机的有一两台怎么都不好使,这就是tricks的目的:让随便不经允许
就移植的人的日子难过.

【在 x****u 的大作中提到】
: 可以搞个调试器动态监测,为了防这个小trick就不太够了。
avatar
A*s
39
弄不到啊
不过想想,俺以后要是回国鸟,公司有热点,家里有热点,地铁里也在建热点
基本ok了呵呵
无限yy中

【在 b*****e 的大作中提到】
: 所以需要sero...
avatar
m*p
40
it's already done, i found matlab can't be distributed into agents.

【在 a****l 的大作中提到】
: 是的,调试器会更有效的,但是也不是没办法的.比如说,随便弄10个DLL,然后用机器的
: serial number产生一个hash,根据结果调用其中一个DLL,这样一来你调试的时候能看到
: 调用了哪个,结果移植到另一台机器上就是missing dll crash了.如果我把这几个文件
: 分散到不同的目录中,然后靠计算产生目录的名字,你就不那么好找了.然后你可能发现
: 移植的机器10台中随机的有一两台怎么都不好使,这就是tricks的目的:让随便不经允许
: 就移植的人的日子难过.

avatar
x*u
41
人家都是clean安装后比较目录的。

【在 a****l 的大作中提到】
: 是的,调试器会更有效的,但是也不是没办法的.比如说,随便弄10个DLL,然后用机器的
: serial number产生一个hash,根据结果调用其中一个DLL,这样一来你调试的时候能看到
: 调用了哪个,结果移植到另一台机器上就是missing dll crash了.如果我把这几个文件
: 分散到不同的目录中,然后靠计算产生目录的名字,你就不那么好找了.然后你可能发现
: 移植的机器10台中随机的有一两台怎么都不好使,这就是tricks的目的:让随便不经允许
: 就移植的人的日子难过.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。