Redian新闻
>
报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业 (转载)
avatar
报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业 (转载)# EE - 电子工程
k*e
1
工作时间:02:00-06:00,每周至少工作3天
工作地点:24 Denby Rd,Boston,MA, 02134
时薪: $14
要求:  普通话流利,英语水平能看懂仪器/软件操作界面即可
联系电话:510-423-1087(肖先生)
简介:  Quintarabio是一家以DNA测序为主要业务的生物技术服务公司,总部设
在加州,此次招聘的是波士顿分部。波士顿分部主要服务各大学及研究所,以夜间反应
为主,以服务时间灵活为特色,承诺16小时交付测序报告。建立一年半以来业务扩展
速度较快,现招聘夜间技术员。有意者请电话咨询。谢谢。
avatar
j*b
2
坚持到现在,真难得。值得敬佩
avatar
r*y
3
劳力有时是挺好的劳心途径。简单重复的体力活是内心的需要。
--手工修改PDF目录有感。
avatar
s*e
4
如图,就是在底下的那个灰色窗口,不知道怎么搞的弄得比屏幕还长... 现在就没办法把它缩小了,,
因为光标怎么往下面移动也点不到最右下角那个用来控制窗口大小的小区域。。。真是抓狂~请问谁有办法么?先谢过。
avatar
a*n
5
楼主又来了。
这个学期有一个帮别的教授作研究的机会,作network analysis/simulation。这个
project比自己本身做的当然要近得多了,但是楼主想再次弱问一下,因为对这个领域
完全没有了解,这个研究对转CS有帮助么?
avatar
r*h
6
在看Programming interview exposed
不太明白里面讲link list插入新head的程序的例子.给出2个例子,书上说第一个是错的
,第二个才对.不明白为什么必须用**head而不是*head,难道head本身做为pointer pass
给函数不改变指针的内容吗? 请帮忙讲解一下,谢谢!
For example, the following code is incorrect because it fails to update the
head pointer in the calling function:
int BadInsert(element *head)
{
element *newElem;
newElem = (element *) malloc(sizeof(element));
if (!newElem) return 0;
newElem->next = head;
head = newElem;
return 1;
}
The correct way to update the head pointer in C is to pass a pointer to the
head pointer, allowing you to modify the calling function's pointer to the
first element, as shown here:
int Insert(element **head) {
element *newElem;
newElem = (element *) malloc(sizeof(element));
if (!newElem) return 0;
newElem->next = *head;
*head = newElem;
return 1;
}
avatar
w*s
7
【 以下文字转载自 JobHunting 讨论区 】
发信人: IceBergkamp (子王冰), 信区: JobHunting
标 题: 报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业
发信站: BBS 未名空间站 (Thu Sep 23 22:45:27 2010, 美东)
长时间潜水本版,受益匪浅,今天拿到offer, 回馈本版,奉上面经。
本人背景: 烂校EE小硕(只上课不用写论文那种), 电磁场与微波技术方向,没任何
工作经验(这个方向在美国基本都要citizen和security clearence),编程方面用过
一点点matlab,还是为了应付作业, 对编程没有任何兴趣,根本不知道java是什么东西
,所以也不会。
拿到的是东海岸一家很大的能源公司的RF Hardware Design Engineer. 找工作过程中
一共用了careerbuilder, dice,monster三个网站,基本是闭着眼乱投,唯一的标准就
是找只需要摁一下发送简历就可以投的公司,从来不去投那种需要注册无数信息的那种
。就这样很轻松的投了600多份简历,就幸
avatar
u*l
8
劳柯你好,许久不见。做这个版主其实很惭愧,时间有限,论坛日益式微,找人接手不
现实,勉力维持而已。向坚持认真写文章的网友致敬。
avatar
A*e
9
什么目录?

【在 r****y 的大作中提到】
: 劳力有时是挺好的劳心途径。简单重复的体力活是内心的需要。
: --手工修改PDF目录有感。

avatar
h*e
10
这东东困扰了我好一阵子,后来google出这个网页:
http://forums.macworld.com/thread/113130
似乎是跟用dropbox同步itune有关的bug

