由买买提看人间百态

topics

全部话题 - 话题: dom
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
d**********x
发帖数: 4083
1
来自主题: JobHunting版 - 准备总结一下design pattern了
都看工作领域。。。
visitor我手边的例子就是解析网页之后,遍历dom tree然后将class为ooxx的元素
handle全部提出来,或者对这些种类的元素做某些改变

inorder
p*****2
发帖数: 21240
2
来自主题: JobHunting版 - 准备总结一下design pattern了

请问你怎么将dom tree里的class变为visitable的呢?
p*****2
发帖数: 21240
3
来自主题: JobHunting版 - 准备总结一下design pattern了

我刚才就是看了wiki的例子。你的TreeNode需要加入accept函数,而且他们应该
implement一个visitable的interface。因为你访问的是DOM tree,所以我想知道你如
果加入accept函数进去的。
p*****2
发帖数: 21240
4
来自主题: JobHunting版 - 准备总结一下design pattern了

这样呀 明白了 dom实现了visitor了
p*****2
发帖数: 21240
5
先打个草稿
首先,GoF设计模式要解决的问题不少都是因为OO不承认全局变量和函数造成的。
其次,设计模式的三个准则:中意与组合而不是继承, 依赖于接口而不是实现,高内
聚低耦合
第三,设计模式分为creational, structural, behaviroal。
Strategy: OO不承认函数造成的
Decrator: 就是平时常常提到的wrapper, 也属于中意与组合而不是继承
Factory: 感觉是纯OO的东西。Factory method有两种,一种是effective Java里谈的
,一种是GoF里谈的,我觉得都属于design pattern的范畴,但是要注意区分。因为平
时所说的DP一般指GoF,但是我感觉前者可能更常用,所以这个比较容易confused。面
试比较容易考到,感觉应该跟面试官说清楚。
Observer: 太常用了,平时见到的什么event,notification都是这个pattern。
Chain of Responsibility: 一看就想到了exception。除此之外,貌似driver的stack
也是这个意思。
Singleton:... 阅读全帖
M*****8
发帖数: 17722
6
【 以下文字转载自 Military 讨论区 】
发信人: MB80528 (肥猫(Contrarian)[食MM而肥]), 信区: Military
标 题: Re: 2013年7月9日最新的1688个看跌的股票。
发信站: BBS 未名空间站 (Tue Jul 9 22:18:23 2013, 美东)
2013年7月9日最新的1688个看跌的股票。
多数到顶。墙街已深入插管,吸血在即。
排列依次为,号码,股票符号,收市价。
#0001, A , 44.6000
#0002, AA , 7.9010
#0003, AAGIY , 17.1600
#0004, AAMRQ , 4.7300
#0005, AAN , 28.9700
#0006, AAON , 24.7400
#0007, AAP , 83.2000
#0008, AAUKY , 9.5300
#0009, ABAX , 50.2800
#0010, AB... 阅读全帖
s*********t
发帖数: 1663
c*********l
发帖数: 3438
8
【 以下文字转载自 Military 讨论区 】
发信人: dragoncity (dragoncity), 信区: Military
标 题: 纽约时报:Twitter上市将催生大批千万富翁
发信站: BBS 未名空间站 (Sun Sep 15 20:05:10 2013, 美东)
导语:《纽约时报》网络版本周刊登题为《万众期待的Twitter发薪日》(The Payday
at Twitter Many Were Waiting For)的文章称,Twitter本周宣布已提交IPO(首次公开
招股)文件。Twitter的上市将使许多人成为千万富翁,其中包括Twitter的3名联合创始
人、早期投资方,以及公司最初的员工。
以下为文章全文:
2007年6月,埃文·威廉姆斯(Evan Williams)正在为自己创立的互联网通信服务
Twitter寻找投资人。他已经与硅谷一些知名投资人签订了协议,但仍然向老友迪克·
科斯特洛(Dick Costolo)发出一封邮件,询问他是否有意投资2.5万至10万美元。科斯
特洛当时刚刚将自己的公司出售给了谷歌。
在收到邮件的3分钟之后,科斯特洛回... 阅读全帖
e*****t
发帖数: 1005
9
来自主题: JobHunting版 - 敢问三爷现在学什么呐?
okay, 我知道你说什么了。这个是client side same origin policy.
放这些header,可以allow执行在foo.example domain上的javascripts access 这个页
面,以及它的DOM and etc.否则,虽然人在浏览器里可以看到(如果不是ajax call),但
javascripts是没法访问的。
这个跟我之前讨论的还是不完全一样的。
b***e
发帖数: 1419
10
来自主题: JobHunting版 - 与 Java 相比,Ruby 有啥优势?
第一,你应该意识到,node.js是唯一值得在GC效率上值得考虑的,因为其后端服务器
上的应用。Browser side JS的Garbage collection效率本来也没什么关系。其道理就
跟PHP一样,每个page都是short life cycle process/thread(depending on browser
implementation). 即使是single page architecture, 一般一个page也不会运行很长
时间。而且browser一般都是单机执行在个人的终端上,有独享的CPU和内存支持。以现
今个人计算机终端的硬件支持和运算能力,前台的JS所要考虑的根本就不在执行效率上
,而是主要在软件工程上,即生产效率,可维护性,可扩展性和可重用性。在实践的意
义上讲,v8 === JS engine。
第二,跨平台的问题总是有的。微软在这个问题上一向是做负贡献的。即使是Java也曾
经有过一个J++。对于Javascript,也曾有过一个JScript。不过这些在历史的洪流中已
经被淘汰了,就像Java Applet和Java Swing这种垃圾一样... 阅读全帖
b****y
发帖数: 169
11
来自主题: JobHunting版 - 招聘启事 (Java Developer)
【 以下文字转载自 Java 讨论区 】
发信人: binary (erazer), 信区: Java
标 题: 招聘启事
关键字: java 招聘
发信站: BBS 未名空间站 (Mon Feb 24 04:12:25 2014, 美东)
这是一个国内上市公司在美国投资的“startup”,准备拓展美国市场,在美国上市。
地点在Santa Clara.
有兴趣给我站内发信吧。我们要招3-5个人,最好能local,交流方便一点。
Description:
Design, develop, optimize customer-facing and internal tools to manage a
global network system that is reliable, scalable, and easy to use
Implement high quality code in an agile SW development environment
Produce and maintain accurate, high quality technical and syste... 阅读全帖
B***S
发帖数: 73
12
来自主题: JobHunting版 - .Net developer内推
1. Location: Cloumbus, Ohio
2. 2-4 years's of experience developing web applications with
•ASP.NET
•C#.
•Client side behavior (JavaScript, DOM, JQuery, etc.).
•Web Forms (not MVC)
•Microsoft SQL Server.
3. Excellent verbal communication is crucial in our office
Desired skills -
Some experience with:
•HTML, XHTML, and CSS
•LINQ to SQL
•LINQ to Objects
•design patterns
w*****a
发帖数: 81
13
【 以下文字转载自 JobMarket 讨论区 】
发信人: wenniya (wenniya), 信区: JobMarket
标 题: Zuora北京招聘Senior Java Developer, Techops Manager等多个职位
关键字: Java,SAAS,Operation,UI,QA
发信站: BBS 未名空间站 (Wed Jun 18 23:10:25 2014, 美东)
公司简介
我们是Zuora(祖睿科技), 目前硅谷最热门的SaaS公司。由来自Salesforce和Cisco (
WebEx)的资深SaaS人士创建。
Zuora正改变着世界——Zuora的计费平台通过云计算提供定价、计量、计费服务。
Zuora的使命是为全世界具有在线订用业务的公司提供服务。
仅仅7年,Zuora实现了每年400%的增长,完成了共计13000万美元来自顶级风投的融资
,定义了订阅式经济模式,研发出了卓越的产品——包括Z-Finance、Z-Billing、Z-
Payment、Z-Revenue等产品。
现诚聘Senior Java Devleoper, Technical... 阅读全帖
H********e
发帖数: 5
14
来自主题: JobHunting版 - 急聘: Senior front-end engineer in SF
招聘流程很快,真的是急需
有兴趣的请发简历到
[email protected]
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
下面是公司简介和职位要求:
Healthline Networks, 100多人的小公司在SF,
UI组也不大<10,
UI的projects比较多,
Career空间比较好,
有很大机会成为Team Lead,
... 阅读全帖
w******f
发帖数: 620
15
来自主题: JobHunting版 - Life time block 一个阿三
上周一个阿三来公司面试,front end 职位,这个阿三上来就指点江山,JavaScript
的几大framework,结论是angular js最好, 他自吹是大拿,好吧,先上closure ,看丫
是不是真懂,结果他连基本概练都说不清楚,然后让他用JavaScript traverse dom,
print text nose,亚的一点都不会还净跟我扯别的,我只好把function signature 都
写好,让他写,最后他只能说不会。
Debrief 的时候,我投票是 strong not inclined, 并提议把recycle time 定位life
time,并成功说服bar raiser 同意我的提议。
h*****7
发帖数: 6781
16
来自主题: JobHunting版 - Life time block 一个阿三
可以lifetime block?lz做得好,不过这hr好听话啊

