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.76586 | <urn:uuid:0936daf2-4f72-451c-ba3b-d0430e78f792> | en | 0.889829 | Take the 2-minute tour ×
Basically, I am designing a web search engine, so I designed a crawler to get web pages.
When read in, the web pages are in html format, so all the tags are there. I need to extract keywords from the body and title, so I'm trying to remove all the tags (anything between '<' and '>')
The code... | http://stackoverflow.com/questions/11707540/python-memory-error-while-using-large-strings | dclm-gs1-180680000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.112695 | <urn:uuid:93734b98-64b0-461b-bde5-f8b62e46c3ad> | en | 0.808065 | Take the 2-minute tour ×
I want to display a message box when any person clicks on the menu item which is not enabled I have tried the following coding but it is not displaying the message box.
private void updateFineDetailsToolStripMenuItem_Click(object sender, EventArgs e)
if (updateFineDetailsToolStripMenuIte... | http://stackoverflow.com/questions/1181436/displaying-messagebox-when-disabled-menu-item-is-clicked | dclm-gs1-180700000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.093567 | <urn:uuid:97c08f75-7c2f-4a38-a180-ec413c41b3db> | en | 0.885592 | Take the 2-minute tour ×
I have a file as below:
28 temp 5
I am using the below command for splitting the lines and get the last number in the line.
awk -F"temp" '{print $NF}' temp3
the ouput i got is :
> awk -F"temp" '{print $NF}' temp3
28 temp 5
Surprisingly if i use nawk i am getting the expected output.
> n... | http://stackoverflow.com/questions/11934952/splitting-a-line-according-to-the-field-separator-as-a-string | dclm-gs1-180710000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.346464 | <urn:uuid:ea751c7b-9656-4de4-a6f1-54fecca145df> | en | 0.684034 | Take the 2-minute tour ×
So I am trying to get a UITableView to show a list of objects by section (thing.title), but list them in descending order by date.
The table is is split into sections, which are labeled correctly (section headers are the different thing titles).
But the objects in each section are only half ... | http://stackoverflow.com/questions/12791678/uitableview-sectioned-with-sort-order-not-sectioning-correctly | dclm-gs1-180780000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037257 | <urn:uuid:f6c31d98-324f-4775-bdca-d4558120e7fd> | en | 0.806027 | Take the 2-minute tour ×
I'm trying to implement an ISO8589 message to a financial institution. They however, have a Web Service that I call and then I load the ISO8589 payload into an appropriate field of the WCF service.
I have created an ISO8589 message this way:
var isoMessage = new OpenIso8583.Net.Iso8583();
is... | http://stackoverflow.com/questions/12927004/convert-openiso8583-net-into-different-formats/13229075 | dclm-gs1-180820000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.027961 | <urn:uuid:435a22b1-2847-4d41-8705-894d0765e139> | en | 0.811297 | Take the 2-minute tour ×
When I want to deploy an MVC 4 (.net 4.5) application to my iis i got the 403.14 calling me that the content ist not browseable.
This also occurs when i deploy the unchanged mvc 4 template.
when using the mvc 4 template with .net 4.0 everything works. I checked the other posts but can't figu... | http://stackoverflow.com/questions/13540428/net-4-5-asp-mvc-error-403-14-iis-7-windows-server-2008-r2 | dclm-gs1-180880000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.113359 | <urn:uuid:c7cbc7fe-658b-4de4-81eb-880c45cc0e6e> | en | 0.824755 | Take the 2-minute tour ×
I used the next code to open my facebook page from ios app :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.facebook.com/pages/UNNYHOG-Entertainment/208173649242257"]];
And everything was fine, and it's still fine if you don't have a FB app on your device. But i... | http://stackoverflow.com/questions/13806625/redirecting-while-opening-the-fb-page-from-ios-app-why?answertab=active | dclm-gs1-180900000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.892919 | <urn:uuid:1169236f-00c8-4aa3-8d25-9417b3654321> | en | 0.920906 | Take the 2-minute tour ×
I've been puzzling over this for a few days... feel free to shoot down any of my assumptions.
We're using a Dictionary with integer keys. I assume that the value of the key in this case is used directly as the hash. Does this mean (if the keys are grouped over a small range) that the distribu... | http://stackoverflow.com/questions/1388314/hashtables-dictionary-etc-with-integer-keys | dclm-gs1-180910000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.57207 | <urn:uuid:e00063a7-1171-4dae-b8d8-43c6d6a55dd2> | en | 0.846366 | Take the 2-minute tour ×
I tried to modify properties of JvTabBar, but it does not work. I assigned JvTabBarXPPainter to JvTabBar, but it only changed "FixedTabSize" properties. All the other cannot be changed. What interests me is to change the background color and font.
share|improve this question
add comment
1 An... | http://stackoverflow.com/questions/14178151/modifying-jvtabbar-with-jvtabbarxppainter | dclm-gs1-180930000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.916301 | <urn:uuid:8a904092-aefc-470c-ba0d-bb062dbe351d> | en | 0.669028 | Take the 2-minute tour ×
How can I count the number of spaces of the current line in a textarea
If my cursor is current on line 2 then the result should be: 3
share|improve this question
add comment
2 Answers
up vote 0 down vote accepted
Here is the code:
window.onload = function () {
var ta = document.getE... | http://stackoverflow.com/questions/14948425/count-the-number-of-spaces-of-the-current-line-in-a-textarea | dclm-gs1-180960000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.053857 | <urn:uuid:94a5918d-6a92-4e68-bfa5-9d9c9637355d> | en | 0.869725 | Take the 2-minute tour ×
How to make any DIRECTORY WRITABLE , on heroku ??
because I make an app on facebook , with heroku hosting but there is some DIRECTORY should be WRITABLE to run my app .
thank you
share|improve this question
add comment
1 Answer
up vote 0 down vote accepted
Heroku doesn't allow you to wri... | http://stackoverflow.com/questions/15024444/how-to-make-any-directory-writable-on-heroku | dclm-gs1-180970000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.087377 | <urn:uuid:b318ff4d-c7d6-4412-b92f-9c41147ec84c> | en | 0.894807 | Take the 2-minute tour ×
Right now, my rails app seems to write to production.log in intervals. How do I make the log update instantly? Or is there a way to force the log to flush?
share|improve this question
FYI if you're still on 3.2.11 you're a few security patches behind, and you should consider updating to the l... | http://stackoverflow.com/questions/15672998/how-do-i-make-the-production-log-flush-in-rails-3-2-11 | dclm-gs1-180990000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.758097 | <urn:uuid:27cfd8f5-fe58-49f5-8f13-54e96c72f544> | en | 0.830785 | Take the 2-minute tour ×
I need to pick a future date from calendar, suppose the date I am selecting is 04/30/2013. Now what I want is to send the date to server. At server end I need to calculate the number of days between the future date and current date and send it to database.
The problem is that when I do the ca... | http://stackoverflow.com/questions/16056246/issue-getting-the-days-difference-between-future-date-and-current-date-in-java | dclm-gs1-181020000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.254711 | <urn:uuid:11f26734-865b-4dba-9f36-81094ff2e31f> | en | 0.738402 | Take the 2-minute tour ×
I have an alarm checker in my activity (Groups.java) to start a service each few seconds:
public void lookForGroups()
int seconds = 40;
Intent myIntent = new Intent(Groups.this, GroupsTaskAlarmChecker.class);
pendingIntent = PendingIntent.getService(Groups.this,... | http://stackoverflow.com/questions/16111592/kill-an-alarm-checker-in-android | dclm-gs1-181030000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.57042 | <urn:uuid:d58658ca-e230-46ea-9677-8dd67806bffb> | en | 0.915779 | Take the 2-minute tour ×
I have a class that contains an NSSet. That object is called _collectibles, and in a method, I make a copy of that set in order to do some processing, something like:
NSSet* collectibleCopy = [_collectibles copy];
In practice, I see this regularly crash with this message:
[__NSPlaceholderSe... | http://stackoverflow.com/questions/16736794/bizarre-nsset-copying-crash | dclm-gs1-181050000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.026972 | <urn:uuid:3f0153fb-f629-45ae-9adc-b57693832c83> | en | 0.844794 | Take the 2-minute tour ×
I mean I tried to export my java game like this : EXPORT>Jar File but if I do this it doesn't start.
And if I export to executable jar file it doesn't export my resources into the jar file.
I mean if I play the game in eclipse the sound works. But if I export to executable jar file it doesn'... | http://stackoverflow.com/questions/17633057/how-to-export-a-a-jar-file-correctly/17633210 | dclm-gs1-181090000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.080685 | <urn:uuid:05079f0e-8ac6-42e2-99a0-63095978d8cb> | en | 0.911474 | Take the 2-minute tour ×
I've been looking all over the site and on stack overflow and I just can solve my issue.
Network Setup
The way my network on my staging world is that I have clients looking at my web app on a 443 port - https, but the underlying structure is listening on 80 port - http. So when my apps talk ... | http://stackoverflow.com/questions/18988968/http-to-https-silverlight-wcf-cross-domain-issue | dclm-gs1-181140000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.655138 | <urn:uuid:294507a7-153c-4fa3-a6c1-ff030a2c9eb8> | en | 0.908144 | Take the 2-minute tour ×
I am trying to understand the basics of Message Queues. I see that there are many implementations available as libraries for MQs (ActiveMQ, RabbitMQ, ZeroMQ etc). Also J2EE enabled servers provide such support I think.
What I fail to understand about the topic, is how are these kind of constru... | http://stackoverflow.com/questions/19604977/what-kind-of-message-formats-are-usually-being-exchanged-in-message-queueing-sys | dclm-gs1-181150000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.02423 | <urn:uuid:ef14227f-7307-4363-a1ca-ad74a2aa805f> | en | 0.918547 | Take the 2-minute tour ×
I am trying to load a new post in wordpress without reloading the entire page. I am not sure where to start with this. I am new to AJAX and JavaScript. Any help would be great.
share|improve this question
add comment
2 Answers
If you are new to AJAX and javascript, I would start by looking ... | http://stackoverflow.com/questions/2037683/display-new-wordpress-post-without-reloading-page | dclm-gs1-181160000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.451026 | <urn:uuid:f685a22c-9b86-4c7b-b57e-ebbb34fe4e23> | en | 0.913994 | Take the 2-minute tour ×
I need to match a series of user inputed words against a large dictionary of words (to ensure the entered value exists).
So if the user entered:
"orange" it should match an entry "orange' in the dictionary.
Now the catch is that the user can also enter a wildcard or series of wildcard chara... | http://stackoverflow.com/questions/2815083/efficient-data-structure-for-word-lookup-with-wildcards | dclm-gs1-181220000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.901516 | <urn:uuid:45d40d65-ddd8-4b22-bdfa-897e6b9d0c51> | en | 0.824576 | Take the 2-minute tour ×
Is there any way to open a new window in Java without the addressbar? I'm looking for a Java API similiar to the JavaScript window.open() where you can specify the new window "features".
I know I can use Desktop.browse() or even the more adavance BrowserLauncher2, Still both APIs don't give m... | http://stackoverflow.com/questions/3093174/how-to-open-a-browser-window-in-java-without-the-addressbar | dclm-gs1-181240000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.910426 | <urn:uuid:0c57063b-4bae-40d4-bd72-fa65eb7b9f9d> | en | 0.730117 | Take the 2-minute tour ×
Is there a way to make django-haystack's {% highlight %} template tag show the full variable passed in, rather than removing everything before the first match?
I'm using it like this:
{% highlight thread.title with request.GET.q %}
share|improve this question
add comment
1 Answer
i've neve... | http://stackoverflow.com/questions/3160766/django-haystack-highlight-template-tag-issue | dclm-gs1-181250000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.966097 | <urn:uuid:b9b4497f-9af8-4a63-b5d5-a3115c60afb7> | en | 0.695743 | Take the 2-minute tour ×
<table class="display" id="jquerytable">
<th>Eng 1</th>
<th>Eng 2</th>
<% foreach (var item in Model) { %>
<td><%= Html.Encode(item.BillingAddress) %></td>
<td><%= Html.Encode(item.DeliveryAddress) %></td>
<td><%= Html.Encode(item.Engineer1Id) %></td>
<td... | http://stackoverflow.com/questions/3226983/hide-th-and-td-tag | dclm-gs1-181260000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.724705 | <urn:uuid:d5db0ad1-1f22-4cd2-80ea-e8fc3b3a6079> | en | 0.823017 | Take the 2-minute tour ×
I have QGraphicsTextItem objects on a QGraphicsScene. The user can scale the QGraphicsTextItem objects by dragging the corners. (I am using a custom "transformation editor" to do this.) The user can also change the size of the QGraphicsTextItem by changing the font size from a property panel. ... | http://stackoverflow.com/questions/3302086/calculate-qgraphicstextitem-font-size-based-on-scale | dclm-gs1-181270000 | false | true | {
"keywords": "mouse, delta"
} | false | null | false |
0.115378 | <urn:uuid:b464a10a-eb81-49a6-a688-edbe85e82364> | en | 0.913144 | Take the 2-minute tour ×
I didn't find a good comparison of jinja2 and Mako. What would you use for what tasks ?
I personnaly was satisfied by mako (in a pylons web app context) but am curious to know if jinja2 has some nice features/improvements that mako doesn't ? -or maybe downsides ?-
share|improve this question... | http://stackoverflow.com/questions/3435972/mako-or-jinja2 | dclm-gs1-181280000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.381464 | <urn:uuid:b27e5304-011c-4bc1-8697-e163f6032fb6> | en | 0.766341 | Take the 2-minute tour ×
I want to wrap the following code into a function using jQuery and call that function from inline (eg: onclick, onchange etc.).
function some_function() {
alert("Hello world");
Called by (example):
<input type="button" id="message" onclick="some_function()" />
This question is simple fo... | http://stackoverflow.com/questions/3583275/custom-jquery-functions-called-from-inline-events | dclm-gs1-181290000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.275609 | <urn:uuid:0c5b776e-4548-4af1-8f7c-1f897d9d27f5> | en | 0.889964 | Take the 2-minute tour ×
I'm relatively new to Lisp (I just know the very basics) and I'm currently trying to run an algorithmic composition program created by David Cope. It runs in MCL 5.0, and I keep getting the following error:
Error in process play: Stack overflow on value stack. To globally increase stack space... | http://stackoverflow.com/questions/3849045/increase-minimum-stack-overflow-size-in-mac-common-lisp-5-0 | dclm-gs1-181300000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.820151 | <urn:uuid:6e4f9772-ac51-47ff-9495-ee1ca63dae6b> | en | 0.727422 | Take the 2-minute tour ×
I wanted to have a look at source code of basic networking services like FTP, Telnet, rlogin etc.
Can anyone tell where can I get them. By the way, its not that i didn't google it, e.g. searching for ftp, gives me list of so many ftp variants, but i am intersted in looking at a ftp client/ser... | http://stackoverflow.com/questions/3947780/ftp-source-code/4758106 | dclm-gs1-181320000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.650464 | <urn:uuid:aa93f714-e5d6-4b33-b7cd-1c480af179c5> | en | 0.910949 | Take the 2-minute tour ×
I'm developing an Android application.
I have a 3D model drawn with Blender. Do you know if there is a way to export that model into a OpenGL geometry?
I'm going to use C++ code to load model and draw it with OpenGL. But if you know a better choice, please tell me.
share|improve this questi... | http://stackoverflow.com/questions/4193318/export-blender-model-into-an-opengl-geometry-inside-a-c-header-file?answertab=votes | dclm-gs1-181340000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.996885 | <urn:uuid:327ecac0-2a30-4e5c-8e29-51546949752b> | en | 0.854414 | Take the 2-minute tour ×
long b = 99;
float c = 99.0F;
//b = c; //Error : Cannot implicitly convert type 'float' to 'long'.
c = b; // Running Successfully. Why?
Why is there no problem regarding size of data type and implicitly converting?
The size of float and long is different as we know and which is given belo... | http://stackoverflow.com/questions/4352213/long-in-float-why | dclm-gs1-181360000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.712597 | <urn:uuid:325f2f2e-a864-4f78-884e-6076ef17fa2f> | en | 0.857041 | Take the 2-minute tour ×
Hi: I'm trying to sort a list of tuples in a custom way:
For example:
lt = [(2,4), (4,5), (5,2)]
must be sorted:
lt = [(5,2), (2,4), (4,5)]
* b tuple is greater than a tuple if a[1] == b[0]
* a tuple is greater than b tuple if a[0] == b[1]
I've implemented a cmp function like this:
def t... | http://stackoverflow.com/questions/4554115/sorting-tuples-in-python-with-a-custom-key/4554147 | dclm-gs1-181380000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.123861 | <urn:uuid:4c61ac46-a5b9-4825-aaa6-bf35a49b882e> | en | 0.834396 | Take the 2-minute tour ×
I'm having a rough time figuring out where to start with getting this query into a Zend_Db_Select. I have never worked with variables assignment and subqueryies in Zend:
@current_continent := stats_geo_continent.id AS `continent_id`,
(SELECT GROUP_CONCAT(code) from stats_geo_country WHERE sta... | http://stackoverflow.com/questions/5014068/zend-db-select-with-variable-assignment-and-subqueries | dclm-gs1-181390000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.647929 | <urn:uuid:b1623d13-cb02-4f29-baa1-0370b2781adc> | en | 0.928024 | Take the 2-minute tour ×
I'm aware of other posts on this topic but I'm only really one rung up the ladder from being a noob so need a bit more help.
My iPhone app has several global variables - some I have declared and given values in a class but others need to be set during a login process (like a token for example... | http://stackoverflow.com/questions/5448476/objective-c-singleton-objects-and-global-variables?answertab=oldest | dclm-gs1-181420000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.179956 | <urn:uuid:55dc10f2-934a-438a-9cc8-3f918c0b9e81> | en | 0.878287 | Take the 2-minute tour ×
I created my own parental control app using C# to monitor my kids activity. It logs all the keyboard input and screens in the background silently, with the only gui of taskbar icon. So far, I just let it run in my admin account and everybody share the same account and it works fine. The proble... | http://stackoverflow.com/questions/5527136/win7-keyboard-hook-stops-working-in-another-user-account | dclm-gs1-181430000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.236167 | <urn:uuid:f1d9d852-aeb4-43d7-9eb4-8a700428d7a3> | en | 0.886702 | Take the 2-minute tour ×
I want to read Gmail mails in my own android app. Is there anyway to do it using android sdk? If not, what are the other options? parsing gmail atom?
share|improve this question
Development questions are off-topic here. – Matthew Read May 22 '11 at 4:18
add comment
migrated from android.sta... | http://stackoverflow.com/questions/6096381/reading-gmail-mails-using-android-sdk/6121361 | dclm-gs1-181470000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.969366 | <urn:uuid:abcbd1cc-47a6-450c-a73e-26825e280d08> | en | 0.905466 | Take the 2-minute tour ×
Given (arbitrarily):
CGRect frame = CGRectMake(0.0f, 0.0f, 100.0f, 30.0f);
What's the difference between the following two code snippets?
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = frame;
UIButton *button = [[[UIButton alloc] initWithFrame... | http://stackoverflow.com/questions/6245882/initwithframeframe-vs-uibutton-buttonwithtype/6245883 | dclm-gs1-181480000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.209044 | <urn:uuid:23fd7b12-0f2a-4cd3-a9ba-06b3e9715337> | en | 0.807245 | Take the 2-minute tour ×
I've a problem. I'm scrapping a txt file and extracting an ID. The problem is that the data is not consistent and I have to evaluate the data.
Here is some code:
$a = "34";
$b = " 45";
$c = "ddd556z";
if ( ) {
echo "INTEGER";
} else{
echo "STRING";
I need test if the values $a,... | http://stackoverflow.com/questions/6329547/how-to-convert-a-string-to-integer-and-test-it?answertab=votes | dclm-gs1-181490000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.79752 | <urn:uuid:c2c9d450-7bde-40cc-b15b-10e1396f574e> | en | 0.926168 | Take the 2-minute tour ×
I have a WinForms application and a Panel Control. The panel control has a VScrollBar control for vertical scrolling. Everything works fine except right now I have my VScrollBar maximum value set to 100. The problem is, I need the Maximum property to be about 4 billion, however, since Maximum ... | http://stackoverflow.com/questions/6524361/infinite-vertical-scrolling?answertab=votes | dclm-gs1-181500000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.372773 | <urn:uuid:01325b39-389d-40a9-b33a-528a926147d6> | en | 0.932791 | Take the 2-minute tour ×
I often have to write code that I would like to optimize for performance, and I often have several solutions to a particular problem.
Is there a simple way to determine the number of CPU cycles a particular statement/function would take? I'm not talking about complex code that access the file... | http://stackoverflow.com/questions/6917428/how-to-determine-complexity-as-in-cpu-cycles-of-c-code-with-visual-studio-20 | dclm-gs1-181530000 | false | false | {
"keywords": "assembly"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.484959 | <urn:uuid:69a32665-3cae-4443-880b-d72667e655a5> | en | 0.693819 | Take the 2-minute tour ×
I'm having a problem with a boolean expression and when I did a logger.debug I had strange results, so I simplified my logging code to the following and was surprised not to see any 'false' being printed.
Logging code in my controller:
logger.debug 'true'
logger.debug true
logger.debug 'fals... | http://stackoverflow.com/questions/7066132/why-isnt-logger-debug-false-printing-anything | dclm-gs1-181540000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.408209 | <urn:uuid:75dc03e3-79b2-4b59-8336-be0e3e222c3b> | en | 0.939894 | Take the 2-minute tour ×
I've built a program running on windows 7 to communicate with a usb device "power mate". When I leave my computer, I always press "WIN+L" to lock my computer, and when I get back, I press "CTRL+ALT+DEL" and enter my password to log in the computer. At the same time, the program is running. I'm... | http://stackoverflow.com/questions/7600481/any-windows-api-to-let-me-re-log-in-a-locked-windows-7?answertab=votes | dclm-gs1-181600000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.157544 | <urn:uuid:65756eb1-21b7-47ee-9e49-9b81cb4e5ac0> | en | 0.756124 | Take the 2-minute tour ×
I do this: First create navigation based application. Then delete UITableView from rootViewController.xib, add a UIView connect it to File's Owner. Change UITableView to UIViewController in RootViewcontroller.h Finally clean all methods of UITableView in RootViewcontroller.m
But when I run th... | http://stackoverflow.com/questions/7725011/navigation-based-application-without-a-uitableview-error?answertab=votes | dclm-gs1-181620000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.034491 | <urn:uuid:3eac8c1c-9c86-477f-aeb9-4fba6615ef26> | en | 0.864927 | Take the 2-minute tour ×
What HTTP framework should I use for a simple application with implied scalability, priferable Pythonic? I would like to be able to smoothly add new features to my app when it has already been deployed.
share|improve this question
add comment
3 Answers
up vote 1 down vote accepted
It migh... | http://stackoverflow.com/questions/793501/what-http-framework-to-use-for-simple-but-scalable-app | dclm-gs1-181640000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.432241 | <urn:uuid:1c78055a-3a64-4644-a18e-546771b18eb2> | en | 0.762884 | Take the 2-minute tour ×
I have the script:
object_name(fk.parent_object_id) 'Parent table',
c1.name 'Parent column',
object_name(fk.referenced_object_id) 'Referenced table',
c2.name 'Referenced column'
sys.foreign_keys fk
inner join
sys.foreign_key_columns fkc ON fk.object_id = fkc.constraint... | http://stackoverflow.com/questions/7995676/how-do-i-encapsulate-this-data-from-sql-using-c | dclm-gs1-181650000 | false | false | {
"keywords": "assembly"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.970138 | <urn:uuid:62de9f1f-b1c4-47dd-b823-dca372fbb1ad> | en | 0.822816 | Take the 2-minute tour ×
How can I convert the number 123.45678 * 10^-22 to the IEEE 745 single-precision floating point representation? Can you show me the steps?
share|improve this question
See stackoverflow.com/questions/3448777/… – paxdiablo Nov 25 '11 at 14:53
add comment
1 Answer
Basically you want binary sc... | http://stackoverflow.com/questions/8270697/how-to-convert-a-number-to-the-ieee-745-single-precision-floating-point-represen?answertab=votes | dclm-gs1-181660000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.869607 | <urn:uuid:4c8cad0a-71b5-46cd-97ed-aea1995c2bf7> | en | 0.786485 | Take the 2-minute tour ×
python's unittest testrunner looks for setUpModule() defined in a file to perform before running any test specified in the module. is there a way to use a decorator or some other tool inorder to rename the function name?
for example:
def globalSetUp():...
will enable unittest's loader to re... | http://stackoverflow.com/questions/8397690/renaming-default-python-unittest-function-names?answertab=active | dclm-gs1-181680000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.054243 | <urn:uuid:0d823cf6-5ebd-4073-a4c6-b836292f5717> | en | 0.922876 | Take the 2-minute tour ×
My SQL Server 2008 has
1. one central database that has some global functions, e.g. mapping to specified client DB.
2. 50+ client DBs
3. Master DB.. (MS Default)
4. ASPState for session.
Now I'm trying to add this stored procedure usp_RethrowError (http://msdn.microsoft.com/en-us/lib... | http://stackoverflow.com/questions/8478351/where-should-i-put-common-stored-procedure-in-sql-server | dclm-gs1-181690000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.497364 | <urn:uuid:64f51e41-1181-41e8-a25c-35b2b06554f4> | en | 0.865557 | Take the 2-minute tour ×
I've been making several libraries and extension libraries, and it's not practical for me to use prototype because in the real-world you actually have private variables that do not need to be accessed from an instantiated object.
var parent_class = function(num) {
var number = num;
t... | http://stackoverflow.com/questions/9007413/javascript-inheritance-by-prototype-without-using-prototype-to-define-call-met?answertab=oldest | dclm-gs1-181720000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.066004 | <urn:uuid:0542cbe2-dee1-4550-ab7e-3f87d122602a> | en | 0.784562 | Take the 2-minute tour ×
I am trying to send SMTP email from my vb.net form application. When applying this code, I get the error below. What am I doing wrong?
Imports System.Net.Mail
Public Class Form1
Dim SmtpServer As New SmtpClient()
Dim mail As New MailMessage()
SmtpServer.... | http://stackoverflow.com/questions/9280105/system-net-mail-smtpexception-the-smtp-server-requires-a-secure-connection-or-th | dclm-gs1-181730000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.716901 | <urn:uuid:04bd56fa-a639-47ab-a945-f751ede5c918> | en | 0.955202 | Take the 2-minute tour ×
Gerrit will merge potentially unreviewed changes that are earlier in the commit history and are in a different 'branch' of the repository. Here's an example:
1. checkout gerrit branch devel
2. create file1.txt, add, commit, push to refs/heads/temp_branch
3. create file2.txt, add, commit... | http://stackoverflow.com/questions/9473074/is-there-a-way-to-force-gerrit-to-have-all-commits-in-a-branch-be-push-to-code-r/9485230 | dclm-gs1-181740000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.033166 | <urn:uuid:229ddad4-3e8d-425f-a3e3-82e4af5f01ce> | en | 0.963464 | View Single Post
Lt. Commander
Join Date: Dec 2007
Posts: 120
# 18
04-21-2010, 06:31 AM
I think the big issue is the nerf to EPS consoles. My thought is Cryptic nerfed it because they didn't want people stacking EPS so they never see a power drain on their ship. I don't know what people used before the nerf in terms of... | http://sto-forum.perfectworld.com/showpost.php?p=2579968&postcount=18 | dclm-gs1-181790000 | false | false | {
"keywords": "engineering"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.99679 | <urn:uuid:c52b641a-f310-4e0a-a5c7-9b44442f9274> | en | 0.745355 | Michael Lamothe Joined Jul 17, 2012
1. Default_avatar_thumb
2. Thumb-1367271109
3. Thumb-1309849773
4. Thumb-1371427949
5. Thumb-1391550279
6. Thumb-1389051825
7. Thumb-1393421679
8. Thumb-1379006107
9. Thumb-1388614850
10. Thumb-1367923930
11. Default_avatar_thumb
12. Thumb-1389467792
I ... | http://stocktwits.com/MichaelGLamothe/followers?page=7 | dclm-gs1-181800000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.555827 | <urn:uuid:2a27b027-d6bf-4519-bbf5-8ce5a1fa849b> | en | 0.933248 | Take the 2-minute tour ×
When I connect 2 PCs with each other through a 1GigE crossover cable and transfer large files (often larger than 1GB) through FTP, I often got transfer speed of around 70MB/s, which is likely limited by the hard drives and not by Ethernet's bandwidth.
I don't have a USB 3.0 device at hand, bu... | http://superuser.com/questions/334387/usb-and-ethernet-which-is-more-cpu-intensive | dclm-gs1-181820000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.300721 | <urn:uuid:1bbcce28-e77e-448f-87d6-0d18e6ae487e> | en | 0.88463 | Take the 2-minute tour ×
Can LyX be used as an IDE for LaTeX? I am considering using LyX instead of Emacs to write my LaTeX papers. Emacs is powerful editor/IDE which helps me be more productive while writing LaTeX. LyX looks like more than an IDE, because it uses its own file format. Is LyX is a good option if the en... | http://tex.stackexchange.com/questions/28822/can-i-think-of-lyx-as-a-latex-ide?answertab=votes | dclm-gs1-181830000 | false | false | {
"keywords": "importin"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.567986 | <urn:uuid:a992b0e4-8828-4d7b-b979-e1268a82dbf1> | en | 0.95443 | In response to:
A Scam’s Telling Success
John1039 Wrote: Jul 29, 2012 4:40 AM
What is worse the 42 billion dollars that GM owes the tax payer or this scam ?One is linked Directly to Obama and the other uses his name. Either way the working american is the loser A con works only if you are greedy or desperate. That is... | http://townhall.com/social/john1039-480660/a_scams_telling_success_cmt_5016548 | dclm-gs1-181870000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.500598 | <urn:uuid:f0f08be0-080f-4759-a88b-d7da8f0473b5> | en | 0.96928 | In response to:
State of the State of the Union
M.K. Wrote: Feb 11, 2013 9:34 AM
Obama thinks that taxing you and using the tax money to hire people to work for the government is job creation. Real job creation occurs when people start their own businesses and grow and hire more employees thereby increasing the tax b... | http://townhall.com/social/m.k.-537002/state-of-the-state-of-the-union-n1509473_cmt_6357445 | dclm-gs1-181880000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.225486 | <urn:uuid:7ad690d2-9eee-493d-8b59-03dad8e8df6c> | en | 0.942922 | main index
Topical Tropes
Other Categories
TV Tropes Org
Headscratchers: Puzzle Quest
• Why has every single sequel and Spin-Off since the original regressed in terms of graphics? At best, Galactrix was a step sideways (it was a regression in art style more than graphics). Though the PC version of PQ2 is decent... | http://tvtropes.org/pmwiki/pmwiki.php/Headscratchers/PuzzleQuest | dclm-gs1-181910000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.031304 | <urn:uuid:30042b27-b26e-4e13-a823-0383a3b7ddb8> | en | 0.968639 | main index
Topical Tropes
Other Categories
TV Tropes Org
Staged Shooting
Nicolas Mason: "Corn syrup."
Ziva David: "Blanks."
— To a dumbfounded Big Bad, "Worst Nightmare", NCIS
It's a tense scene in the middle of The Caper. It looks like the characters are about to be rumbled.
Two start arguing with each other. ... | http://tvtropes.org/pmwiki/pmwiki.php/Main/StagedShooting | dclm-gs1-181920000 | false | false | {
"keywords": "paralysis"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.036822 | <urn:uuid:f1ed7d33-ecde-4974-bd42-e2cf3f7c42f6> | en | 0.960096 | main index
Topical Tropes
Other Categories
TV Tropes Org
Quotes: Bestiality Is Depraved
Sora: Where do mermaids come from?
Ariel: Well, when a man loves a dolphin more than society says he should...
"His educational career began, interestingly enough, in agricultural school, where he majored in animal husbandry,... | http://tvtropes.org/pmwiki/pmwiki.php/Quotes/BestialityIsDepraved | dclm-gs1-181930000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.027383 | <urn:uuid:ef562538-e2db-4511-92c3-5386578a65f6> | en | 0.919978 | Diablo® III
Vault getting stuck on stairs? Problem?
Has anybody noticed that the skill Vault frequently gets stuck on stairs and on edges?
For a good reference, check out Forces "Diablo 3 beta Let's play demon hunter" video on youtube.
I can see this being the end of a few hardcore characters as they try to defensi... | http://us.battle.net/d3/en/forum/topic/3229373763 | dclm-gs1-181940000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037769 | <urn:uuid:c3a3e2d7-4bd3-4c84-b55c-d738efde33dc> | en | 0.953649 | Help Wikitravel grow by contributing to an article! Learn how.
From Wikitravel
Jump to: navigation, search
This article is a travel topic
Tolls are fees charged for the privilege of driving on some roads. They may be charged on a stretch of a highway or other road, to cross a bridge or tunnel, to enter an area, ... | http://wikitravel.org/en/Tolls | dclm-gs1-181980000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022185 | <urn:uuid:170e6f4f-b435-46fd-b2a6-982c457ab48c> | en | 0.983036 | Presidential candidates debate marriage for gay couples
BY admin
October 15 2004 12:00 AM ET
During the last of three presidential debates on Wednesday evening, an unprecedented discussion on homosexuality and gay rights highlighted the two candidates' concurring and differing views on the issue. It started when Geo... | http://www.advocate.com/news/2004/10/15/presidential-candidates-debate-marriage-gay-couples-14054 | dclm-gs1-181990000 | false | false | {
"keywords": "candida"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.042387 | <urn:uuid:ce1219c0-a6af-4a84-9d87-4314b771635c> | en | 0.90219 | Your comments on ...
Why Won't Supposedly Progressive Trader Joe's Sign an Agreement Not to Sell Slave Labor Tomatoes? It Will Only Cost a Penny Per Pound
Trader Joe's pulls in some $8.5 billion per year, in part because of its progressive reputation. It's time for the company to sign a fair food agreement. | http://www.alternet.org/comments/story/151985/why_won't_supposedly_progressive_trader_joe's_sign_an_agreement_not_to_sell_slave_labor_tomatoes_it_will_only_cost_a_penny_per_pound | dclm-gs1-182000000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.74018 | <urn:uuid:6c00a87a-f1db-43d2-80ab-7da9093e343c> | en | 0.869818 | xlab3000 (Level 9)
followed by
| |
how do you get people to follow you, how to make good threads I'm new here and sorry for the horrible threaqds I made lately where are the rules for battle threads
Mandatory Network
Submissions can take several hours to be approved.
Save ChangesCancel | http://www.animevice.com/profile/xlab3000/how-do-you-become-popular-on-animevice/107-9794/ | dclm-gs1-182020000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.078823 | <urn:uuid:3c8eec08-25a2-46e5-ba33-e4bcc142555a> | en | 0.931916 | or Connect
New Posts All Forums:
Posts by Mrkingdavid23
so when do they start selling the new vt50 ? october 2012 ? ?
Most boring bizarre conference ever ! did they showed up the tv s ? or did i fall sleep ?
It is funny how my st30 looks better than my Sony hx909 .
anyway to update the tv via ps3 ?
changing mode to ... | http://www.avsforum.com/forums/posts/by_user/id/8339126/page/10 | dclm-gs1-182050000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.020636 | <urn:uuid:e2c86bfa-229f-4f7c-9b82-9a5e1fff5de6> | en | 0.957286 | post #1 of 1
Thread Starter
Using Remote Potato on my i3 2105 based system, Win7 Ultimate, 8 gigs memory, on FIOS 35/35 pipe, I'm seeing CPU usage go up and stay up at different levels as video is transcoded and streamed out. Obviously this is a CPU-intensive task. Sometimes holding at 89%, peaking to 99%. Other times... | http://www.avsforum.com/t/1423681/two-intel-cpu-questions | dclm-gs1-182060000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.545195 | <urn:uuid:df448c0b-020f-40c4-99ad-52bc17d25531> | en | 0.665593 | Figure 2.
Change of the proportion of the epigenetic variance over the total genetic variance (Re2) as a function of Hardy-Weinberg disequilibrium (HED) coefficients formed between the original allele and epiallele in a natural population after DNA methylation. The total and epigenetic genetic variances are calculated... | http://www.biomedcentral.com/1471-2105/13/274/figure/F2 | dclm-gs1-182090000 | false | false | {
"keywords": "bioinformatics"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.021696 | <urn:uuid:46af6b7f-e065-4f71-b805-23168c279a62> | en | 0.957186 | All about Citi, Sandy, and Chuck
"Citi's new act" (Cover Story, July 28) tells us that Sanford I. Weill's successor, Charles O. "Chuck" Prince, "rose through the ranks, starting as corporate counsel." Somehow that doesn't have quite the same Horatio Alger "hardship to head-of-ship" ring to it as the traditional "rose ... | http://www.businessweek.com/stories/2003-08-24/all-about-citi-sandy-and-chuck | dclm-gs1-182160000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.031979 | <urn:uuid:25700521-d9d2-4ebb-8c27-ef72aaf3dba5> | en | 0.968413 | General Motors, the humbled auto giant that has been part of American life for more than 100 years, will file for bankruptcy protection on Monday in a deal that will give taxpayers a 60 percent ownership stake and expand the government's reach into big business.
Sign Up For Traffic Text Alerts
GM president and CEO ... | http://www.courant.com/news/wpix-gm-bankruptcy-060109,0,3349204.story | dclm-gs1-182220000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.423984 | <urn:uuid:e2adb565-3e8d-4cd3-aa9e-699709fe5316> | en | 0.843827 | Link Details
Link 175882 thumbnail
User 219636 avatar
By martinig
Published: Apr 21 2009 / 18:47
very developer eventually encounters it at some stage in his or her career – the code that no one understands and that no one wants to touch in case it breaks. Sound familiar? But how did the software get that bad? Presu... | http://www.dzone.com/links/when_good_architecture_goes_bad.html | dclm-gs1-182310000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.023918 | <urn:uuid:b19c12b9-42c4-45e1-9fd0-ded61b13a1ba> | en | 0.957833 | Arthur Frommer reportedly takes back brand from Google, will keep guidebooks going
The tale of Google and Frommer's famed travel guides has taken another twist this evening. Associated Press writer Beth Harpaz reports Arthur Frommer confirmed over the phone that he has retaken control of the brand from Google, and pla... | http://www.engadget.com/2013/04/04/arthur-frommer-takes-back-brand-from-google-will-keep-guidebook/?ncid=rss_semi | dclm-gs1-182350000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.480756 | <urn:uuid:55206385-345f-43b2-a03b-d514ff7aff5e> | en | 0.929395 | Sea and Space SeaSpace Consortium
Sea and Space / Navigation / Astronomical
Local Noon
For many centuries, it was a very difficult task to measure accurately the geographical longitude.
In order to measure our own (local) longitude, we must use the Sun. Before doing so, however, we must discuss the concept of time ... | http://www.eso.org/public/outreach/eduoff/seaspace/docs/navigation/navastro/navastro-4.html | dclm-gs1-182370000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.900753 | <urn:uuid:c3bd606c-c8c6-465a-baa3-f4973fc1cbb9> | en | 0.816722 | Think of a character from any Fire Emblem
#31Capitan_KidPosted 6/24/2013 5:28:48 PM
Nowi is my mom?! But she's my waifu!
Official Husband of Nowi
#32FeMUPosted 6/24/2013 5:37:55 PM
So does that mean Geoffrey's my dad? Because I am totally okay with this.
Female Avatar, wife of Chrom, and Ylisse's master tactician.
#3... | http://www.gamefaqs.com/boards/643003-fire-emblem-awakening/66551504?page=3 | dclm-gs1-182470000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.630393 | <urn:uuid:85c062a1-a81d-4fb5-9227-d5d392cf9def> | en | 0.804815 | Assuming that Kid Icarus is an Ambassador game...
#1Lord_FroodPosted 8/28/2011 11:14:03 PM
How will we lower the shop prices? ;_;
"Satellite from days of old, lead me to your access code!" - Radical Ed
Petitions annoy me.
#2MarioFanaticXVPosted 8/28/2011 11:30:42 PM
You could just beat the game legitimately.
Dynasty W... | http://www.gamefaqs.com/boards/997614-nintendo-3ds/60164640 | dclm-gs1-182480000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.721968 | <urn:uuid:989e961b-990f-4e37-948d-4d6c4e10ef10> | en | 0.950592 | Final Fantasy Tactics
Auto Battle FAQ
By: Brendan Byrd/SineSwiper <>
Version: 0.96 (February 23, 2003)
(Please e-mail me at the above address for any comments, questions, additions,
or corrections.)
Table of Contents
1. What is the auto-battle feature and why use it?
2. The Basics
a. Auto-battle commands
b. Th... | http://www.gamefaqs.com/ps/197339-final-fantasy-tactics/faqs/21850 | dclm-gs1-182520000 | false | false | {
"keywords": "blast"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.080213 | <urn:uuid:250f9e1e-ff7e-40dd-ad49-85d64fcaeff9> | en | 0.960364 | thumbnail Hello,
American consortium "are tremendous team owners"
MLS chief Don Garber believes the prospective new Liverpool owners, New England Sports Ventures (NESV), cannot be compared with the club's current American owners, Tom Hicks and George Gillett.
Garber believes NESV, owners of the MLB franchise the Bos... | http://www.goal.com/en-gb/news/2896/premier-league/2010/10/06/2153589/prospective-liverpool-owners-nesv-are-nothing-like-hicks-and | dclm-gs1-182610000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.041528 | <urn:uuid:40484027-860b-47b2-a04f-f12572e1d29d> | en | 0.935882 | Infrastructure // PC & Servers
12:31 PM
Connect Directly
Repost This
Microsoft Windows 7 Under The Hood
UAC's nag-a-riffic behavior can now be dialed down a great deal more easily.
(click for image gallery)
User Account Control
Apart from Product Activation, no other feature in Windows has generated as much ire as ... | http://www.informationweek.com/desktop/microsoft-windows-7-under-the-hood/d/d-id/1080150?page_number=2 | dclm-gs1-182730000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.01925 | <urn:uuid:a366af27-f262-4894-a84f-0dc3826dc1da> | en | 0.974788 |
More Teachers 'Flipping' The School Day Upside Down
by Grace Hood
Miller can replay parts of the chemistry podcast she doesn't understand, and fast forward through those that make sense. Then she takes her notes to class where her teacher can review them.
Goodnight is one of about five teachers flipping their c... | http://www.kcrw.com/news/programs/al/npr-story?story_id=166748835 | dclm-gs1-182780000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.062657 | <urn:uuid:ff12d963-0f81-4b24-b32b-0b4b719fc2e0> | en | 0.946282 | New! Read & write annotations
Verse 1 (Male Solo)
Yes sir, I'm Cuban Pete. I'm the craze of my native street.
The senoritas they sing and they swing with their sombreros,
It's very nice, so full of spice.
And when they dance in they bring a happy ring,
El maraquero singin' a song, all the day long.
So if you like t... | http://www.lyricsmode.com/lyrics/j/jim_carrey/cuban_pete.html | dclm-gs1-182820000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.051602 | <urn:uuid:d2f3634e-8624-42bb-85a5-cef76b23cc4d> | en | 0.941206 | Mark Ritson on branding: Fewer brands means better results
There were no surprises last week when Unilever announced that it would cut 20,000 jobs, close 60 factories and divest a number of its brands over the next four years. While chief executive Patrick Cescau did not directly point the finger at the growing power ... | http://www.marketingmagazine.co.uk/article/730181/mark-ritson-branding-fewer-brands-means-better-results | dclm-gs1-182830000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.025795 | <urn:uuid:ae60ad89-f471-47f2-b8d1-b2a685c333e9> | en | 0.982957 | If not for the silver belt buckle that spelled out his first name, you might not have recognized Wyclef Jean at the video shoot for "It Doesn't Matter" from his upcoming album, "The Ecleftic," at a downtown Toronto club on Monday.
Sporting a high-top fade that would make Big Daddy Kane proud, two fat, gold rope chains... | http://www.mtv.com/news/articles/1429153/wyclef-rock-shoot-it-doesnt-matter-video.jhtml | dclm-gs1-182910000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.018315 | <urn:uuid:c7bde771-443a-4455-95ac-b442fd7e9677> | en | 0.990786 | Monday, March 17, 2014
Inquirer Daily News
R-E-S-P-E-C-T: Find out what it means to your customers
The old saying that the customer is always right may not be 100 percent true, but the customer should always be treated with politeness and respect. In this uber-competitive economy, I'm always surprised when readers an... | http://www.philly.com/philly/opinion/inquirer/20130929_R-E-S-P-E-C-T__Find_out_what_it_means_to_your_customers.html | dclm-gs1-183120000 | false | false | {
"keywords": "delta"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.144399 | <urn:uuid:e4df3ea6-ed9e-44e3-b3e4-09d36fca03a1> | en | 0.985085 | default avatar
Welcome to the site! Login or Signup below.
Logout|My Dashboard
Like Japan, bin Laden tasted power of US retaliation - News Columnists
Like Japan, bin Laden tasted power of US retaliation
Font Size:
Default font size
Larger font size
Posted: Tuesday, May 3, 2011 12:00 am
had just returned from an em... | http://www.phillyburbs.com/news/local/burlington_county_times/news_columnists/like-japan-bin-laden-tasted-power-of-us-retaliation/article_2aee2f54-c90d-54b6-917a-078a49e954c9.html | dclm-gs1-183130000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.023078 | <urn:uuid:5759a3dc-2eb2-4578-9650-dcdbf6c0594f> | en | 0.942306 | Can't Buy Happiness?
Money, personality, and well-being
People Who Spend Freely Do Not Spend Wisely finds tightwads are more likely to purchase experiences.
In today’s uncertain economic climate, many people are becoming more aware of their spending habits. People who spent freely and pay little attention to persona... | http://www.psychologytoday.com/blog/cant-buy-happiness/201212/people-who-spend-freely-do-not-spend-wisely | dclm-gs1-183230000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.022539 | <urn:uuid:8bc91b66-9824-490c-b244-4afc6bf60fd8> | en | 0.689102 |
iRiffs - commentaries made by fans!
Recent iRiffs
FireRiffs Presents: Terminator 2
Nailsin Riffs Batman And Robin Chapter Eight(VOD)
Rabbit Ears: Destroy All Pizza
That's Cool, That's Trash presents: Bloody Pit of Horror
Cinester Theater Presents: Child's Play
Rabbit Ears Short#11: Accidents Don't Just Happen
Ci... | http://www.rifftrax.com/iriffs/iriffs/laugh-support/iriffs/hor-riff-ic-productions/hor-riff-ic-gremlins | dclm-gs1-183280000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.037167 | <urn:uuid:f9ae54ec-3c18-4a0e-a397-dba265b6f2b7> | en | 0.973808 | Touched by glamour
April 6, 2005 - 5:15PM
Prince Rainier of Monaco, who died today, led a life marked by Hollywood glamour with his marriage to Grace Kelly, but he also transformed his wealthy Mediterranean principality into a major financial and entertainment hub.
One of the world's longest-reigning monarchs, his l... | http://www.smh.com.au/news/World/Touched-by-glamour/2005/04/06/1112489549977.html | dclm-gs1-183310000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.028642 | <urn:uuid:8226e287-e196-45fa-8ffe-3ed05d7919fc> | en | 0.979991 | 'Snake on a Windshield' goes viral on YouTube
Aug 2 2011 - 2:31pm
While "Snakes on a Plane" was a box office flop, a video dubbed "Snake on a Windshield" has soared to viral status on YouTube.
Rachel Fisher was recently flying about 65 mph down Sam Cooper Boulevard in Memphis, Tenn., with husband Tony and three chil... | http://www.standard.net/stories/2011/08/02/snake-windshield-goes-viral-youtube | dclm-gs1-183330000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.256417 | <urn:uuid:6b571c32-4b1a-4bdd-836d-ca15830eae07> | en | 0.942118 | A closer look at Titan's chemical factory
Posted by TG Daily Staff
Essentially, the atmosphere is a productive "factory," cranking out hydrocarbons that rain down on Titan's icy surface. This cloaks the planet in soot and, with a brutally cold surface temperature of approximately minus 270 degrees Fahrenheit, forms ... | http://www.tgdaily.com/space-features/62983-a-closer-look-at-titans-chemical-factory | dclm-gs1-183410000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.117602 | <urn:uuid:c84e80c4-a6e7-4f22-838b-c57590805043> | en | 0.969842 | Actually, random lawlessness ruled last Monday too
This time last week, things weren't that great either
Special report: Terrorism in the US
To land in America from Britain used to feel like Dorothy moving from Kansas to Oz. You went from black and white to Technicolor and the transition horrified and fascinated in e... | http://www.theguardian.com/world/2001/sep/17/september11.usa27 | dclm-gs1-183520000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.074992 | <urn:uuid:156b25ea-a141-46a1-9282-227bfd56c989> | en | 0.978288 | Our TV Shows
Got a Tip?
Call TMZ at (888) 847-9869 or Click Here
Nick's Tears
Crock of Fakery?
5/15/2008 6:04 PM PDT BY TMZ STAFF
No Avatar
For everyone that doesn't know, Nick was homeschooled by his mother Linda. That would explain the inability to spell simple words correctly.
2132 days ago
boing 1st... | http://www.tmz.com/2008/05/15/nicks-tears-crock-of-fakery/?adid=center_saga | dclm-gs1-183530000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.02672 | <urn:uuid:634c7305-d1bc-4298-88a7-7d8248eae23e> | en | 0.936739 | Our TV Shows
Got a Tip?
Call TMZ at (888) 847-9869 or Click Here
DWI Racing Chair Sells for a $30,000 Loss
11/6/2009 5:25 AM PST BY TMZ STAFF
The famous DWI racing chair just sold for a respectable $10,099.99 on eBay -- but it's a far cry from the $43,000 bid that was placed on Monday ... when the La-Z-Boy corpora... | http://www.tmz.com/2009/11/06/dwi-racing-chair-sells-for-a-30-000-loss/ | dclm-gs1-183540000 | false | false | {
"keywords": "engineering"
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.671975 | <urn:uuid:078b0182-b58e-4e85-94b3-f038b90923a7> | en | 0.96369 | Sign in with
Sign up | Sign in
Your question
Suggestions on hypothetical build?
Last response: in Systems
I'm hoping to put together my own computer. I want to use it for some gaming. I don't have a budget but the cheaper the better. This will be my first build. All suggestions are welcome. I think the cpu cooler is... | http://www.tomshardware.com/forum/300801-31-suggestions-hypothetical-build | dclm-gs1-183560000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.083003 | <urn:uuid:105ab984-2840-4128-b005-b64c178f97b3> | en | 0.843225 | Sign in with
Sign up | Sign in
Your question
ASRock z77 pro 3 or pro 4-m?
Last response: in Motherboards
just wondering which is the best MB for overclocking a 3750k to about ~4GHz.
my build is:
Zotac GTX 650 Ti
Corsair Vengeance Black PC12800 8gb (2x4gb)
PSU Corsair VS550W
so here's the pros and cons of each MB i... | http://www.tomshardware.com/forum/330423-30-asrock | dclm-gs1-183570000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.025377 | <urn:uuid:fc48b427-99db-45ed-8555-55e8a35ab48d> | en | 0.975253 | Senate confirms China, Japan ambassador nominees
— The Senate on Friday confirmed Utah Gov. Jon Huntsman as ambassador to China, giving the Republican the task of nurturing a sometimes shaky relationship that President Barack Obama sees as crucial to solving many of the world's most difficult crises.
The Senate also ... | http://www.utsandiego.com/news/2009/aug/07/us-us-asia-ambassadors-080709/ | dclm-gs1-183640000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.019826 | <urn:uuid:182a85ad-2530-494a-9732-5fcf02906d7c> | en | 0.956767 | The Blog
Widget tooltip
Single Page Print Larger Text Smaller Text Alerts
Bork disagrees. The radical passions that animated the student movement of the 1960s neither diminished nor were repudiated by their adherents. It's just that those adherents fanned out into junior positions in political and broadly "cultural"... | http://www.weeklystandard.com/Content/Protected/Articles/000/000/008/062gnmpc.asp?page=2 | dclm-gs1-183750000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.106156 | <urn:uuid:db6fe474-6239-4b66-922e-a8a8a3cfb72d> | en | 0.964172 | WHSV - Community - Headlines
Graffiti Clean-Up
By: Shane Symolon Email
By: Shane Symolon Email
Evidence still remains of a vandalism spree a month ago in Waynesboro, because some businesses still have not cleaned up. Waynesboro Police say it’s a constant problem.
A month ago NTelos customers were greeted with Swas... | http://www.whsv.com/community/headlines/12639761.html | dclm-gs1-183760000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.045964 | <urn:uuid:3eaba882-80aa-4217-966c-8e59bb5b7284> | en | 0.669572 |
Não foi possível encontrar o iTunes no seu computador. Para baixar o app gratuito Recipes menu de Killer01, obtenha o iTunes agora.
Eu tenho o iTunes Download grátis
iTunes para Mac + PC
Recipes menu
De Killer01
Abra o iTunes para comprar e baixar apps.
In the modern increasingly delicate life, “eat” conveys ... | https://itunes.apple.com/br/app/recipes-menu/id505904466?mt=8 | dclm-gs1-183850000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.071338 | <urn:uuid:39f966ad-0a41-4920-b602-a5f311a7603c> | en | 0.652713 | [Bug 433644] Review Request: perl-Algorithm-CurveFit - Nonlinear Least Squares Curve Fitting
bugzilla at redhat.com bugzilla at redhat.com
Mon Feb 25 04:59:07 UTC 2008
Please do not reply directly to this email. All additional
Summary: Review Request: perl-Algorithm-CurveFit - Nonlinear Least Squares Curve Fitting
... | https://lists.fedoraproject.org/pipermail/package-review/2008-February/067398.html | dclm-gs1-183860000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.982437 | <urn:uuid:0cb511be-d32c-4c0c-99a2-65fce36e40e5> | en | 0.898843 | "literal" objects
Francis Avila francisgavila at yahoo.com
Wed Dec 24 10:32:34 CET 2003
Moosebumps wrote in message
> int a;
> float b;
>} mystruct;
>mystruct x = { 3, 5.0f };
>mystruct y = { 5, 15.0f };
>These are just "data". Obviously in python you could just write an init
>function like this:
>x.a = 3;
>x.... | https://mail.python.org/pipermail/python-list/2003-December/213379.html | dclm-gs1-183870000 | false | false | {
"keywords": ""
} | false | {
"score": 0,
"triggered_passage": -1
} | false |
0.921733 | <urn:uuid:c4ec82a2-5836-4839-ae38-9dbf72b486a3> | en | 0.948658 | Shared publicly -
I wonder how long before the BSA backs down.
Mace Moneta's profile photoRob Roschewsk's profile photoDenise Malia's profile photoMike Gaston's profile photo
I can understand the need to be smaller; there probably aren't a lot of people that can believe they are moral and ethical while also being ha... | https://plus.google.com/+MaceMoneta/posts/6NaTtwpqhfh | dclm-gs1-183890000 | 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.