由买买提看人间百态

topics

全部话题 - 话题: task
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
a***k
发帖数: 1038
1
来自主题: paladin版 - 红死病 by 杰克.伦敦
I
The way led along upon what had once been the embankment of a railroad. But
no train had run upon it for many years. The forest on either side swelled
up the slopes of the embankment and crested across it in a green wave of
trees and bushes. The trail was as narrow as a man's body, and was no more
than a wild-animal runway.
Occasionally, a piece of rusty iron, showing through the forest-mold,
advertised that the rail and the ties still remained. In one place, a ten-
inch tree, bursting through... 阅读全帖
M*********e
发帖数: 190
2
来自主题: Database版 - 怎么写这个total的query
task table is the original table.
SELECT v1.*,
v2.total
FROM task v1
LEFT OUTER JOIN
(SELECT t1.*,
t2.total
FROM task t1,
(SELECT taskname,
taskstatus,
COUNT(*) AS total
FROM task
GROUP BY taskname,
taskstatus
) t2
WHERE t1.taskname=t2.taskname
AND t1.taskstatus=t2.taskstatus
AND t1.taskid IN
(SELECT MAX(taskid) FROM task GROUP BY taskname, taskstatus
)
) v2
ON v1.taskid=v2.taskid
ORDER BY v1.taskid;
W******c
发帖数: 23
3
来自主题: Java版 - Java interview Question(31-50)
31. What is the difference between preemptive scheduling and time slicing?
Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under time
slicing, a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based
on priority and
other factors.
32. Name three Component subclasses that support painting.
Th
k**********g
发帖数: 989
4
来自主题: Java版 - 多线程真头疼,但也挺有趣