丫是不是真懂,结果他连基本概练都说不清楚,然后让他用JavaScript traverse dom,
P**********r
发帖数: 755
17
来自主题: JobHunting版 - 店面最怕三哥说这个词
以前办公室老孟,给人打电话报自己邮箱,说d as dom。。。解释了好几遍最后人才知
道是t,笑死了
x*****p
发帖数: 1707
18
Title: Java Web UI Developer
Term: full-time
H1-B sponsorship: Yes
Location: Princeton, NJ
Required Skills and Qualifications:
• Bachelor’s degree or higher in Computer Science or related
fields
• Must have at least 2 years of hands on experience in web design
and development
• Expert in HTML, CSS, JavaScript, jQuery and AJAX
• Hands on experience in HTML5 and CSS3, especially be able to
solve cross-browser problems
• Must have a clear understanding ... 阅读全帖
x*****p
发帖数: 1707
19
来自主题: JobHunting版 - Full time Web UI developer
Title: Java Web UI Developer
Term: full-time
H1-B sponsorship: Yes
Location: Princeton, NJ
Required Skills and Qualifications:
• Bachelor’s degree or higher in Computer Science or related
fields
• Must have at least 2 years of hands on experience in web design
and development
• Expert in HTML, CSS, JavaScript, jQuery and AJAX
• Hands on experience in HTML5 and CSS3, especially be able to
solve cross-browser problems
• Must have a clear understanding ... 阅读全帖
S******k
发帖数: 113
20
来自主题: JobHunting版 - MD, Oracle developer, 4+ years experience
Looking for an Oracle Apex Developer for a government agency IT
modernization effort. The job is located in Rockville Maryland with easy
access to Metro Station. The candidate should be an expert in Oracle
Application Express (APEX) development and Oracle PL/SQL development and has
Strong UI/Presentation design and development skills. 4+ years demonstrable
experience in APEX is required while experience in federal environment is
preferable but not required.
Responsibilities
The candidate will be... 阅读全帖
h****e
发帖数: 374
21
来自主题: JobHunting版 - 你们遇到过限时做project的面试吗
我面过一个js的职位,题目是在24小时内写出一个html parser,不能用第三方库,要
求把dom以json格式输出。
n********e
发帖数: 1630
22
【 以下文字转载自 biojailbreak 俱乐部 】
发信人: nolovefate (nolovefate), 信区: biojailbreak
标 题: 转行求分析web developer的工作
发信站: BBS 未名空间站 (Fri Nov 13 02:03:38 2015, 美东)
看了很多bootcamp,每个都方向不一样。其中一个是app academy,下面是12周的
schedule。能不能请懂行的人分析一下呢。我生物博后,不太懂这些。听说web dev前
景在计算机里面也是一般的。 不知道大家建议学吗?
另外一个我感兴趣的就是data science,需要统计,python,ML,SQL 我觉得也可以。
不知道大家有什么建议?
谢谢了
不胜感激
SCHEDULE
Week 1
Ruby + Object-Oriented Design
Basic + Intermediate Ruby
Object-Oriented Design
File I/O
Basic Algorithms + Data Structures
Code Quality
Week 2
R... 阅读全帖
f*******r
发帖数: 976
23
湾区到处都是烙印攻城略地的消息,哀嚎遍野。给大家转发点正能量,最近高盛提拔了
一批managing directors。其中有些烙印,但是老中比烙印多,很多姓Chen, Chan,
Liu,Li的。给大家涨涨士气,提高斗志!革命尚未成功,大家仍需团结,更需努力!
http://www.businessinsider.com/goldman-managing-director-list-2
Goldman Sachs has promoted 425 people to managing director, making it the
firm's largest class ever.
"Our new Managing Directors represent the best of our firm’s dedication to
excellence, leadership and client service, and we wish them continued
success in their careers," Goldman CEO Lloyd Blankfein sai... 阅读全帖
j***y
发帖数: 1640
24
来自主题: JobHunting版 - IT小公司要求真高。
面试一小公司,fresh cs master 只给 70-75k 左右,还是东部生活费用高的地方。
面试 要求真的高,从java 的基础知识,到数据库设计,到 spring 框架如何 wire
beans, stream handling, CSS 如何选DOM 的elements, 通通问了一遍。 算法是
leetcode 里290题以后的难题, 最后是一OOP设计题也很刁装。 然后还不sponsor H1-
B. 俺也只能叹息。。。。