法把它缩小了,,
是抓狂~请问谁有办法么?先谢过。

【在 s*******e 的大作中提到】
: 如图,就是在底下的那个灰色窗口,不知道怎么搞的弄得比屏幕还长... 现在就没办法把它缩小了,,
: 因为光标怎么往下面移动也点不到最右下角那个用来控制窗口大小的小区域。。。真是抓狂~请问谁有办法么?先谢过。

avatar
a*n
11
对,追加一个问题。这个学期想选一一点先修课有助于申请。申请master的话先修课都
应该学什么呢?本科学过算法与数据结构,当然是面向广大理科生的所以比较初级,但
是成绩单上是有这门课了。还需要学什么呢?
avatar
j*a
12
int main()
{
element *head;
BadInsert(head);
GoodInsert(&head);
}

pass
the

【在 r***h 的大作中提到】
: 在看Programming interview exposed
: 不太明白里面讲link list插入新head的程序的例子.给出2个例子,书上说第一个是错的
: ,第二个才对.不明白为什么必须用**head而不是*head,难道head本身做为pointer pass
: 给函数不改变指针的内容吗? 请帮忙讲解一下,谢谢!
: For example, the following code is incorrect because it fails to update the
: head pointer in the calling function:
: int BadInsert(element *head)
: {
: element *newElem;
: newElem = (element *) malloc(sizeof(element));

avatar
s*7
13
con~
avatar
r*y
14
下载了一本诗经原始,目录全都指错了,又没有快捷键,只好拿着鼠标一个一个改。。。

【在 A*******e 的大作中提到】
: 什么目录?
avatar
s*e
15
haha it does work. thanks!

【在 h*******e 的大作中提到】
: 这东东困扰了我好一阵子,后来google出这个网页:
: http://forums.macworld.com/thread/113130
: 似乎是跟用dropbox同步itune有关的bug
:
: 法把它缩小了,,
: 是抓狂~请问谁有办法么?先谢过。

avatar
z*n
16
这个是纯EE。

【在 a*******n 的大作中提到】
: 楼主又来了。
: 这个学期有一个帮别的教授作研究的机会,作network analysis/simulation。这个
: project比自己本身做的当然要近得多了,但是楼主想再次弱问一下,因为对这个领域
: 完全没有了解,这个研究对转CS有帮助么?

avatar
f*y
17
bad insert gets a local copy of the head, and changes the local copy only.
The value in the calling function remains the same. With **, you get the
address of the outside pointer, and change the value in that address, so the
outside head pointer is changed.

pass
the

【在 r***h 的大作中提到】
: 在看Programming interview exposed
: 不太明白里面讲link list插入新head的程序的例子.给出2个例子,书上说第一个是错的
: ,第二个才对.不明白为什么必须用**head而不是*head,难道head本身做为pointer pass
: 给函数不改变指针的内容吗? 请帮忙讲解一下,谢谢!
: For example, the following code is incorrect because it fails to update the
: head pointer in the calling function:
: int BadInsert(element *head)
: {
: element *newElem;
: newElem = (element *) malloc(sizeof(element));

avatar
w*n
18
我也是电磁场方向,但是更加偏光而不是微波,本科是物理,原帖里面列的许多EE的问
题都不懂,但是有在一家FDTD软件公司工作过一段时间的经历。
不晓得如果明年去找工作能找到什么样的。
虽然我更想去申个phd

【在 w*********s 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: IceBergkamp (子王冰), 信区: JobHunting
: 标 题: 报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业
: 发信站: BBS 未名空间站 (Thu Sep 23 22:45:27 2010, 美东)
: 长时间潜水本版,受益匪浅,今天拿到offer, 回馈本版,奉上面经。
: 本人背景: 烂校EE小硕(只上课不用写论文那种), 电磁场与微波技术方向,没任何
: 工作经验(这个方向在美国基本都要citizen和security clearence),编程方面用过
: 一点点matlab,还是为了应付作业, 对编程没有任何兴趣,根本不知道java是什么东西
: ,所以也不会。
: 拿到的是东海岸一家很大的能源公司的RF Hardware Design Engineer. 找工作过程中

avatar
A*e
19
我把mp3加入iTunes的时候经常一个一个改名字,一次几十个上百个

。。

【在 r****y 的大作中提到】
: 下载了一本诗经原始,目录全都指错了,又没有快捷键,只好拿着鼠标一个一个改。。。
avatar
r*y
20
你的Finder背景是怎样设置的。
avatar
a*n
21
谢谢,其实不是电路,是供电/供水基础设施network优化,不过原理大概是一样的。那
有帮助么?

【在 z*****n 的大作中提到】
: 这个是纯EE。
avatar
X*r
22
A function does not change its arguments.
e.g.
void f(int x) {
x = 1;
}
void g(int* x) {
*x = 1;
}
int i = 0;
f(i);
// i is still 0 here.
g(&i);
// i is 1 now.
Same thing for linked list:
element *head = some_value;
BadInsert(head);
// head is still the same some_value
Insert(&head);
// now head contains the new value.

pass
the

【在 r***h 的大作中提到】
: 在看Programming interview exposed
: 不太明白里面讲link list插入新head的程序的例子.给出2个例子,书上说第一个是错的
: ,第二个才对.不明白为什么必须用**head而不是*head,难道head本身做为pointer pass
: 给函数不改变指针的内容吗? 请帮忙讲解一下,谢谢!
: For example, the following code is incorrect because it fails to update the
: head pointer in the calling function:
: int BadInsert(element *head)
: {
: element *newElem;
: newElem = (element *) malloc(sizeof(element));

avatar
d*d
23
#4-10的这些东西,哪本书讲的比较清楚,而且不是太detail?

【在 w*********s 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: IceBergkamp (子王冰), 信区: JobHunting
: 标 题: 报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业
: 发信站: BBS 未名空间站 (Thu Sep 23 22:45:27 2010, 美东)
: 长时间潜水本版,受益匪浅,今天拿到offer, 回馈本版,奉上面经。
: 本人背景: 烂校EE小硕(只上课不用写论文那种), 电磁场与微波技术方向,没任何
: 工作经验(这个方向在美国基本都要citizen和security clearence),编程方面用过
: 一点点matlab,还是为了应付作业, 对编程没有任何兴趣,根本不知道java是什么东西
: ,所以也不会。
: 拿到的是东海岸一家很大的能源公司的RF Hardware Design Engineer. 找工作过程中

avatar
g*1
24
分特,这么惨

【在 A*******e 的大作中提到】
: 我把mp3加入iTunes的时候经常一个一个改名字,一次几十个上百个
:
: 。。

avatar
s*e
25
点右键-show view options-background--picture

【在 r******y 的大作中提到】
: 你的Finder背景是怎样设置的。
avatar
r*h
26
那个function按传递指针的看的懂.下面的例子也知道.
element *head = some_value;
BadInsert(head);
// head is still the same some_value
Insert(&head);
// now head contains the new value
但问题是为啥head必须用2个*,我按下面这么理解吗?
element **head = some_value;
BadInsert(*head);
// head is still the same some_value
Insert(head);
// now head contains the new value

the

【在 f******y 的大作中提到】
: bad insert gets a local copy of the head, and changes the local copy only.
: The value in the calling function remains the same. With **, you get the
: address of the outside pointer, and change the value in that address, so the
: outside head pointer is changed.
:
: pass
: the

avatar
h*a
27
big赞,感谢分享!码字辛苦!中秋快乐!
avatar
r*y
28
不然乱码
看起来不乱,点一点就乱了

【在 g*******1 的大作中提到】
: 分特,这么惨
avatar
M*l
29
ei?为什么我的show view options里面没有background选项?

【在 s*******e 的大作中提到】
: 点右键-show view options-background--picture
avatar
d*n
30
**head is type of element **
point to a space with type element *
when you pass element ** , this double pointer not get modified, but the
space it is pointing to , element * get modified.
Therefore you need malloc for **head before call the function. otherwise, it
will be segmentation fault.

【在 r***h 的大作中提到】
: 那个function按传递指针的看的懂.下面的例子也知道.
: element *head = some_value;
: BadInsert(head);
: // head is still the same some_value
: Insert(&head);
: // now head contains the new value
: 但问题是为啥head必须用2个*,我按下面这么理解吗?
: element **head = some_value;
: BadInsert(*head);
: // head is still the same some_value

avatar
r*e
31
RF Circuit Design Theory and Applications
by Reinhold Ludwig and Pavel Bretchko

【在 d*******d 的大作中提到】
: #4-10的这些东西,哪本书讲的比较清楚,而且不是太detail?
avatar
m*g
32
windows下还是mac下?

【在 r****y 的大作中提到】
: 不然乱码
: 看起来不乱,点一点就乱了

avatar
s*e
33
在finder窗口上点右键,不是在桌面。

【在 M***l 的大作中提到】
: ei?为什么我的show view options里面没有background选项?
avatar
T*T
34
congrads..
avatar
r*y
35
mac下

【在 m*********g 的大作中提到】
: windows下还是mac下?
avatar
l*t
36
遇到楼主那种情况,最大化窗口也行.
avatar
G*0
37
con~
avatar
m*g
38
我正为这个烦呢。 有啥好办法没有?

【在 r****y 的大作中提到】
: mac下
avatar
z*a
39
Congrats !
avatar
r*y
40
哈哈,不知道啊,我没研究
需要发扬谷一的鸡蛋精神

【在 m*********g 的大作中提到】
: 我正为这个烦呢。 有啥好办法没有?
avatar
l*e
41
good
avatar
g*1
42
因为是中文?

【在 r****y 的大作中提到】
: 不然乱码
: 看起来不乱,点一点就乱了

avatar
l*n
43
请问楼主是什么时候毕业?今年Dec还是明年May?
avatar
r*y
44
是啊,mp3的tag信息

【在 g*******1 的大作中提到】
: 因为是中文?
avatar
l*z
45
remcom?

【在 w****n 的大作中提到】
: 我也是电磁场方向,但是更加偏光而不是微波,本科是物理,原帖里面列的许多EE的问
: 题都不懂,但是有在一家FDTD软件公司工作过一段时间的经历。
: 不晓得如果明年去找工作能找到什么样的。
: 虽然我更想去申个phd

avatar
A*e
46
为什么会乱码?

【在 r****y 的大作中提到】
: 不然乱码
: 看起来不乱,点一点就乱了

avatar
w*n
47
不是,中科院的一个新公司,算是半开发半技术支持的工作。

【在 l*****z 的大作中提到】
: remcom?
avatar
A*e
48
你也是搞有声读物?

【在 m*********g 的大作中提到】
: 我正为这个烦呢。 有啥好办法没有?
avatar
E*a
49
from questions asked, looks like this guys is better than a fresh, at least
on the fundamental knowledge wise, he is better than most fresh.
still, he is a lucky lucky guy anyway!

【在 w*********s 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: IceBergkamp (子王冰), 信区: JobHunting
: 标 题: 报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业
: 发信站: BBS 未名空间站 (Thu Sep 23 22:45:27 2010, 美东)
: 长时间潜水本版,受益匪浅,今天拿到offer, 回馈本版,奉上面经。
: 本人背景: 烂校EE小硕(只上课不用写论文那种), 电磁场与微波技术方向,没任何
: 工作经验(这个方向在美国基本都要citizen和security clearence),编程方面用过
: 一点点matlab,还是为了应付作业, 对编程没有任何兴趣,根本不知道java是什么东西
: ,所以也不会。
: 拿到的是东海岸一家很大的能源公司的RF Hardware Design Engineer. 找工作过程中

avatar
r*y
50
我是下载国内的音乐专辑

【在 A*******e 的大作中提到】
: 你也是搞有声读物?
avatar
g*t
51
这哥们说不定在国内考过研,东西都没忘。

from questions asked, looks like this guys is better than a fresh, at least
on the fundamental knowledge wise, he is better than most fresh.
still, he is a lucky lucky guy anyway!

【在 E*****a 的大作中提到】
: from questions asked, looks like this guys is better than a fresh, at least
: on the fundamental knowledge wise, he is better than most fresh.
: still, he is a lucky lucky guy anyway!

avatar
m*g
52
包括歌曲

【在 A*******e 的大作中提到】
: 你也是搞有声读物?
avatar
l*i
53
con!
avatar
g*1
54
我都任其乱码了,懒的改

【在 r****y 的大作中提到】
: 是啊,mp3的tag信息
avatar
a*j
55
Cong!
avatar
A*e
56
如果需要排顺序就不方便

【在 g*******1 的大作中提到】
: 我都任其乱码了,懒的改
avatar
y*c
57
cong
avatar
r*y
58
即使删掉乱码也比留着强
可是删掉的劳动强度也不小

【在 g*******1 的大作中提到】
: 我都任其乱码了,懒的改
avatar
f*5
59
不错,看到ee的分享了,job版都变成cs版了。。。

【在 w*********s 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: IceBergkamp (子王冰), 信区: JobHunting
: 标 题: 报offer。 烂校fresh MSEE,+无工作经验+不会编程+敏感专业
: 发信站: BBS 未名空间站 (Thu Sep 23 22:45:27 2010, 美东)
: 长时间潜水本版,受益匪浅,今天拿到offer, 回馈本版,奉上面经。
: 本人背景: 烂校EE小硕(只上课不用写论文那种), 电磁场与微波技术方向,没任何
: 工作经验(这个方向在美国基本都要citizen和security clearence),编程方面用过
: 一点点matlab,还是为了应付作业, 对编程没有任何兴趣,根本不知道java是什么东西
: ,所以也不会。
: 拿到的是东海岸一家很大的能源公司的RF Hardware Design Engineer. 找工作过程中

avatar
m*g
60
我在windows下先把tag批量删除

【在 r****y 的大作中提到】
: 即使删掉乱码也比留着强
: 可是删掉的劳动强度也不小

avatar
f*s
61
Congrats~~
过来粘粘喜气~~ EE 小硕找工作中...
avatar
A*e
62
这样就行了?

【在 m*********g 的大作中提到】
: 我在windows下先把tag批量删除
avatar
C*E
63
Cong~~
如果还招人恳请refer~~
avatar
m*g
64
刚发现把系统设置改成中文, 每在itune点击播放一个文件, 乱码有变成正常中文显
示了
居然还是可逆的

【在 A*******e 的大作中提到】
: 这样就行了?
avatar
m*c
65
不错,cong!
avatar
g*1
66
lol

【在 m*********g 的大作中提到】
: 刚发现把系统设置改成中文, 每在itune点击播放一个文件, 乱码有变成正常中文显
: 示了
: 居然还是可逆的

avatar
p*z
67
越是基础扎实,功力深厚的,越是谦虚,这年头去哪找不会编程的EE呀?不如CS而已。
avatar
A*s
68
都是些什么mp3?

【在 A*******e 的大作中提到】
: 我把mp3加入iTunes的时候经常一个一个改名字,一次几十个上百个
:
: 。。

avatar
E*a
69
真的不会。不过也从来不用。会了也没用啊!

【在 p*z 的大作中提到】
: 越是基础扎实,功力深厚的,越是谦虚,这年头去哪找不会编程的EE呀?不如CS而已。
avatar
m*g
70
情色

改。

【在 A*******s 的大作中提到】
: 都是些什么mp3?
avatar
d*2
71
cong~
avatar
A*e
72
田芳!

改。

【在 A*******s 的大作中提到】
: 都是些什么mp3?
avatar
r*n
73
厉害啊。很感动。我虽然是非烂校EE,
但是绝对是找不到的。
avatar
r*y
74
我的田芳都是1.mp3,2.mp3,...

【在 A*******e 的大作中提到】
: 田芳!
:
: 改。

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