由买买提看人间百态

topics

全部话题 - 话题: emitting
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
w*s
发帖数: 7227
1
来自主题: Programming版 - Nodejs socket.io emit看不懂
var app = require('express').createServer();
var io = require('socket.io')(app);
app.listen(80);
app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});
io.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
这个emit里'news'相当于tag这我知道。
后边那hello world为哈要写成那样?
l**********n
发帖数: 8443
2
来自主题: Programming版 - Nodejs socket.io emit看不懂
我替你查了
Socket#emit(name:String[, …]):Socket
Emits an event to the socket identified by the string name. Any
other parameters can be included.
All datastructures are supported, including Buffer. JavaScript
functions can’t be serialized/deserialized.
m*******n
发帖数: 307
3
来自主题: HiFi版 - 丹拿Dynaudio Emit M20
打算入手丹拿Dynaudio Emit M20, 有了解的朋友吗?
w*s
发帖数: 7227
4
来自主题: Programming版 - Nodejs socket.io emit看不懂
有些地方写成
socket.emit('data', { data: 'world' });
看的我很困惑,谢谢了
k***i
发帖数: 662
5
August 23, 2007
Also appeared in print Aug. 27, 2007, p. 12
ACS Meeting News
Nanotube Synthesis Emits Toxic By-Products
Evaluating small-scale processes could shed light on potential large-scale environmental issues
Rachel Petkewich
The carbon nanotube industry is growing, but little is known about the by-products discharged during nanotube manufacturing. Researchers at Woods Hole Oceanographic Institution (WHOI) and MIT have now analyzed the effluent stream from a representative, small-scal
w**********2
发帖数: 20
6
来自主题: JobHunting版 - G家面经,求bless
Reduce 的输出肯定是(i,j) -> 下一次的值。Map的输出目的就是,想办法能把reduce
计算(i,j)下一时刻的值需要用到的数据group到一起。 假设map的输入是(i, j) ->当
前值,计算(i,j) 下一时刻的值需要用到它的八邻点,反推他的八邻点下一时刻的值也
需要用到(i,j)当前值。 所以 map的输出就是 (i-1, j) -> (i,j)当前值,(i+1,j) ->
(i,j)当前值,...输出8个键值对。对reduce来说就好办了,需要的数据都gourp好了。
def map(partMat):
for k, v in partMat:
i, j = k
emit((i-1, j-1), v)
emit((i, j-1), v)
emit((i+1, j-1), v)
emit((i-1, j), v)
emit((i+, j), v)
emit((i-1, j+1), v)
emit((i, j+1), v)
... 阅读全帖
k**********g
发帖数: 989
7
来自主题: Programming版 - 算法求助!
弱问,无无者飘过 (zero wireless comm experience)
Is there a likelihood model for the mu and sigma of each agent?
The search space is something like this:
| Agent 1 | Agent 2
------------------------------------------------------------------
Symbol A | Percent of A emitted by 1 | Percent of A emitted by 2
------------------------------------------------------------------
Symbol B | Percent of B emitted by 1 | Percent of B emitted by 2
-------------------------------------... 阅读全帖
z**********g
发帖数: 16
8
Discussing The Existence of “repulsion particle” And Its Significance