G***o
发帖数: 5158
j**********g
发帖数: 204
26
这是job description
1. Sr. Front End Engineer, Software Apps
Job Summary
At Apple, we work every day to create products that enrich people’s lives.
Our Advertising Platforms group makes it possible for people around the
world to easily access informative and imaginative content on their devices
while helping publishers and developers promote and monetize their work.
Our technology and services power advertising in Apple News and Search Ads
in App Store. Our platforms are highly-performant, deploye... 阅读全帖
L***s
发帖数: 1148
27
来自主题: JobHunting版 - Google Full Stack考什么?
我没有争取到 G 家的面试机会,
但就我面其他家 full stack 的经历来看,
前端 h5、css、js 是要准备的,
native DOM API 也要熟悉一下。
比如让你实现 drag & drop、
写一个通用的时间监听器,
纯 css 画图形(三角形、星星,等等),
再如对 js 的 prototype 和 closure 的理解。
A*******5
发帖数: 690
28
update:简直欺人太甚,我要找律师了。HR 居然不管不顾地站在老印一边,给我发邮
件不许我work onsite,还给我规定不合理的任务,我以前就拒绝过Angular2,因为它
在我们支持的IE11上根本不work,连老印manager都承认过。欺人太甚!
我找到了7月份的Jira记录,我在下面明确写了IE11不work,HR的那封邮件是
Retaliation的直接证据,
以前我还可怜HR,不想让她受牵连,好心没好报,这次跟老印一锅端吧
----------------------------------------------------------------------------
-----
Update: 周一我要去纽约的EEOC, 当面file charge,目前看来律师费是不用了,如果
我自己搞不定,再请律师也行。
感谢提供这方面信息的热心朋友。我自己在网上research,综合律师咨询的信息。搞懂
了这个流程。给需要的朋友做参考,以后有遇到这种破事的朋友,可以找我。
第一, EEOC 是 U S Equal Employments opportunities co... 阅读全帖
A*******5
发帖数: 690
29
看来您是内行,的确,我一直在前端,其实gulp 和 node 都不能算前端了,我自己写
的扫描app,recursively 扫描所有 Dom 的 ID已经innerHTML,自动生成properties
file,所以在业务上我还是有自信的,也喜欢这块。

