fasttext_score float32 0.02 1 | id stringlengths 47 47 | language stringclasses 1
value | language_score float32 0.65 1 | text stringlengths 49 665k | url stringlengths 13 2.09k | nemo_id stringlengths 18 18 | is_filter_target bool 1
class | word_filter bool 2
classes | word_filter_metadata dict | bert_filter bool 2
classes | bert_filter_metadata dict | combined_filter bool 2
classes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
0.890942 | <urn:uuid:8fd7629b-b558-486c-ac1a-3dc955e5f4e3> | en | 0.948103 | Take the tour ×
I would like to know if there are any documented performance differences between a Python interpreter that I can install from an rpm (or using yum) and a Python interpreter compiled from sources (with a priori well set flags for compilations).
I am using a Redhat 6.3 machine as Django/Apache/Mod_WSGI ... | http://stackoverflow.com/questions/15397024/performance-differences-between-python-from-package-and-python-compiled-from-sou/15397078 | dclm-gs1-285900002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.129659 | <urn:uuid:de6bafe6-187e-4a42-b361-65db807e67ca> | en | 0.930005 | Take the tour ×
There's a lot of information about dependent types in Haskell and Scala. For OCaml, not so much. Is anyone skilled enough to provide a coding example on how to achieve this in OCaml (if it's possible at all)? There is of course (the abandoned) Dependent ML, but it seems not possible to incorporate such... | http://stackoverflow.com/questions/15693838/dependent-types-in-ocaml?answertab=oldest | dclm-gs1-285910002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.51631 | <urn:uuid:912a6a28-dbf0-4284-9cd4-2e0a1b440fad> | en | 0.783202 | Take the tour ×
I need to encode a javascript function into a JSON object in PHP.
$function = "function(){}";
$message = "Hello";
$json = array(
'message' => $message,
'func' => $function
echo json_encode($json);
What I want is:
Can I do this with json_encode?
share|improve this question
add co... | http://stackoverflow.com/questions/1745248/php-json-encode-and-javascript-functions | dclm-gs1-285930002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019785 | <urn:uuid:918733cf-c497-4683-a7a3-3db3809ee2f2> | en | 0.871641 | Take the tour ×
I am sorry if this question is a bit of repetition of early questions but I didn't find any relevant answers.
I am building a FB app and I am trying to publish to a friend wall using this code:
$attachment = array(
'access_token' => $facebook->getAccessToken(),
'message' => 'Did a Test Post :',
'name... | http://stackoverflow.com/questions/4375956/facebook-app-posting-on-a-friend-wall/7620380 | dclm-gs1-285990002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.47353 | <urn:uuid:ef2c1943-3238-4e71-ae51-c37affd77be2> | en | 0.772704 | Take the tour ×
So I have a unixtime datetime stamp. For arguments sake, lets say it's now at 23:49:24 on 21/02/2011 (GMT). This would be:
Now, is there anyway to remove the seconds component from this? I'm writing this in Obj-C so currently I have:
NSDate *todayNow = [NSDate date];
int unixtimeNow = [todayNow time... | http://stackoverflow.com/questions/5072605/removing-seconds-from-unixtime-value/11598579 | dclm-gs1-286010002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019445 | <urn:uuid:820e77d5-731b-4af5-946d-8693e5e49782> | en | 0.810308 | Take the tour ×
I just noticed that there is some ancient version of documentation accessible directly at http://pypi.python.org/pypi/gensim (right at the top, under Package Documentation). I may have tested that feature when first trying PyPi, ages ago.
Now real documentation for my package is maintained elsewhere. ... | http://stackoverflow.com/questions/6521931/how-to-delete-documentation-from-pypi/6531582 | dclm-gs1-286030002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.566414 | <urn:uuid:8efebba0-1fdc-4cd4-93fe-a41865b62b29> | en | 0.893398 | Take the tour ×
I'm trying to download a file using Ruby and Open-URI but I'm running into a problem with filenames containing brackets ( '[' and ']' ).
According to this page, brackets in URLs in this position is invalid because they're supposed to be encoded before that point. An example URL that I'm trying to retr... | http://stackoverflow.com/questions/6767339/dl-a-file-with-ruby-open-uri-with-brackets-in-the-filename | dclm-gs1-286040002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.08024 | <urn:uuid:3fa11b4c-1ec5-46d4-9da1-97ad6447c151> | en | 0.911377 | Take the tour ×
i testing the webpage where i want to pull current users comment like count on my webpage.
I tested so many code but anything is not working for me.
Can anyone show me how to pull the like count for current users comment.
I tried Javascript, php sdk but could not pull the information.
Thanks in adv... | http://stackoverflow.com/questions/7118004/facebook-comment-like-count | dclm-gs1-286050002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.645122 | <urn:uuid:9a0e09b0-c4bf-4d6f-97ed-69e21203d050> | en | 0.736341 | Take the tour ×
I'm trying to create a neatly formatted table on C++ by setting the width of the different fields. I can use setw(n), doing something like
cout << setw(10) << x << setw(10) << y << endl;
or change ios_base::width
cout.width (10);
cout << x;
cout.width (10);
cout << y << endl;
The problem is, neithe... | http://stackoverflow.com/questions/7248627/setting-width-in-c-output-stream?answertab=active | dclm-gs1-286060002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.452136 | <urn:uuid:cd6d0263-dbd1-4982-9c00-29902ddc8d9a> | en | 0.859139 | Take the tour ×
I want to build a webframe application in Java for Blackberry AppWorld. I need an app page that will show a website without leaving the application. In iOS, this would be a UIWebView or in Android, this would be a webframe.
share|improve this question
add comment
1 Answer
You want to use a BrowserFi... | http://stackoverflow.com/questions/7791949/blackberry-appworld-webframe | dclm-gs1-286070002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.424233 | <urn:uuid:e6c25960-8953-4cdc-841c-1c1d66524a7e> | en | 0.7496 | Take the tour ×
I have a Dictionary that contains items and prices. The items are unique but slowly get added and updated through the lifetime of the application (that is, I don't know the item strings in advance). I would like to bind this structure to a DataGridView, so I can show updates on my Form, something like:... | http://stackoverflow.com/questions/854953/datagridview-bound-to-a-dictionary/854969 | dclm-gs1-286110002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.137809 | <urn:uuid:5fee4fa0-993d-471a-90ae-8100f22928a7> | en | 0.864584 | Take the tour ×
Basically, I would like to be able to be able to pass a function_A with any parameter to T_function, so that T_function could execute some commands, then call the passed-in function
This is what I came up with (which might make my goal more clear) :
template <typename t_return, typename t_param>
void... | http://stackoverflow.com/questions/8951545/c-template-that-accepts-any-function-with-one-parameter | dclm-gs1-286120002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.083025 | <urn:uuid:ead17e7b-4d17-4c6e-88b6-140cbfcac2a0> | en | 0.771735 | Take the tour ×
I'm making an application that usues a jSpinner with a max number 30,I should choose a value from this jSpinner and tape a String to the jTextField and the result will appear in the Textarea,when I compile I have many problems concerning the method jSpinner1State,can any one help me because I don't kno... | http://stackoverflow.com/questions/9380241/how-can-i-get-the-value-of-a-jspinner | dclm-gs1-286140002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.370209 | <urn:uuid:bcd1199c-e886-43f3-95f8-fa95c3a300b0> | en | 0.943295 | Hotline Miami > 일반 토론 > 제목 정보
The Dapper Gent 2013년 10월 20일 오후 4시 56분
My Game Theory
Jacket: Jacket, the first playable character, represents the majority of the gaming crowd. He is a psychopath who kills people simply because its fun and he was told to. This is what a lot of players do in video games.
Helmet: Helmet ... | http://steamcommunity.com/app/219150/discussions/0/792924412368563163/?l=koreana | dclm-gs1-286160002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.201631 | <urn:uuid:9348e2d6-eb1e-45d8-a99a-7f121e9015d9> | en | 0.937829 | Take the tour ×
I happen to know that formatting a disk even 10 times does not destroy everything. Is there a good shredding utility I can use on Linux ?
share|improve this question
Zero-filling does. dd is enough for that. – Dennis Jan 26 at 0:16
Need to do it more than once. And even so data can be recovered. Use ... | http://superuser.com/questions/541887/what-shredding-utility-can-i-use?answertab=active | dclm-gs1-286200002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.042879 | <urn:uuid:27a91809-e94b-4d63-b9d6-81303bf931f1> | en | 0.97912 | * DoubleStandard: When Mei's true gender was exposed, the principal of the all-girls school objected on Mei staying out of fear he'd assault the girls. The student council president then grabbed Mei, rendering him completely defenceless, and that was enough to make the principal believe it's okay for him to stay, witho... | http://tvtropes.org/pmwiki/folderizer.php?target=Main.MeiNoNaisho | dclm-gs1-286270002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.021639 | <urn:uuid:040b15f2-34ab-4bb3-a676-297753effa00> | en | 0.955812 | main index
Topical Tropes
Other Categories
TV Tropes Org
Recap: Pushing Daisies S 2 E 2 Circus Circus
The Past
Young Ned runs away from Boarding School, and happens across a group of kindergardeners on a field trip. They are exitedly eyeing a birds' nest, hoping that the baby birds they imagine are inside will ... | http://tvtropes.org/pmwiki/pmwiki.php/Recap/PushingDaisiesS2E2CircusCircus | dclm-gs1-286290002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.735986 | <urn:uuid:bd874a95-f4e7-4ab0-9fc8-125d6479715c> | en | 0.824823 | Take the tour ×
In Windows, TexWorks loads the missing sty packages itself. In Linux it doesn't: how is this sty loading managed in Linux?
share|improve this question
add comment
2 Answers
Assuming you are using texlive, the common latex distribution these days, search path management is performed by kpsepath. To f... | http://unix.stackexchange.com/questions/65045/latex-auto-package-loading?answertab=oldest | dclm-gs1-286350002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.609155 | <urn:uuid:1e22d5af-36f2-4623-8282-cfe4dcb04556> | en | 0.903547 | Take the tour ×
I'm using the tmux integrating with iterm2, which can create a tab in iterm 2 for each window created by tmux.
But somehow this doesn't make much sense for the usual ssh scenario, where we first ssh to a remote host and work with multiple windows through tmux.
I want to have multiple tabs in iterm 2,... | http://unix.stackexchange.com/questions/76149/tmux-with-iterm2-attach-a-remote-session | dclm-gs1-286360002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.197608 | <urn:uuid:f34f3da4-bca3-411a-b563-2a5ae412c5f5> | en | 0.967017 | StarCraft® II
Infestors in danger !!!!
My bigger problem is now the zerg has literally no anti-armour.
You can argue roaches but those things die to marines.
Even Roach hydra loses to MMM.
So what the hell.
Reply Quote
You can argue roaches but those things die to marines.
Even Roach hydra loses to MMM.
So what the h... | http://us.battle.net/sc2/en/forum/topic/7593620749?page=2 | dclm-gs1-286380002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.068321 | <urn:uuid:4f8b9229-f39c-497b-821b-f316d7e3f429> | en | 0.962263 | You are viewing whichbaby
It's been over a year...
at work
...and I've never felt better.
Watching Lakers vs Houston. Can't help but laugh every time the commentator says, "and he's blocked by World Peace!"
Dia Frampton
Human beings naman tayo eh. So dean na din natin siya.
Lauren Montino on Greendale's Dean Pelton... | http://whichbaby.livejournal.com/ | dclm-gs1-286430002 | false | false | {
"keywords": "mouse"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.027721 | <urn:uuid:404ebe7b-82c8-4a15-9e1c-6423e52b5478> | en | 0.939931 | Help Wikitravel grow by contributing to an article! Learn how.
From Wikitravel
Jump to: navigation, search
Skåne landscape outside Helsingborg.
[edit] Cities
• Malmö - Scania's largest city, and the regional center, connected to Copenhagen by the Öresund bridge
• Eslöv - a suburb of Malmö home to several castl... | http://wikitravel.org/en/Scania | dclm-gs1-286440002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.02631 | <urn:uuid:47505c67-92ca-491a-8e19-f81638add04f> | en | 0.92775 | Community Update
World Pulse Toolkits Available!
The Issue with Nigeria's Unemployment Rate
A young woman struggles through university, enduring a few strikes, disreputable advances from cultists, depraved lecturers and other similar low-life and manages to graduate with a second class upper degree, maybe even a f... | http://worldpulse.com/node/62886 | dclm-gs1-286450002 | false | false | {
"keywords": "engineering"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.033249 | <urn:uuid:962c846f-8e7a-4438-942a-f82a49a0f253> | en | 0.950986 | Points: 0
Cover Story: It Came From Outer Space!
Standing Ovation
Total Points:
Achievement Whore
Last Visit:
Sex: F Age: 91
What I'm Playing
My Friends
My Clubs
Babes-club.1up.com Babes-club.1up.com
1207 members
Hey... Atleast you guys are finally fucking working...
Thanks for deleting my greeting asshol... | http://www.1up.com/do/my1Up?publicUserId=5726563 | dclm-gs1-286460002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.894795 | <urn:uuid:390488d8-9911-4efa-859b-3fafd1a43604> | en | 0.928215 | Skip to navigation | Skip to content
Study predicts end of world as we know it
Abstract blue bubbles
Inflationary bubbles, each being a universe, pop in and out of existence like bubbles in boiling water (Source: Vladimir and Dilyana/iStockphoto)
But one expert says the result isn't valid because the researchers c... | http://www.abc.net.au/science/articles/2010/10/08/3028955.htm | dclm-gs1-286530002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.01873 | <urn:uuid:6efdda30-b6ba-44bf-9350-14384fcfa727> | en | 0.953938 | Sri Mulyani Indrawati
Sri Mulyani Indrawati
Sri Mulyani Indrawati is Managing Director of the World Bank Group and a former finance minister of Indonesia.
Winning the transition
New governments should tackle corruption and recognise that there is no one-size-fits-all way towards democratisation.
Last Modified: 07 Aug 2... | http://www.aljazeera.com/indepth/opinion/2011/07/2011731123356630408.html | dclm-gs1-286550002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.096371 | <urn:uuid:57b5166a-13e7-460c-ab11-7438458d1c58> | en | 0.882957 | Bahrain: arbitrary detention / fear of torture
Bahrain: arbitrary detention / fear of torture
Index Number: MDE 11/005/1996
Date Published: 8 March 1996
Categories: Bahrain, Middle East And North Africa
Muna Habib al-Sharrakhi (f), Zahra Salman Hilal (f), Iman Salman Hilal (f), Na'ima 'Abbas (f), Huda Salih al-Jalla... | http://www.amnesty.org/en/library/info/MDE11/005/1996/en | dclm-gs1-286590002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.04178 | <urn:uuid:7defddfb-2972-4799-817e-bd4f930eda48> | en | 0.889697 | | |
Lytro Turns Ph.D. Concepts into Cocktail Conversations
February 20, 2013
Kira Wampler, vice president, marketing at Lytro, discussed how Lytro has crafted a compelling story about their new consumer light field camera through the use of social media and word-of-mouth.
Members Only Content
User Name (email): | http://www.ana.net/miccontent/show/id/p-moc-feb13w-lytro/topic/brandbuilding | dclm-gs1-286600002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.063476 | <urn:uuid:b691d0ac-7bf7-4d77-b85b-65f6bcd99ea8> | en | 0.965258 | Thursday, October 21, 2010
Mac OS 10.7 - Good. MacBook Air - Crap.
On October 20th, Apple held their "Back to the Mac" event where they released 3 big things. One of the three was iLife 11. More improvements than the last, free for new macs, $50 for upgrade. I think it should be free like Microsoft thinks so. The sec... | http://www.anthonyguidetti.com/2010_10_01_archive.html | dclm-gs1-286620002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.035839 | <urn:uuid:9c4f541d-1478-4c99-a03d-7e86f1757ece> | en | 0.738861 | %0 Book Section %B Lal R ed. Soil Quality and Agricultural Sustainability. %D 1998 %T Addressing Natural Resources Management Challenges in the Humid Tropics through Agroforestry Research. %A Garrity, D. %E asb@cgiar.org %C Michigan, USA %I Ann Arbor Press %K agroforestry %K Asia %K Deforestation %K economic %K humid t... | http://www.asb.cgiar.org/asbpubs/export/tagged/1631 | dclm-gs1-286630002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.02159 | <urn:uuid:ee99adff-cadc-4ff5-8bb1-e6536ecb5605> | en | 0.983089 | September 4th, 2011 - 10:19 pm
Five Thoughts on the Baltimore Grand Prix
2. The speed is awe-inspiring. I've never been a car racing guy and I'm not going to start now, but there's something to be said for standing close to the track as these incredible machines zoom past. You really don't get a sense of the speed ... | http://www.baltimoremagazine.net/chatter/2011/09/five-thoughts-on-the-baltimore-grand-prix?mini=events%2Fcalendar%2F2012-10 | dclm-gs1-286650002 | false | false | {
"keywords": "promoter"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.036972 | <urn:uuid:3dca1ccb-ffdd-4079-9ddb-c35b43fea728> | en | 0.982626 | Maddy parents 'hopeful' over appeal
Banbury Cake: Latest news Latest news
The parents of Madeleine McCann have urged people to "rack their brains" and come forward with information after police said they had a new focus on the investigation.
The senior investigating officer told BBC's Crimewatch programme one readin... | http://www.banburycake.co.uk/uk_national_news/10738165.Maddy_parents__hopeful__over_appeal/?ref=nt | dclm-gs1-286670002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.060629 | <urn:uuid:13fef68a-3b4d-4e91-968b-df927c0e5340> | en | 0.96872 | Battle for Libya: Gaddafi troops engage Zawiya rebels
Col Gaddafi's heavy armour is poised outside the town of Zawiya
Fierce fighting has rocked Libya's Zawiya, 50km (30 miles) west of Tripoli, as rebels repelled government efforts to retake the key city.
Pro-government forces were pushed out of the city centre in h... | http://www.bbc.co.uk/news/world-africa-12654670 | dclm-gs1-286690002 | false | false | {
"keywords": "blast"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.02003 | <urn:uuid:f3ccae0d-edb6-4f42-9e2e-581ddce2fcb7> | en | 0.947861 | Movies Similar to Habit (1996)
Habit (1996)
Member Rating:
This well-crafted independent horror film from writer-director Larry Fessenden is one of the better films to emerge from the '90s "revisionist" movement in vampire cinema, which also included Abel Ferrara's The Addiction and Michael Almereyda's Nadja. Fessen... | http://www.blockbuster.com/browse/catalog/movie/similar/93373 | dclm-gs1-286750002 | false | false | {
"keywords": "mouse"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022691 | <urn:uuid:39ecf061-4021-40da-aa41-7a6d4e8e5e9e> | en | 0.955358 | Movies Similar to Starry Night (1999)
Starry Night (1999)
Play Trailer and Clips
Member Rating:
Read More
Abbott AlexanderLisa Waltz, (more)
Paul Davids
Theatrical MPAA Rating:
View All Versions to rent and buy
Blockbuster Instant Video
What's Your Take?
Member Reviews
Sabrix W.
Good movies al... | http://www.blockbuster.com/catalog/movie/similar/135991 | dclm-gs1-286760002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.801053 | <urn:uuid:a284d63c-03ec-4f71-bb80-fc3a66b78868> | en | 0.845228 | JavaScript Object Creation Pattern
I was reading an article here:
It tells about five ways of creating objects. But my question is one of his way (3) is:
myApp.Notepad = function(defaultFont) {
var that = {};
that.writeable = true;
that.font = defaultFont;
that.setFont = function(theFont) {
... | http://www.blogosfera.co.uk/2012/02/javascript-object-creation-pattern/ | dclm-gs1-286770002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.385898 | <urn:uuid:22c7451b-7a58-4b25-b423-2661c4d52e4d> | en | 0.931921 | BrainyQuote Logo
I think the key to happiness is allowing ourselves to not feel bad or guilty for feeling it, and letting it be contagious. And to not be dependent on other people to create your own happiness.
Brittany Murphy
Share with your Friends
Everyone likes a good quote - don't forget to share. | http://www.brainyquote.com/quotes/quotes/b/brittanymu482674.html | dclm-gs1-286800002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.055869 | <urn:uuid:accd0ecc-13b7-4efe-ada1-d29772f06ccd> | en | 0.96674 | War Is Hell on Wall Street's Nerves
By Eric Wahlgren As President Bush struggles to persuade the rest of the world of the need to attack Iraq and oust Saddam Hussein, Britain seems to be the only U.S. ally so far prepared to sign on for the campaign. If the U.S. decides to basically go it alone in Iraq, Wall Street wi... | http://www.businessweek.com/stories/2002-09-11/war-is-hell-on-wall-streets-nerves | dclm-gs1-286880002 | false | false | {
"keywords": "spike"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.032783 | <urn:uuid:f8570a2f-1bbb-4eb0-9dbe-13ac04215aab> | en | 0.829993 | 24 Holiday Wishes
I hope he also wished to win “Best Mustache” next year. Despite the economic hardships, New Yorkers still have hope, both mundane and fantastic. posted on
I know, right? Now tell your friends!
24 Holiday Wishes
The Hairpin
Facebook Conversations
Hot Buzz
Where Can “Homeland” Go From Here?
... | http://www.buzzfeed.com/hairpin/wishes-the-hairpin-2meh | dclm-gs1-286890002 | false | false | {
"keywords": "hairpin"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.056194 | <urn:uuid:303af14e-4f29-427d-8fab-2806bfc81278> | en | 0.929447 | Reply to a comment
Reply to this comment
CalCatMom78410 (Inactive) writes:
Sesame Workshop is again requesting that Obama take the stupid ads DOWN.
They want America to know that Big Bird is apolitical. They do not take sides. They do not participate in the political bull. They want no part of it.
Big Bird is tell... | http://www.caller.com/comments/reply/?target=61:126426&comment=823440 | dclm-gs1-286910002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.307341 | <urn:uuid:523a9106-d321-4a02-836c-a36fd5294b60> | en | 0.962732 | Call 800-914-1562
Don't wait - request a free consultation today.
Sokolove Law
Our Nurse Case Managers Are Here to Help
If you have questions, our nurse case managers are available to listen to your concerns and can serve as a knowledgeable resource. Call today at 800-914-1562.
Cerebral Palsy Questions
The follo... | http://www.childbirthinjuries.com/Cerebral-Palsy/Frequently-Asked-Questions | dclm-gs1-287000002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.036607 | <urn:uuid:8f711d39-3feb-4fe9-9faa-1ddccb8bf312> | en | 0.976346 | No recent wiki edits to this page.
Kamui Shiro, a fifteen-year-old teenager, decided to accomplish his mother's wish. He comes back to Tokyo to follow his destiny. Six years has passed since the last time he came to Tokyo, since the last time he saw the Monos.
Fuma and Kotori Mono are two students who live in the Shi... | http://www.comicvine.com/x-1-prelude/4000-108628/ | dclm-gs1-287030002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.083944 | <urn:uuid:86f23fb9-df78-4aea-a399-089f8384aaab> | en | 0.942192 | Reply to a comment
Reply to this comment
navyrunner writes:
in response to landry70
You are a poor example of a Millington resident. Quit your belly aching and accept the inconvienence one weekend a year. This is a qualifying event for the Ironman as the Memphis marathon is for the Boston. While I haven't lived in ... | http://www.commercialappeal.com/comments/reply/?target=61:138024&comment=374952 | dclm-gs1-287050002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.386303 | <urn:uuid:42d0d4de-c9cb-4f11-addf-e2ddc463c521> | en | 0.967864 | Reply to a comment
Reply to this comment
onekeeper#207110 writes:
in response to StayThirstyMyFriends:
Everyone just needs to back off on NW/DL. Yes, we pay higher fares than we should. But Memphis is a hub, even with the dwindling number of flights. You have no idea how much of an advantage it is to not have to ma... | http://www.commercialappeal.com/comments/reply/?target=61:273578&comment=1304736 | dclm-gs1-287060002 | false | false | {
"keywords": "delta"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.024889 | <urn:uuid:5bf095a8-3b3f-45b1-840e-f1f0442831cd> | en | 0.976505 | Reply to a comment
Reply to this comment
zander writes:
in response to EdwardAbbeyfan:
Anyone who loves the game of basketball and is a bonafide Tiger fan has been driven to insanity by this team. Even though our talent is far better than mediocre we are simply not the talented team we think we are. Ball don't lie.... | http://www.commercialappeal.com/comments/reply/?target=61:290336&comment=1380089 | dclm-gs1-287070002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.045133 | <urn:uuid:26e3a2d7-b203-49cb-9419-e27d41b70096> | en | 0.975836 | Reply to a comment
Reply to this comment
HoraceAndDewey writes:
in response to homersimpson:
Interesting article, but a little off target. STEM is much more than researchers. STEM is about the kids that are going make advances in computer science - the techies. STEM is about the kids that are going to repair all th... | http://www.commercialappeal.com/comments/reply/?target=61:331424&comment=1613882 | dclm-gs1-287090002 | false | false | {
"keywords": "engineering"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.812859 | <urn:uuid:39ad9728-6605-4cbc-b7b3-a6e0bde31a4b> | en | 0.924813 | Reply to a comment
Reply to this comment
tim#320142 writes:
I'm not against the idea of building a new stadium, but can someone please explain what is so great about having it be 'on campus'?
| http://www.commercialappeal.com/comments/reply/?target=61:62312&comment=68161 | dclm-gs1-287100002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.026007 | <urn:uuid:876e5b94-9857-4d76-ae2a-bae94bfa2eba> | en | 0.957519 | 10 Reasons Why Nike Needs To Start Retroing LeBrons
LeBron is Poised For Back-to-Back Titles
Don’t let the Bulls fool you, Miami went on that crazy winning streak and have won 41 out of their last 45 for a reason. As much as Birdman (the white one who plays for the Heat) jokingly is taking the credit, it’s the fact t... | http://www.complex.com/sneakers/2013/05/10-reasons-why-nike-needs-to-start-retroing-lebrons/lebron-is-poised-for-back-to-back-titles | dclm-gs1-287110002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.281432 | <urn:uuid:ac000aa2-f042-434a-9317-c5b036960381> | en | 0.950395 | Reply to a comment
Reply to this comment
ThinkthereforeAm writes:
The reason people across the board are skeptical of any proposal set forth right now is simple. They are continually being lied to. Plain and simple. And they know it. Although a new TIF district's money cannot be used to fund the arena, the opposite ... | http://www.courierpress.com/comments/reply/?target=61:204330&comment=666885 | dclm-gs1-287150002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022587 | <urn:uuid:67dd5a99-2460-4121-bfa7-105c174d85b2> | en | 0.968749 | Reply to a comment
Reply to this comment
adksdk22 writes:
Why have the dog put down if it was just doing it's job??? Maybe you shouldn't have came in like that especially when you know the dog may get spooked too.
| http://www.courierpress.com/comments/reply/?target=61:296449&comment=1046639 | dclm-gs1-287160002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.031891 | <urn:uuid:04fb2f94-2cf3-45e6-9589-a510bec3f6dd> | en | 0.969339 | Reply to a comment
Reply to this comment
BigPappa writes:
If the committee would have identified a substantial amount of savings as a result of the consolidation, I would see its benefits and support it. They didn't identify any savings. Tell us who and what will be eliminated/consolidated and tell us how much will ... | http://www.courierpress.com/comments/reply/?target=61:317389&comment=1202621 | dclm-gs1-287170002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.181551 | <urn:uuid:358ecde4-0d99-418f-bd78-79c19a7e07e3> | en | 0.936926 | Reply to a comment
Reply to this comment
JohnDoe454 writes:
in response to NewburghTwo:
(This comment was removed by the site staff.)
8% means a lot more to a guy making $12 an hour(if they even pay that) than a guy making $5 million/yr.
$5 mil a year: oh I already have everything I could ever want or possibly im... | http://www.courierpress.com/comments/reply/?target=61:325569&comment=1257839 | dclm-gs1-287180002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.053029 | <urn:uuid:6af0dbfb-338f-4b28-b1f9-02076be91a3e> | en | 0.971156 | Reply to a comment
Reply to this comment
asus1 writes:
She engaged in a criminal cover up. If it was not willingly, she should have resigned because her employer used her to cover up a lie to the entire country. That’s what honest people do.
In 1996, while serving as assistant secretary of state for African affairs... | http://www.courierpress.com/comments/reply/?target=61:342167&comment=1354360 | dclm-gs1-287190002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.061021 | <urn:uuid:d29416b1-4c19-4a7e-9f16-4329a6d6c6bd> | en | 0.944227 | Reply to a comment
Reply to this comment
MDupont writes:
But it is being covered in the media. Just because Fox tells you it is being ignored doesn't mean it it true. Change the channel, read a newspaper, go online, etc.
| http://www.courierpress.com/comments/reply/?target=61:343253&comment=1360450 | dclm-gs1-287200002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.033205 | <urn:uuid:ef227366-5267-49f1-95f2-55ac58b3673f> | en | 0.961304 | Email this article to a friend
Boy, 4, fatally mauled by his neighbor's pit bull after he climbed over chain link fence and into the dog's reach
* indicates fields that are mandatory.
Security code | http://www.dailymail.co.uk/news/article-2265945/emailArticle.html | dclm-gs1-287230002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.172951 | <urn:uuid:414e92be-da60-4d55-8ec5-774206b0d550> | en | 0.971883 |
Supplies for my experiement:
Magstripe Card Reader from eBay (about $50)
My Driver's License
Today's action recapped many themes of recent days with the manufacturing index for one month swaying the results, the fight at S&P 1450 that Mr. Sogi has emphasized, the fall below the Dow round of 14000, an... | http://www.dailyspeculations.com/wordpress/?m=200801&paged=2 | dclm-gs1-287240002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.135198 | <urn:uuid:067cdb9f-60db-43f1-bdcb-312bf379b9cc> | en | 0.865804 | Explore - Montana
1. Lost and Found
Lost and Found
2. Small Farms Across the United States
Small Farms Across the United States
written by: Amanda Dameron
3. The New Clothesline Company
The New Clothesline Company
The New Clothesline Company is committed to producing environmentally... | http://www.dwell.com/explore/geos/north-america/united-states/montana?f[0]=ds_created%253A%255B2011-01-01T00%253A00%253A00Z%2520TO%25202012-01-01T00%253A00%253A00Z%255D | dclm-gs1-287370002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.120374 | <urn:uuid:cc9aa6db-424c-41b1-84ec-a4678bb8d8bc> | en | 0.970528 | NOT long ago, a bomb blew off the front of the county courthouse in Vallejo, California. The bomber was a man with two felony convictions who, it was said, intended to avoid a third trial by demolishing the courthouse where his trial was to take place. Criminals in California have acquired the habit of thinking in thre... | http://www.economist.com/node/146952/print | dclm-gs1-287410002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.06479 | <urn:uuid:f40bd791-9be2-4e10-b97a-d89e57f55625> | en | 0.948001 | Places Discussed (Cyclopedia of Literary Places)
Since the games of real children in London’s Kensington inspired the drama, Barrie writes that...
(The entire section is 307 words.)
Want to Read More?
Historical Context
At the turn of the twentieth century, Great Britain was a formidable world power, control... | http://www.enotes.com/topics/peter-pan/in-depth | dclm-gs1-287470002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.028592 | <urn:uuid:564f9419-3bde-4c98-b357-877541a0f065> | en | 0.881508 | Inventors list
Assignees list
Classification tree browser
Top 100 Inventors
Top 100 Assignees
CITY 17, LLC Patent applications
Patent application numberTitlePublished
20090271212METHOD, SYSTEM, AND STORAGE DEVICE FOR USER MATCHING AND COMMUNICATION FACILITATION - A method, system, and storage device for user matc... | http://www.faqs.org/patents/assignee/city-17-llc/ | dclm-gs1-287510002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037866 | <urn:uuid:2b007232-ddef-4ffc-8041-0882c06c96b8> | en | 0.961023 | Gambling - The Footballer's Silent Addiction
Gambling is becoming an increasing problem in football and with several players struggling with addiction, Daniel Storey wonders if more can be done to help those in need...
Last Updated: 10/10/12 at 11:57 Post Comment
Latest Articles
Top Five PL Goalkeepers (Statistical... | http://www.football365.com/faves/8154472/Gambling-The-Footballer-s-Silent-Addiction | dclm-gs1-287520002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.035988 | <urn:uuid:631a5b3d-6e0a-497b-86d2-64caa8ae64e2> | en | 0.834911 | [bksvol-discuss] Re: Submitted Title Without Its Apostrophe
it doesn't matter what you name the actual file because the Bookshare system
will rename it to its specifications after it's submitted. If you left out
the apostrophe in the title field when you submitted, there are two ways you
can go.
1. You can Pick up t... | http://www.freelists.org/post/bksvol-discuss/Submitted-Title-Without-Its-Apostrophe,5 | dclm-gs1-287540002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.03892 | <urn:uuid:37861bdc-9073-4536-a02c-18b17e2d8684> | en | 0.901934 | So Monolith Soft's X releases next year...
Numbuh100(Topic Creator)Posted 8/3/2013 3:42:29 PM
thundercat2600 posted...
The funny thing is, FF XIII was in development for 6 years. FF XIII-2 only took 1 year and was in many ways a better game.
Poll fail.
Xenoblade > FF XIII-2 still
Waiting for: Pokemon X and Y, Monoli... | http://www.gamefaqs.com/boards/631516-wii-u/66891678?page=1 | dclm-gs1-287550002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.137707 | <urn:uuid:190732f0-9440-4364-bdfd-7f393deef667> | en | 0.851788 |
What has pissed you off the most in any Main Series Game (Console included)
Nharia12Posted 8/17/2013 7:06:55 PM
jspamams posted...
Going through Caves,,,,,
A wild Zubat Appeared! *Run away*
* 3 Steps later*
A wild Zubat appeared! *Run away*
*2 Steps later*
A wild Geodude appeared!
Having to go through the caves d... | http://www.gamefaqs.com/boards/696959-pokemon-x/66975558?page=4 | dclm-gs1-287560002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.482094 | <urn:uuid:1339a591-1371-4d4e-830b-7de922dee7d6> | en | 0.941482 | mage knight?
pimpmoney718Posted 9/14/2011 5:40:18 AM
mines have mega heal but i need a stronger one and i think i reincarnated my healer to fast with getting all the heal skills.
So is it possible to get more heal skills or am i screwed?
Scy046Posted 9/14/2011 5:50:51 AM
Reincarnate them back as a Healer to learn mor... | http://www.gamefaqs.com/boards/995078-disgaea-4-a-promise-unforgotten/60323607 | dclm-gs1-287580002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.052997 | <urn:uuid:27cca6d5-3c50-4a13-8f8e-606c412a85cc> | en | 0.945201 | Imagine a Garden in every School
A Garden in Every School
Intensified use of Community Assets
The hypothesis is that students having access to the resources and the knowledge to grow more of their own food, a good number of sustainability and regeneration issues are directly addressed.
• Eliminate the barriers to comm... | http://www.good.is/posts/imagine-a-garden-in-every-school | dclm-gs1-287660002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.045049 | <urn:uuid:ed7b5983-1b73-47a5-90d5-8c9ab4155b8a> | en | 0.969989 | The Iceman Cometh
How a son of immigrants used an Army surplus Jeep to change the face of skating
The Iceman Cometh
Feature Article from Hemmings Motor News
September, 2006 - David LaChance
In his book Open Net, about his time spent learning to play goalie with the Boston Bruins, sports journalist George Plimpton ... | http://www.hemmings.com/hmn/stories/2006/09/01/hmn_feature32.html | dclm-gs1-287710002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.077414 | <urn:uuid:ede51d2e-3b5d-446c-b8df-224b863aff90> | en | 0.863087 | It Was the Son (2013)
It Was the Son
Type Feature Film
MPAA Rating N/A
Runtime N/A
Genres Drama, Foreign
Status N/A
US Release Date
Name Credit Credited as Season Role Id Sort Order
Toni Servillo Actor n/a 1 1000001
Giselda Volodi Actor n/a 1 1000002
Alfredo Castro Actor n/a 1 1000003
Aurora Quattrocchi Actor n/a 1 10... | http://www.hollywood.com/movies/42321901 | dclm-gs1-287720002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.110885 | <urn:uuid:18cdd0dd-97b0-4cd8-ad0a-fed758e225db> | en | 0.932568 | Swift Trans Jobs Forum
Get new comments by email
You can cancel email alerts at anytime.
Current Discussions (5) - Start a Discussion
How to get a job at Swift Trans.
Do you work at Swift Trans? How did you find the job? How did you get that first interview? Any advice for someone trying to get in?
Swift Trans S... | http://www.indeed.com/forum/cmp/Swift-Trans.html | dclm-gs1-287800002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.024621 | <urn:uuid:1d099906-cc7b-4fa7-b2b2-fc486b484d4c> | en | 0.909901 | hell s half acre arkansas mystery
Monday, May 3rd 2010. | Mystic and mystery
A mystery surrounding the Arkansas area until now remained a mystery that is difficult to realize or proof it .original residents will be very convinced that there are mysteries surrounding. that’s what makes them so afraid to approach. Ther... | http://www.informationfact.com/hell-s-half-acre-arkansas-mystery.html | dclm-gs1-287810002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.057936 | <urn:uuid:2da1d883-06a8-4793-98b8-0d2312ff51b8> | en | 0.903023 | Lose 10 Pounds without Hitting the Gym
You may not have a personal trainer or a diet regimen, but with the right makeup tools and techniques, you can still look like you have shed some weight. Here's what I tell my clients:
Use the correct shade of foundation
It's important for women of color, for instance, to begi... | http://www.ivillage.com/lose-10-pounds-without-hitting-gym/5-a-146572 | dclm-gs1-287830002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.043535 | <urn:uuid:b3fafb50-5c26-481e-a808-e338f09c895c> | en | 0.933328 |
• We reserve the right to close commenting on specific stories.
Discussion guidelines | Privacy policy | Terms of use
Limit of 2000 characters, 2000 characters remaining
Sort by
Comment threads per page: 10 | 20 | 50
1. You do realize that just because a recipe came from a Japanese person, that it's not necess... | http://www.jsonline.com/blogs/lifestyle/31965839.html | dclm-gs1-287840002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.217571 | <urn:uuid:5a75afe7-7614-4c2d-90cc-05c635fdd5e1> | en | 0.944758 | already a subscriber? Register me
Subscribe now See my options
News and notes on health, medicine and fitness
• We reserve the right to close commenting on specific stories.
Discussion guidelines | Privacy policy | Terms of use
Limit of 2000 characters, 2000 characters remaining
Sort by
Comment threads per page:... | http://www.jsonline.com/blogs/news/137766448.html | dclm-gs1-287850002 | false | true | {
"keywords": "vaccine, immunization"
} | true | {
"score": 0.9810219407081604,
"triggered_passage": 0
} | true |
0.032333 | <urn:uuid:38396cb4-d9a7-45ee-949f-89f342140697> | en | 0.908308 | Reply to a comment
Reply to this comment
charlieburrow#215545 writes:
Jlambrecht wrote: “cburrow . . . When the letter writer, or frankly, you, bandy about numbers like 152 bills "authored" and 427 "co-sponsored" and in your case, 491 "co-sponsored" it is a distortion.”
Jack, “co-sponsored” is the term used by the ... | http://www.kitsapsun.com/comments/reply/?target=61:201276&comment=68494 | dclm-gs1-287870002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.50003 | <urn:uuid:25ab4dd2-71ef-4385-aec3-a466ff35feac> | en | 0.967625 | Reply to a comment
Reply to this comment
Tiredofbs writes:
in response to nanaof11:
Thank God the military is exempt. It will be hard for us, but for the young families of sailors and soldiers who barely make ends meet anyway, it would be catastrophic.
By the way, if you get into a discussion of this with any self... | http://www.kitsapsun.com/comments/reply/?target=61:379555&comment=579703 | dclm-gs1-287880002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022882 | <urn:uuid:59464a93-3881-4ccd-a93f-15d9fce64386> | en | 0.966279 | Reply to a comment
Reply to this comment
Prepare writes:
in response to HAWAII4:
PREPARE: did you NOT read the entire article? Or do you just want to bash the ACA in and of itself?
When are you people going to get off the "we the good guys who are perfect, are SUBSIDIZiNG those bad guys who obviously have bad heal... | http://www.knoxnews.com/comments/reply/?target=61:370452&comment=2273335 | dclm-gs1-287890002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.029316 | <urn:uuid:7a3d48b7-615d-4f6c-bd8c-1c482aee6005> | en | 0.929672 |
The Fund's Financial Folly
Sep 1, 2002
The International Monetary Fund has gone soft on Brazil while keeping its hard line on Argentina. Brazil gets a $30 billion IMF bailout but Argentina stays on bread and water. The Fund and its godfather, the US Treasury, have told Argentina to get lost because it has failed to... | http://www.latinfinance.com/Article/1437670/Brazil/The-Funds-Financial-Folly.html | dclm-gs1-287920002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.166398 | <urn:uuid:85c948fb-03e2-45b6-83d1-ad7ef88cfd9c> | en | 0.914014 | Tia Sophia's
Lonely Planet review
Local artists and visiting celebrities outnumber tourists at this longstanding Santa Fe favorite that's always packed. Breakfast is the meal of choice, with fantastic burritos and other Southwestern dishes. Lunch is pretty damn tasty too; try the perfectly prepared chile rellenos . T... | http://www.lonelyplanet.com/usa/santa-fe/restaurants/tex-mex-southwestern-new-mexican/tia-sophia-s | dclm-gs1-287980002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019105 | <urn:uuid:892f3fb4-a0da-4abb-86c0-f6fefb9d1899> | en | 0.83783 | FishbowlNY FishbowlDC TVNewser TVSpy SocialTimes LostRemote MediaJobsDaily
LAT in 90 Seconds
iconicart.jpgNews As Art: In a thoughtful piece about museums’ slow acceptance of photojournalism, Christopher Reynolds highlights the Getty’s exploration of “the borderlands between art and news.” The story does a good job d... | http://www.mediabistro.com/fishbowlla/lat-in-90-seconds-238_b3441 | dclm-gs1-288040002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022444 | <urn:uuid:278bf5e4-ab5c-461b-8d8d-d22ad68fc03c> | en | 0.919613 | User Score
No user score yet- Awaiting 1 more rating
User score distribution:
1. Positive: 3 out of 3
2. Mixed: 0 out of 3
3. Negative: 0 out of 3
Review this game
1. Your Score
0 out of 10
Rate this:
• 10
• 9
• 8
• 7
• 6
• 5
• 4
• 3
• 2
• 1
• 0
• 0
... | http://www.metacritic.com/game/pc/shrek-forever-after/user-reviews?sort-by=most-active&num_items=100 | dclm-gs1-288070002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.063563 | <urn:uuid:4bd16777-3d64-4a60-805c-815cbf83d2d0> | en | 0.954711 | Universal acclaim - based on 38 Critics
Critic score distribution:
1. Positive: 37 out of 38
2. Negative: 0 out of 38
1. It is that rare futuristic thriller: grim in its scenario, yet exhilarating in its technique.
2. 100
3. Children of Men is a nativity story for the ages, this or any other.
4. 100
Ma... | http://www.metacritic.com/movie/children-of-men/critic-reviews?sort-by=most-clicked&dist=neutral&num_items=100 | dclm-gs1-288120002 | false | false | {
"keywords": "a sequence"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.07297 | <urn:uuid:a938e734-e1c1-40a9-8153-6a6169caf2af> | en | 0.920485 | Overwhelming dislike - based on 6 Critics What's this?
User Score
No user score yet- Awaiting 3 more ratings
Your Score
0 out of 10
Rate this:
• 10
• 9
• 8
• 7
• 6
• 5
• 4
• 3
• 2
• 1
• 0
• 0
• Summary: The 2008 Presidential Campaign was an extraordinary moment in U.S. history—not only beca... | http://www.metacritic.com/movie/labor-day | dclm-gs1-288130002 | false | false | {
"keywords": "candida"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.018777 | <urn:uuid:97bfd8d2-cdb4-4d26-8527-168a3e1f739e> | en | 0.955635 | or Connect
New Posts All Forums:
Posts by baileyandmikey
Sortacrunchy- I have had horrible morning sickness and was on a high dose of ZOfran just to make it through the day, but it does cause horrible constipation! I am finally to the point where I'm actually hungry, and in just...
Welcome Brambleberry! Yeah! We... | http://www.mothering.com/community/forums/posts/by_user/id/22877/page/60 | dclm-gs1-288180002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.025872 | <urn:uuid:6af54150-b6a0-4f4e-93bd-ac770b30bb63> | en | 0.982411 | Reply to a comment
Reply to this comment
Ironbutterfly writes:
in response to LottoWinner:
He was a aggressive. Couldn't wait to talk. It was very noticeable with his head constantly moving side to side, up and down when Obama spoke. Sorta looked agitated at times. Like a baby bird waiting for its momma to come bac... | http://www.naplesnews.com/comments/reply/?target=61:320687&comment=1371773 | dclm-gs1-288250002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.385931 | <urn:uuid:6c272e14-6c99-436b-ba23-eca4695c8dcd> | en | 0.955678 | Reply to a comment
Reply to this comment
flstarlady writes:
What are 7 & 8 year old boys doing walking home alone? If they are going home is there someone there to be with them? Some states require a child to be 12 before they can stay home after school. What if this man in the truck follows these boys home and know... | http://www.naplesnews.com/comments/reply/?target=61:87408&comment=11813 | dclm-gs1-288260002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.089088 | <urn:uuid:d07def12-1a3d-424d-97f6-249c9bd3de16> | en | 0.885322 | GTR Home > Conditions/Phenotypes > Charcot-Marie-Tooth disease type 2P
Disease characteristics
Excerpted from the GeneReview: Charcot-Marie-Tooth Neuropathy Type 2
Charcot-Marie-Tooth hereditary neuropathy type 2 (CMT2) is an axonal (non-demyelinating) peripheral neuropathy characterized by distal muscle weakness and... | http://www.ncbi.nlm.nih.gov/gtr/conditions/CN120583/ | dclm-gs1-288290002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.018402 | <urn:uuid:15626874-7279-493e-9567-5582491c21a4> | en | 0.823321 |
On campus
WBB Metro Poll: SJU No. 1, SB debuts at 10
St. John's Shenneika Smith drives past Duke's Ka'lia
Photo credit: AP | St. John's Shenneika Smith drives past Duke's Ka'lia Johnson during the first half. (March 24, 2012)
St. John’s, despite losing senior guard Eugeneia McPherson to an ACL tear and playing w... | http://www.newsday.com/sports/college/on-campus-1.812060/wbb-metro-poll-sju-no-1-sb-debuts-at-10-1.4292325 | dclm-gs1-288330002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.06169 | <urn:uuid:86248e53-bfa0-4018-8465-d84d0fc39b2b> | en | 0.954112 | Emperors of the Antarctic
One of the 17 types of penguins, the Emperor penguin breeds on the sea ice surrounding Antarctica during the dark, frigid austral winter. Using satellites during the winter to observe these sea birds, U.S. biologists are beginning learn more about the emperors and how they interact with their... | http://www.nsf.gov/pubs/1996/nstc96rp/sb2.htm | dclm-gs1-288360002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019886 | <urn:uuid:8d8c4a22-741e-41c1-b23a-ad6e1aad10d5> | en | 0.951228 | Kenneth P. Lavalle's posts related to Elections
Senator LaValle Extends His Apppreciation to the First Senate District
Another Election Day has passed and it was one that surely will go down in history. One week later, people are still talking about the upsets and the victories. If there was any doubt that every vo... | http://www.nysenate.gov/senator/kenneth-p-lavalle/issues/elections | dclm-gs1-288370002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022564 | <urn:uuid:57827ca7-390f-40c4-9e94-13840d797c9a> | en | 0.96538 | Broadband changing habits
A survey of broadband account holders sheds some light on New Zealanders' developing internet habits, including that nearly half of users do not understand what ultrafast broadband is, that people feel guilty about the amount of time they spend online and that the internet is beginning to riv... | http://www.odt.co.nz/news/dunedin/244935/broadband-changing-habits | dclm-gs1-288410002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.057682 | <urn:uuid:e980557f-dfb3-485a-8d28-dcb2b7392c7c> | en | 0.986633 | Friday, February 01, 2008
The Friday Five
What about you? Any memories from elementary school?
1. Wow--you have such detailed memories. Let's see if I can do this . . .
1. Kindergarten--I was in the morning (half-day) class. The teacher wrote all of our home addresses on strips of construction paper, and we ... | http://www.onthewritepath.blogspot.com/2008/02/friday-five.html | dclm-gs1-288420002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.068842 | <urn:uuid:639deaef-de90-40b9-b327-6b6b50835b5d> | en | 0.8441 |
Keep It Simple, Stupid
Re^3: Regex help/ Lua parse
by kcott (Monsignor)
on Oct 27, 2012 at 04:55 UTC ( #1001162=note: print w/ replies, xml ) Need Help??
in reply to Re^2: Regex help/ Lua parse
in thread Regex help/ Lua parse
I don't think that construct has a specific name - it's just using parentheses to change ... | http://www.perlmonks.org/?node_id=1001162 | dclm-gs1-288460002 | false | false | {
"keywords": "delta"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.018976 | <urn:uuid:89529a5a-fb94-4918-94b0-611b98ea806a> | en | 0.967328 | previous next
He raised troops over the whole province; added thirty auxiliary cohorts to the two legions he had already under his command; formed great magazines of corn to supply Marseilles, and the armies under Afranius and Petreius; ordered the Gaditani to furnish him with ten ships of war; caused a considerable n... | http://www.perseus.tufts.edu/hopper/text?doc=Caes.%20Civ.%202.18&lang=original | dclm-gs1-288480002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.039166 | <urn:uuid:cbb0934a-e20e-46bb-a514-fd86fa03961a> | en | 0.875945 | Enter your email address to receive our daily LGBT news roundup
You're free to unsubscribe at any time.
BBC apologises for naming South African official ‘gay marriage’ in TV news caption
Post your comment
Reader comments
1. With a name like that he did well!
2. Gay Marriage 28 Mar, 10:19pm
The BBC were i... | http://www.pinknews.co.uk/2013/03/28/bbc-apologises-for-naming-south-african-official-gay-marriage-in-tv-news-caption/comments/ | dclm-gs1-288490002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.99768 | <urn:uuid:d32e29cb-13f7-488f-863b-ca02bfd1b046> | en | 0.884873 | Goblins on Acheron
1 post / 0 new
holocaustwind's picture
Joined: 2009-01-30
Goblins on Acheron
Are goblins on acheron mostly petitionners? Is there a significant planar goblin presence on acheron and if so are they part of the goblin vs orc war?
| http://www.planewalker.com/forum/goblins-acheron | dclm-gs1-288510002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.240977 | <urn:uuid:c7a7ce77-be34-42d1-8176-e4a40633aa74> | en | 0.845059 | Qubits HTC Wildfire Capacitive Touchscreen Stylus Twin Pack - Silver
Manufacturer: QUBITS
(1 customer reviews) | Write a review
Customer Reviews
"Average rating (1 reviews)"
Results 1-1 of 1
Great Product
| | See all Barronboy's reviews (35)
I bought these to use on tablets and they work great, they als... | http://www.play.com/Mobiles/Mobile/4-/17224239/Qubits-HTC-Wildfire-Capacitive-Touchscreen-Stylus-Twin-Pack-Silver/ProductReviews.html | dclm-gs1-288530002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.21384 | <urn:uuid:2d960c71-0a58-4289-b973-682ea8db66e2> | en | 0.774881 | What do you think this poem is about?
In the dark frigid air of January
A purple-ish haze coils
around the bare bark
Looking out at the neighboring houses
the black fingers crawling out of the smokey chimneys
that fill the bored sky
Snow atop everything in sight
In the dark frigid air of January
Submitted: Wednesday... | http://www.poemhunter.com/poem/january-26/ | dclm-gs1-288540002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.024107 | <urn:uuid:1f70d994-9815-474e-834c-3b51c2dfb4cb> | en | 0.960801 | Beginning of article
George Washington's South * Tamara Harvey and Greg O'Brien, eds. * Gainesville: University Press of Florida, 2004 * x, 345 pp. * $59.95
George Washington's South grew out of a 1999 conference marking the bicentennial of Washington's death. The twelve contributors were given a loose mandate to exp... | http://www.questia.com/library/journal/1P3-815911921/george-washington-s-south | dclm-gs1-288600002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.133274 | <urn:uuid:52330042-4fd8-462a-a025-5cfe34d06f02> | en | 0.978267 |
Newletters and Alerts
Buy now from Random House
• Brother, I'm Dying
• Written by Edwidge Danticat
• Format: Trade Paperback | ISBN: 9781400034307
• Our Price: $15.00
• Quantity:
See more online stores - Brother, I'm Dying
Buy now from Random House
• Brother, I'm Dying
• Written by Edwidge Danticat
... | http://www.randomhouse.com/book/36739/brother-im-dying-by-edwidge-danticat/9781400034307 | dclm-gs1-288610002 | false | false | {
"keywords": "envelope"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.018809 | <urn:uuid:808acf21-6d08-403f-bc82-12c3f81b1f75> | en | 0.972558 | NBA Rumors: Dallas Mavericks To Pursue Luis Scola
Luis Scola is a very effective player for the Houston Rockets, but NBA rumors have been surrounding him all offseason. The Rockets will amnesty the power forward on Friday, which will allow teams under the cap to make a run at him. The Dallas Mavericks figure the tea... | http://www.rantsports.com/nba/2012/07/12/nba-rumors-dallas-mavericks-to-pursue-luis-scola/ | dclm-gs1-288640002 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.