z*******3 发帖数: 13709 | 1 随手点的,你看我猜得对不对?
http://jobs.constantcontact.com/us/bay-area/javascript/jobid356
About You:
You’ve built web applications built on distributed service architecture (
RESTful, preferably)
In-depth experience with Javascript, HTML, CSS, libraries like jQuery,
Prototype, Dojo
Exceptionally strong communication and interpersonal skills
Experience with Agile Software Development and Continuous Integration/
Deployment
Master Craftsperson-like commitment to quality software...you deeply care
about being ... 阅读全帖 |
|
|
n****1 发帖数: 1136 | 3 一直没有找到prototype下面较好的封装方案, 网上教程大多是用function closure来
实现, 但这就意味着每个object的method都是个独立的private copy, 所以object所
占用的内存大很多。
二爷能讲讲prototype-based paradigm下面的封装么? |
|
l**********n 发帖数: 8443 | 4 prototype就是class definition. function 就是constructor, own properties就是
static properties。为什么要把method assign到object了,这样浪费内存。assign给
prototype不就得了? |
|
p*****2 发帖数: 21240 | 5 http://queue.acm.org/detail.cfm?id=2567673
信息量太大了。
We did some prototyping with Ruby and Python using the evented frameworks
EventMachine and Twisted. The bottom line was that Node proved to be 2-5
times faster than both of those in terms of raw throughput. What was even
more exciting and really sold us on Node was that it took only two or three
hours to write the Node prototype while it took us more on the order of a
day or two to write the EventMachine and Twisted ones, just because we had
to ... 阅读全帖 |
|
g*****g 发帖数: 34805 | 6 我觉得message你用prototype的办法用处不大。
Message (own attributes, Common Message),
GC的主要问题是垃圾太多,容易产生比较长的stop the world,导致request timeout。
你用prototype也好,不用也好,都要做回收。又不是内存不够用,效果有限。也许G1
对这个有用,当时我们跑java 6, 没法试。 |
|
z*******3 发帖数: 13709 | 7 read this
old man
Why Renjin?
We built Renjin, a new interpreter for the JVM because we wanted the beauty,
the flexibility, and power of R with the performance of the Java Virtual
Machine.
Bigger data
R has been traditionally limited by the need to fit data sets into memory,
and working with even modest sets of data can quickly exhaust memory due to
historical limitations in GNU R interpreter’s implementation.
Renjin will allow R scripts to transparently interact with data wherever it
’s stored,... 阅读全帖 |
|
h******b 发帖数: 6055 | 8 我是business背景,但完全没有编程能力的人搞start up不太现实。 小时候作为爱好
用c写过小游戏后来就改行了。 现在想试图能稍微在搞prototype上出点力。 很多时
候用axure这种prototype工具感觉还不如直接写网页。
最近觉得php加codeigniter是糙快猛的极端。所有variable不用declare直接用,谷歌
上巨多库。 任何功能基本上就是copy/paste/整合,没有任何原创。
但听说过php不是真正编程的理论。 但搞start up执行速度永远第一,做大了有性能
问题了也就不是问题了。 是不是php是startup首选呢? |
|
z****e 发帖数: 54598 | 9 俺明白了
你们说的不是一个东西
atoi忘记了定义,如果因为这个不会,写不出来
这个完全可以理解,面的人可以解释一下
但是解释了之后还写不出个大概来
那多少说明平常没怎么学习,不要也罢
还有一个就是,面官有时候也稍微理解一下对方
有些东西太久不用的确容易忘
象atoi定义是啥忘记了,这个我完全可以接受
但是如果明白了定义,还不能写出点东西来
那这个就是另外一个概念了
楼主两题,atoi和reverse linked list的确有些旧了
还是直接考游戏prototype比较好
游戏的prototype没有办法抄了
这个要是不行,那拒了也没啥抱怨的
但是如果这个ok,那算法挂了,也可以收,找人来是干活的么
这种实实在在的眼前利益,作为startup,还是要认真考虑一下
而且挑剔写字楼的,也很难说会呆很久 |
|
h******b 发帖数: 6055 | 10 最近一年零零碎碎试验了几个。 本人并非编程出身,有网站和前台设计背景,希望找
个糙快猛的手法,最少达到产品经理独立完成prototype的能力。用过这几个的说说经
验吧。
corona sdk - lua 语言很容易上手,图像性能很好,写了一个简单三消的prototype,
意识到自己美工太烂,放弃了。 试图拿来写business app但感觉他们缺太多零件了。
而且价格越来越高。 放弃了。
titanium - javascript 不错,但他们的iOS和Android几乎是两套代码。 几乎每个
function都不同behavior。 他们追求的是native look and feel。 如果这样我不如
native开发了。
phonegap - 因为是HTML/css,感觉非常顺手,一个文档放在xampp里面直接拿来当网页
来preview非常流畅。 据说性能是问题。 不过jquery mobile真心是适合电脑的,不
是手机的,整体感觉还是臃肿了一点。
ionic framework - 最近很火的framework。 如果你谷歌mobile framewo... 阅读全帖 |
|
k**********g 发帖数: 989 | 11
I'm doing image processing prototype. Most things done in preferably 32-bit
floating point to avoid artifacts in prototype stage.
Speed is very important because an impatient researcher will go to get
coffee while waiting for processing, and then forgot some great idea during
the wait.
Thanks, will try try tomorrow ... |
|
l********k 发帖数: 14844 | 12 看干嘛,看怎么用。如果把写代码的时间算进去,prototyping还真是python更快。高
大上们写好prototype,作完ppt,剩下翻译的活儿就交给本科农民工去干。谁要是有意
见,就把工作outsource掉。
再者,让你用c写个矩阵求逆,还真不见得能跑的比numpy快。 |
|
g*********e 发帖数: 14401 | 13
icc的人写不了c++ 没法Outsource
高大上既然能写Prototype 那就把production一并写出来。prototype没人搭理 |
|
d*******r 发帖数: 3299 | 14 对的,我这两天学了些 AngularJS 和 Bootstrap 后,真觉得自己可以容易地用 MEAN
stack 和 JS 搭建一个跨各种 clients 的 web app 了. 就可以 prototype 上线了。
后面如果 MongoDB 不行,就用 SOA&RESTful 的方式 把一部分东西弄到 Cassandra 或
者 PostgreSQL 上,如果 Node.js 处理复杂逻辑不行了,也可以用 SOA&RESTful 方式
把一部分逻辑弄到 Java 甚至 Go 上面去。
一种语言JS,和一种数据结构 JSON 打通了,做 prototype 非常非常省事。 |
|
h******b 发帖数: 6055 | 15 他的prototype的确很烂,这个我承认。 而且idea本身不是特别吸引人。
但很多成功的人是无数失败后的成功。 他这样不停的出prototype迟早一飞冲天。
没有销售渠道和第一个客户很难拉来vc。 除非你已经是圈内人。 |
|
h******b 发帖数: 6055 | 16 我当然不是说这种工作能一个人完成。 但趋势是一个人能做的东西越来越多,full
stack的价值就是可以减少团队之间的纠纷。
以前一个前端人士需要压缩图片得等后端团队来搞定这个,现在下载个node插件最少
prototype不成问题了。
https://github.com/lovell/sharp
大公司不都是能用就用,prototype最后变prod也不算新鲜。 js是能够最大化单一语
言糙快猛的。 |
|
z****e 发帖数: 54598 | 17 你不是在谈工作么?
你的工作难道就是不停滴给人做prototype?
很多时候对于需求,你不做都可以
直接放几个html静态页面,就可以过去开始说了
你干嘛那么麻烦弄啥prototype? |
|
h******b 发帖数: 6055 | 18 我本来就不是纯码工。
您都说js跟excel一样容易了,hybrid的人不越来越多。 相当于RPG里能打能加能T的
混合职业。 虽然任何一项都不精通,但因为不需要等别人,不需要过度沟通/会议,
能够产生巨大的生产力。
如果只是内部使用的东西很多时候我的prototype直接变成品了。 就是外部使用,一
个能跑的prototype也比一张草图好用的多。 |
|
a*f 发帖数: 1790 | 19 内容如下
"What happened?
*** application servers run using Amazon Web Services. The configuration is
vast, consisting of thousands of servers. One of these was an old prototype
machine, which was the target of the breach.
The machine had been running since before 2012, and was not in active use.
It was penetrated using the shellshock vulnerability, and since it was no
longer in active use, it did not have the appropriate patch installed.
The old prototype machine had our AWS API access key and secre... 阅读全帖 |
|
e*******o 发帖数: 4654 | 20 好多人说class 强迫你去做分类
我是搞生物的 我觉得分类的好处是简化
那个老家伙说 分类一开始肯定不对 最后要重构 本来就是个不断改进的过程好不好
prototype 一下子就搞好了?
有个他es6的视频 没那么吹prototype了 |
|
N********n 发帖数: 8363 | 21 prototype可以动态执行过程中加成员,导致静态IDE无法确定其定义细节,
是JS一大缺点。有CLASS才可以继承,才可以代码重用,才有可能写大程
序。现在这样又要向后兼容prototype, 又要支持CLASS,不伦不类。 |
|
f******x 发帖数: 98 | 22 语言是工具,you need to find right tools for the right job. Python 好处是开
发快糙猛,短平快,可以迅速实现developer的意图,非常适合作prototyping。在科研
领域,95%所以的idea是错误的,所以要快糙猛地用数据做试验,以找到那正确的5%。
所以运行效率并不是特别重要,但开发效率至关重要。Python的prototyping速度是我
用过工具里独一无二的,大大超过我以前用的mathematica/matlab/java,更不用提C++
之类。其原因是python语言非常expressive,同样的idea用python实现一般是java
code长度的1/4左右.python的可读性非常好,只要developer大致遵循 idiomatic
python,那么生成的python code的意图基本上是一目了然。
less code and more readable --> faster development and easier to change/
improve. |
|
z****e 发帖数: 54598 | 23 class还new
new啥呀
factory.build
new不是一个很好的生命周期的控制方式
容易造成内存泄漏
不过这个是经验上的扯蛋
我来告诉你record是啥
record其实是prototype
fp里面大量使用了prototype这个pattern
前面说了,需要准备好一个完备的集合
否则集合里面元素变来变去,会导致你的func经常性修改
你用fp就不合适鸟
当然你非要把record写成class,我也没办法
只能说这不是作者的初衷 |
|
h******b 发帖数: 6055 | 24 我说了,让老爸继续当程序猿角色,让儿子当产品经理,定位开发什么游戏,把每一个
需要的东西一一列表,系统化,最好封装在jira里管理。麻雀虽小,五脏俱全,管理的
方法尽可能正规化。
至于js,乔布斯当年还焊过电路板自己手装过电脑呢。 稍微有一点开发prototype的动
手能力,有好处。 js后台,网站,app,游戏通吃,最快开发出prototype。
无论是什么语言,开发游戏的业务知识和基本流程是一样的。 注重这些而不是码力。 |
|
c*****n 发帖数: 173 | 25 他原文没有提subclass。如果有的话自然也有一个名字。非得用instanceof的话就要这
么做
Dog.prototype.constructor = Dog;
用classnameannotation而不是用instanceof的原因是performance. 比较字符串比比较
prototype chain的constructor的内存地址快很多。至于是否有重名,那就多加注意,
多加前缀。同时用requirejs,不要把所有的东西都变成global. 我们的project 有上
千个class, 没有遇到过冲突。
name |
|
|
d****n 发帖数: 1637 | 27 Notable changes
This list of changes is relative to the last io.js v3.x branch release, v3.3
.0. Please see the list of notable changes in the v3.x, v2.x and v1.x
releases compiled in unified CHANGELOG for a more complete list of changes
from 0.12.x. Note, that some changes in the v3.x series as well as major
breaking changes in this release constitute changes required for full
convergence of the Node.js and io.js projects.
child_process: ChildProcess.prototype.send() and process.send() operate
... 阅读全帖 |
|
g*****y 发帖数: 7271 | 28 不难你就写一个简单的prototype先嘛,用数据库也可以啊。
计数器都不用再造轮子了,应该比老魏的更简单。要不也是
5天后给个prototype?测测看你的吞吐能力呗。 |
|
o**********e 发帖数: 18403 | 29 【 以下文字转载自 JobHunting 讨论区 】
发信人: zhyxn (奇迹405), 信区: JobHunting
标 题: 提供IBM内推,新成立的Apple+IBM 项目组有大量新增职位,重点是ios developer 和 ux designer
发信站: BBS 未名空间站 (Mon Dec 28 23:50:37 2015, 美东)
提供IBM内推,新成立的Apple+IBM 项目组有大量新增职位,重点是ios developer 和
ux designer。 地点为芝加哥,亚特兰大,Cupertino,多伦多。
Great opportunities at IBM to work on the Apple + IBM team! Location:
Chicago, IL; Atlanta, GA; Cupertino, CA.
senior iOS Developer:
At least 2 years experience in developing iOS applications
At least 2 years experience in aspects... 阅读全帖 |
|
l******9 发帖数: 579 | 30 I am trying to download and run the c code on Linux for
UNIX Network Programming, Volume 1, Second Edition: Networking APIs: Sockets
and XTI, Prentice Hall, 1998, ISBN 0-13-490012-X. It is by W. Stevens
Richard
http://kohala.com/start/unpv12e/unpv12e.tar.gz
But, when I build the code, I got error:
gcc -g -O2 -D_REENTRANT -Wall -c -o connect_nonb.o connect_nonb.c
In file included from connect_nonb.c:1:
unp.h:114: error: redefinition of âstruct in_pktinfoâ
make: *** [connect_nonb.o] Erro... 阅读全帖 |
|
l******9 发帖数: 579 | 31 I am trying to download and run the c code on Linux for
UNIX Network Programming, Volume 1, Second Edition: Networking APIs: Sockets
and XTI, Prentice Hall, 1998, ISBN 0-13-490012-X. It is by W. Stevens
Richard
http://kohala.com/start/unpv12e/unpv12e.tar.gz
But, when I build the code, I got error:
gcc -g -O2 -D_REENTRANT -Wall -c -o connect_nonb.o connect_nonb.c
In file included from connect_nonb.c:1:
unp.h:114: error: redefinition of âstruct in_pktinfoâ
make: *** [connect_nonb.o] Erro... 阅读全帖 |
|
w******e 发帖数: 1187 | 32 顶这个“现在还不到收获的季节。一些小的hint不值得花几个亿去开发药”。
很多药都是有了初步发现就急着上马,为了抢在别人前面,结果后面一轮轮的
优化,明明已经知道prototype不optimal,但是因为一开始用prototype做的
申请,所有trial也都要用明知非最优的entity,相当扯淡 |
|
m***c 发帖数: 637 | 33 中国上海联合利华招聘以下生物,食物,化学,物理,材料海外学者。
Assistant Research Scientist--Deposition
Assistant Research Scientist-- Spectroscopy
Assistant Research Scientist--Food Science 食品
Assistant Research Scientist--Microbiology 微生物
Assistant Research Scientist--Polymer
Assistant Research Scientist-- Tea 茶
Assistant Research Scientist--Skin 皮肤生物学
Assistant Research Scientist--Micro Materials-Functional Particulates Design
Assistant Research Specialist--Diabetes 糖尿病
If you are interested, please send CV to D****[email protected]... 阅读全帖 |
|
H****N 发帖数: 997 | 34 Your statement about Pax6 in octopus is misleading. The following is direct
quote from the paper you provided:
"This view has been changed, however, by Gehring and Ikeo
(1999), who maintain that the expression of the common master
regulator Pax6 in both types of eyes indicates the divergence of
these two types of eyes from a single prototype eye present in the
common ancestor of cephalopods and vertebrates. It has previously
been reported that Pax6, a “master control” gene for the
development of... 阅读全帖 |
|
l**********1 发帖数: 5204 | 35 对头 快找下一个千老位
尽量找前老板 PhD school时候的还有认识的two faculty write RL three or two
目标加拿大
please go to
//pmgn.vbi.vt.edu/careers.php
等以后成了皇家加拿大学会会员后
再报一剑之仇 也不晚 那时现PD PI 还现役的话 退休了 就算啦
----
当然你不在Havard Medical Schhol的话 试试以下的职位也可以 下家学界排名若远盖过你现PI的话
看PubMed last authorship hits account:
//wyss.harvard.edu/viewpage/224
//www.ncbi.nlm.nih.gov/pubmed?term=%22Chaikof%20EL%22%5BAuthor%5D
3年之内能报一剑之仇
The Chaikof Lab at Beth-Israel Deaconess Medical Center
NIH funded postdoctoral position available in the areas of ... 阅读全帖 |
|
l**********1 发帖数: 5204 | 36 not exactly,
pls refeer NOOP (non-object-oriented programming) Java online lecture
cited:
>Introduction
>Some parts of the computer language JavaScript are difficult for computer
programmers without experience in object-oriented programming (oop). The
present notes are aimed at noop (non-oop) programmers who shiver when they
see the following stand-alone code and its result (in-line comments follow
double slashes):
Object.prototype.a = "hello, world"; //assignment
var o = {}; ... 阅读全帖 |
|
S******y 发帖数: 1123 | 37 发信人: StatsGuy (StatsGuy), 信区: Statistics
标 题: 也谈为什麽要学习Python (对 Python没有兴趣的请跳过 :-)
发信站: BBS 未名空间站 (Sat Apr 12 20:03:06 2014, 美东)
最近坛子上 百家齐放,百花争鸣
我也忍不住说一说 - 为什麽要学习Python?
首先, 这里只谈Python 不针对其他任何一种语言(对Python没有兴趣的请跳过 :-)
1) Python是 一个所有人都可以学的语言
在亚洲任何一个国家 上过初三/高一 数学的人, 都够资格学Python
与C++, Java相比, Python 大大简化了编程 (只在 performance做了一点牺牲)
2) 如果你想转行Data Science,Python 是你入行的 敲门砖
Python可以prepare data for analysis
Python可以perform statistical analysis (numpy, scipy, pandas, ipython,
scikit-learn)
Python 可以用来写p... 阅读全帖 |
|
m***c 发帖数: 637 | 38 中国上海联合利华招聘以下化学,物理,材料,食物,生物海外学者。
Assistant Research Scientist--Deposition
Assistant Research Scientist-- Spectroscopy
Assistant Research Scientist--Food Science 助理研究专员
Assistant Research Scientist--Microbiology
Assistant Research Scientist--Polymer
Assistant Research Scientist-- Tea
Assistant Research Scientist--Skin
Assistant Research Scientist--Micro Materials-Functional Particulates Design
Assistant Research Specialist--Diabetes 研究专员-糖尿病
If you are interested, please send CV to D****[email protected] ... 阅读全帖 |
|
m***c 发帖数: 637 | 39 中国上海联合利华招聘以下化学,物理,材料,食物,生物海外学者。
本帖长期有效。
Assistant Research Scientist--Deposition
Assistant Research Scientist-- Spectroscopy
Assistant Research Scientist--Food Science 助理研究专员
Assistant Research Scientist--Microbiology
Assistant Research Scientist--Polymer
Assistant Research Scientist-- Tea
Assistant Research Scientist--Skin
Assistant Research Scientist--Micro Materials-Functional Particulates
Design
Assistant Research Specialist--Diabetes 研究专员-糖尿病
If you are interested, please send CV to DocSun@... 阅读全帖 |
|
m***c 发帖数: 637 | 40 中国上海联合利华招聘以下化学,物理,材料,食物,生物海外学者。
Assistant Research Scientist--Deposition
Assistant Research Scientist-- Spectroscopy
Assistant Research Scientist--Food Science 助理研究专员
Assistant Research Scientist--Microbiology
Assistant Research Scientist--Polymer
Assistant Research Scientist-- Tea
Assistant Research Scientist--Skin
Assistant Research Scientist--Micro Materials-Functional Particulates Design
Assistant Research Specialist--Diabetes 研究专员-糖尿病
If you are interested, please send CV to D****[email protected] ... 阅读全帖 |
|
m***c 发帖数: 637 | 41 中国上海联合利华招聘以下化学,物理,材料,食物,生物海外学者。
Assistant Research Scientist--Deposition
Assistant Research Scientist-- Spectroscopy
Assistant Research Scientist--Food Science 助理研究专员
Assistant Research Scientist--Microbiology
Assistant Research Scientist--Polymer
Assistant Research Scientist-- Tea
Assistant Research Scientist--Skin
Assistant Research Scientist--Micro Materials-Functional Particulates
Design
Assistant Research Specialist--Diabetes 研究专员-糖尿病
If you are interested, please send CV to D****[email protected] ... 阅读全帖 |
|
m***c 发帖数: 637 | 42 再转几个中国上海联合利华内部推荐招聘的位置给大家,尽量找联系人内部推荐。
中国上海联合利华内部推荐,招聘。
If you are interested, please email your CV to d****[email protected] with the
position that you are applying as the title.
Assistant Research Scientist-Polymer
Assistant Research Scientist-Rheology in Deposition
Assistant Research Scientist-Water Purification
Assistant Research Scientist –Deposition
Assistant Research Scientist-Polymer
Work in the Discover in R&D function for the research in Polymer Science
area and perform as an active project/team... 阅读全帖 |
|
j***h 发帖数: 4412 | 43 Earthquake detection systems can sound the alarm in the moments before a
big tremor strikes—time enough to save lives
Japan’s system, which went live in 2007, makes heavy use of personal
technology. Alerts go out not only on television and radio but through
special receivers in homes, offices and schools. Pop-up windows on
computers show a real-time map with the epicenter’s location and the
radiating seismic waves. A timer counts down to the shaking at your
location and highlights predicted inte... 阅读全帖 |
|
d****o 发帖数: 1112 | 44 POL is for prototype....fast prototype
company' |
|
d******h 发帖数: 503 | 45 强贴留名。三聚氢胺的sensor就交给生物化学的人做吧,他们那的方法多的很,要不怎
么叫合作呢。你说的不错, documentation 花时间。我说的五个人是作prototype 的
。有了prototype, 有了钱,就可以雇人搞市场和公关了。奥巴马这一闹就是商机。
留个联系方式吧。
了。 |
|
h*******y 发帖数: 896 | 46 If your background matches this position, please send me your resume
(email needed).
========================
Job Description: Power Electronics Engineer
Job Posting : Feb 4, 2011
Primary Location : US-AZ-Tempe (AZ34)
Job : System Architecture
Scope of Responsibilities inlcude:
* Collaborating with XXXXXX development partners in the design and
development of advanced vehicle drive, battery management and power
conversion systems.
* Designing, building, testing and validating hardware... 阅读全帖 |
|
m*****t 发帖数: 3477 | 47 【 以下文字转载自 JobHunting 讨论区 】
发信人: TroubleT (大麻烦), 信区: JobHunting
标 题: Couple ASIC Openings ( San Jose)
发信站: BBS 未名空间站 (Wed Mar 23 18:53:40 2011, 美东)
Hello, these just opened up, please submit via company website here :
http://tbe.taleo.net/NA1/ats/careers/searchResults.jsp?org=ATHE
Sr. Digital IC Verification Engineer
Responsibilities:
This position requires working with our architecture, design, and
verification teams to develop simulation and verification environments that
prove correctness a... 阅读全帖 |
|
e*********t 发帖数: 16 | 48 Location: Phoenix, AZ
Skills: Design Engineer, Mosfet, Powered, Power Supplies
The role of a Staff Engineer is that of a highly competent and experienced
product design engineer. As such, the right candidate will be a key member
in the new Engineering organization in North America for Renewable Energy.
• Direct responsibility for the development of new state of the art
products in areas related to power electronics in the field of renewable
energy as a team member in one of the Desig... 阅读全帖 |
|
y******a 发帖数: 244 | 49 本人WSN一枚,现在在加拿大读phd。明年毕业,现在该考虑工作的问题了。加拿大电力
电子产业不发达, 不知道加拿大的phd去美国找工作可能性有多大。
我本科和硕士在国内念的都是电力电子和电机方向的,毕业后在一个研究所干了一年多
。本人英语一般,phd念的学校也一般。动手能力还可以,毕竟干了快10年电力电子,
能够独立做几十W到一百千瓦左右的逆变器prototype(是prototype!不是产品!)。
原来在国内也接一点私活养家,做做山寨机什么。但是我感觉我学新的东西偏慢,对新
的控制器,算法什么的比较抵触。
倒是发了一些论文和专利,中文英文文章加起来大概有接近四十篇吧。一作的IEEE
transaction文章毕业时候应该有10篇吧,现在有一些还是under review, 具体多少不
好说。请问发文章对美国找工作有用吗?
我要求不高,能养家的工作就可以。博士后我暂时不考虑,谢谢! |
|
F********g 发帖数: 475 | 50 这些都不难。
+ 能搭fPGA prototype
+ 简单layout
+ 简单dsp
+ 简单模电设计
你能折腾出个working prototype就牛了。 |
|