:跳槽吧 何必忍着呢。
A*******5
发帖数: 690
30
10/30/17 update:
刚才在我个人邮箱发现一封邮件,HR发过来的termination letter,说是因为
我不签那个offer。
然而那个offer是18年1月才生效,上面还注明我原来的offer会在今年年底12月31号终
结,从来也没说立刻终止啊。上周五我解释了我不签的原因以后,HR的回复说不签会被
视为constructive resign, will lead to termination accordingly。根本没提立即
termination。再说也不能因为不签明年的offer就立马终止今年的employment啊,
contractor都没有这样的。我算见识了什么叫low了。
----------------------------------------------------------------------------
---
10/06/17 Update:刚才看见烙印在我关闭了的以前Angular2的project底下疯狂留言
几乎语无伦次地胡说八道,给了不相干的链接说Angular2支持某个platform,跟我有毛
关系啊。
又说Ang... 阅读全帖
A*******5
发帖数: 690
31
看来您是内行,的确,我一直在前端,其实gulp 和 node 都不能算前端了,我自己写
的扫描app,recursively 扫描所有 Dom 的 ID已经innerHTML,自动生成properties
file,所以在业务上我还是有自信的,也喜欢这块。

:跳槽吧 何必忍着呢。
A*******5
发帖数: 690
32
来自主题: JobHunting版 - 谁说前端简单的 我宁愿刷题

