Redian新闻
>
请问网页app 能怎么实现多线程?
avatar
请问网页app 能怎么实现多线程?# Programming - 葵花宝典
s*l
1
学校有一个internal的teaching grant的申请。
主要内容是: Any topic, as long as it is related to developing and
promoting best practices in teaching and learning and student success, will
be considered for funding.
预算要求是: Funding to support faculty development in the area of
teaching and learning and student success. List detail budget.
这个grant的上限是$5000。以前从来没有申请过teahcing的grant。这次系主任鼓励我
申请。在我看来,teaching不需要额外购买设备,也不需要让学生干活付工资,也不需
要travel。那么我这个预算怎么写呢?我根本就不需要花钱呀,是不是我的想法不对?
avatar
b*a
2
rt
avatar
g*f
3
#!/bin/sh
#
#
# current web page for HP TouchPad Wi-Fi 16GB
webpage="http://www.shopping.hp.com/product/rts_tablet/rts_tablet/1/storefronts/FB355UA%2523ABA"
# check this string on the web page
mystr="Coming soon"
# email you when mystr disappears
# change this to your email address
myemail="a*[email protected]"
mysubj="HP Touchpad might be vailable Now!"
# sleep this amount of seconds before reshua
mysleep=30
while [ 1 ]
do
lynx -dump "$webpage" | grep "$mystr" > /dev/null
if [ $? -ne 0 ] ; then
# ring some bells
echo -e -n '\a'; sleep 1; echo -e -n '\a'; sleep 1; echo -e -n '\a'
echo "***** $mysubj *****"
# email you
echo "$webpage" | mail -s "$mysubj" "$myemail"
exit 0
fi
sleep $mysleep
done
avatar
s*f
4
比如我用JavaScript做一个网页app,使用摄像头自动检测人脸。我想开两个线程,一
个用于视频采
集和显示,另一个做检测。网上查了一下,好像现在浏览器还都不支持多线程,是这样
吗?
avatar
g*t
5
雇学生做课件什么的
...

will

【在 s**********l 的大作中提到】
: 学校有一个internal的teaching grant的申请。
: 主要内容是: Any topic, as long as it is related to developing and
: promoting best practices in teaching and learning and student success, will
: be considered for funding.
: 预算要求是: Funding to support faculty development in the area of
: teaching and learning and student success. List detail budget.
: 这个grant的上限是$5000。以前从来没有申请过teahcing的grant。这次系主任鼓励我
: 申请。在我看来,teaching不需要额外购买设备,也不需要让学生干活付工资,也不需
: 要travel。那么我这个预算怎么写呢?我根本就不需要花钱呀,是不是我的想法不对?

avatar
d*e
6
你个穷命
avatar
s*b
7
有货以后显示"HP Touchpad Available Now"吗?
avatar
s*i
8
Use so called "web workers"
avatar
s*l
9
好吧,谢谢。但是做个课件也不需要5000块呀。还有什么需要花钱的吗?

【在 g******t 的大作中提到】
: 雇学生做课件什么的
: ...
:
: will

avatar
b*a
10
中英文对照呢

【在 d********e 的大作中提到】
: 你个穷命
avatar
g*f
11
Note:
Depending on your system mail settings, the notification email might be filtered as spam by your email client, as the incoming email address
might be from domains like "localhost". So check your spam folder.
What I would suggest is, first run the script with "Coming soon" changed to something else, then you will get an email notification from your system, if the email is in spam folder, click "Not Spam". Now change mystr back to "Coming soon", and run the script again.
avatar
s*f
12
多谢,回头研究一下

:Use so called "web workers"
avatar
s*e
13
买软件?买试验设备?
avatar
d*e
14
lol, 高大上

【在 b***a 的大作中提到】
: 中英文对照呢
avatar
g*f
15
Likely but not certainly. This only checks for the disappearance of "Coming soon" on the web page... When that happens, your system will email you.

【在 s******b 的大作中提到】
: 有货以后显示"HP Touchpad Available Now"吗?
avatar
s*l
16
不需要。就是教个课,ppt和test bank都是出版社提供的现成的,啥都不需要。所以我
才烦心如何写这个预算。系主任要我申请,说是对于T&P有加分。

【在 s*******e 的大作中提到】
: 买软件?买试验设备?
avatar
b*a
17
你总算说句实话

【在 d********e 的大作中提到】
: lol, 高大上
avatar
b*k
18
多谢lz
为什么我运行,说 lynx:command not found
avatar
d*y
19
简单啊,让你课上最好的学生出去开学术会议。这是最好的理由了。或者说买些设备,
下个学期在你实验室寓教于乐。
avatar
d*e
20
我一向客观

【在 b***a 的大作中提到】
: 你总算说句实话
avatar
g*f
21
try /usr/bin/lynx
if you don't have lynx, try other text browsers, such as links (replace lynx with it in the script). you can look up text browsers on your system by:
man -k browser
or you can just "yum install lynx" or "apt-get install lynx"

【在 b******k 的大作中提到】
: 多谢lz
: 为什么我运行,说 lynx:command not found

avatar
r*c
22
幸运啊,可买到多了。tablet PC. google glasses. teaching video materials,
field trips...

will

【在 s**********l 的大作中提到】
: 学校有一个internal的teaching grant的申请。
: 主要内容是: Any topic, as long as it is related to developing and
: promoting best practices in teaching and learning and student success, will
: be considered for funding.
: 预算要求是: Funding to support faculty development in the area of
: teaching and learning and student success. List detail budget.
: 这个grant的上限是$5000。以前从来没有申请过teahcing的grant。这次系主任鼓励我
: 申请。在我看来,teaching不需要额外购买设备,也不需要让学生干活付工资,也不需
: 要travel。那么我这个预算怎么写呢?我根本就不需要花钱呀,是不是我的想法不对?

avatar
b*a
23
那以后别笑我穷了

我一向客观

【在 d********e 的大作中提到】
: 我一向客观
avatar
b*k
24
多谢lz,可以了
avatar
d*e
25
那也是客观的评价啊

【在 b***a 的大作中提到】
: 那以后别笑我穷了
:
: 我一向客观

avatar
b*k
26
多问一句,送给多个email, 用逗号还是分号分隔啊?
avatar
g*f
27
逗号 should work, otherwise, "man mail"

【在 b******k 的大作中提到】
: 多问一句,送给多个email, 用逗号还是分号分隔啊?
avatar
b*k
28
lz好人,非常感谢
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。