There is a concept called Deterministic Parallelism which is much less
likely to have bugs.
Task parallelism and Data parallelism are two examples.
The key idea is to focus on accurate declaration of data dependency to the
scheduler. Namely, to tell the scheduling system what input data items are
needed before a task and start; what data items are modified; what outputs
are generated; and the follow-up tasks that will use the output.
The traditional approach of using synchronization primitives ... 阅读全帖
l******9
发帖数: 579
5
I am also thinking about openMP.
But, how to make sure that openMP take full use of available
cores ?
Suppose that I have 24 CPUs, each of them has 6 cores (each core
supports hyperthreading).
I have 10,000 computing tasks, each of them needs 0.001 second.
Some of the tasks need to exchange data, which is very small.
Which task needs to send/receive data to/from which task is pre-defined. It
is known before the program in run.
But, the exchange frequency may be very high.
I want to schedule task... 阅读全帖
G***l
发帖数: 355
6
来自主题: Programming版 - 大牛们讨论一下异步编程吧
C#里面异步不要太简单。msdn的例子:
private async void StartButton_Click(object sender, RoutedEventArgs e)
{
// ExampleMethodAsync returns a Task and has an int result.
// A value is assigned to intTask when ExampleMethodAsync reaches
// an await.
try
{
Task intTask = ExampleMethodAsync();
// You can do other work here that doesn't require the result from
// ExampleMethodAsync. . . .
ResultsTextBox.Text += "Doing other work before awaiting intTask. ... 阅读全帖
k**********g
发帖数: 989
7
来自主题: Programming版 - 多线程程序有什么好的调式方法?

The correct approach is to use actor model.
It may not have good performance, but any other multicore approach will be
10x more difficult than using actor model.
The fundamental constructs inside an actor model framework:
1. thread-safe queue (preferably lock-free or obstruction-free)
2. thread pool
3. worker pool (each worker runs on one thread on the thread pool)
4. task queue / task pool (a collection of ready-to-run tasks)
(remark: it is called task pool because it is not necessarily a ... 阅读全帖
f****4
发帖数: 1359
8
来自主题: Programming版 - objects status snapshot怎么做
问题描述:
一个容器,大概有40万+的objects,对object有get/set/delete/add操作;这些操作要
求尽快完成。还有几个操作(long run tasks),要求对整个容器所有objects做遍历
,遍历过程会很长(有些费时间的业务处理),这几个操作的要求就是只对snapshot做
。就是说一旦开始遍历,后面来的set/delete/add操作完全不关心,等到这次操作结束
下次再处理。
这些long run tasks会增加。支持多线程。每个object的get/set操作很频繁。
我能想到的就是一旦long run task开始跑了,到它完成前对所有发生的object操作全
部更新在临时对象上。等task结束了,和容器里的对象同步。好处是实现方便,坏处是
内存太浪费了,同步浪费时间。没讲清楚:因为task太耗时间,直接对每个object拷贝
一份更快,但内存就费得更多了。。。
有啥好的点子?
E**********d
发帖数: 253
9
来自主题: Programming版 - IT职业困惑咨询
"关键是每天都排了好多活,不知道如何慢慢降低老板期望值又不影
响自己的reputation.就是觉得挤不出时间了,已经起早贪黑了。"
Easy, put all the tasks on a list, and put a very generous time frame for
each task, for instance, if a task takes about 3 hours for you to finish,
put 8 hours TO 16 hours.
if a task takes about 8 hours, ask for 3 days. you need to learn some
software development process terminologies. when your boss ask you why a 3
hours task will take you 16 hours, you need to be able to blablabla... talk
to him to death.
An example, I need to... 阅读全帖
z****e
发帖数: 54598
10
task
https://docs.oracle.com/javase/tutorial/uiswing/concurrency/simple.html
不过task用得少,在single thread环境中用得比较多
比如swift和javafx,都用了task来实现多线程
swift叫做dispatch queue
javafx就叫task
主要是防止gui thread被打断从而制造出来的一个东西
从根本上不让你用thread,这个是错误的
swift通过sprit kit来封装这个pattern
但是server side的游戏主循环thread的话,如果不让你用thread
你启动主循环,游戏结束后销毁,这两步怎么搞?
用thread很直观,你直接启动一个thread,把主循环逻辑放入thread,start/run
然后放入pool里面,游戏一局结束之后,把flag设置为false,那么这个thread自动销毁
用task来搞这个就非常蛋疼
z*******n
发帖数: 1034
11
来自主题: MobileDevelopment版 - 一个android Activity复用问题,求解答
FLAG_ACTIVITY_NEW_TASK
Start the activity in a new task. If a task is already running for the
activity you are now starting, that task is brought to the foreground with
its last state restored and the activity receives the new intent in
onNewIntent().
This produces the same behavior as the "singleTask" launchMode value,
discussed in the previous section.
理解task概念 https://developer.android.com/guide/components/tasks-and-back-
stack.html
c*********d
发帖数: 9770
12
【 以下文字转载自 Military 讨论区 】
发信人: chinabbsdad (张果老他爹), 信区: Military
标 题: 论林彪反党集团的社会基础(汉英对照)
发信站: BBS 未名空间站 (Fri Nov 22 09:43:14 2013, 美东)
论林彪反党集团的社会基础
On the Social Basis of the Lin Piao Anti-Party Clique
姚文元
by Yao Wen-yuan
[This article is reprinted from Peking Review, #10, March 7, 1975, pp. 5-10.]
毛主席在讲到必须搞清楚无产阶级对资产阶级专政的问题时明确指出:“林彪一类如上
台,搞资本主义很容易。因此,要多看点马列主义的书。”这就提出了一个极其重要的
问题:即“林彪一类”的阶级本质是什么?林彪反党集团产生的社会基础是什么?把这
个问题弄清楚,对于巩固无产阶级专政、防止资本主义复辟,对于坚定地执行党在社会
主义历史阶段的基本路线,一步一步地造成资产阶级既不能存在也不能再产生的条件,
无疑是十分... 阅读全帖
w*******y
发帖数: 60932
13
来自主题: _DealGroup版 - 【$】More 98 cents tool sets in Lowes
Task Force 5-pc precision tool set
Task Force 21pc Socket and Driver
Task Force 3pc Retrieval Set
Task Force 8-Piece cutting tool set
Task Force 10-IN-1 Screwdriver and Bit Set
List:
Link:
http://www.lowes.com/pl_Tool Sets_4294927325 5003693_4294937087_?Ns=p_product_prd_lis_ord_nbr|0||p_product_quantity_sold|1
c*****1
发帖数: 3240
14
☆─────────────────────────────────────☆
wanliheshan (大山) 于 (Thu Jun 23 21:22:14 2011, 美东) 提到:
平型关战斗,迁灭敌人不过千余名辎重队,不但委员长专电嘉奖,全国亦为之欢欣鼓舞
。一次毁灭二十余架敌机,至少委员长要发个嘉奖令吧?要知道之后的38年,粟裕首战
日寇,也是新四军的首战,歼敌二十余人,校长都给了个嘉奖令。

☆─────────────────────────────────────☆
jiuyin (jiuyin) 于 (Thu Jun 23 23:04:04 2011, 美东) 提到:
你这个最后一句话大有举着帽子准备扣的架势。
应该说
信中共的还是信日军的,就看你自己的分析了。
☆─────────────────────────────────────☆
ssgo2008 (bear2008) 于 (Thu Jun 23 23:32:54 2011, 美东) 提到:
老虎肉的潜台词就是你不信共党的,就是汉奸、卖国贼。
☆────────────────... 阅读全帖
c*****r
发帖数: 8227
15
和SEAL基本无关。
On October 3, 1993, Task Force Ranger, U.S. Special Operations Forces
composed mainly of Bravo Company 3rd Battalion, 75th Ranger Regiment, 1st
Special Forces Operational Detachment-Delta (better known as "Delta Force")
operators, and the 160th Special Operations Aviation Regiment (Airborne) ("
The Night Stalkers"), attempted to capture Aidid's foreign minister Omar
Salad Elmi and his top political advisor, Mohamed Hassan Awale.[17]
The plan was that Delta Force operators would assaul... 阅读全帖
c****i
发帖数: 688
16
来自主题: Military版 - 假盆,一丝拜克
"Japan is Back", Policy Speech by Prime Minister Shinzo Abe at the Center
for Strategic and International Studies (CSIS)
Friday, February 22, 2013
Japan is Back
By Shinzo Abe, Prime Minister of Japan
22, February, 2013 at CSIS
Thank you, Dr. Hamre, for your warm introduction.
Thank you, Secretary Armitage. Thank you, Ambassador Schieffer. Thank you,
Governor Parnell. Thank you, Dr. Green. And thank you all for joining me
today.
Last year, Richard Armitage, Joseph Nye, Michael Green and others pu... 阅读全帖
b****a
发帖数: 4465
17
A job posting on Craigslist Shanghai: "Personal Assistant to Director (
Foreigner) - Open Minded Ladies only".
I am a 32 year old Director of a foreign investment firm (we have offices in
Hong Kong, Singapore and New York) and I have been assigned to expand our
operations in China. So far so good.
I need an open-minded female assistant who is fun-loving and eager to expand
her career. You will be able to interact closely with a high level finance
professional, as well as many CEOs/senior executi... 阅读全帖
b****a
发帖数: 4465
18
在上海Craigslist最近出现了这么一个寻求秘书的工作广告,间而言之:年轻漂亮,思
想开放,交际能力强,愿意随时为老板或客户献身,工资两万月薪,另有加班和奖金。
This job posting on Craigslist Shanghai: "Personal Assistant to Director (
Foreigner) - Open Minded Ladies only".
I am a 32 year old Director of a foreign investment firm (we have offices in
Hong Kong, Singapore and New York) and I have been assigned to expand our
operations in China. So far so good.
I need an open-minded female assistant who is fun-loving and eager to expand
her career. You will be able to intera... 阅读全帖
c*********d
发帖数: 9770
19
【 以下文字转载自 Mod_CHN_Hist 讨论区 】
发信人: chinabbsdad (张果老他爹), 信区: Mod_CHN_Hist
标 题: 张春桥:论对资产阶级的全面专政(汉英对照)
发信站: BBS 未名空间站 (Thu Nov 21 06:51:57 2013, 美东)
张春桥:论对资产阶级的全面专政(On Exercising All-Round Dictatorship Over
the Bourgeoisie)
无产阶级专政问题,是长期以来马克思主义同修正主义斗争的焦点。列宁说“只有承认
阶级斗争、同时也承认无产阶级专政的人,才是马克思主义者。”
THE question of the dictatorship of the proletariat has long been the focus
of the struggle between Marxism and revisionism. Lenin said, “Only he is a
Marxist who extends the recognition of the class struggle t... 阅读全帖
w*********g
发帖数: 30882
20
这是伟大的休战时间。所有国家都庄严承诺自己不与任何其他国家打仗。俄罗斯,德国
,奥地利,意大利,希腊和土耳其的军队开始逐步动员,第一波行动开始。力量集结后
开始向东移动。所有铁路上都充斥着到亚洲的部队的列车。中国是这一切行动的最终目
标。过了一段时间后,庞大的海上行动。来自各个国家的远洋军舰远征而出,舰队随后
,一直到中国沿海。国家清空了他们的海军码头。他们派出了预算官,工兵,和灯塔守
护者,他们派出了过去陈旧的巡洋舰和战舰。同时他们开始招募商船加入。统计表明,
共有58640艏商船,配备探照灯和速射火炮,由各国开往中国。
中国在微笑地等待着。在她的土地边,沿着她的国界,驻扎了以百万计的欧洲战士。她
动员了五倍于此的民兵等待入侵。这次看来与上次一样。但中国突然感到困惑。因为这
支庞大的队伍并没有开始入侵。她无法理解这一现象。广大的西伯利亚边境一切都归于
平静。她的海岸城镇和村庄甚至没有遭到炮轰。在世界历史上,从来没有过如此强大的
战争舰队的聚集。世界上所有的船队,百万吨的战舰聚集在她的海岸线上,却什么都没
有发生。没有任何尝试。他们想使她离开她的地盘吗?中国笑了。他们以为能够厌倦死
她... 阅读全帖
q*****g
发帖数: 245
21
来自主题: Military版 - 说说我的奇葩阿三同事 (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: perfectblack (perfectblack), 信区: JobHunting
标 题: 说说我的奇葩阿三同事
发信站: BBS 未名空间站 (Thu Aug 7 22:41:56 2014, 美东)
去年5月,我们老板hire了一个contractor阿三,让他当project lead lead我们一个新
项目。我和我们组一个老美分到要和他一组。从此奇葩事情层出不穷,不断刷新我的三
观。
此人技术上及其糟糕而且非常懒惰。每次分task,他要么不assign给自己task,要么非
要和别人“合作”同一个task,而且每次都写不完。哪怕让他写个最简单的在网站上
localize日期的功能,他能给你这边写日/月/年 那边写 月-日-年,long date
short date到处混用。有一次他的task有快三个月没checkin了,我们最后急了说要开
会code review,结果,他能把这个会reschedule了4次。整整拖了3个礼拜。而且每次
都能找出让你哑口无言的借口(Rescheduling it. I... 阅读全帖
W***n
发帖数: 11530
22
IBM is teaching AI to behave more like the human brain
Engadget Andrew Tarantola,Engadget Fri, Sep 1 11:00 AM PDT
Since the days of Da Vinci's "Ornithoper", mankind's greatest minds have
sought inspiration from the natural world for their technological creations.
It's no different in the modern world, where bleeding-edge advancements in
machine learning and artificial intelligence have begun taking their design
cues from the most advanced computational organ in the natural word: the
human brain... 阅读全帖

发帖数: 1
23
Stone Cold Word
Longboat Key, Florida4m ago
AG Barr investigating a missing Twinkie is a joke.
So I am reading all these comments laughing and calling out "conspiracy
theories". It's easy to "throw shade"..... getting "shade to stick" is
another story.
I know this. A high profile prisoner, who supposedly tried to kill
himself just two weeks ago, this guy could not get near a 6 inch piece of
thread. Now that's not a "conspiracy theory".
The "shade slingers" want us to believe that this ego ... 阅读全帖
r*****y
发帖数: 53800
24
ebb and flow说的很明白,11日task force dog就解散了,各部回去防御兴南和咸兴了
。请问12日由五老里北援的究竟是美三师哪支部队?还是天顶星人?
http://www.kmike.com/EbbAndFlow/Ch7.htm
No further fighting took place while the men from Kot'o-ri completed their
withdrawal behind Task Force Dog. The last of them left Chinhung-ni near
1300 on the 11th and cleared Majon-dong by 1730. Freight cars and trucks
carried all but the tank column to the Hamhung-Hungnam perimeter by 2100;
the slower-moving armor closed a half hour before midnight. Task Force Dog,
brin... 阅读全帖
l****z
发帖数: 29846
25
Progressive feminists are not going to be happy with this study:
A pioneering study has shown for the first time that the brains of men
and women are wired up differently which could explain some of the
stereotypical differences in male and female behaviour, scientists have said.
Researchers found that many of the connections in a typical male brain
run between the front and the MenWomenDifferentback of the same side of the
brain, whereas in women the connections are more likely to run f... 阅读全帖
c******y
发帖数: 2
26
http://www.edn.com/design/automotive/4423428/Toyota-s-killer-fi
https://news.ycombinator.com/item?id=9440094
>> The Camry ETCS code was found to have 11,000 global variables. Barr
described the code as “spaghetti.” Using the Cyclomatic Complexity metric,
67 functions were rated untestable (meaning they scored more than 50). The
throttle angle function scored more than 100 (unmaintainable).
代码里有11,000个全局变量,67个函数被认为是根本没法测试的因为代码太乱了。油门
角度的函数被认为是没法维护的
>> Toyota loosely followed the widely adopted MIS... 阅读全帖
c******y
发帖数: 2
27
http://www.edn.com/design/automotive/4423428/Toyota-s-killer-firmware--Bad-design-and-its-consequences
https://news.ycombinator.com/item?id=9440094
>> The Camry ETCS code was found to have 11,000 global variables. Barr
described the code as “spaghetti.” Using the Cyclomatic Complexity metric,
67 functions were rated untestable (meaning they scored more than 50). The
throttle angle function scored more than 100 (unmaintainable).
代码里有11,000个全局变量,67个函数被认为是根本没法测试的因为代码太乱了。油门
角度的函数被认为是没法维护的
>> Toyota ... 阅读全帖
d**********g
发帖数: 5335
28
来自主题: Classified版 - HOUSTON公司招人
OPEN POSITIONS (www.spicyelement.com/pages/recruiting)
A. Sales Manager 销售经理
As a new comer in the US market, SNS Food LLC is founded in 2015 as the
whole-owned subsidiary of Chengdu SNS biotechnology Ltd. Company to develop
the US market for Chinese flavors, condiments and cooking sauces. As a key
member of management team to grow the business in US, the sales manager will
be the leading staff to develop and execute the sales strategy in US market
for the company products.
圣恩食品公司成立于2015年是成都圣恩生... 阅读全帖
H****y
发帖数: 2992
29
来自主题: Faculty版 - On Procrastination
On Procrastination
“Get it down. Take chances. It may be bad, but it's the only way you can do
anything really good.” (William Faulkner)
It doesn’t feel good, right? The guilt, the self-contempt, when you are
replying non-urgent emails, perfecting powerpoints, checking online news,
while knowing well that you have this impending deadline for an important
project you haven’t even started. Despite all the grand excuses, you knew
what this is all about and loath yourself for ... 阅读全帖
H****y
发帖数: 2992
30
来自主题: Faculty版 - On Procrastination
On Procrastination
“Get it down. Take chances. It may be bad, but it's the only way you can do
anything really good.” (William Faulkner)
It doesn’t feel good, right? The guilt, the self-contempt, when you are
replying non-urgent emails, perfecting powerpoints, checking online news,
while knowing well that you have this impending deadline for an important
project you haven’t even started. Despite all the grand excuses, you knew
what this is all about and loath yourself for ... 阅读全帖

发帖数: 1
31
素食者的工作机会列表(vegnews)
https://vegnews.com/jobs
Vegan Job Board
Are you in pursuit of a dream career promoting the plant-based lifestyle?
With a little help from VegNews, you’ll never have to sacrifice personal
ethics for professional gain. Find your ideal veg-friendly job today!
Social Media Volunteer
Anywhere, US
VeggieHappy, an online guide for finding plant-based menu options at large
entertainment and sports venues, is seeking a part-time social media
volunteer. Job responsibilities include ma... 阅读全帖
y*****g
发帖数: 677
32
来自主题: JobHunting版 - 1 DBA position
I can pass your resume.
One DBA position at Atlanta, need know oracle , mysql , and other dbms.
May or may not sponsor green card. I need check on it.
Provides support and development for all production MSS database platforms.
Duties and Responsibilities
Provide database development for MySQL and Oracle databases.
Provide production support for multiple Oracle, MySQL and Microsoft SQL
Server databases.
Assess performance of database systems and recommend and implement
improvements.
Provide ongoi... 阅读全帖
V*P
发帖数: 155
33
来自主题: JobHunting版 - resume 请教
我现在有工作,算骑驴找马,心里很急切想换到ideal location,但找得很失败。
现在想反省一下到底哪里做得不好,刚毕业时,resume包括education啥的,全部一页
。现在密密麻麻总共4页多,突然觉得别人看到这么拖泥带水的resume,是不是就不耐
心看了。我工作没换过,一直在现在单位,但在内部不同position(也没换title,就
是做的具体duty不同)换过两次,所以我的resume把那些具体的tasks都写上了,每个
task都算写得比较细,三四个bullet,这些task都是以前做过的重复性的duty,我也把
具体做过的一次性project写在了resume了,为了hiring manager能看懂,preject也写
得相对具体。找得不顺利,持续了很久,resume也就这样子慢慢加上去,结果就这么四
五页了,主要就是以前和现在的duty和做过的project。
大家对resume怎么看法,我想精简一下resume,是删掉一些呢,还是把每个task写得简
单一些?
谢谢。
b******s
发帖数: 25
34
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
See below information from recruiter Alex. He said there are two very good
positions (senior software engineer) in Sugarland, TX. They are full time
positions in a global company with a salary range from 105-120K. Sugarland
has excellent elementary/middle/high scho... 阅读全帖
r******t
发帖数: 629
35
先是接一个短信,叫我上skype面试。recruiter名字叫matt lightner,我一查linked
in,确实是semens的recrutier,但是他说是自己难道就是吗?
其实我是一点都记不得自己有投过这个职位,不过因为有发布过resume,也很难说他们
怎么拿到手的。不过我还是觉得蛮奇怪的。反正我这什么做会计的之类和我没有一丝关
系。
上了skype,一个叫Ms Han的来面试。神奇的是面试全部靠打字!!!
这人先叫我看semens healthcare的网站,然后才跟我说工作,这工作是
Your Primary duties include, Preparation of
Balance sheets (Mini), account balancing,
invoicing recording,proper data analysis of
sales records and recording pay slips into
accounting database all these will be done
through the use of the Account... 阅读全帖
p**********k
发帖数: 191
36
来自主题: JobHunting版 - 说说我的奇葩阿三同事
去年5月,我们老板hire了一个contractor阿三,让他当project lead lead我们一个新
项目。我和我们组一个老美分到要和他一组。从此奇葩事情层出不穷,不断刷新我的三
观。
此人技术上及其糟糕而且非常懒惰。每次分task,他要么不assign给自己task,要么非
要和别人“合作”同一个task,而且每次都写不完。哪怕让他写个最简单的在网站上
localize日期的功能,他能给你这边写日/月/年 那边写 月-日-年,long date
short date到处混用。有一次他的task有快三个月没checkin了,我们最后急了说要开
会code review,结果,他能把这个会reschedule了4次。整整拖了3个礼拜。而且每次
都能找出让你哑口无言的借口(Rescheduling it. I could not make to meeting as
I was in family emergency as I heard the news that my mom had an heart
attack and she is in ICU.)。3个月后好不容易他ch... 阅读全帖
n*******e
发帖数: 37
37
来自主题: JobHunting版 - 几个OOP的面试题
感谢回复!! 是的, 应该是OOD才对.
我那时的回答中, 只有house controller和devices class. 加上house和room class就
完整很多.
另外, 在答题时遇到以下两大难题:
1. controller提供的doDevices() method, 可以对各种device subclass做各种task.
有一个难题是, 不同subclass的device有非常不同的task. 例如: tv有set volume,
washing machie有wash, telephone有make call ... 这些task都需要subclass有自己
的specific method.
这样的话, 要如何用controller提供的doDevices()对所有device处理各种task呢?
2. scheduleDevices()应该要setup一个event handler, 当timer event expired时,
就trigger这个event handler? 但具体来说, 如何用C++实现呢? 感觉这种功能应该会
很常用, 但网路上查不到... 阅读全帖
b***y
发帖数: 177
38
来自主题: JobHunting版 - 来说说FB的bootcamp
这六周还是蛮忙的,开始什么都不知道就开始做各种task,会有mentor,开始给你
assign一些task,大部分task都很简单,但是有的很麻烦,因为什么都不懂,task的描
述也很不清楚,所以要多问,一般都能得到答案。
可以准备php,python,mysql一下。
我们bootcamper一起的有被赶走的,非常残酷。
t*****3
发帖数: 112
39
来自主题: JobHunting版 - fb国内申请的曲折经历+电面
国内申请的,今天早上刚电面挂了,比较郁闷,来发泄一下,然后继续努力。
去年11月在国内看到fb tech talk和招人的广告,于是就分别申请了。后来收到邀请参
加12月18日的talk,申请职位的截止日是12月15日。在快到12月15日时候,看到版上热
心内推,又特地在15号请内推了一把。18号的talk后来发现就是招人宣讲。会后跟组织
活动hr聊了一下,结果一个hr特意走上来看着我胸前label念我的名字,然后告诉我我
会被直接邀请参加今年2月份的onsite,我特意跟她确认了一下是不需要参加电面。她
还告诉我一个多星期前就知道要邀请我参加onsite,但是她们最近组织talk啥的实在太
忙了。最后这个hr还给我了如何准备onsite的建议。我激动万分啊,talk后立即恶补
system design的东西。
然后过了圣诞等到两周前,我想奇怪了,还不发正式邀请信。问了一个一起参加talk的
朋友,人家元旦刚过就收到onsite通知了,于是就发邮件问HR,没有回复。第二天收到
一个职位申请确认,然后收到一封邮件要求约个电面时间。我就奇怪了,就重复了一下
当初她告诉我的信息,结果没有回... 阅读全帖
t*****3
发帖数: 112
40
来自主题: JobHunting版 - fb国内申请的曲折经历+电面
国内申请的,今天早上刚电面挂了,比较郁闷,来发泄一下,然后继续努力。
去年11月在国内看到fb tech talk和招人的广告,于是就分别申请了。后来收到邀请参
加12月18日的talk,申请职位的截止日是12月15日。在快到12月15日时候,看到版上热
心内推,又特地在15号请内推了一把。18号的talk后来发现就是招人宣讲。会后跟组织
活动hr聊了一下,结果一个hr特意走上来看着我胸前label念我的名字,然后告诉我我
会被直接邀请参加今年2月份的onsite,我特意跟她确认了一下是不需要参加电面。她
还告诉我一个多星期前就知道要邀请我参加onsite,但是她们最近组织talk啥的实在太
忙了。最后这个hr还给我了如何准备onsite的建议。我激动万分啊,talk后立即恶补
system design的东西。
然后过了圣诞等到两周前,我想奇怪了,还不发正式邀请信。问了一个一起参加talk的
朋友,人家元旦刚过就收到onsite通知了,于是就发邮件问HR,没有回复。第二天收到
一个职位申请确认,然后收到一封邮件要求约个电面时间。我就奇怪了,就重复了一下
当初她告诉我的信息,结果没有回... 阅读全帖
j**7
发帖数: 143
41
来自主题: JobHunting版 - fb国内申请的曲折经历+电面
int smallestTime(String tasks, int coolDownTime) {
int time = 0;
// assume uppercase English letters
int[] lastSeen = new int[26];
for (int i = 0; i < 26; i++) {
lastSeen[i] = -1;
}
int index = 0;
for (int i = 0; i < tasks.length(); i++) {
int last = tasks.charAt(i) - 'A';
if (lastSeen[last] != -1) {
time += Math.max(0, coolDownTime - (index - lastSeen[last] +
1 - 2));
in... 阅读全帖
h****3
发帖数: 89
42
把这个followup 谢了一下,请大牛指点一下对不对
task 用一个字母表示
class 定义如下,返回的是最优的task排序
public char name;
/* how many time the same task has been scheduled */
public int rep;
public Task(char name, int rep){
this.name = name;
this.rep = rep;
}
public void setRep(int rep){
this.rep = rep;
}
i*******a
发帖数: 61
43
1 best time to sell and buy stock1
2 find k largest/smallest in n sorted list
3 lru cache
4 design etsy database schema
5 find element in rotated array
~~~~~~~~~~~~~~~~~~~~~~
都不难,可惜挂了,自己分析,可能是1 第四轮印度小哥说的优化用db polymorphism
没懂(真的不太懂这个)2自己写题慢了(可是聊天20分钟,面试官也没有要出下一题
的意思)
~~~~~~
dropbox的在线题目
就是一个矩阵,来表示n个人之间的关系,可以是朋友(用f)或者是敌人(e), 俄且
这个关系是双向的,现在 给你一个string的关系,还有两个人的id判断这个string的
关系是合法还是非法的,string关系比如 feffeef 是可以倒回来的。
~~~~~~~~~~
马上要面L家了,想请教一下几道经典题,new grad小白,啥都不懂,请各位大牛不吝
赐教:
1library design题,design一个java... 阅读全帖

发帖数: 1
44
来自主题: JobHunting版 - FB 面经
用一个max priority queue, 把tasks按照出现的次数塞到q里面,然后每次取出头
interval+1个tasks作为一个sub执行序列, 然后把那interval+1个tasks的出现次数分
别减1放回q里面,然后重复之前的过程直到所有的tasks出现次数都变成0,这个时候所
有sub执行序列的concatenation就是最优执行序列。求讨论
L***n
发帖数: 25
45
Location: Major medical device company in NYC
The Mixed Signal Electrical Design Engineer designs analog and digital
circuitry for new medical imaging products as well as improves circuitry in
existing products. Tasks include analyzing, designing, prototyping, and
testing analog, digital and support circuitry used in medical imaging
products. Responsibilities include documenting designs, working with other
engineering disciplines, and transitioning prototype designs to
manufacturing. Major resp... 阅读全帖
w********a
发帖数: 621
46
来自主题: JobMarket版 - job opportunities in Billerica MA
My client in Billerica MA has following open positions.
The base salary for senior position is around 110K
The base salary for principal position is around 130K
Please send your resume to me if you are interested in one of the positions.
Thanks in advance.
====================================================================
Title: Enterprise Architect
Division: G&A
Department: Technology IT and Infrastructure
Location: USA - Massachusetts - Billerica
Description:
The Enterprise Architect will wo... 阅读全帖
d**********g
发帖数: 5335
47
来自主题: JobMarket版 - HOUSTON公司招人
OPEN POSITIONS (www.spicyelement.com/pages/recruiting)
A. Sales Manager 销售经理
As a new comer in the US market, SNS Food LLC is founded in 2015 as the
whole-owned subsidiary of Chengdu SNS biotechnology Ltd. Company to develop
the US market for Chinese flavors, condiments and cooking sauces. As a key
member of management team to grow the business in US, the sales manager will
be the leading staff to develop and execute the sales strategy in US market
for the company products.
圣恩食品公司成立于2015年是成都圣恩生... 阅读全帖
f******D
发帖数: 332
48
来自主题: JobMarket版 - 招 机械 电子 固件 软件 工程师
北加州 Windsor 公司支持h1b 绿卡 new grad, entry level welcome
1. Mechanical Engineer Machine Design and Automation
JOB SITE: WINDSOR, California
Job Summary
Responsible for Automation and Machine design.
Tasks may include but are not limited to:
Design precision mechanisms and structures for accuracy, performance, and
manufacturability
Design with integration of cameras, lighting, and 3D sensors for measurement
Design robotics and machines for automation and integration
Design custom automation solutions... 阅读全帖
f******D
发帖数: 332
49
来自主题: JobMarket版 - 招 机械 电子 固件 软件 工程师
北加州 Windsor 公司支持h1b 绿卡 new grad, entry level welcome
1. Mechanical Engineer Machine Design and Automation
JOB SITE: WINDSOR, California
Job Summary
Responsible for Automation and Machine design.
Tasks may include but are not limited to:
Design precision mechanisms and structures for accuracy, performance, and
manufacturability
Design with integration of cameras, lighting, and 3D sensors for measurement
Design robotics and machines for automation and integration
Design custom automation solutions... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)