现在流行的是Vue.js? 不过可以理解,Angular1只有一部分人买账,当然在没有对比过
Angular2的时候,后者匆匆收尾就跳到Angular4,连平台也变了,抛弃了Angular-cli
,目前好像也没什么人买账。react还可以,但是其名声有被夸大的嫌疑,它用来做新
项目还好,可是和老项目对接起来代价太大,甚至超过Angular,因为它绕不开DOM 模
版,用任何方法都绕不开,也没有官方或野生的插件来减轻工作量。jquery 屹立江湖
多年,唯一被广泛抱怨的就是它debug起来太烦,Angular也有这方面问题。前端更新快
,不过学起来也快阿。那些怎么也学不好的,估计很快就被淘汰了。。。
l****u
发帖数: 1764
33
来自主题: JobHunting版 - 谁说前端简单的 我宁愿刷题
学的是快 但学完没多久又得重新学习新玩具,不觉得神烦么?你5年工作经验和一个0.
5年工作经验的对一个新玩意熟悉程度一样,因为你前面4.5年学的其他东西已经过时了

[在 AmABB2015 () 的大作中提到:]
:现在流行的是Vue.js? 不过可以理解,Angular1只有一部分人买账,当然在没有对比
过Angular2的时候,后者匆匆收尾就跳到Angular4,连平台也变了,抛弃了Angular-
cli
:,目前好像也没什么人买账。react还可以,但是其名声有被夸大的嫌疑,它用来做新
:项目还好,可是和老项目对接起来代价太大,甚至超过Angular,因为它绕不开DOM 模
:版,用任何方法都绕不开,也没有官方或野生的插件来减轻工作量。jquery 屹立江湖
:多年,唯一被广泛抱怨的就是它debug起来太烦,Angular也有这方面问题。前端更新
快,不过学起来也快阿。那些怎么也学不好的,估计很快就被淘汰了。。。
A*******5
发帖数: 690
34
来自主题: JobHunting版 - 谁说前端简单的 我宁愿刷题

我没说过前端不考算法啊,我们前端也要用到算法的,DOM的层状结构,或者表格的树
状结构等等,我们会用jiavascript 刷recursive, permutation, combination的那
些题。
A*******5
发帖数: 690
35
来自主题: JobHunting版 - 想问下前端形式如何


