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.117134 | <urn:uuid:db4cfd5e-18c8-41ba-a779-3874a94acf6c> | en | 0.901453 | Take the 2-minute tour ×
I've often seen "bis" appended to versions of protocols (eg v.34bis or httpbis).
What does "bis" mean or stand for?
A telecom engineer I know thinks it might be French in origin.
share|improve this question
Is the question about the general meaning of "bis" or more specific to how HTTPbis r... | http://stackoverflow.com/questions/9105639/httpbis-what-does-bis-mean | dclm-gs1-104340001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.025527 | <urn:uuid:68474a86-2225-43ad-a2f2-c16ee70ce9eb> | en | 0.909439 | Take the 2-minute tour ×
I'm looking for a library to create Bayes nets and perform learning and inference on them in Scala (or Java, in case of lack of a better solution). The library should be actively maintained, performant, preferably easy, definitely well-documented unless the usage is really straightforward. Fre... | http://stackoverflow.com/questions/9112557/bayesian-networks-in-scala?answertab=oldest | dclm-gs1-104350001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.032582 | <urn:uuid:8310e4dc-0702-4a56-bcdc-a6fc04f2de3f> | en | 0.929281 | Take the 2-minute tour ×
I'm developing an app where the user can take up to 3 photo's which will eventually be added as attachment to an e-mail.
On an iPhone 3G with 4.2.1 AND on an iPhone 4 with 5.0.1 this works correctly, I can loop through the singleton and add the photo's from a dictionary to the attachment.
On... | http://stackoverflow.com/questions/9157470/e-mail-attachment-ios-4-3-3/9564258 | dclm-gs1-104360001 | false | false | {
"keywords": "engineering"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.20981 | <urn:uuid:44078dfe-db73-486e-aac7-246b463c9da7> | en | 0.887054 | Take the 2-minute tour ×
Im trying to better understand how the huffman decoder works. Ive got a code table but im having a hard time trying to understand how the decoder would work because of ambiguity in the binary string.
(im learning this in prep for my final year at uni)
my table:
Data Hcode
0, 0
1, 1... | http://stackoverflow.com/questions/9190618/poor-mans-huffman-compression | dclm-gs1-104370001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.094442 | <urn:uuid:b0b5f4b6-d410-4d5e-9407-211f8cf25d62> | en | 0.689155 | Take the 2-minute tour ×
having a List of integers (for example: 1 - 3 - 4) how can I convert it in a string of this type:
string values = "1,3,4";
Thanks in advance.
share|improve this question
add comment
4 Answers
up vote 4 down vote accepted
Another solution would be the use of Aggregate. This is known to b... | http://stackoverflow.com/questions/9239086/convert-listint-to-string-of-comma-separated-values | dclm-gs1-104390001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.839376 | <urn:uuid:e86b4399-77b1-42ab-a2de-670e97b9884f> | en | 0.798886 | Take the 2-minute tour ×
I'm trying to figure out what "continuation bytes" are (for curiousity sake) in the UTF-8 encoding.
Wikipedia introduces this term in the UTF-8 article without defining it at all
Google search returns no useful information either. I'm about to jump into the official specification, but would ... | http://stackoverflow.com/questions/9356169/utf-8-continuation-bytes?answertab=votes | dclm-gs1-104400001 | false | false | {
"keywords": "a sequence"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.57973 | <urn:uuid:106dca3a-b1c7-4108-bdce-da4242cfc321> | en | 0.814438 | Take the 2-minute tour ×
Here's the code I have which takes a string and reverse it
name = "I CAN REVERSE THIS"
def reverse_string(name_string)
string_arr = []
string_arr = name_string.split('')
for i in 1..(string_arr.length)
new_string = "#{new_string}#{string_arr[-i]}"
#r... | http://stackoverflow.com/questions/9451562/method-call-which-in-error-returns-for-loop-numbers-of-itteration | dclm-gs1-104410001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.827924 | <urn:uuid:0c2872da-7821-4231-ae4c-133bf22875f9> | en | 0.842162 | Take the 2-minute tour ×
I use granite ds in my java server , but , when 100 user they're connected to flex application , granite return this error "Could not get channel id for message: flex.messaging.messages.RemotingMessage" Thank for the help.
share|improve this question
There's a hundred reasons why this could h... | http://stackoverflow.com/questions/9502154/concurrency-issues-with-granite-ds-flex/9534579 | dclm-gs1-104420001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.086772 | <urn:uuid:6e238011-d8d6-4725-ab67-e8e024c4c7e6> | en | 0.698574 | Take the 2-minute tour ×
I have many hexcodes here and I want to get them into Java without appending 0x to every entity. Like:
0102FFAB and I have to do the following:
byte[] test = {0x01, 0x02, 0xFF, 0xAB};
And I have many hexcodes which are pretty long. Is there any way to make this automatically?
share|improve... | http://stackoverflow.com/questions/9616233/how-to-autoconvert-hexcode-to-use-it-as-byte-in-java | dclm-gs1-104430001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.036618 | <urn:uuid:2ba96c64-3f0a-4da0-a117-3290b85481d4> | en | 0.805145 | Take the 2-minute tour ×
I am plotting a time series with mean values of a response variable as points (y-axis) by month (x-axis).
Values lying on the x-axis (i.e. 0 values) are clipped. I can change the limits of the y axis to include some padding below 0, but I prefer not to.
Is there a way to plot these 0 points ... | http://stackoverflow.com/questions/9690648/point-clipped-on-x-axis-in-ggplot | dclm-gs1-104440001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.050733 | <urn:uuid:68a5edd3-0d78-4202-b570-6bda850d2031> | en | 0.853901 | Take the 2-minute tour ×
I have a quick question here. Let say I have a view file myView.ctp in cakePHP and inside my view I have some javascript (which I have there for a reason). I know I can tell cake to put my javascript code into the header section of my page by using the scriptStart() and scriptEnd() blocks like... | http://stackoverflow.com/questions/9722724/put-css-styles-into-header-section-of-the-page-cakephp | dclm-gs1-104450001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.142858 | <urn:uuid:8c0128fa-46d3-4575-a97e-0d072e85f93e> | en | 0.800131 | Take the 2-minute tour ×
I have two classes in java that need to run at the same time - A Crawler class ( that basically implements a web crawler, and keeps printing out urls as it encounters them ), and an Indexer class, which as of now, is supposed to simply print the urls crawled.
For this, my Indexer class has a ... | http://stackoverflow.com/questions/9940148/java-updating-static-variables | dclm-gs1-104460001 | false | false | {
"keywords": "ring domain"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.671882 | <urn:uuid:ebb682ca-0120-4367-ad64-9378821a2898> | en | 0.936128 | Take the 2-minute tour ×
Possible Duplicate:
Bad Sectors Relocation on Windows XP
I know that bada sectors are like virus and they spread and make my HDD die. But I want to know if there any way of blocking or removing them temporarily or permanently from an HDD, if there any software that does it.
share|improve thi... | http://superuser.com/questions/479356/how-to-block-or-remove-bad-sectors-in-my-hdd?answertab=votes | dclm-gs1-104480001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.098687 | <urn:uuid:a9afda86-e928-4273-bdcc-c2e19da98cb9> | en | 0.93314 | Single page Print
We run our IOMeter tests using the fully randomized data pattern, which is a worst-case scenario for SSDs, not that it matters. They're so much faster in these IOMeter tests that including the results would completely throw off the scale of the graphs, making the mechanical drives impossible to dist... | http://techreport.com/review/22794/western-digital-velociraptor-1tb-hard-drive/8 | dclm-gs1-104510001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019458 | <urn:uuid:e02fe9c3-259c-4d85-a215-6311e8d828a8> | en | 0.915815 | You are here:News» Topics» Ron Swoboda
News »
Harry, not Ron, should have married Hermione: Rowling TOI
Avid Harry Potter fans will be familiar with the slow-burning romance between Ron Weasley and Hermione Granger, which finally culminated in their marriage at the end of the wizarding series.
When Rowling shocked... | http://timesofindia.indiatimes.com/topic/Ron-Swoboda | dclm-gs1-104530001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.300643 | <urn:uuid:08e68f45-e868-4ae9-b2fd-b3d40b44e9e9> | en | 0.979514 | Kevin McCullough
Recommend this article
In either case they were also shown up by a cute squiggly girl named Kelly - a dolphin.
Off the gulf coast at the Marine Mammals Studies Institute in Mississippi, Kelly has made quite a name for herself. Some time back the trainers at the Institute began programming the dolphi... | http://townhall.com/columnists/kevinmccullough/2008/06/15/are_democrats_dumber_than_dolphins | dclm-gs1-104540001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.178588 | <urn:uuid:786e962b-2045-4a8b-8d2e-d97ccdad622e> | en | 0.949105 | main index
Topical Tropes
Other Categories
TV Tropes Org
Fanon Discontinuity
That's The Matrix they're talking about, in case you were wondering.
The Simpsons, "Husbands and Knives"
In moviedom, Sequelitis is the most common cause of Fanon Discontinuity. It's very common to hear fans of a popular movie series... | http://tvtropes.org/pmwiki/pmwiki.php/Main/FanonDiscontinuity | dclm-gs1-104590001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.0203 | <urn:uuid:9fe1ca9f-5903-4d63-9536-54d41c7bf17e> | en | 0.783465 | ☺ dave †he laugh ☺
howdy, I'm rather annoying and sarcastic. I like boybands, sleeping and lucozade. I love kinder buenos and magic stars, buy me them & I will love you forever ☺
Rotate photo View full size
@NathanTheWanted You are so hot bbz xox
Views 19
729 days ago
You are so hot bbz xox
Realtime comments di... | http://twitpic.com/8wewrc | dclm-gs1-104600001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.903446 | <urn:uuid:76cb4e57-abbc-42f8-a2ca-1351078437be> | en | 0.665888 | Daniel Peet Z
User Stats
Profile Images
User Bio
Hey i´m Daniel!
I´m a student, musician and busdriver. but there is way more i do for living.
I shoot my stuff with a canon eos 6d. I edit with Avid Media Composer. I prefer grading my footage in davinci but lately i try to get used to Adobes AE.
External Links
... | http://vimeo.com/danielpetz | dclm-gs1-104660001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.179164 | <urn:uuid:172cfc3d-85cc-429e-9135-09cbef7092b2> | en | 0.756736 |
NIKON SK-6 POWER BRACKET, Missing L bracket and connecting cord ,COSMETICALLY IT'S 'E' CONDITION
SKU: US 566963
Why Adorama?
Easy Returns, Fast Shipping, Trusted for over 35 years.
NIKON SK-6 POWER BRACKET, Missing L bracket and...: Picture 1 regular
image does not represent actual item
About this item
Not only ... | http://www.adorama.com/US_NKXSK6.html?discontinued=t | dclm-gs1-104690001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.069373 | <urn:uuid:0bcfc108-49c0-4397-95d2-26b65c4682fe> | en | 0.926457 | Mar 14, 2014
Home| Tools| Blogs| Discussions| Sign UpLogin
May 2012 Archive for Ask an Agronomist
RSS By: Farm Journal Agronomists, Farm Journal
How to Determine Liquid Nitrogen Placement
May 11, 2012
Question: I am making a liquid side dress rig to put 28% on my corn this year and was wondering if it makes a di... | http://www.agweb.com/topproducer/blog/ask_an_agronomist/?Year=2012&Month=5 | dclm-gs1-104700001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.148143 | <urn:uuid:9ac0efec-3e55-4c45-a826-84f2c8f423c9> | en | 0.74328 | Special Nonexistent Furniture
Unfortunately, we no longer carry the White Coco Plexistyle Baby Lounger in Lunar Silver from bloom (SKU#: OOM1221), but here are some Bouncers + Swings you might like:
Bouncers + Swings
Your Search
Rocker: Rockers will rock a baby back and forth.
× × × × × × × × × × × ×
3 in.81 ... | http://www.allmodern.com/Bouncers-Swings-C505079.html?redir_sku=OOM1221 | dclm-gs1-104720001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019265 | <urn:uuid:9bd17dfc-e0a4-4f3d-8a9b-494e0d17023b> | en | 0.891208 |
I have a pair of x12 turtle beaches, Xbox, and I use them regularly on a smaller HD TV, and the game sound works just fine. however, when I try to use... More details »
Jacobkay asked - apps-gadgets-computers-games - 6 minutes ago
Answer this...
So today, I was at my friends house and her neighbor has 2 german Shepar... | http://www.ask.com/answers/browse?o=0&l=dir&qsrc=338&q=restaurants+in+Sherman+Oaks%2C+CA | dclm-gs1-104750001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.10008 | <urn:uuid:e94d7054-eeca-470b-8dac-720a7fb98af8> | en | 0.965669 | or Connect
New Posts All Forums:
Posts by JBrax
Some really nice subs would really compliment that setup. Very nice speakers.
Try tapping the volume button instead of holding it down. That works for me.
No it doesn't limit frequency. As far as what you'll hear under 20hz that just depends on several factors but I th... | http://www.avsforum.com/forums/posts/by_user/id/8377134 | dclm-gs1-104780001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019983 | <urn:uuid:214541fc-7908-47a7-8fc7-cac4eea06c9e> | en | 0.870898 | Email updates
Open Access Highly Accessed Methodology article
Empirical Bayes models for multiple probe type microarrays at the probe level
Magnus Åstrand*, Petter Mostad and Mats Rudemo
Author Affiliations
Mathematical Sciences, Chalmers University of Technology, and Mathematical Sciences, Göteborg University, S... | http://www.biomedcentral.com/1471-2105/9/156/abstract | dclm-gs1-104800001 | false | true | {
"keywords": "spike, bioinformatics"
} | false | null | false |
0.026418 | <urn:uuid:f09a35a2-59e0-4207-9f7a-922fb4224638> | en | 0.979478 | The Boston Globe
Bob Ryan
No lesson in Lance Armstrong’s situation
Drug cheats have created vicious cycle
Is there a lesson in Lance?
I’m not sure about that, but there certainly is a lot of poop to clean up.
Continue reading below
With all due respect to three-time Tour de France winner Greg Lemond, Lance Arms... | http://www.bostonglobe.com/sports/2012/10/27/lesson-lance-armstrong-situation/z4BZsVIpksOgoyui18mZyK/story.html | dclm-gs1-104840001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.418262 | <urn:uuid:6d56568c-49a0-4496-a178-78b365c6bee0> | en | 0.974115 | Andrew Mason, Groupon
Dan Frommer, Business Insider
Earlier Groupon had filed with the SEC saying it was raising as much as $950 million, and it appears that they're raising the whole thing.
A few things seem off to us here.
Insider selling is never a good sign at any company. Maybe the founders think the doubte... | http://www.businessinsider.com/the-latest-groupon-funding-figures-950-million-at-475-billion-2010-12 | dclm-gs1-104880001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037262 | <urn:uuid:be578768-4097-44b2-b6cd-62e6bd0ff45e> | en | 0.97165 | Commentary Magazine
Reason To Be An Egomaniac?
Well, Abe, I think there is a semi-serious but very faulty presumption which Andrew Sullivan and other Barack Obama supporters make. They assume but do not explain why Obama has reason to be an egomaniac. (I will leave for others to debate whether there are degrees of e... | http://www.commentarymagazine.com/2008/06/05/reason-to-be-an-egomaniac/ | dclm-gs1-104950001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.110847 | <urn:uuid:93a69a89-d1ce-4255-8212-89657c0fde0f> | en | 0.9794 | Comments by SP9023
Written on Memphis City Council member Janis Fullilove apologizes for on-air emotional outburst:
Unfortunately, this will not be the last time she makes headlines for her behavior. Give it a couple of weeks, a month at best, and she will be back in the news for fighting; public drunkenness; sleepin... | http://www.commercialappeal.com/users/SP9023/comments/ | dclm-gs1-104960001 | false | false | {
"keywords": "t cell"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.134493 | <urn:uuid:5205c283-3255-4c30-9501-5138560d148c> | en | 0.977985 | Editor's note: A first name has been corrected in this story.
PIERRE — The 2013 appointments are in place for the Legislature’s watershed task force, and like so much of water politics in South Dakota, there is some controversy.
The chairman of the state Board of Water and Natural Resources, Brad Johnson of Waterto... | http://www.dailypress.com/news/aan-state-water-board-chairman-loses-seat-20130401,0,1729324.story | dclm-gs1-104970001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.058097 | <urn:uuid:7ad2ddba-4bf1-465b-9e13-d8771ad57a4d> | en | 0.969421 | March 14, 2014
Crawford considers code enforcement options
Over a number of months now, the Crawford Town Council has been trying to solve the problem of continuous complaints from citizens about code violations.
The town council has researched having a municipal court.
It brought in Lynn French, a municipal judge ... | http://www.deltacountyindependent.com/index.php/news/north-fork-times/9955-crawford-considers-code-enforcement-options | dclm-gs1-105030001 | false | true | {
"keywords": "public health, delta"
} | false | null | false |
0.05138 | <urn:uuid:2b55f854-2f49-49c3-a9d3-ec0683fdf8b0> | en | 0.883769 | Iron Swallow
Want to See
Not Interested
Rate it ½ star
Rate it 1 star
Rate it 1½ stars
Rate it 2 stars
Rate it 2½ stars
Rate it 3 stars
Rate it 3½ stars
Rate it 4 stars
Rate it 4½ stars
Rate it 5 stars
When the deadly Iron Swallow (Chai Ling) sets out to avenge her past in this classic martial arts effort from director... | http://www.flixster.com/movie/iron-swallow/ | dclm-gs1-105150001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.097037 | <urn:uuid:397ec7fc-117d-4fc2-a356-6add2cea7835> | en | 0.981558 |
The room has not been excavated. Diagrams of the chamber are based on data gathered over five years, starting in 2002, using radar and other remote sensing technologies, the news agency said.
• Click here to visit's Archaeology Center.
Archaeologist Liu Qingzhu of the Chinese Academy of Social Sciences was quoted ... | http://www.foxnews.com/story/2007/07/03/pyramid-chamber-found-in-ancient-chinese-tomb/ | dclm-gs1-105190001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.172598 | <urn:uuid:2f4876c5-e970-4a3a-a6e1-4ec6da496224> | en | 0.973208 | Review by Dr Nemo
"Fight Music"
Everyone knows that Genesis had Streets of Rage and Snes had Final Fight, but what most people probably didn't know is that the other 16-bit console had it's own beat-em-up franchise. Well actually it's not much a franchise, being only one game and all, but since it's the only such gam... | http://www.gamefaqs.com/turbocd/563763-riot-zone/reviews/review-55374 | dclm-gs1-105270001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.294319 | <urn:uuid:98112536-2c4c-4b99-8aca-37a6ccf9058e> | en | 0.981835 | Aarownd's forum posts
#1 Posted by Aarownd (59 posts) -
Mine is in video form originally, but here's the text copy.
10. Call of Duty Black Ops 2.
9. Tales of the Abyss 3D.
8. Sine Mora.
7. Sleeping Dogs.
6. Trials Evolution.
5. Resident Evil 6.
4. Persona 4 Arena.
3. Mass Effect 3.
2. The Walking Dead.
1. P... | http://www.giantbomb.com/profile/aarownd/forums/ | dclm-gs1-105300001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019775 | <urn:uuid:2a1065d4-09f3-4d66-9ea6-56d0d1a68c4f> | en | 0.971473 | or Connect
Mothering › Mothering Forums › Mom › Women's Health › Poor Immune System, ear infection that won't go away
New Posts All Forums:Forum Nav:
Poor Immune System, ear infection that won't go away
post #1 of 17
Thread Starter
Hi mamas,
I am absolutely desperate, so any advice you can give, no matter how insi... | http://www.mothering.com/community/t/1072552/poor-immune-system-ear-infection-that-wont-go-away | dclm-gs1-105600001 | false | true | {
"keywords": "pneumonia, antibody"
} | false | null | false |
0.096423 | <urn:uuid:06a7f7d8-ce79-4520-813a-f74a36495d6d> | en | 0.970423 | Last updated: March 15, 2014
US police shoot dead Into The Wild hunter
GORDON Samel, the hunter who discovered the body of Christopher McCandless in an abandoned bus in 1992, has been shot dead in Alaska.
US teen accused of biting off baby's nose
AN 18-year-old father in the US is being held in jail after his one... | http://www.news.com.au/world/breaking-news/cats-and-dogs-could-hatch-new-diseases/story-e6frfkui-1226515540421 | dclm-gs1-105680001 | false | true | {
"keywords": "hendra virus, rabies"
} | false | null | false |
0.020982 | <urn:uuid:d59202ca-c9e9-4929-aba1-5d9aa4702c8c> | en | 0.957962 | Ahmadinejad Sheds No New Light On Iran's Nuclear Plan
President Obama leads a U.N. Security Council meeting on nuclear non proliferation Thursday. By doing so, he's sending a message to Iran that the U.S. and its partners are committed to keeping their end of the bargain in the nuclear non proliferation treaty — and e... | http://www.npr.org/templates/story/story.php?storyId=113154024 | dclm-gs1-105720001 | false | false | {
"keywords": "assembly"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.094532 | <urn:uuid:0932831a-1b4b-4946-8d70-f79977d707da> | en | 0.969329 |
And I'm Robert Siegel. The Supreme Court bit off a piece of the immigration puzzle today. In a 7-2 decision, the court ruled that a longtime legal resident of the U.S. was improperly deported for possession of a small amount of marijuana. NPR legal affairs correspondent Nina Totenberg reports.
NINA TOTENBERG, BYL... | http://www.npr.org/templates/transcript/transcript.php?storyId=178651009 | dclm-gs1-105730001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.040748 | <urn:uuid:590d5811-4d9b-45bc-938c-c3f5b5d7caf4> | en | 0.900729 | U.S. patents available from 1976 to present.
U.S. patent applications available from 2005 to present.
Packaged rodenticide
Patent 7067142 Issued on June 27, 2006. Estimated Expiration Date: Icon_subject January 22, 2022. Estimated Expiration Date is calculated based on simple USPTO term provisions. It does not accoun... | http://www.patentstorm.us/patents/7067142/description.html | dclm-gs1-105810001 | false | false | {
"keywords": "mouse"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.05205 | <urn:uuid:165e8469-a8da-433d-b811-a62ce1e77ef6> | en | 0.971922 |
More like this: castiel, misha collins and jared padalecki.
85 year old best friends!// AKA J2 in fifty years. Although apparently either Jared is going to shrink or Jensen is going to suddenly get more talkative than Jared. :P
I love their faces so much xD
Jensen and his new friends. ;P
Things that can light up... | http://www.pinterest.com/youarenotalone/fight-the-fairies-sammy/ | dclm-gs1-105840001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.352511 | <urn:uuid:104b5ab4-345f-448a-9ee2-9599113717ae> | en | 0.93878 | (May 14,1997-?)
What do you think this poem is about?
The World of Immortals
Why do we only come when something is in it for us physically?
Why don't we come to save our souls, and get eternity?
Why do we only come to the holy grounds, when the immortal pal is always near?
But when Tho comes to claim you as his, we... | http://www.poemhunter.com/poem/the-world-of-immortals/ | dclm-gs1-105860001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.097363 | <urn:uuid:f359c240-49e4-40a2-a637-debf60e00752> | en | 0.969097 | reddit is a platform for internet communities
where your votes shape what the world is talking about.
learn more ›
Limited AD Service Commitment Waiver by catfishtunain AirForce
[–]justarunner 1 point2 points ago
That's pretty much it. I have two years left in May but I applied for the waiver in early February for... | http://www.reddit.com/user/justarunner | dclm-gs1-105900001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.067118 | <urn:uuid:b634ee8c-20b4-422e-886d-6cf5d75d624f> | en | 0.969154 | Poll Results
Poll: The Abilene ISD took delivery of two of six travel buses Wednesday. Is the expenditure of $900,000 worth it?
Response Percent Votes
B. Yes, the district will recoup the cost by not having to pay for charter buses
40% 75
D. No, the money could have been better spent
23% 43
A. Yes, students should be... | http://www.reporternews.com/polls/2013/mar/poll_0307/results/ | dclm-gs1-105920001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.187349 | <urn:uuid:40dc4106-1460-4193-ba98-f5dbe8ea3a57> | en | 0.970032 | Are Eyewitnesses in the Zimmerman Trial Reliable?
Public domain
Newly released court documents in the second-degree-murder case against neighborhood watch volunteer George Zimmerman reveal that, in the month following his fatal shooting of Trayvon Martin on Feb. 26, four key witnesses significantly changed their acc... | http://www.scientificamerican.com/article/are-eyewitnesses-in-the-z/ | dclm-gs1-105960001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022646 | <urn:uuid:ab11b912-6c96-47d2-a172-0680669d5a43> | en | 0.96003 | • Sat
• Mar 15, 2014
• Updated: 5:55am
US cyber warrior accuses China of targeting Pentagon
PUBLISHED : Friday, 28 September, 2012, 9:55am
UPDATED : Friday, 28 September, 2012, 4:27pm
The US Cyber Command’s top intelligence officer accused China of persistent efforts to pierce Pentagon computer networks and said... | http://www.scmp.com/news/china/article/1049248/us-cyber-warrior-accuses-china-targeting-pentagon | dclm-gs1-105970001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.10459 | <urn:uuid:5524a5fd-b13e-4583-95e0-acfa0b740360> | en | 0.978918 | Skydiver killed
The skydiver hit a dump truck on a construction site.
POLICE are reviewing footage of helmet cameras after the death of a skydiver south of Sydney on Saturday morning.
It is believed the 32-year-old Sydney man collided midair during a free fall with a 39-year-old skydiver and lost consciousness befor... | http://www.smh.com.au/nsw/skydiver-killed-after-collision-20121208-2b29s.html | dclm-gs1-106050001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.434916 | <urn:uuid:bec34ae8-dfc2-422b-83dc-8e796579f8c3> | en | 0.915188 |
Game To Nominate: Can you name the offensive/defensive starters for the Pittsburgh Steelers and Arizona Cardinals from Super Bowl 43?
Why? (optional):
You must be logged in to nominate a quiz. | http://www.sporcle.com/games/ipitydafoo/super_bowl_43/nominate | dclm-gs1-106070001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.145178 | <urn:uuid:2e14c6a8-74fe-40f0-9ea9-de2fe6ec9fc4> | en | 0.978588 |
True Blood Recap - 'Everything Is Broken'
August 18th, 2010 8:56am EDT | Dee Doyle By: Dee Doyle favorite Add to My News
A very shocking fact: True Blood only has three more episodes left. Has this season flown by considerably fast, or is that just me? I was starting to wonder what the ending of this season was goi... | http://www.starpulse.com/news/Dee_Doyle/2010/08/18/true_blood_recap_everything_is_broken | dclm-gs1-106090001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.029106 | <urn:uuid:9fb86a49-fcf7-445c-9820-99a869f5ba47> | en | 0.966656 | The Reckoning
Money woes test school quality
With nearly half the state budget funding education, opportunities are drying up amid looming deficit.
Students in Stacey Skinner’s science class at St. Paul Central High School examined a sheep brain as part of their study of brain anatomy. Due to budget cuts and increa... | http://www.startribune.com/local/114690859.html | dclm-gs1-106100001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.049955 | <urn:uuid:15e2e74b-fc60-4e57-a6ce-5bddb858d2ec> | en | 0.97261 | Explosion near Syrian security building in Aleppo
DAMASCUS, Syria (AP) -- An explosion ripped through a residential neighborhood in the northern Syrian city of Aleppo on Sunday and the state news agency said it was a "terrorist bombing."
No one claimed responsibility for any of the attacks.
Saeed said the explosi... | http://www.state-journal.com/ap%20international/2012/03/18/explosion-near-syrian-security-building-in-aleppo-1332081955 | dclm-gs1-106110001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.030132 | <urn:uuid:bcdf98bc-50c6-445a-91e3-be17c46d4ffa> | en | 0.97755 | If you thought that all those manufacturers were ganging up to make us buy as many of their products as possible, then think again. Panasonic claims that plasma screens can last up to (a very specific) 42 years before they need replacing rather than mysteriously breaking down a week after the guarantee elapses.
Appar... | http://www.techradar.com/news/tv/television/plasma-screens-could-last-42-years-453276 | dclm-gs1-106140001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.075545 | <urn:uuid:ac7574da-d686-4785-ae61-ab99ad8c7bbc> | en | 0.964421 | Our TV Shows
Got a Tip?
Call TMZ at (888) 847-9869 or Click Here
Katherine Jackson
I Wasn't Kidnapped
... I Just Needed a Break
breaking news
She also sounds like she's full of crap.
Sure they wouldn't ...
It's unclear why she didn't TELL HER GRANDKIDS FIRST!
So, we gotta ask ..
No Avatar
Too late... | http://www.tmz.com/2012/07/25/katherine-jackson-kidnapped-abc-news-statement-michael-jackson-custody/ | dclm-gs1-106350001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.142949 | <urn:uuid:03b8ba62-ef1c-4b4e-b3f7-1be7c1118705> | en | 0.940643 | The Kirei from Hirotaka Matsui is a new toilet designed to make cleaning the bathroom a little less disgusting. The toilet cleans and sterilizes itself, which means that only the sink and tub are left to give you trouble.
Kirei has a self-cleaning feature can be set automatically or controlled via remote control or a ... | http://www.trendhunter.com/trends/kirei-from-hirotaka-matsui | dclm-gs1-106410001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019926 | <urn:uuid:356f087d-df1a-4319-89e7-5f1c8c69f41d> | en | 0.974516 | Column: What of cycling's other secrets?
Associated Press SHARE
By JOHN LEICESTER, Associated Press
Because people aren't "just going to walk up to you and say 'Hey, by the way, guess what I did,'" the first step would be to declare an amnesty period — a year, month, week, whatever — where past doping is "fo... | http://www.usnews.com/news/sports/articles/2012/10/24/column-what-of-cyclings-other-secrets | dclm-gs1-106450001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019566 | <urn:uuid:54461858-444b-408c-b9cb-4e3b2cafc075> | en | 0.954307 | Europe Leads the Way on Dealing With Deficits
Should we to sit on our hands or follow Europe’s lead and make the hard choices to reduce our deficit?
Rep. Paul Ryan and American Enterprise Institute president Arthur Brooks recently argued that America faces a choice: "Do we still want our traditional American free en... | http://www.usnews.com/opinion/blogs/brandon-greife/2010/11/18/europe-leads-the-way-on-dealing-with-deficits | dclm-gs1-106460001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.103424 | <urn:uuid:8160242d-26e7-4c42-a796-87efdb1d78d5> | en | 0.962494 | Starbucks 'Come Together' Solution to Fiscal Cliff Is a Cop Out
If the multibillion dollar company actually wanted to make a difference, Howard Schultz could contribute to the dialogue in a meaningful way.
Justin McCartney of Hampton, Va., holds up a cup with the words "Come Together" written on it outside a Starbuck... | http://www.usnews.com/opinion/blogs/susan-milligan/2012/12/31/starbucks-come-together-solution-to-fiscal-cliff-is-a-cop-out | dclm-gs1-106470001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.213336 | <urn:uuid:b4b6e705-971f-4e6b-bcef-b47c545195ec> | en | 0.96646 |
The capital
Removal time
The capital is growing unsustainably. Perhaps it should move
See article
Readers' comments
Bismarck888 in reply to guest-ljjisao
Well Xian was capital of China for much longer. Eventually China will move its capital southward/west, when the balance of power shifts to the South. In 40-... | http://www7.economist.com/node/21568401/comments | dclm-gs1-106540001 | false | false | {
"keywords": "delta"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.039513 | <urn:uuid:50631fb2-33ae-427e-ab7f-d362f621ee4e> | en | 0.659975 |
iTunes wurde auf Ihrem Computer nicht gefunden. Jetzt iTunes laden, um Hörproben von Experiment von Cedric Gervais abzuspielen und diese Titel zu kaufen.
Ich habe iTunes Gratis-Download
iTunes für Mac + PC
Cedric Gervais
Having left his imprimatur all over the French club scene, Cedric Gervais emigrated to Mi... | https://itunes.apple.com/ch/album/experiment/id201774816 | dclm-gs1-106590001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.045184 | <urn:uuid:57f9d681-ddd9-41f8-86fa-a463e61e4df9> | en | 0.754084 |
Det går inte att hitta iTunes på datorn. Hämta iTunes nu så kan du provlyssna på och köpa musik från W.C. Handy's Memphis Blues Band (Re-mastered) av W.C. Handy.
Jag har iTunes Gratis hämtning
iTunes för Mac och PC
W.C. Handy's Memphis Blues Band (Re-mastered)
W.C. Handy
Öppna iTunes när du vill provlyssna, köp... | https://itunes.apple.com/se/album/hooking-cow-blues/id79311959?i=79311760 | dclm-gs1-106600001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.217927 | <urn:uuid:b1b4f31e-bab0-4e07-bf68-574fb3bc1e76> | en | 0.994203 | Disclaimer: I don't own Star Wars nor any of the characters --- and I do know that Mara and Luke had a son named Ben….and that there was a lot of stuff going on during the NJO time of events that has nothing to do with the stuff I'm writing about. But this is MY story and MY timeline. So please enjoy!!! Oh and I know t... | https://www.fanfiction.net/s/2146431/1/Destiny-s-Hand-Book-One | dclm-gs1-106690001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.245324 | <urn:uuid:602af4af-4e81-42e6-a0c4-5a794c5870a7> | en | 0.99371 | "Anyone who thinks money can't buy happiness has obviously never read a really good book."
I am so sorry this last chapter took so long. I had more trouble getting this chapter right than I had with the entire 49 chapter up to this point. I had hoped to have had it up well before now (like, weeks before now!) but I... | https://www.fanfiction.net/s/7928270/50/I-remain-Yours | dclm-gs1-106740001 | false | true | {
"keywords": "monkey, influenza"
} | false | null | false |
0.12851 | <urn:uuid:965f298a-2358-434a-a60c-7026fcf8599c> | en | 0.985804 | Chapter 8: Colonel Jack O'Neill
Get to our front door.
Open the door.
Up the stairs.
. . .
Jack's boots pounded the ground as he ran the last klick full out; his pace checked only by his need to keep behind his team and guard their six against the giant bear loping up behind them. One of his quick shoulder checks re... | https://www.fanfiction.net/s/8527868/8/Going-on-a-Bear-Hunt | dclm-gs1-106760001 | false | false | {
"keywords": "blast"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.032993 | <urn:uuid:7d94265d-c125-4668-b818-7650552e2912> | en | 0.86499 | manufacturing engineer - machining (75-90K)
Detroit, MI
Company Description
Onward Technologies Inc is a Global Engineering and Design Services company with offices in North America, Europe & Asia. We are a team of 1700+ engineers providing high end design, consulting and professional services in the mechanical engi... | https://www.smartrecruiters.com/OnwardTechnologiesInc1/71611138-manufacturing-engineer-machining | dclm-gs1-106810001 | false | true | {
"keywords": "assembly, ring domain"
} | false | null | false |
0.03935 | <urn:uuid:8a828d53-226e-4a1a-aa67-049a4f3832db> | en | 0.952679 | One second...
is a year old and has been a part of the Threadless community for 1 year, 6 months! dinahanson213 has scored 0 submissions, giving an average score of 0.00, helping 0 designs get printed.
| https://www.threadless.com/profile/2208111/dinahanson213/votes | dclm-gs1-106820001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.982409 | <urn:uuid:4cdcc185-cd63-46e8-8f9c-6b946e6c5fb3> | en | 0.972874 | Take the 2-minute tour ×
I'm preparing for a debate (just between friends) on evolution (I'm in support), and one of the points I plan to bring up is the Chromosome 2 evidence. I'm now trying to predict their potential rebuttals. The common statement I've seen is that since the apes have 48 chromosomes and humans have... | http://biology.stackexchange.com/questions/14533/chromosome-2-alternate-explanation-apes-gaining-a-set-of-chromosomes | dclm-gs1-106890001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037946 | <urn:uuid:f53af7ef-3d1f-4e05-95ee-d9f49e4b266a> | en | 0.965398 |
College Cam: American Idol
You tell me: Who do you think is going to win American Idol?
Cristina Rodriguez-Ruiz, University at Albany
One Response
1. Amanda Talar says:
Um, obviously Lee DeWyze all the way. He’s the perfect example of a guy’s hotness level rising sky-high the minute he picks up that guit... | http://blog.timesunion.com/college/college-cam-american-idol/873/ | dclm-gs1-106920001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.033171 | <urn:uuid:5ad41e38-c328-46c4-bbc0-e565f98cdb91> | en | 0.949502 | Richi Jennings
Mixed blessing for Google in FCC's Auction 73 (and salmondance)
August 24, 2007 6:35 AM EDT
It's only bloomin' Friday's IT Blogwatch: in which the Federal Communications Commission publishes the draft rules for the 700MHz auction. Not to mention the Salmon Dance...
Matt Hamblen reports:
Public comment... | http://blogs.computerworld.com/node/6085 | dclm-gs1-106940001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.138085 | <urn:uuid:8493185c-6743-4342-87ed-22d97c3d5a11> | en | 0.88141 | Dear All,
I have worked on this problem for over 20 hours now, and am no further forward.
I am downloading a series of PNG images, with associated image data (author, comments etc) from my server. Basically I am concatonating all the text and images together as one file and then parsing them in the phone to recreate ... | http://developer.nokia.com/community/discussion/showthread.php/132061-PNG-download-agony | dclm-gs1-107040001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.885726 | <urn:uuid:49f22046-dfd1-47cb-ae31-b03f81e5be4a> | en | 0.919448 | #13 - prkkid (03/22/2013) [-]
This rock is in Thailand. This photo is shopped.
User avatar #82 to #13 - nnightfire (03/22/2013) [-]
What if your rock is shopped?!
#78 to #13 - 2scared2login (03/22/2013) [-]
Maybe so, but that's not the same rock. I don't care if the rock in question is a photoshoped thia rock, the one ... | http://funnyjunk.com/funny_pictures/4496766/The+Irish/13 | dclm-gs1-107150001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.021422 | <urn:uuid:5d25aa97-edfb-47a6-b92e-634a4776be70> | en | 0.967192 | Britpop and Cumbia Coexist at Mexico City Music Festival
Diana Oliva Cave/ABC/Univision
"Cheesy," was the word one 22 year-old Mexico City music fan used when asked to describe Los Angeles Azules. What was a traditional cumbia band doing at an alternative music festival anyway? That was the question on many people's... | http://fusion.net/culture/story/blur-los-angeles-azules-cumbia-coexist-vive-latino-16911 | dclm-gs1-107160001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.03279 | <urn:uuid:ff82a99e-f817-4393-8e2d-555d1de4f05f> | en | 0.679372 | Results 1 to 18 of 18
Page 1 of 1
Are Currencies Coordinating?: The Coupling-Decoupling Behavior of Won-Dollar and Yen-Dollar Exchange RatesKim, JY; Wang, YJ; Park, WY201224
Rgs19 regulates mouse palatal fusion by modulating cell proliferation and apoptosis in the MEESohn, WJ; Ji, YR; Kim, HS; Gwon, GJ; Chae, YM; An, C... | http://hub.hku.hk/browse?type=author&value=Kim%2C+JY&value_lang=en_US | dclm-gs1-107230001 | false | true | {
"keywords": "mouse, ethylnitrosourea"
} | false | null | false |
0.038872 | <urn:uuid:42245531-cde8-4cde-8e31-313fc6c11fc3> | en | 0.888182 | • Creating stored procedures to execute tables at runtime on a SQL Server
I’d like to execute different tables at runtime on my SQL Server by creating stored procedures. This is the syntax I am attempting to use: create procedure sp1(colname varchar(400), tab_name IN varchar2) AS BEGIN select * from '@TABLENAME' w... | http://itknowledgeexchange.techtarget.com/itanswers/page/120/?asrc=EM_NLT_18815135&uid=9973613 | dclm-gs1-107250001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.045278 | <urn:uuid:79c37b01-d53d-4b02-bfc2-aa71bf5293d7> | en | 0.908134 |
Re: Discussion-Paper: A Logical Interpretation of RDF
Date: Tue, 05 Sep 2000 00:30:48 +0200
Message-ID: <39B42298.B09A5A8F@wi-inf.uni-essen.de>
To: "McBride, Brian" <bwm@hplb.hpl.hp.com>
CC: www-rdf-interest@w3.org
[This is an answer to Brian's last EMail]
Brian McBride wrote:
:> There are no (in the strict sense)... | http://lists.w3.org/Archives/Public/www-rdf-interest/2000Sep/0020.html | dclm-gs1-107310001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.179857 | <urn:uuid:bbaf2a97-8bb1-44e4-8eb4-b9e7788358d8> | en | 0.927056 | Subject: Re: lang/guile update to 1.8.1
To: None <>
From: Greg Troxel <>
List: tech-pkg
Date: 06/04/2007 08:13:46
2) blindly point all the packages which currently use guile to
lang/guile16 and bump their PKGREVISIONS.
3) update lang/guile to 1.8.1.
lang/guile where possible.
That sounds fine, and thanks ... | http://mail-index.netbsd.org/tech-pkg/2007/06/04/0004.html | dclm-gs1-107350001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.218129 | <urn:uuid:0d7a4c58-49f7-40eb-96a5-4f577e6ec810> | en | 0.903878 | Automated Quadcopters Learn a Super-Sophisticated Trick
Those programmed quadcopters are getting even smarter. Not only can they fly in perfect formation, build things and cause all of us to worry about robots dominating the world. Now they can balance and juggle and toss a long thin object back and forth. What will t... | http://mashable.com/category/quadcopters/ | dclm-gs1-107360001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.097742 | <urn:uuid:c5f40e08-b77b-49b4-a355-98a100c1c234> | en | 0.884046 | Take the 2-minute tour ×
I'm currently debugging classes from a war file that's circa 100 meg, running on Tomcat under Windows 7 and started using "catalina jpda start", and then the project is hooked into the Eclipse debugger.
I've gotten to a point where the class I'm debugging has fully initialized and the variabl... | http://stackoverflow.com/questions/12282639/eclipse-debug-variables-export-or-print/15708464 | dclm-gs1-107610001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.098917 | <urn:uuid:56bccfe2-cac3-49f3-a826-8b572ee92593> | en | 0.934779 | Take the 2-minute tour ×
I want to give different level of access on tables to different users based on their department. Should I use Schema or Roles for this purpose?
share|improve this question
add comment
closed as off topic by George Stocker Jul 30 '12 at 13:52
2 Answers
up vote 6 down vote accepted
Roles w... | http://stackoverflow.com/questions/1714877/should-i-use-roles-or-schemas-to-give-users-access-based-on-their-department | dclm-gs1-107620001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.990108 | <urn:uuid:7ee058ee-937a-4cbc-9266-cbb2cc1a6d2b> | en | 0.785544 | Take the 2-minute tour ×
Quick question guys...
If I am using Codeigniter and NOT using query string urls, is there a way to generate a url from a form using url segments
... using the 3rd url segment as the keyword etc.
Can it be done at all?
share|improve this question
possible duplicate of: stackoverflow.co... | http://stackoverflow.com/questions/19005265/using-a-form-to-generate-a-segmented-url-not-query-string | dclm-gs1-107630001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.862144 | <urn:uuid:bf43afc5-818d-4d93-bff0-54cee68ed461> | en | 0.85337 | Take the 2-minute tour ×
I am trying to find whole words e.g. 'Location:', 'Contact:', at the beginning of a string with preg_match.
Please could someone provide and quick example.
share|improve this question
add comment
1 Answer
up vote 5 down vote accepted
starts (^) with word character (\w) and has one or mor... | http://stackoverflow.com/questions/5608114/find-whole-word-at-beginning-of-string-with-preg-match | dclm-gs1-107680001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.169 | <urn:uuid:d575e9e7-93e7-4407-88e6-4c4c76fdb769> | en | 0.951131 | Horde OOC
90 Blood Elf Warlock
Bal'a dash, Hordies.
A channel has been made for a while, but it seems that some of you are still unaware that it still exists. No, there wasn't a fancy thread made specifically to announce it's existence. We, being myself and my guildies who created the channel, told whomever we knew t... | http://us.battle.net/wow/en/forum/topic/6308781889 | dclm-gs1-107830001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.021819 | <urn:uuid:e2bf3aa8-efe3-40f7-b5ef-d2a27a523ce2> | en | 0.969415 | Remarks by the President on American Energy -- Lemont, Illinois
By: Barack Obama II
Date: March 15, 2013
Location: Lemont, IL
It's not every day that I get to walk into a thermal test chamber. (Laughter.) I told my girls that I was going to go into a thermal test chamber and they were pretty excited. I told them I... | http://votesmart.org/public-statement/770826/remarks-by-the-president-on-american-energy-lemont-illinois?flavour=mobile | dclm-gs1-107850001 | false | true | {
"keywords": "spike, engineering"
} | false | null | false |
0.019659 | <urn:uuid:2bb4b4bb-5757-4108-8f90-619f201e64fe> | en | 0.917674 | Skip Navigation
Finance and Administration's Institutional Values
The guiding principles and behaviors that embody how your organization and its people are expected to operate. Values reflect and reinforce the desired culture of an organization. Values support and guide the decision making of every workforce member,... | http://www.apsu.edu/fin-admin/finance-and-administrations-institutional-values | dclm-gs1-107920001 | false | false | {
"keywords": "cel i"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.172153 | <urn:uuid:9adcf766-aaef-4580-84ee-0261570235bb> | en | 0.97032 | Cabbage Patch Kids Worth?
Cabbage patch kids' worth would greatly depend on the condition of the doll. Dolls that are in box never being opened (mint condition), would be worth more than a doll that was played with daily, with some cosmetic signs of use. Certain dolls are worth more than others because they didn't ma... | http://www.ask.com/question/cabbage-patch-kids-worth | dclm-gs1-107950001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037668 | <urn:uuid:15376a99-ce6d-4397-912c-9df79ef29c00> | en | 0.904981 | Yeah Yeah Yeahs
Fever to Tell (Interscope)
Reviewed by Raoul Hernandez, Fri., April 25, 2003
Phases and Stages
Yeah Yeah Yeahs
Fever to Tell (Interscope) Who needs White Stripes when you can have red welts, the kind left by Karen O's whippoorwill shriek down the back of her "Man" ("I got a man who makes me wanna k... | http://www.austinchronicle.com/music/2003-04-25/156673/ | dclm-gs1-108000001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019081 | <urn:uuid:4a879cde-0862-4f20-9b8e-ab2532218e61> | en | 0.918289 |
Hamm's - Hamm's Brewing Co.
Displayed for educational use only; do not reuse.
448 Ratings
(view ratings)
Ratings: 448
Reviews: 201
rAvg: 2.69
pDev: 27.51%
Brewed by:
Hamm's Brewing Co. visit their website
Wisconsin, United States
Style | ABV
American Adjunct Lager | 4.70% ABV
Availability: Year-round
Notes/C... | http://www.beeradvocate.com/beer/profile/320/870/?view=beer&sort=topr&start=25 | dclm-gs1-108010001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.22247 | <urn:uuid:3399b896-d21b-4d00-9db5-c350b59a9335> | en | 0.938008 | Forgot your password?
Early Autumn Test | Mid-Book Test - Medium
Purchase our Early Autumn Lesson Plans
Mid-Book Test - Medium
Name: _____________________________ Period: ___________________________
Multiple Choice Questions
1. When Patty leaves for New York, what does Paul do?
(a) Stay with a friend.
(b) Buil... | http://www.bookrags.com/lessonplan/early-autumn/test3.html | dclm-gs1-108040001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.05428 | <urn:uuid:e6a0ec79-5385-405c-95e6-cd5aadf5f8d7> | en | 0.970854 | Comments by 2cool4tools
Written on It's now official: UE, USI to play men's basketball exhibition on Oct. 27 | POLL:
in response to reasonrl:
Let me be the first UE season ticket holder to say that scheduling this game is a bad idea. It is about as bad as having a banker as the athletic director. I pay my money to b... | http://www.courierpress.com/users/2cool4tools/comments/ | dclm-gs1-108130001 | false | true | {
"keywords": "public health, blast"
} | false | null | false |
0.020769 | <urn:uuid:ebdaa562-3240-4532-9827-410605f34828> | en | 0.942854 | Skip to: Content
Skip to: Site Navigation
Skip to: Search
Mars photo evidence shows recently running water
By Peter N. SpottsStaff writer of The Christian Science Monitor / December 7, 2006
Liquid water – a key ingredient for organic life – appears to have flowed over the surface of Mars at least twice in the past s... | http://www.csmonitor.com/2006/1207/p01s02-usgn.html | dclm-gs1-108140001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.035335 | <urn:uuid:cb1e159c-112f-45dc-a108-356999d63ded> | en | 0.950528 | 'As a Christian I want to date without sex. Is that possible?:' FEMAIL's sexpert Rowan Pelling says outline your beliefs early on
By Rowan Pelling
QUESTION: I am a 45-year-old woman who was widowed five years ago. I feel ready to date again, but as a Christian I believe you should have sex only when married (my late... | http://www.dailymail.co.uk/femail/article-2265623/As-Christian-I-want-date-sex-Is-possible--FEMAILs-sexpert-Rowan-Pelling-says-outline-beliefs-early-on.html | dclm-gs1-108170001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.082538 | <urn:uuid:1c8248c5-c435-445e-a0c5-fb3da38ed5c0> | en | 0.953963 |
(Source: Lifehacker)
New study fuels speculations that Netflix will cause an internet meltdown
Comments Threshold
Come on, Netflix is not alone.
By mianmian on 11/4/2010 8:46:56 PM , Rating: 5
With the growth of HD content and more streaming services, the bandwidth they took has almost no limit. Just ... | http://www.dailytech.com/article.aspx?newsid=20075 | dclm-gs1-108220001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.192756 | <urn:uuid:7fc09465-0e76-42a4-b146-e545946b29c9> | en | 0.973473 |
A monopoly in satellite radio is a big no says FCC
Comments Threshold
By agent2099 on 1/23/2007 6:57:03 PM , Rating: 2
both companies saw their revenues drop as well as subscriber numbers drop
Didn't Sirius go from 600k subsrivers in 2005 to over 6 million by the end of 2006?
By dryloch on 1/23/2007 11:3... | http://www.dailytech.com/article.aspx?newsid=5818&commentid=99940&threshhold=1&red=3211 | dclm-gs1-108230001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.38027 | <urn:uuid:9b33b15b-36e0-4471-984c-64fd30846d84> | en | 0.985635 | Reality Scoop Header
Bachelor Scandal Part Deux: Why Brad Really Did It
Brad Womack, Bettina Bell CRAIG SJODIN / ABC
It actually wasn't really about the two finalists.
This is what I can tell you, after talking to a very reliable Bachelor insider, who told me the real reason for Brad's unexpected decision to choos... | http://www.eonline.com/news/4001/bachelor-scandal-part-deux-why-brad-really-did-it | dclm-gs1-108280001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.03866 | <urn:uuid:26daa052-7f9d-47f0-a2be-97e93ec63407> | en | 0.963108 | The Role of Demographics in Fire Safety
At the recent symposium in Washington, D.C., "Fire Protection and Safety: Preparing for the Next 25 Years," sponsored by the Fire Protection Research Foundation, demographics was the first item on the agenda in helping to determine what direction the country, and the fire servic... | http://www.firehouse.com/article/10493436/the-role-of-demographics-in-fire-safety | dclm-gs1-108310001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.027761 | <urn:uuid:9dba30a9-7f78-49a0-8d51-81cc4fce005a> | en | 0.708381 | a caipirinha perfeita
Prev Next
Claudia Dias, Dona Minúcia, and 118 other people added this photo to their favorites.
1. apoxapox 38 months ago | reply
Love the drinks illustrations - seen on Abduzeedo!
2. riczribeiro 38 months ago | reply
O infográfico perfeito.
3. BrunoGardini 3... | http://www.flickr.com/photos/fabiorex/5330820072/in/set-72157625636900017 | dclm-gs1-108320001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.020477 | <urn:uuid:6a40daa7-7338-4758-adfe-8ac8fa074cec> | en | 0.974796 | Next Game
Watford v Barnsley
Saturday, 15 March 2014, 15:00
Sky Bet Ch'ship
The Keepmoat Stadium
Last Game
Doncaster 2 - 1 Watford
Tuesday, 11 March 2014, 19:45
Sky Bet Ch'ship
Holloway: Zola now my equal
Crystal Palace manager Ian Holloway admitted he was glad to be taking on Gianfranco Zola as a manager rat... | http://www.football365.com/watford/8737951/Championship-play-off-final-Crystal-Palace-manager-Ian-Holloway-glad-to-face-Gianfranco-Zola-from-sidelines | dclm-gs1-108330001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.4875 | <urn:uuid:ad9b9ba3-52c8-4fa4-a8ba-1f37ec5e91df> | en | 0.950035 | Puns. .
Views: 32034
Favorited: 45
Submitted: 03/16/2013
Share On Facebook
Add to favorites Subscribe to douchebuttt E-mail to friend submit to reddit
Show: Top Rated Controversial Best Lowest Rated Newest Per page:
Show All Replies Show Shortcuts
#6 - apatheticalcare **User deleted account** (03/16/2013) [-]
Us... | http://www.funnyjunk.com/funny_pictures/4483809/Puns/ | dclm-gs1-108350001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019985 | <urn:uuid:f45c3354-8fba-4941-afd8-9b7d83c2f06b> | en | 0.977827 | If you like stealth games this is the game for you!
The orianal Thief game came out some time near 1999 I think. That game was to my understanding the first stealth game. Since then stealth games are relesed left and right, and in my apinyon they just aren't that good. But Thief: Deadly Shadows is a breath of freash a... | http://www.gamespot.com/guild-wars-factions/user-reviews/2200-392939/ | dclm-gs1-108410001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.087068 | <urn:uuid:a09d5322-26b2-453b-a49d-4bcc3f9251c6> | en | 0.904257 | Gentoo Logo
3. Gentoo/Alt Technotes Guide
3.a. General Structure
Handling Users
There are differences between users in a Gentoo/Linux system and the ones in other Gentoo/Alt systems. These differences are usually a side problem that does not invalidate most of the work. Still, it's better to pay attention.
The f... | http://www.gentoo.org/proj/en/gentoo-alt/contribute/index.xml?part=1&chap=3 | dclm-gs1-108420001 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037164 | <urn:uuid:c3d5aaad-81a2-4c95-8cd3-8396631867ae> | en | 0.906687 | Search Images Maps Play YouTube News Gmail Drive More »
Sign in
1. Advanced Patent Search
Publication numberUS4617461 A
Publication typeGrant
Application numberUS 06/603,876
Publication dateOct 14, 1986
Filing dateApr 25, 1984
Priority dateApr 25, 1984
Fee statusLapsed
Publication number06603876, 603876, US 4617461... | http://www.google.com/patents/US4617461?ie=ISO-8859-1&dq=5,579,517 | dclm-gs1-108460001 | 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.