Zhuang Yiliong
Shanghai Institute of Science and Technology Management
Abstract:This report has advanced a assume about the existence of “
repellention” by a kind of new idea. Beginning with this, I have explained
more successfully some import theory questions in the area of the present
physics, cosmology and philosophy ect. At same time a few of new reasons
have been raised But this is only rough idea of physica... 阅读全帖
s**********8
发帖数: 25265
9
来自主题: MedicalDevice版 - FDA
The Food and Drug Administration (FDA or USFDA) is an agency of the United
States Department of Health and Human Services, one of the United States
federal executive departments. The FDA is responsible for protecting and
promoting public health through the regulation and supervision of food
safety, tobacco products, dietary supplements, prescription and over-the-
counter pharmaceutical drugs (medications), vaccines, biopharmaceuticals,
blood transfusions, medical devices, electromagnetic radiati... 阅读全帖
s*********e
发帖数: 884
10
来自主题: MedicalDevice版 - 美国进口医疗器械程序: basics
Source:
http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/I
Importing into the U.S.
Please note: as of October 1, 2002, FDA charges fees for review of Premarket
Notification 510(k)s and Premarket Approvals
Overview
Foreign firms that manufacture medical devices and/or products that emit
radiation that are imported into the United States must comply with
applicable U.S. regulations before, during, and after importing into the U.S
. or its territories. In order to import medical device... 阅读全帖
A*******g
发帖数: 607
11
PWM 1khz 只是专利的第一项:
http://www.freepatentsonline.com/y2011/0164069.html
What is claimed is:
1. An electronic device, comprising: a display panel comprising a plurality
of pixels; a light source comprising a plurality of light emitting diode (
LED) strings adapted to generate light to illuminate the plurality of pixels
; and display control logic adapted to sequentially activate and deactivate
each LED string of the plurality of LED strings at a frequency of
approximately at least 1 kHz.
2. The el... 阅读全帖
A*******g
发帖数: 607
12
PWM 1khz 只是专利的第一项:
http://www.freepatentsonline.com/y2011/0164069.html
What is claimed is:
1. An electronic device, comprising: a display panel comprising a plurality
of pixels; a light source comprising a plurality of light emitting diode (
LED) strings adapted to generate light to illuminate the plurality of pixels
; and display control logic adapted to sequentially activate and deactivate
each LED string of the plurality of LED strings at a frequency of
approximately at least 1 kHz.
2. The el... 阅读全帖
n*******s
发帖数: 482
13
来自主题: Programming版 - 动态语言把我绕晕了--javascript
Node in Action 的例子代码 讲emitter的
关于这一行
this.on('broadcast', this.subscriptions[id]);
我是不是可以理解成
1. 当channel.emit('join', id, client)时候,'broadcast' event被注册(to be
listened by channel object)
2. 当channel.emit('broadcast', id, data)时候,'broadcast'被emit,因为channel
一直在listen这个event,从而invoke 'this.subscriptions[id]'
3. 实参id, data替换了this.subscriptions[id]里面的形参[senderId, message],函
数可以执行
4. 尽管函数this.subscriptions[id]体内的变量:id并非形参,因为语言是动态的,所
以在执行时候 函数”this.
subscriptions[id]“是知道id的值的,所以函数可以正确执行?
是在觉得怪怪的,请教一下大家... 阅读全帖
w*s
发帖数: 7227
14
// node web server
var net = require('net');
var http = require('http'),
fs = require('fs'),
// NEVER use a Sync function except at start-up!
index = fs.readFileSync(__dirname + '/socketio.html');
// Send index.html to all requests
var app = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(index);
});
// Socket.io server listens to our app
var io = require('socket.io')(app);
//var io = require('socket.io').listen(app);
// Send ... 阅读全帖
g********e
发帖数: 1638
15
208 邬俊波
(MSE) 男 1977/08/20 中国华能集团公司 工程与材料科学 2010年
06月毕业于[美国]斯坦福大学 [美国]SunPower公司 研发主管工程师/R&D Staff
Engineer
名校的威力太大了,这位千青有自己的主页,文章少的很。
http://peumansgroup.stanford.edu/Junbo_Wu
Junbo Wu
Contact Information
Email: wujunbogmailcom
Mobile: (650) 704-4362
Office: CISX 218X
Contact Address: CISX (Paul J. Allen Building), Stanford University, 420 Via
Palou Mall, Stanford, CA 94305
Research Project
Organic Solar Cells. Semiconductor device physics, Material proce... 阅读全帖
s*******1
发帖数: 191
16
来自主题: Wisdom版 - 2010-05-25師父開示
www.osifu.net
2010-05-25師父開示
Messages from Osifu:Be Cautious to Acknowledge Someone as Your Master
May 25th 2010
〇sifu 09:17:26
Teachings given by Osifu on the morning of May 25th 2010:
過去心不可得
當下!
The past mind can not be found!
Live in the present moment!
(時有弟子發偈子。)
(At the moment, some follower presents his verse.)
每一個偈子都是大家的心血。
每一個偈子都是大家的心聲。
每一個偈子都是大家的心語。
每一篇妙悟,師父希望大家看到後要珍惜,用心參悟交流,不要有分別心。
Each verse is everyone’s painstaking effort.
Each verse is everyone’s heartfelt wishes.
Each verse is eve... 阅读全帖
c**i
发帖数: 6973
17
来自主题: Hardware版 - Hardware News: S Korea
The following two reports are part of a one-off section "South Korea Report"
in WAll Street Journal (WSJ), Nov. 8, 2010 in commemoration of the nation's
host of incomig G-20.
(1) Jung-Ah Lee, In the Lead—and Trying to Stay There; Samsung is placing
its bets on cutting-edge display technology. WSJ, Nov. 8, 2010.
http://online.wsj.com/article/SB10001424052748703673604575550032739313758.html
Quote:
(a) Regarding OLED.
"Screens with organic light emitting diodes, or OLED, have a thin layer of
organi... 阅读全帖
r***o
发帖数: 6
18
来自主题: Science版 - 请教一道物理sub(电磁学)
A uniformly charged spherical ballon deflates suddenly,maintaining
its spherical shape and total charge.
which of the following statements concerning the possible emission
of electromagnetic radiation during this process is true?
(a) Radiation is emitted because charge is accelerated.
(b) Radiation is emitted because the surface density of charge increases
(c) No Radiation is emitted because there are no magnetic fields present.
(d) No radiation is emitted because charge is conserved.
(e) No rad
D*X
发帖数: 364
19
来自主题: Military版 - [ZT] 从中村修二到诺奖之路
从中村修二到诺奖之路
鲍海飞 2014-10-10
这几天,诺贝尔奖又成了这一年科研人员万众瞩目的时候了,而诺贝尔物理奖更是重中
之重,今年诺贝尔物理奖授予了日本的科学家Isamu Akasaki(赤崎勇), Hiroshi
Amano (天野浩)和 Shuji Nakamura(中村修二),其主要工作是成功研制出一种有
效的、环境友好的光源---蓝光发光二极管(Staffan Normark (2nd L), permanent
secretary of the Royal Swedish Academy of Sciences, announces the winners of
the 2014 Nobel Prize in Physics, at the Royal Swedish Academy of Sciences
in Stockholm, capital of Sweden, Oct. 7, 2014. Isamu Akasaki and Hiroshi
Amano of Japan and Japanese-born U.S. scientist Shuji Naka... 阅读全帖
l****z
发帖数: 29846
20
来自主题: USANews版 - Wood-Fired Plants Generate Violations
By JUSTIN SCHECK and IANTHE JEANNE DUGAN
BLUE LAKE, Calif.—Malodorous brown smoke from a power plant enveloped this
logging town on April 29, 2010, and several hundred residents fled until it
passed.
Six months later, the plant got $5.4 million from a federal program to
promote environmentally preferable alternatives to fossil fuel.
The plant, Blue Lake Power LLC, burns biomass, which is organic material
that can range from construction debris and wood chips to cornstalks and
animal waste. It is... 阅读全帖
i********e
发帖数: 1782
21
来自主题: Automobile版 - 树蛙们看看这个吧
重点在这里“ In 2007, a report commissioned by an auto industry trade group
insisted that when you factor in the waste generated during production, the
notoriously gas-guzzling Hummer is actually greener than the Prius”
*****************************
Does hybrid car production waste offset hybrid benefits?
The hybrid car has been touted as the green savior of the automobile
industry. A decade after the Toyota Prius debuted worldwide, issues like
climate change and energy security have helped push the p... 阅读全帖
b**********5
发帖数: 7881
22
来自主题: JobHunting版 - 简单map reduce mean median, 傻逼回答
先问: map reduce mean
我说, mapper emit (number, 1), 可以弄几个combiner, emit (partial sum
, partial N), 然后最后一个reducer, add up sum divide by N
问: 会有什么问题
答: sum overflow, 可以用 long, 或者big integer?
此处省略一千字
原来是这样的:something called rolling average
let's say avg0 is average for a0... aN0, avg1 is average for aN0 .... aN1....
so the total average is avg0*(N0/N) + avg1*(N1/N) + avg2*(N2/N)....
so the combiner can emit (avg0, N0), (avg1, N1) ... pair
and the reducer would calculate the total average
=============... 阅读全帖
m********1
发帖数: 220
23
In most airports, passengers walk through metal detectors, which use a low-
frequency electromagnetic field to look for weapons. Anything that generates
or uses electricity, such as power lines or household appliances, produces
an electromagnetic field. At the low levels a metal detector emits, this
exposure is considered safe for everyone, including pregnant women. (The
same holds true for the wands that security personnel sometimes pass over
individual passengers.)
Many people mistakenly think... 阅读全帖
M****e
发帖数: 3715
24
夜间打灯是法律规定必须的 只是抓的不严
Cambridge去年有阵子(BU有学生骑车被MBTA bus撞死那事之后)开抓晚上不开灯的 现在
好像又松下来了
https://malegislature.gov/Laws/GeneralLaws/PartI/TitleXIV/Chapter85/
Section11b
(8) During the period from one-half hour after sunset to one-half hour
before sunrise, the operator shall display to the front of his bicycle a
lamp emitting a white light visible from a distance of at least five hundred
feet, and to the rear of said bicycle either a lamp emitting a red light,
or a red reflector visible for not less than si... 阅读全帖
q**i
发帖数: 174
25
来自主题: Science版 - 我 bu 相信永动机..

the magnetic field is there to direct electrons emitted by P to S.
How about this minor modification: coat P with a material that emits
electrons at a lower temprature (like those used in a vaccum tube), and
put both P and S on that heat source, but insulate P slightly so it has a
lower temprature (but still emits electrons).
In this setup, the electrons still come out of P, get collected at S. Yet
S is hotter (at a higher temprature) than P.
the same question ->
h*h
发帖数: 18873
26
来自主题: Animals版 - pistol shrimp
看到这个
Science 22 September 2000:
Vol. 289 no. 5487 pp. 2114-2117
DOI: 10.1126/science.289.5487.2114
Report
How Snapping Shrimp Snap: Through Cavitating Bubbles
Abstract
The snapping shrimp (Alpheus heterochaelis) produces a loud snapping sound
by an extremely rapid closure of its snapper claw. One of the effects of the
snapping is to stun or kill prey animals. During the rapid snapper claw
closure, a high-velocity water jet is emitted from the claw with a speed
exceeding cavitation condit... 阅读全帖
w*******y
发帖数: 60932
27
This could make nice gift - it has therapeutic properties as well. Works as
an air purifier by emitting negative ions into the air and light therapy to
reduce stress and increase energy.
WBM 8-Inch Wide and 7-Inch Tall Round Basket Lamp filled with Himalayan
Natural Crystal Salt Chunks:
http://www.amazon.com/WBM-8-Inch-Himalayan-Natural-Crystal/dp/B
List Price: $49.95
Price: $19.88 & eligible for FREE Super Saver Shipping on orders over $
25.
You Save: $30.07 (60%)
Technical Details
... 阅读全帖
U*E
发帖数: 3620
28
http://io9.com/mechanic-accused-of-inventing-a-death-ray-for-is
http://img.gawkerassets.com/img/18rbluohnpgmxjpg/k-bigpic.jpg" onload="adjustimg(this)">
A mechanic who worked at General Electric in New York spent the past
several years perfecting a deadly, truck-mounted radiation weapon. According
to the FBI, he tried to sell it to some Jews in his area, whom he figured
could hand it over to Israel. Failing that, he tried to sell it to some
friends in the KKK.
Glendon Scott Crawford is... 阅读全帖
K**W
发帖数: 6346
29
Wynne Parry
LiveScience Senior Writer
LiveScience.com Wynne Parry
livescience Senior Writer
livescience.com – 1 hr 20 mins ago
Global Warming: Dire Prediction for the Year 3000
Even if humans stop producing excess carbon dioxide in 2100, the lingering
effects of global warming could span the next millennia. The results? By the
year 3000, global warming would be more than a hot topic - the West
Antarctic ice sheet could collapse, and global sea levels would rise by
about 13 feet (4 meters), accor... 阅读全帖
D**S
发帖数: 24887
30
http://io9.com/mechanic-accused-of-inventing-a-death-ray-for-is
A mechanic who worked at General Electric in New York spent the past
several years perfecting a deadly, truck-mounted radiation weapon. According
to the FBI, he tried to sell it to some Jews in his area, whom he figured
could hand it over to Israel. Failing that, he tried to sell it to some
friends in the KKK.
Glendon Scott Crawford is an industrial mechanic in Galway, NY, and he loves
to play with electronics. He is also allegedly ... 阅读全帖
l******t
发帖数: 55733
31

哦,大牛。不过看起来是等价的:... results in the prediction that all forms
of energy contribute to the gravitational field generated by an object.
Relation to gravity[edit]
In physics, there are two distinct concepts of mass: the gravitational mass
and the inertial mass. The gravitational mass is the quantity that
determines the strength of the gravitational field generated by an object,
as well as the gravitational force acting on the object when it is immersed
in a gravitational field produced by other bodi... 阅读全帖
u***r
发帖数: 4825
32
http://www.nytimes.com/2015/01/29/us/charles-h-townes-physicist
Charles H. Townes, a visionary physicist whose research led to the
development of the laser, making it possible to play CDs, scan prices at the
supermarket, measure time precisely, survey planets and galaxies and even
witness the birth of stars, died on Tuesday in Oakland, Calif. He was 99.
His daughter Linda Rosenwein confirmed his death.
In 1964, Dr. Townes and two Russians shared the Nobel Prize in Physics for
their work on micro... 阅读全帖
w*****3
发帖数: 2301
33
来自主题: Military版 - PM2.5到底是什么东西?
What is PM, and how does it get into the air?Size comparisons for PM
particles
Size comparisons for PM particles
PM stands for particulate matter (also called particle pollution): the term
for a mixture of solid particles and liquid droplets found in the air. Some
particles, such as dust, dirt, soot, or smoke, are large or dark enough to
be seen with the naked eye. Others are so small they can only be detected
using an electron microscope.
Particle pollution includes:
PM10 : inhalable particles,... 阅读全帖
W*****B
发帖数: 4796
34
仔细一看这篇还是个华人写的
白人可能大部分还不知道这个情况
CORONAVIRUS
What We Need to Understand About Asymptomatic Carriers if We’re Going to
Beat Coronavirus
ProPublica’s health reporter Caroline Chen explains what the conversation
around asymptomatic coronavirus carriers is missing, and what we need to
understand if we’re going to beat this nefarious virus together.
ProPublica is a nonprofit newsroom that investigates abuses of power. Sign
up to receive our biggest stories as soon as they’re published.
In the early days... 阅读全帖
l****z
发帖数: 29846
35
“我是个科学家,曾经是靠推销全球暖化吃饭的,我理解相关的证据,我曾是个人造全
球暖化信徒,现在我是个怀疑论者”
Carbon warming too minor to be worth worrying about
By David Evans
The debate about global warming has reached ridiculous proportions and is
full of micro-thin half-truths and misunderstandings. I am a scientist who
was on the carbon gravy train, understands the evidence, was once an
alarmist, but am now a skeptic. Watching this issue unfold has been amusing
but, lately, worrying. This issue is tearing society apart, making fools out
of our... 阅读全帖
l****z
发帖数: 29846
36
来自主题: USANews版 - World Ignores Obama Coal War
By Chris Stirewalt
"We can't drive our SUVs and eat as much as we want and keep our homes on 72
degrees at all times ... and then just expect that other countries are
going to say ‘OK.’ That's not leadership. That's not going to happen.”
-- Then-Sen. Barack Obama at a campaign rally in Oregon, May 17, 2008.
World leaders don’t seem to be paying much heed to President Obama. And not
just when it comes to domestic spy leaker Edward Snowden’s ultimate
destination.
Obama today will announce what pro... 阅读全帖
g****g
发帖数: 1828
37
You're driving along in your car or truck and suddenly a yellow light
illuminates on your dash telling you to check or service your engine. If you
're like most car owners, you have little idea about what that light is
trying to tell you or exactly how you should react.
Call it the most misunderstood indicator on your dashboard, the "check
engine" light can mean many different things, from a loose gas cap to a
seriously misfiring engine.
"It doesn't mean you have to pull the car over to the side... 阅读全帖
a*****c
发帖数: 53
38
来自主题: Classified版 - Position.
Job Description:
ATOM NANOELECTRONICS is a flat panel display company focused on developing
next-generation LCD/OLED technology for smart phone, TVs and outdoor
displays. We are seeking a full-time Fabrication Engineer to process organic
/polymer/nanoparticle light emitting diodes for display development. The
person hired for the position of Research Engineer will primarily be
responsible for operating and maintaining organic light-emitting device (
OLED) fabrication capabilities to support OLED... 阅读全帖
g********x
发帖数: 4671
39
正确的回复是:
....................../′ˉ/)
....................,/ˉ../
.................../..../
............./′ˉ/'...'/′ˉˉ`·
........../'/.../..../......./¨ˉ\
........('(...′...′.... ˉ~/'...'\
.........\.................'...../
..........''...\.......... _.·′
............\..............(
..............\.............\...
Mr. Spammer, you swine. You vulgar little maggot. You worthless bag of
filth. As they say in Texas. I'll bet you couldn't pour piss out of a boot
with instructions on the heel. You are ... 阅读全帖
g********x
发帖数: 4671
40
来自主题: ebiz版 - CRAIGSLIST的人回信,能卖吗
来来来,把这个贴回去即可。
....................../′ˉ/)
....................,/ˉ../
.................../..../
............./′ˉ/'...'/′ˉˉ`·
........../'/.../..../......./¨ˉ\
........('(...′...′.... ˉ~/'...'\
.........\.................'...../
..........''...\.......... _.·′
............\..............(
..............\.............\...
to you and your Nigerian son.
Mr. Spammer, you swine. You vulgar little maggot. You worthless bag of
filth. As they say in Texas. I'll bet you couldn't pour piss out of a boot
wit... 阅读全帖
g********x
发帖数: 4671
41
来自主题: ebiz版 - 怎么继续玩下去呢?
....................../′ˉ/)
....................,/ˉ../
.................../..../
............./′ˉ/'...'/′ˉˉ`·
........../'/.../..../......./¨ˉ\
........('(...′...′.... ˉ~/'...'\
.........\.................'...../
..........''...\.......... _.·′
............\..............(
..............\.............\...
to you and your Nigerian son.
Mr. Spammer, you swine. You vulgar little maggot. You worthless bag of
filth. As they say in Texas. I'll bet you couldn't pour piss out of a boot
with instructions... 阅读全帖
j*****u
发帖数: 1133
42
俺也不是砖家
先回答3,怎么存储一般改变不了,log的format已经固定好了,通常就是txt file。如
果数据量小了可以in memory hash,方法等同map reduce
1, 2:
mapper:emit >,以customer_id为key hash
local reducer和global reducer 相同的code:
可以sort也可以hash,以date和page其中之一为key,比如date
Dictionary> dict;
while (reducing a customer)
{
dict[date].Add(page);
if (dict.Count > 1 && (any_page_set.Count > 1 || any_two_page_set[0]_are_
different)))
emit customer_id and terminate reducing;
}
d**********x
发帖数: 4083
43
来自主题: JobHunting版 - 那道求两大文件交集的G题
1.txt map时 emit , 2.txt map时emit
reduce的时候用bitwise-or,然后输出所有标记为3的?
刚学这个。。瞎扯的。。。
要是一台机器,应该是hash吧
j******s
发帖数: 48
44
来自主题: JobHunting版 - 一道linkedin的graph题
map reduce吧
for node and its adj list,
map emit(node,adj+" 1") and emit(adj,node+" 0")
suffix " 1" stands for I have a friend **
suffix " 0" stands for I am the friend of **
reduce output all combination of value with different suffix "0" and "1",
which is I am the friend of **, and I have a friend **.
And it needs to detect that ** and ** is the same person. (Mutual friend)
传统的bfs没想到如何提高并行度.
y******u
发帖数: 804
45
来自主题: JobHunting版 - 一道大数据题,求最优解。
最近在上coursera的课。看到一个mapreduce的伪实现,参考一下。
in python
MapReduce.py
import json
class MapReduce:
def __init__(self):
self.intermediate = {}
self.result = []
def emit_intermediate(self, key, value):
self.intermediate.setdefault(key, [])
self.intermediate[key].append(value)
def emit(self, value):
self.result.append(value)
def execute(self, data, mapper, reducer):
for line in data:
record = json.loads(line)
mapper(rec... 阅读全帖
y******u
发帖数: 804
46
如果想连连mapreduce算法,下面python script能模拟
MapReduce.py
import json
class MapReduce:
def __init__(self):
self.intermediate = {}
self.result = []
def emit_intermediate(self, key, value):
self.intermediate.setdefault(key, [])
self.intermediate[key].append(value)
def emit(self, value):
self.result.append(value)
def execute(self, data, mapper, reducer):
for line in data:
record = json.loads(line)
mapper(record)
... 阅读全帖
x*******6
发帖数: 994
47
来自主题: JobMarket版 - job opening
Please contact recruiter directly.
#1) One of my longest-standing clients has just received a $31 million
round of Venture Capital funding and is aggressively expanding, hiring
multiple positions for world-class CMOS semiconductor engineers. The
company is a leader in the field of next-generation nonvolatile memory and
is now working with a number of major customers, Their innovative memory has
the potential to replace both flash and DRAM. This is a chance to work on
leading-edge, advanced no... 阅读全帖
C*****a
发帖数: 1025
48
来自主题: Living版 - 电磁场实测
I also did some similar test.
Microwave oven is bad, one should stay away by least 2 meters when it's
operating. For one of the Microwave ovens I tested, the alarm would be
triggered (>0.3mG?) even when I am 5 meters away. It depends on the maker
and style.
Hair blower and electronic toothbrush also emits EMF because they have motor
in them.
EMF from high voltage power lines fads away quickly, the reading is bad when
you are directly under it, but it is generally ok when you are 200m away.
Elect... 阅读全帖
g********x
发帖数: 4671
49
来自主题: Money版 - 我这样做是否合法?
直接上template:
....................../′ˉ/)
....................,/ˉ../
.................../..../
............./′ˉ/'...'/′ˉˉ`·
........../'/.../..../......./¨ˉ\
........('(...′...′.... ˉ~/'...'\
.........\.................'...../
..........''...\.......... _.·′
............\..............(
..............\.............\...
to you and your Nigerian son.
Mr. Spammer, you swine. You vulgar little maggot. You worthless bag of
filth. As they say in Texas. I'll bet you couldn't pour piss out of a boot
with... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)