看来遇到同道中人了,对的,其实前端也有system design的,前端的要求是完美,很
多bug其实是cross browser issue 或者responsive造成的,不是code 自身的问题而是
browser不同定义,参数和handler造成的不同,举个简单的例子,同样是table,在IE
上和其他browser显示会不同,和多层DOM Element 叠加就有可能造成巨大不同。
server response time 非常重要,因为前端控制不了但是必须考虑在内。有些browser
对同一时间的http 请求是有限制的,超过会crash,基本上我想说的这位朋友都说了。
。。
a*****e
发帖数: 21
36
Frontend Engineer的Job description
MoneyLion is looking for a well-rounded front end developer that is
proficient in creating engaging experiences and is familiar with all aspects
of product development from ideation to implementation. You will play a
critical part in the design, implementation, testing, and deployment of our
consumer facing products, you will be instrumental in the architecture and
implementation of products handling millions of dollars' worth of financial
transactions. Our tech... 阅读全帖
s****u
发帖数: 375
37
不常上论坛,用老婆的ID发个内推帖子
Conviva急需一个experienced UI engineer,公司在foster city, CA
我个人经验base给的不低,至于上市前景请自己斟酌,我不做评论
下面是HR发给来的职位要求。有兴趣的xdjm请简历到 sunshiwu08 at gmail dot com
/×××××××××××××××
As a UI focused Web Application Developer, your work will elegantly
visualize the real-time performance of billions of online video streams per
month, helping to improve the viewing experience for millions of viewers
watching content from hundreds of premium providers all over the globe. This
is big data with a capital B ... 阅读全帖
t*****k
发帖数: 390
38
来自主题: JobHunting版 - 一道gg面经题
facebook有类似题,是一个长string然后convert成dom tree
f****d
发帖数: 75
39
来自主题: JobMarket版 - Java Positions in Atlanta GA
There are two Java Developer openings in Atlanta GA. Green card or citizen
is required. If interested please email me your resume at irischen26@gmail.
com.
1)Need an experienced Java developer
Requirements:
4+ years of Java development experience.
J2EE, Web Service
Web Server/ Application Server experience (WebSphere preferred)
JSP, Servlet development, JDBC, SQL
Helpful skills:
Swing
XML-RPC Server
Log4j
Experience in configuration and development using MQSeries.
Some Unix command and scripting... 阅读全帖
g****y
发帖数: 3
40
如果你看好电子商务的未来,
如果你有志于成为互联网测试领域的业务专家或技术专家,
如果你对广告竞价排名,搜索引擎的匹配排序,分布式存储和计算,海量数据挖掘,
CDN等核心系
统,新业务等前沿的技术感兴趣,
亚洲第一的购物网站——淘宝网期待你的加入!
以下职位招聘人数不限。软件测试开发工程师职位主要面向2011年毕业的应届生,高级
软件测试开发
工程师和测试架构师主要面向社会招聘人员。
有意者请在3月11日之前发送简历至邮箱 gongzhi#taobao.com(请把#替换为@)。我们
会在截至
日期之后尽快通知简历通过的候选人来淘宝公司参加笔试和面试。
职位1 - 软件测试开发工程师(SDET)
部门:淘宝-技术研发部-广告技术-测试
工作地点: 北京/杭州
工作职责
- 参与互联网软件产品的测试,包括参与需求和设计评审,设计和执行测试用例,进行
缺陷跟踪等
- 开发和维护自动化测试脚本和工具,提升测试的质量和效率
- 执行软件产品的性能测试并分析结果
- 可能涉及的工作领域包括广告业务系统,广告投放引擎和算法,淘宝新业务系统,淘
宝搜索引擎和
匹配排序算法,分布式存储和CDN等核心系... 阅读全帖
d***n
发帖数: 39
41
网络个人理财公司, 在DC downtown
Job Description:
Description:
We seek solid Java developers who do not shy away from challenges. We’re a
fun and dynamic startup, with a team of people who work together on
everything from the latest AJAX front-end technologies to superb database
design. If you join our team, you’ll work in our agile engineering group,
contributing your expertise to all aspects of the software.
Required Skills/Experience
3-5 years experience developing commercial quality Web applicatio... 阅读全帖
b******n
发帖数: 66
42
来自主题: JobMarket版 - Software opening in eBay Seattle
eBay Seattle position, 可以sponsor h1b, 有兴趣的话PM我。要求如下:
Primary Job Responsibilities:
Can you bring the ideas, energy, and dedication needed to reach and engage
the next 100M eBay users? The Traffic team is responsible for the systems
and algorithms powering all of eBay''s advertising, as well as its affiliate
program and outbound e-mail. The E-Mail team in Traffic is hiring!
We are seeking a highly motivated engineer to enhance and support eBay’s
email platform.
In this role, you will :
Design and... 阅读全帖
b******n
发帖数: 66
43
来自主题: JobMarket版 - Software opening in eBay Seattle
eBay Seattle position, 可以sponsor h1b, 有兴趣的话PM我。要求如下:
Primary Job Responsibilities:
Can you bring the ideas, energy, and dedication needed to reach and engage
the next 100M eBay users? The Traffic team is responsible for the systems
and algorithms powering all of eBay''s advertising, as well as its affiliate
program and outbound e-mail. The E-Mail team in Traffic is hiring!
We are seeking a highly motivated engineer to enhance and support eBay’s
email platform.
In this role, you will :
Design and... 阅读全帖
s******a
发帖数: 12
44
来自主题: JobMarket版 - Lead JavaScript Engineer
About Us: We are an early-stage financial technology startup which is
changing the way people manage their money. The founders have a background
that spans large scale system development, trading and portfolio management,
quantitative finance, and economics. It's this unique mix of skills and
reach in these industries that gives us a different perspective on how to
build a platform that helps people understand and make life decisions about
their finances. We are extremely well-funded with very p... 阅读全帖
v********d
发帖数: 3531
45
来自主题: JobMarket版 - 懂UI设计的美工 (San Gabriel)
找美工 网页制作。求全职。需要懂ps。css。git 和300psi。和色彩搭配 美感! 可
以考虑客户感受!
要求: 中文文字功底扎实。有丰富的活动组织经验。人缘好。人见人爱,最好。
你需要做的是推广我们的网站和我们以后的应用。需要做 facebook 广告推广,
google adword 推广。
前端设计开发人员的基本需求
工作职责:
1. 设计并实现Web界面,优化代码并保持良好兼容性;
2. 配合程序开发人员实现web app开发;
任职技能:
1、熟练使用HTML5/CSS3,能独立设计布局Web页面;
2、熟悉DOM、JS、ajax等前端开发技术及框架(如jQuery等),能独立编写javascript
脚本;
3、熟练实现HTML5 Web应用,兼容各大浏览器(IE,Firefox,Chrome,Safari);
4、一年以上网站页面开发设计经验(有Android、iOS架构下移动设备Web开发设计经验
优先)
5、有成功的案例者优先。
其他技能要求:
1、 工作认真细致,有责任心,具备良好的团队沟通与协作能力。
2、 优秀的自我学习能力。
我们的网站是 www.tax... 阅读全帖
v********d
发帖数: 3531
46
来自主题: JobMarket版 - 懂UI设计的美工 (San Gabriel)
找美工 网页制作。求全职。需要懂ps。css。git 和300psi。和色彩搭配 美感! 可
以考虑客户感受!
要求: 中文文字功底扎实。有丰富的活动组织经验。人缘好。人见人爱,最好。
你需要做的是推广我们的网站和我们以后的应用。需要做 facebook 广告推广,
google adword 推广。
前端设计开发人员的基本需求
工作职责:
1. 设计并实现Web界面,优化代码并保持良好兼容性;
2. 配合程序开发人员实现web app开发;
任职技能:
1、熟练使用HTML5/CSS3,能独立设计布局Web页面;
2、熟悉DOM、JS、ajax等前端开发技术及框架(如jQuery等),能独立编写javascript
脚本;
3、熟练实现HTML5 Web应用,兼容各大浏览器(IE,Firefox,Chrome,Safari);
4、一年以上网站页面开发设计经验(有Android、iOS架构下移动设备Web开发设计经验
优先)
5、有成功的案例者优先。
其他技能要求:
1、 工作认真细致,有责任心,具备良好的团队沟通与协作能力。
2、 优秀的自我学习能力。
我们的网站是 www.tax... 阅读全帖
b****y
发帖数: 169
47
来自主题: JobMarket版 - 招聘启事 (Java Developer)
【 以下文字转载自 Java 讨论区 】
发信人: binary (erazer), 信区: Java
标 题: 招聘启事
关键字: java 招聘
发信站: BBS 未名空间站 (Mon Feb 24 04:12:25 2014, 美东)
这是一个国内上市公司在美国投资的“startup”,准备拓展美国市场,在美国上市。
地点在Santa Clara.
有兴趣给我站内发信吧。我们要招3-5个人,最好能local,交流方便一点。
Description:
Design, develop, optimize customer-facing and internal tools to manage a
global network system that is reliable, scalable, and easy to use
Implement high quality code in an agile SW development environment
Produce and maintain accurate, high quality technical and syste... 阅读全帖
w*****a
发帖数: 81
48
公司简介
我们是Zuora(祖睿科技), 目前硅谷最热门的SaaS公司。由来自Salesforce和Cisco (
WebEx)的资深SaaS人士创建。
Zuora正改变着世界——Zuora的计费平台通过云计算提供定价、计量、计费服务。
Zuora的使命是为全世界具有在线订用业务的公司提供服务。
仅仅7年,Zuora实现了每年400%的增长,完成了共计13000万美元来自顶级风投的融资
,定义了订阅式经济模式,研发出了卓越的产品——包括Z-Finance、Z-Billing、Z-
Payment、Z-Revenue等产品。
现诚聘Senior Java Devleoper, Technical Operation Manager, Senior QA Engineer
, UI Design Engineer等多个职位
联系方式: s********[email protected]
skype: tracygraduate
www.zuora.com
Senior JAVA Developer
Job Description:
1. Design and develop Zuora’s next... 阅读全帖
s***h
发帖数: 88
49
Location: Alpharetta, GA
• Bachelors Degree
• 5+ years experience in web development or software engineering
• Must have Java or JavaScript experience
• Significant experience with web programming languages and tools,
HTML5, JavaScript, CSS, DOM, Ajax, Web Service, JSON, XML/XSLT, etc
• Familiar with enterprise database technologies, Oracle, MS SQL, etc
a plus
• Experience with SQL and/or SQL/PL programming skills a plus
• Experience with portal technolo... 阅读全帖
j*****e
发帖数: 38
50
来自主题: JobMarket版 - Web Developer at Baltimore Area
The Web Developer position will be responsible for the development of web
applications, mobile web based applications, interoperability of existing
and new association digital infrastructure, and other digital products.
Analytical capabilities and experience and clean efficient code development
are a must, with a drive to find the best solution to challenges. Designing
application architectures; Research and evaluate emerging technologies.
A developer who writes understandable code that is stand... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)