由买买提看人间百态

topics

全部话题 - 话题: text
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
w*******y
发帖数: 60932
1
Just came across this website
HeyWire is a social networking tool that lets you stay in touch with your IM
buddies and also through text messaging. You an use HeyWire for text
messaging, Chatting, tweeting and IMs. You can send the same message over
Facebook as well as over Text (SMS).
Heywire offers:
A real phone number as your texting identity. People can reply or send
messages to this number
Use your contacts on your phone
Push and sound notifications so that you know when you get a message
S... 阅读全帖
a*****e
发帖数: 216
2
来自主题: SanFrancisco版 - 有没有谁做 text mining 的?
有没有谁做 text mining 的?最近做了一个text mining 的项目。总的说就是处理一
些 text string , 用 regular expression 等,再计算一些 quantity 像 similarity
之类的,由于text string 有许多 pattern, 处理了现有数据的几乎的所有的 pattern
用 regular expression 等,但是就是不知道今后还有什么 pattern ,我告诉同组负
责数据传送的人说以后如果有新的pattern 进来,还要根据新 pattern 改 code, 他说
, 那简直是 nightmare, 他说应该有一个 universal 的东西,能一下处理所有的text
pattern ,然后就不用改 code 了。我上来问一下有没有做text mining 的?有没有
这样一种universal 的东西, 能一下处理全部的pattern , 然后今后不用改 code?
我感觉不能,因为 text mining code 都是随着 text 走的,text 变了, code 自然得
变呀。大家觉得?我就想问... 阅读全帖
a*****e
发帖数: 216
3
来自主题: Programming版 - 有没有谁做 text mining 的?
有没有谁做 text mining 的?最近做了一个text mining 的项目。总的说就是处理一
些 text string , 用 regular expression 等,再计算一些 quantity 像 similarity
之类的,由于text string 有许多 pattern, 处理了现有数据的几乎的所有的
pattern 用 regular expression 等,但是就是不知道今后还有什么 pattern ,我告
诉同组负责数据传送的人说以后如果有新的pattern 进来,还要根据新 pattern 改
code, 他说, 那简直是 nightmare, 他说应该有一个 universal 的东西,能一下处理
所有的text pattern ,然后就不用改 code 了。我上来问一下有没有做text mining
的?有没有这样一种universal 的东西, 能一下处理全部的pattern , 然后今后不用
改 code? 我感觉不能,因为 text mining code 都是随着 text 走的,text 变了,
code 自然得变呀。大家觉得?我就想问一... 阅读全帖
j*********r
发帖数: 24733
4
Democratic Sen. Mark Warner texted with Russian oligarch lobbyist in effort
to contact dossier author Christopher Steele
Sen. Mark Warner, the top Democrat on the Senate Intelligence Committee who
has been leading a congressional investigation into President Trump's
alleged ties to Russia, had extensive contact last year with a lobbyist for
a Russian oligarch who was offering Warner access to former British spy and
dossier author Christopher Steele, according to text messages obtained
exclusivel... 阅读全帖
w*******y
发帖数: 60932
5
Link:
http://m.myrealburger.com/quickPage.html?page=39762
Exclusive, Limited-Time Offers Only Through Your Mobile Phone!
Check out the current deals and sweepstakes below. To sign up for mobile
offers for a specific participating store location, visit the Store Locator.
Text FRIES to 81229 for a free small Natural-Cut French Fries.
Text BAKED to 81229 for a free Sour Cream and Chives Baked Potato with
purchase of a regular size Chili.
Text KID to 81229 for a free Kids' Meal with purchase of an E... 阅读全帖
w********1
发帖数: 3492
6
Wed, 18 Jul 2012 07:24:20 PDT
Apple has added a new feature to its online store, now offering a text
message alert notification service to keep shoppers up-to-date on their
orders. Apple will send users a text message once their order ships or is
ready for pickup at a retail store. Texts are only send between 8AM and 9PM
in the recipients' time zone.
Apple Notifications is a text-message-based alerts service designed to keep
you up-to-date on your shipment and/or pickup notification status. In
a... 阅读全帖
w*******y
发帖数: 60932
7
Shorten the distance between you and the people who matter most, with
international calling to landlines in more than 220 countries* with T-Mobile
. Get great rates on international calling to cell phones and landlines in
other countries as well as unlimited international text messaging, or choose
from a selection of discounted international calling services.
International Talk and Text - $10.00 per month
Put your world at your fingertips, with International Talk and Text from T-
Mobile. Add thi... 阅读全帖
i**********e
发帖数: 1145
8
来自主题: JobHunting版 - Text Justification
这题大家写写看,虽然没什么算法,但是很考基本功。
另外,这是一道很好的面试题。因为题意可以很含糊,但是里边有很多细节需要搞清楚
,设计输入和输出。还有 corner cases 也有,很容易没考虑周全。
题目参考以下链接:
http://www.cs.rpi.edu//academics/courses/fall09/ds/hw/01_text_j
我对题目的理解,简短的述说:
"Text Justification"
Given an array of words and a length L, format the text such that each line
has exactly L characters and is fully (left and right) justified.
You should pack your words in a greedy approach; that is, pack as many words
as you can in each line. Pad extra spaces ' ' when necessary so that ... 阅读全帖
l*********8
发帖数: 4642
9
来自主题: JobHunting版 - Text Justification
这个题目很容易出错啊。
我写在纸上的程序好几个bugs。
加上在电脑的调试修改的时间,我总共花了两个小时才让程序基本正确(还不敢保证百分百正确,可能需要更多的测试案例)。这么慢怎么面试啊?
下面是程序(测试程序就不贴了):
void JustifyOneLine(const vector & words, int L, int lineStart, int
& lineEnd, vector & blankNum)
{
blankNum.clear();
int lengthSum = words[lineStart].size();
for (lineEnd = lineStart+1; lineEnd < words.size() && lengthSum + 1 +
words[lineEnd].size() <= L; lineEnd++) {
lengthSum += 1 + words[lineEnd].size();
blankNum.push_back(1);
}
int ... 阅读全帖
i**********e
发帖数: 1145
10
来自主题: JobHunting版 - Text Justification
这题大家写写看,虽然没什么算法,但是很考基本功。
另外,这是一道很好的面试题。因为题意可以很含糊,但是里边有很多细节需要搞清楚
,设计输入和输出。还有 corner cases 也有,很容易没考虑周全。
题目参考以下链接:
http://www.cs.rpi.edu//academics/courses/fall09/ds/hw/01_text_j
我对题目的理解,简短的述说:
"Text Justification"
Given an array of words and a length L, format the text such that each line
has exactly L characters and is fully (left and right) justified.
You should pack your words in a greedy approach; that is, pack as many words
as you can in each line. Pad extra spaces ' ' when necessary so that ... 阅读全帖
l*********8
发帖数: 4642
11
来自主题: JobHunting版 - Text Justification
这个题目很容易出错啊。
我写在纸上的程序好几个bugs。
加上在电脑的调试修改的时间,我总共花了两个小时才让程序基本正确(还不敢保证百分百正确,可能需要更多的测试案例)。这么慢怎么面试啊?
下面是程序(测试程序就不贴了):
void JustifyOneLine(const vector & words, int L, int lineStart, int
& lineEnd, vector & blankNum)
{
blankNum.clear();
int lengthSum = words[lineStart].size();
for (lineEnd = lineStart+1; lineEnd < words.size() && lengthSum + 1 +
words[lineEnd].size() <= L; lineEnd++) {
lengthSum += 1 + words[lineEnd].size();
blankNum.push_back(1);
}
int ... 阅读全帖
t*****t
发帖数: 97
12
来自主题: Football版 - 'Deflator' text messages
Text Replaced on 6/18/15
Had they done so, they would have learned from either gentleman one of the
ways they used the deflation/deflator term. Mr. Jastremski would sometimes
work out and bulk up — he is a slender guy and his goal was to get to 200
pounds. Mr. McNally is a big fellow and had the opposite goal: to lose
weight. “Deflate” was a term they used to refer to losing weight. One can
specifically see this use of the term in a Nov. 30, 2014 text from Mr.
McNally to Mr. Jastremski: “deflate... 阅读全帖
w*******y
发帖数: 60932
13
Pageplus announced that as of February 17th, 2011, their 'Talk n Text 1200'
will include 2000 texts and 100MB of data (up from 1200 texts and 50MB). The
plan name will remain unchanged.
Also, data overage on the plan will now be 0.15/MB (previously 0.60/MB) and
voice overage will now be 0.10/min (previously 0.12/min).
All current Talk n Text 1200 cards/PINs will auto-convert to the new limits.
The price of the plan remains at $29.95/mo.
dont forget callingmart has a
coupon code: VDAY11-5 5% Of... 阅读全帖
w*******y
发帖数: 60932
14
Hey, didn't see a thread here about it, so:
Page Plus has kept their 1200 Talk n Text plan at $29.95, but they have
upped the texts from 1200 to 2000, and increased data from 50MB to 100MB.
Link:
http://www.pagepluscellular.com/Online Store/Minutes/Talk n Text 1200 Card.aspx
Hopefully this causes other prepaid companies with $30 plans to add more
benefits to it or slash the price. Currently T-Mobile Prepaid offers 1500
combination of talk and text plus 30MB data for $30 and Virgin Mobile's
PayLo... 阅读全帖
w*******y
发帖数: 60932
15
Handwritten email
iOS iPhone
Link:
http://itunes.apple.com/us/app/handwritten-email/id359107042?mt
Send your email and MMS texting with handwritten text. This will give your
emails a nice personal touch. Type on a conventional onscreen keyboard and
the app will convert the text into handwritten text.
w*******y
发帖数: 60932
16
来自主题: _DealGroup版 - 【$】AT&T Free Texting for 6-months (YMMV)
My 2-year contract just ended with AT&T. I called their customer service and
told them that I was no longer willing to pay for texting because I already
pay for unlimited data and texting IS data. (I had been paying $30 per
month for unlimited texting for my phone and my wife's.)
Customer Service passed me forward to another department (retentions
department, I suspect). I told them the same thing and asked what AT&T could
offer me to keep me as a customer. They said AT&T has a special holiday
o... 阅读全帖
w**********2
发帖数: 764
17
Flight MH370 - IBM engineer gets text message out from prison cell after
hiding cell phone 'in my ass'
(Source: http://the-tap.blogspot.ca/2014/03/307-ibm-engineer-gets-text-message-out.html)
http://4.bp.blogspot.com/-w0WJeRRjB6k/Uze9KNVbxRI/AAAAAAAAQdo/XtFRXpUhq8A/s1600/Malaysia-Plane-Texas-Victim.jpg
This handout photo provided by the Wood family shows Philip
Wood, an IBM executive who had been working in Beijing
over the past two years at Petronas ... one of three US
citizens on the flight.
J... 阅读全帖
c**0
发帖数: 9331
18
来自主题: Classified版 - [求购]Texts Instrument TI-84 $80+ML
我想要的物品:
Texts Instrument TI-84 $80+ML
单张面值:
Texts Instrument TI-84 $80+ML
可接受的价格(必须明码标价!):
Texts Instrument TI-84 $80+ML
物品新旧要求:
Texts Instrument TI-84 $80+ML
邮寄方式要求:
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
其他补充说明:
广告的有效期:
物品来源:
我的联系方式:
二手交易风险自负!请自行验证是否合法和一手卡!:
g*******y
发帖数: 1930
19
很多都是老题,不过我专门整理了一下:
1. string match:
string Text, Pattern;
find a substring of Text matches with Pattern.
解法纲要:Rabin-Karp, KMP, suffix tree
变种1b: multiple match:
string Text, PatternSet[n];
find a substring of Text matches with any one pattern in the set;
解法纲要: Rabin-Karp
2.LCSubstring:
string A,B;
find the longest common consecutive substring;
解法纲要:DP(A.len*B.len复杂度),suffix tree(A.len+B.len复杂度)
3.Longest Palindrome
string A;
find the longest substring of A which is a palindrome;
解法纲要:类似2
4.Wild
a***e
发帖数: 413
20
我不知道这种情况怎么继续努力啦,只能看看别人的答案?我觉得自己的思路是对的啊,
。。。有人碰到类似情况吗?
Last executed input:
["My","momma","always","said,",""Life","was","like","a","box
","of","chocolates.","You","never","know","what","you're","gonna","get."],
12
Given an array of words and a length L, format the text such that each line
has exactly L characters and is fully (left and right) justified.
You should pack your words in a greedy approach; that is, pack as many words
as you can in each line. Pad extra spaces ' ' when ... 阅读全帖
I*********t
发帖数: 5258
21
http://slickdeals.net/forums/showthread.php?sduid=0&t=2694279
Text HAMPTON to 40491 and you will recieve a text message with a phone
number to call. Call the number and give them your HHonors number and
recieve 10,000 points.
If you wish to know more, you can check out the thread on FlyerTalk here: http://www.flyertalk.com/forum/hilton-hhonors/1186697-text-loyalty-program-10-000-points.html
The post on Facebook: http://www.facebook.com/pages/Hampton-Inn-Boston-Raynham/343529570876?_rdr
EDIT - It... 阅读全帖
y****j
发帖数: 2971
22
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: yayajj (菜), 信区: SanFrancisco
标 题: Did something quick for Tshirt design based on text on protest banners
发信站: BBS 未名空间站 (Tue Nov 5 14:28:36 2013, 美东)
just grab some text from the text on banners from last week's protest, and
play with text
y****j
发帖数: 2971
23
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: yayajj (菜), 信区: SanFrancisco
标 题: Did something quick for Tshirt design based on text on protest banners
发信站: BBS 未名空间站 (Tue Nov 5 14:28:36 2013, 美东)
just grab some text from the text on banners from last week's protest, and
play with text
y****j
发帖数: 2971
24
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: yayajj (菜), 信区: SanFrancisco
标 题: Did something quick for Tshirt design based on text on protest banners
发信站: BBS 未名空间站 (Tue Nov 5 14:28:36 2013, 美东)
just grab some text from the text on banners from last week's protest, and
play with text
c**l
发帖数: 9003
25
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: yayajj (菜), 信区: SanFrancisco
标 题: Did something quick for Tshirt design based on text on protest banners
发信站: BBS 未名空间站 (Tue Nov 5 14:28:36 2013, 美东)
just grab some text from the text on banners from last week's protest, and
play with text
w*********e
发帖数: 5286
26
http://news.blogs.cnn.com/2010/03/21/text-white-house-on-abortion-related-executive-order/?hpt=T1
Text: White House on abortion-related executive order
The White House released a statement Sunday afternoon which included the
text of an executive order related to the funding of abortion in the health
care bill. You can read the full text of the statement and the executive
order below.
STATEMENT FROM COMMUNICATIONS DIRECTOR DAN PFEIFFER
Today, the President announced that he will be issuing an exe
y****j
发帖数: 2971
27
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: yayajj (菜), 信区: SanFrancisco
标 题: Did something quick for Tshirt design based on text on protest banners
发信站: BBS 未名空间站 (Tue Nov 5 14:28:36 2013, 美东)
just grab some text from the text on banners from last week's protest, and
play with text
k****3
发帖数: 2770
28
NND我也是,大家都text来text去,都是打球联系的,动则就是1刀,不是imessage我都
不敢text,但是当不住其它人text我
S*********s
发帖数: 1963
29
最近几周经常会在收imessage的时候,要么同时收到一份一模一样的text,要么
imessage没收到,只有text;
有时候我发imessage也会显示发送失败(我关闭了send as sms when imessage fails
)。
跟几个联系人的imessage联系,我的iphone都出现了这种情况。
请教是怎么回事?怎么解决?IPHONE 4S,AT&T,最新的iOS 5.1。
我text是一条2毛钱,收imessage的时候经常会变成很多条text,郁闷中。也不好让所
有跟我imessage的人都关了send as sms吧。。。
c********i
发帖数: 102
30
因为屏幕大小的缘故要换手机。但是现在的plan是每条text 0。1元。朋友们用iphone
的多,过去我们是自动imessage,我想知道如果换Android,有没有什么app可以让我继续
和iphone免费texting?
我知道有许多软件可以互相texting, 但那需要对方也下载一个同样软件吧?我想找的
是一个苹果用户不用另外装软件,就可以和我用imessage的软件。
考虑从Iphone换samsung galaxy s4.
提前谢过!
c***n
发帖数: 408
31
For example, we have a pdf file, which has different text. ABC, CDE, XYZ.
etc. These texts don't have hyperlink, just plain text.
Now we want to trigger an event when clicking on the text XYZ. Can we do
that? thanks
Z****r
发帖数: 157
32
This Flash Promo is open 8/18/2016 from 7 pm to 9 pm Pacific Time.
1) The BLT Free Plan will start out with the following:
Free/month: 4,750 talk, text, MMS, and MB (full-speed 4G LTE data).
2) Over the next five billing cycles, RingPlus will add an additional 250
talk, text, MMS, and MB (full-speed 4G LTE data) to the BLT Plan.
3) After that, you will have Free/month: 6,000 talk, text, MMS, and MB (full
-speed 4G LTE data) going forward.
For New Activations:
A $38 Top Up is required to cover ov... 阅读全帖
y***h
发帖数: 427
33
来自主题: CellularPlan版 - R+真的要疯了10K talk text mms+16G data
Moon Shadow Surfing Plan
Coming Soon: Opening before October 4th 2016
What is the Moon Shadow Surfing Free Plan?
The Moon Shadow Surfing Plan is open for new registrations as well as
upgrades. On October 4th 2016 4,000 Talk, 8,000 Messages (4,000 Text and 4,
000 MMS), 10,000 Surfing* Data. Talk and text will increase each month by
500 minutes, 500 texts, and 500 MMS until the plan reaches 10,000 talk and
10,000 text, 10,000 MMS. and 16,000 Surfing Data.
Porting moon shadow is not free as not ava... 阅读全帖
c*********n
发帖数: 87
34
Intelligent Fusion Technology (IFT) is a Research and Development (R&D)
company focused on information fusion technologies from basic research to
industry transition and product development and support. IFT is located in
Germantown, Maryland. We are working on modeling, control, communication,
signal/image/speech/text processing, security, autonomy, and decision making
in networked systems. We are looking for talented developers majoring in
engineering (e.g., EE, ME, AE), computer science, appli... 阅读全帖
o******6
发帖数: 9458
35
If you live near a Kmart and have a texting plan on your mobile device, you
can text NICKI to 56278 to get an in-store coupon valid for a FREE Nicki
Minaj Graphic Tee, valid today only and while supplies last! You can also
text ADAM to 56278 to get in-store coupons valid for FREE Adam Levine Women
’s Graphic Tee AND an Adam Levine Men’s Crewneck T-shirt, also valid today
only!
q*******n
发帖数: 1334
36
New text subscribers only. Text EXCLUSIVE to 555444 and then tap the link in
the reply text to sign up for Staples offers & alerts. After sign up, you
will receive a link with for a $10 off $10+ coupon to Staples to redeem in
store or online.
Google voice works too.
b*******o
发帖数: 11
37
Have dowloaded both English and Chinese text files for a MKV movie file. How
to display them together when watch movie? I need to change the name of
text file to be same as the movie name, but I have two text files...
thx
m*********n
发帖数: 158
38
【 以下文字转载自 Apple 讨论区 】
发信人: michaelrain (小虫), 信区: Apple
标 题: 问个iphone text message锝事情
发信站: BBS 未名空间站 (Fri Sep 24 14:37:30 2010, 美东)
准备在att搞个family plan 锝iphone;
准备给第一个手机加一个200条短信锝service, 每个月短信用锝很少;第二个手机还要
再买200条短信锝service吗?还是
可以用第一个手机锝text message service?
好像听说iphone也可以免费发短信?所以大家都不用att锝text service?
有没有这么回事情呀?谢谢了
l**********i
发帖数: 35
39
来自主题: shopping版 - Google voice发text message到手机
你进到Google Voice里的setting后选择你绑定的那个手机号码,点edit, 之后你可以
看到“Receive text messages on this phone”去掉这个,这是针对别人发短信到你GV上面的
还有在Voice&Text中Alert me when I have new voicemails中对应的Send a text
(SMS) message to:去掉就可以了,这是针对语音信箱留言后的短信提醒
d**********r
发帖数: 502
40
来自主题: SanFrancisco版 - how to stop text spam?
My number was registered to DO NOT CALL years ago. I recently keep receiving
spam text from (213) 447-9721 about loan offer or something else. when I
reply 'stop', it change a number like (315)******* or (646)******* and still
sending me spams. The website is american60.com, some spam website. When I
tried to call those numbers back, no one answer, no voice mail setup too.
How can I stop those? Thanks.
PS, I am using a small prepaid company, who has no option/service to stop my
text service or b... 阅读全帖
y****j
发帖数: 2971
41
just grab some text from the text on banners from last week's protest, and
play with text
R****7
发帖数: 617
42
messenger本来就是data,只不过wp7把它跟text集成到一起管理,text还是走的text
plan,att有什么可亏的
z*****a
发帖数: 3809
43
来自主题: Football版 - Patriots staff text messages
The NFL’s findings hinge on incriminating text messages sent between
McNally and Jastremski. And boy, are they incriminating. And hilarious.
After a game between the Patriots and Jets on Oct. 16, 2014, Brady “
complained angrily about the inflation level of the game balls,” leading to
the following text-message exchange between the two equipment managers:
McNally:Tom sucks … im going make that next ball a [expletive] balloon
Jastremski:Talked to him last night. He actually brought you up and sai... 阅读全帖
t****i
发帖数: 4225
44
只给有imessage的发text msg,别人给我发text,我就用google voice回。 每次都告
诉别人这是我的google voice number,结果过两天人家又忘了,还是一条text发过来。
s******y
发帖数: 28562
45
http://news.yahoo.com/ntsb-probes-case-texting-helicopter-07214
WASHINGTON (AP) -- The pilot of a medical helicopter that ran out of fuel
and crashed, killing four people, was distracted by text messages when he
should have been conducting pre-flight checks, accident investigators said
Tuesday.
该驾驶员忙于收发text message, 而忘记了检查机上的油量,结果升空之后就因为油量
用光而坠落,机上4人全部丧生。
l*******s
发帖数: 7316
46
https://www.yahoo.com/finance/news/why-might-soon-text-robots-1
SAN FRANCISCO (AP) — The robots are coming — to help run your life or sell
you stuff — at an online texting service near you.
In coming months, users of Facebook's Messenger app, Microsoft's Skype and
Canada's Kik can expect to find new automated assistants offering
information and services at a variety of businesses. These messaging "
chatbots" are basically software that can conduct human-like conversation
and do simple jobs once ... 阅读全帖
S**U
发帖数: 7025
47
The Authenticity of the Early Buddhist Texts by Bhikkhu Sujato & Bhikkhu
Brahmali, published in Volume 5 of the Journal of the Oxford Centre for
Buddhist Studies.
http://www.ocbs.org/lectures-a-articles-ocbsmain-121/online-pub
Abstract
This work articulates and defends a single thesis: that the Early Buddhist
Texts originated in the lifetime of the Buddha or a little later, because
they were, in the main, spoken by the Buddha and his contemporary disciples.
This is the most simple, natural, and ... 阅读全帖
s*********n
发帖数: 2283
48
来自主题: Apple版 - Text Message for IOS!~!~!~WOW
It is called online messenging, not text message indeed.
Strictly speaking, text messages are sent through control channels, while
online txt messenging is through data channel. These two are different.
For most users, they don't care, except the delivery is reliable or fast
or not.
text message is very fast and reliable.
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)