{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n 62. \n\nThe Ajax backend\n\nHere’s our PHP file that will act as our backend. It’s the script JavaScript calls behind the scenes to get the data. As you can see, we have our own XML setup going on below, which I’ll explain in a minute.\n\n 1. require_once('data.php'); // import our data\n 2.  \n 3. // start the XML document\n 4.  \n 5. header('Content-Type: text/xml');\n 6. echo '<'.'?'.'xml version=\"1.0\" ?'.'>'.\"\\n\";\n 7. ?>\n 8. \n 9. ERROR count($products)) ) {\n 23.  \n 24.     ?>ERROR\n 33. OK\n 34.  \n 35. \n 36. \n 37. \n 38.  \n 39. \n\nOur XML schema here is made up of the following:\n\nproductresponse is the root tag, and is only really used here as a container.\n\nrequeststatus lets JavaScript know whether the request was OK, or failed, identified by ERROR or OK. (If there is an error, that’s it – the end of the XML document. We won’t bother including the tags below).\n\nproductname contains the product name (funnily enough).\n\nproductdesc contains the product description.\n\nproductprice is for the price.\n\nIf you’ve got all the files in place so far, try browsing to ajax.php. If you’re using a decent browser, you should get a nice syntax-highlighted XML tree (nice for debugging). You’ll notice that you’ve got an error here, and rightly so – you didn’t specify a product ID!\n\nTry going to ajax.php?prodid=1. That’s better. You should see the data in ourtags. That’s our fully formed XML document that JavaScript will have the job of parsing and formatting. Sounds like fun…\n\nThe JavaScript\n\nNow, finally, the hardest part of the whole exercise – the JavaScript that actually makes sense of the XML and displays it in our box. Bear with me here, let’s just get the code down here then I’ll explain what we’re doing.\n\n 1. var ajaxObject = false;\n 2.  \n 3. // this is our object which gives us access\n 4. // to Ajax functionality\n 5.  \n 6.  \n 7. function selectProduct(productId) {\n 8.  \n 9.         if (window.XMLHttpRequest) { // Gecko, KHTML/WebKit, and IE7 apparently\n 10.             ajaxObject = new XMLHttpRequest();\n 11.             if (ajaxObject.overrideMimeType) {\n 12.                 ajaxObject.overrideMimeType('text/xml');\n 13.                 // ^ is for older Mozilla-based browsers\n 14.             }\n 15.         } else if (window.ActiveXObject) { // IE5 or IE6\n 16.             try {\n 17.         // IE has two methods of calling the object, typical!\n 18.                 ajaxObject = new ActiveXObject(\"Msxml2.XMLHTTP\");\n 19.             } catch (e) {\n 20.                 try {\n 21.                     ajaxObject = new ActiveXObject(\"Microsoft.XMLHTTP\");\n 22.                 } catch (e) {}\n 23.             }\n 24.         }\n 25.  \n 26.  \n 27.         if (!ajaxObject) {\n 28.         alert(\"Sorry, your browser doesn't support this feature.\");\n 29.             return false;\n 30.         }\n 31.  \n 32.  \n 33.         ajaxObject.onreadystatechange = selectProduct_response;\n 34.     ajaxObject.open('GET', 'ajax.php?prodid=' + productId.value, true);\n 35.         ajaxObject.send(null);\n 36.  \n 37.     return true;\n 38.  \n 39. } // end selectProduct()\n 40.  \n 41. function selectProduct_response() {\n 42.  \n 43.     if (ajaxObject.readyState == 4) { // it's finished\n 44.  \n 45.         if (ajaxObject.status == 200) { // the HTML request is all OK\n 46.  \n 47.             // do the response\n 48.             var xmlData = ajaxObject.responseXML.documentElement;\n 49.    \n 50.    \n 51.             if (xmlData.getElementsByTagName(\"requeststatus\")[0].firstChild.data != 'OK') {\n 52.                 // if isn't OK, then stop processing\n 53.                 alert(\"Sorry, there was an error.\");\n 54.                 return;x\n 55.             }\n 56.    \n 57.             var productName = xmlData.getElementsByTagName(\"productname\")[0].firstChild.data;\n 58.             // extract product name from the XML\n 59.    \n 60.             var productDesc = xmlData.getElementsByTagName(\"productdesc\")[0].firstChild.data;\n 61.             // same with product description\n 62.    \n 63.             var productPrice = xmlData.getElementsByTagName(\"productprice\")[0].firstChild.data;\n 64.             // and price\n 65.    \n 66.             // now we've extracted our data, let's format it\n 67.    \n 68.             var divContent = 'Name: ' + productName + '

Description: ' + productDesc + '

Price ' + productPrice;\n 69.    \n 70.             // and place it in our div\n 71.             document.getElementById('descriptionarea').innerHTML = divContent;\n 72.  \n 73.        \n 74.         } // end if status is 200  \n 75.  \n 76.         else // if the HTTP code is anything other than 200 OK\n 77.         {\n 78.            \n 79.                 alert(\"Sorry, there was an error.\");\n 80.             return;\n 81.  \n 82.         }\n 83.  \n 84.     } // end readyState is 4\n 85.  \n 86. } // end selectProduct_response\n\nDissecting the JavaScript\n\nYou should be able to decipher the vast majority of this already. If you’ve been through the first tutorial (and you certainly should have), you should understand exactly what we’re doing with the basic Ajax stuff.\n\nThe new and important bit here are the lines like this:\n\n 1. var productName = xmlData.getElementsByTagName(\"productname\")[0].firstChild.data;\n\nAll that’s really saying is this:\n\n • Go to the XML document and fetch me all the elements with the tag name ‘productname’.\n • Now get me the first instance of that tag (that’s the [0] bit)\n • Go to the first child (meaning the stuff inside that tag)\n • Fetch me the content of the stuff inside that tag\n\nWe do that for the name, description and price and each time put that information in a variable.\n\nWe then just concatenate these variables together with some HTML formatting and line breaks, and that’s what is going inside our div.\n\nWe put that in our div, and we’re done!\n\nYou might also notice the line:\n\n 1. if (xmlData.getElementsByTagName(\"requeststatus\")[0].firstChild.data != 'OK')\n\nIt’s exactly the same idea, but instead of putting the content of the requeststatus tag into a variable so we can use it later, we just check to see if it isn’t ‘OK’. And if it isn’t, we throw an error dialogue box.\n\nIt works!\n\nAt this point, our example works very well. Very very well. If you head over to index.php, you should be able to simply select a product from the list and have the description pop into the correct box within a second or two.\n\nIt might not seem very impressive for the level of work – and in fact, we could have done this without XML, but now that you’ve got some basic XML parsing with JavaScript ability, you can move on to cooler things with Ajax.\n\nI could go on and extend this application some more, but this is already a monster post and it’s about time I signed off this tutorial. We may well be returning to this project at a later date to add some more functionality to it, but I can’t guarantee when that will be.\n\nFeedback is the key\n\nThis tutorial took an insane amount of time to write. Almost a whole afternoon. Actually, you have to plan it, write the code, then write the tutorial, debug the code, fix the code, break the code, rewrite bits of the tutorial and check everything works.\n\nAnd that takes time.\n\nAll I ask of you is that if you read this and liked it, or if you didn’t, or if you just read it, to leave a comment below. It makes all the effort worthwhile.\n\nAnyway, thanks for reading thus far and I look forward to next time!\n\nIcon from Oxygen icon set, CC BY-NC 2.5.\n\nFind this tutorial useful?\n\n\n\n\n\nLike this post?\n\n19 Comments\n\n 1. Ashok wrote:\n\n this is one and only & very nice tutorial, which i have found in net. By this i can able to write my own ajax program.\n thank u very much.\n Ashok\n\n Wednesday, March 14, 2007 at 08:58 | Permalink | Using Internet Explorer Internet Explorer 6.0 on Windows Windows 2000\n 2. Tom wrote:\n\n Awesome, prior to reading this article the process of adding some ajax to my php sites was a pretty nebulous to say the least. This gives me a great jumping off point. Thanks a bunch!\n\n Tuesday, March 27, 2007 at 15:11 | Permalink | Using Safari Safari 419.3 on Mac OS Mac OS\n 3. mccormicky wrote:\n\n Thanks for writing this, I needed something like this.\n\n Tuesday, November 20, 2007 at 07:01 | Permalink | Using Mozilla Firefox Mozilla Firefox 2.0.0.9 on Windows Windows 2000\n 4. Bubbila wrote:\n\n Sweet comprehensive tutorial, just what I have been looking for! Well Pleased…\n\n Monday, February 11, 2008 at 23:09 | Permalink | Using Internet Explorer Internet Explorer 6.0 on Windows Windows XP\n 5. Invader_Zim wrote:\n\n Thank you so much for your time to write this tutorial. Awesome!\n\n Friday, October 17, 2008 at 11:05 | Permalink | Using Mozilla Firefox Mozilla Firefox 2.0.0.17 on Windows Windows XP\n 6. Alan Gilmore wrote:\n\n Fantastic content. Just the kind of stuff I need. Thanks so much.\n\n Alan\n\n Friday, October 17, 2008 at 14:29 | Permalink | Using Internet Explorer Internet Explorer 7.0 on Windows Windows XP\n 7. Tony Gaspro wrote:\n\n Excellent tutorial. I check out the basic PHP/AJAX tut, and after going over it, immediately went through this one.\n\n Your tutorials are clear and concise. Will be letting friends know about these two.\n\n Cheers.\n\n Sunday, October 19, 2008 at 19:27 | Permalink | Using Safari Safari 525.20.1 on Mac OS X Mac OS X 10.5.5\n 8. Emily wrote:\n\n Thanks a billion for this tutorial.. i have been trying learn ajax. so far i cant really understand it. But your is a simple and detail one which i can understand and now i know how to write it already.\n\n Once again thank you for your time in writing this tutorial. :)\n\n Saturday, December 6, 2008 at 05:03 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.3 on Windows Windows XP\n 9. emil wrote:\n\n awesome stuff man! you really helped me into ajax and I will not try to rewrite my blog into ajax and xml stuff!\n\n thanks dude!\n\n Wednesday, December 17, 2008 at 23:37 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.4 on Windows Windows XP\n 10. F.P. wrote:\n\n Thanks! Great tutorial!!\n\n Friday, January 2, 2009 at 14:47 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.5 on Windows Windows XP\n 11. Paul wrote:\n\n Thanks a great deal for these two tutorials! The instructions are very clear and well written, an excellent jumping point to start my training into what I can do with AJAX.\n\n I look forward to reading the next installment.\n\n Tuesday, January 13, 2009 at 06:02 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.5 on Windows Windows Vista\n 12. like ur tuts wrote:\n\n like\n\n Thursday, October 29, 2009 at 04:40 | Permalink | Using Google Chrome Google Chrome 3.0.195.27 on Windows Windows XP\n 13. John wrote:\n\n It’s really a good start for me, thank you very much!\n\n Monday, November 2, 2009 at 08:08 | Permalink | Using Mozilla SeaMonkey Mozilla SeaMonkey 2.0b1 on Linux Linux\n 14. Ofer wrote:\n\n Thanks,\n You’ve been my first introduction to Ajax!\n\n Monday, November 23, 2009 at 02:18 | Permalink | Using Internet Explorer Internet Explorer 8.0 on Windows Windows Vista\n 15. egorbrandt wrote:\n\n thanks, Peter, your tutorials are a great way to share your knowledge: well written, and to the point.\n\n I enjoyed them very much.\n\n Thursday, February 18, 2010 at 10:42 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.5.8 on Windows Windows Vista\n 16. Nits wrote:\n\n It runs cool…but i wanna display & update d users info from database….so wht do i do……?\n\n Tuesday, March 23, 2010 at 08:16 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.6 on Windows Windows XP\n 17. Munish wrote:\n\n VERY VERY THANKYOU FOR SUCH A GREATE TUTORIAL EVEN A BEGINER CAN USE THIS TUTORIAL THANKS !!!!!!!!!!!!!!!!!!\n\n Thursday, June 17, 2010 at 14:31 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.6.3 on Windows Windows XP\n 18. w wrote:\n\n Interesting tutorial…\n\n Sunday, February 26, 2012 at 03:19 | Permalink | Using Safari Safari 534.52.7 on Mac OS X Mac OS X 10.7.2\n 19. John wrote:\n\n Brilliant!\n I have completed both AJAX tutorials, managed to break them both, and fix them again, with thanks to what I learned here.\n Now I’m off to adapt what I’ve learnt to a real-world scenario.\n Many thanks.\n\n Thursday, May 2, 2013 at 01:11 | Permalink | Using Google Chrome Google Chrome 26.0.1410.64 on Windows Windows 7\n\n19 Trackbacks/Pingbacks\n\n 1. [...] Taking Ajax further with PHP [...]\n\n 2. [...] Ready to take Ajax further? I’ve got a followup tutorial. This was written by Peter. Posted on Wednesday, September 27, 2006, at 5:09 pm. Filed under [...]\n\n 3. 50 Excellent AJAX Tutorials | Tutorials | Smashing Magazine on Thursday, October 16, 2008 at 22:46\n\n [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...]\n\n 4. Useful AJAX Tutorials | Neurosoftware web dev on Friday, October 17, 2008 at 07:58\n\n [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...]\n\n 5. pligg.com on Friday, October 17, 2008 at 12:14\n\n Taking Ajax further with PHP…\n\n First of all, I have to apologise. It’s been literally two months since my last post in this series, and it’s been more than that since I last looked at Ajax in PHP. OK, I might admit it, it was this comment that motivated me to pick up this series a…\n\n 6. 50 Excellent AJAX Tutorials | Web Burning Blog on Saturday, October 18, 2008 at 09:05\n\n [...] Taking AJAX Further with PHPFollowing up on the preceding introduction, this post goes a bit further. [...]\n\n 7. 50 Excellent AJAX Tutorials | Evolution : weblog on Friday, October 31, 2008 at 05:22\n\n [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...]\n\n 8. 50 Excellent AJAX Tutorials « Rohit Dubal on Monday, February 16, 2009 at 10:43\n\n [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...]\n\n 9. [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...]\n\n 10. [...] “Taking AJAX Further with PHP”: Following up on the preceding introduction, this post goes a bit further. [...]\n\nPost a Comment\n\nOn some sites, you must be logged in to post a comment. This is not the case on this site.\nYour email address is not made public or shared. Required fields are marked with *.\n*\n*\n*\n\nPosting a comment signifies you accept the privacy policy.\nPlease note — usually your comment will appear straight away but sometimes it will be held for approval (this is due to the spam filter). If your comment is waiting to be approved, please don’t post it again! It will appear eventually."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://peter.upfold.org.uk/blog/2007/02/18/taking-ajax-further-with-php/\",\n \"source_domain\": \"peter.upfold.org.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"120281\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:SZ33P55NERPB7VMMU4YLLYDCGGA43QGD\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-22T09:36:25Z\",\n \"WARC-IP-Address\": \"88.108.131.179\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:ITTC4K4DOPO727OP5FWTKMARANUQXEIM\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://peter.upfold.org.uk/blog/2007/02/18/taking-ajax-further-with-php/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 16,\n 17,\n 46,\n 47,\n 71,\n 72,\n 99,\n 100,\n 101,\n 102,\n 103,\n 104,\n 500,\n 501,\n 600,\n 601,\n 1005,\n 1006,\n 1019,\n 1020,\n 1118,\n 1119,\n 1195,\n 1249,\n 1411,\n 1535,\n 1536,\n 1682,\n 1683,\n 1753,\n 1754,\n 1919,\n 1920,\n 1934,\n 1951,\n 1969,\n 1970,\n 1987,\n 1988,\n 2096,\n 2097,\n 2119,\n 2120,\n 2168,\n 2169,\n 2582,\n 2583,\n 2592,\n 2593,\n 2650,\n 2651,\n 2662,\n 2669,\n 2737,\n 2826,\n 2833,\n 2882,\n 3074,\n 3110,\n 3117,\n 3159,\n 3312,\n 3350,\n 3358,\n 3408,\n 3602,\n 3641,\n 3649,\n 3700,\n 3836,\n 3873,\n 3881,\n 3889,\n 3898,\n 3899,\n 4009,\n 4010,\n 4024,\n 4025,\n 4077,\n 4078,\n 4089,\n 4096,\n 4141,\n 4148,\n 4198,\n 4205,\n 4213,\n 4220,\n 4347,\n 4414,\n 4427,\n 4502,\n 4548,\n 4556,\n 4586,\n 4594,\n 4631,\n 4639,\n 4652,\n 4736,\n 4744,\n 4752,\n 4763,\n 4828,\n 4836,\n 4844,\n 4859,\n 4867,\n 4938,\n 4946,\n 4960,\n 4973,\n 5013,\n 5021,\n 5132,\n 5157,\n 5165,\n 5274,\n 5282,\n 5378,\n 5386,\n 5445,\n 5503,\n 5511,\n 5523,\n 5531,\n 5557,\n 5565,\n 5613,\n 5621,\n 5713,\n 5721,\n 5744,\n 5752,\n 5761,\n 5777,\n 5785,\n 5804,\n 5888,\n 5896,\n 5910,\n 5924,\n 5925,\n 5942,\n 5943,\n 6151,\n 6152,\n 6202,\n 6209,\n 6240,\n 6247,\n 6286,\n 6336,\n 6344,\n 6367,\n 6378,\n 6386,\n 6437,\n 6445,\n 6481,\n 6489,\n 6561,\n 6578,\n 6586,\n 6594,\n 6602,\n 6654,\n 6662,\n 6738,\n 6746,\n 6818,\n 6835,\n 6843,\n 6851,\n 6859,\n 6921,\n 6929,\n 6985,\n 6994,\n 7034,\n 7042,\n 7124,\n 7213,\n 7298,\n 7306,\n 7331,\n 7332,\n 7381,\n 7382,\n 7460,\n 7461,\n 7669,\n 7670,\n 7726,\n 7727,\n 7773,\n 7774,\n 7805,\n 7806,\n 8078,\n 8079,\n 8277,\n 8278,\n 8293,\n 8294,\n 8518,\n 8519,\n 8548,\n 8555,\n 8604,\n 8634,\n 8641,\n 8648,\n 8689,\n 8696,\n 8781,\n 8834,\n 8887,\n 8950,\n 9013,\n 9033,\n 9096,\n 9120,\n 9188,\n 9260,\n 9292,\n 9320,\n 9399,\n 9436,\n 9456,\n 9472,\n 9480,\n 9488,\n 9521,\n 9595,\n 9627,\n 9643,\n 9651,\n 9659,\n 9729,\n 9807,\n 9844,\n 9852,\n 9875,\n 9883,\n 9914,\n 9922,\n 9964,\n 9972,\n 10033,\n 10041,\n 10117,\n 10125,\n 10162,\n 10234,\n 10244,\n 10254,\n 10352,\n 10427,\n 10486,\n 10517,\n 10537,\n 10547,\n 10647,\n 10702,\n 10712,\n 10812,\n 10863,\n 10873,\n 10975,\n 11006,\n 11016,\n 11083,\n 11093,\n 11285,\n 11295,\n 11340,\n 11425,\n 11433,\n 11447,\n 11489,\n 11497,\n 11566,\n 11582,\n 11600,\n 11659,\n 11685,\n 11693,\n 11709,\n 11717,\n 11752,\n 11760,\n 11798,\n 11799,\n 11825,\n 11826,\n 12041,\n 12042,\n 12098,\n 12099,\n 12186,\n 12187,\n 12221,\n 12222,\n 12312,\n 12379,\n 12441,\n 12495,\n 12496,\n 12593,\n 12594,\n 12728,\n 12729,\n 12769,\n 12770,\n 12802,\n 12803,\n 12886,\n 12887,\n 13103,\n 13104,\n 13114,\n 13115,\n 13340,\n 13341,\n 13565,\n 13566,\n 13838,\n 13839,\n 13859,\n 13860,\n 14115,\n 14116,\n 14137,\n 14138,\n 14298,\n 14299,\n 14368,\n 14369,\n 14410,\n 14411,\n 14438,\n 14439,\n 14440,\n 14441,\n 14442,\n 14443,\n 14459,\n 14460,\n 14472,\n 14473,\n 14491,\n 14492,\n 14615,\n 14638,\n 14648,\n 14649,\n 14772,\n 14788,\n 14789,\n 14977,\n 14978,\n 15072,\n 15095,\n 15096,\n 15155,\n 15156,\n 15280,\n 15300,\n 15301,\n 15384,\n 15385,\n 15506,\n 15530,\n 15531,\n 15600,\n 15601,\n 15722,\n 15747,\n 15748,\n 15818,\n 15819,\n 15828,\n 15829,\n 15949,\n 15973,\n 15974,\n 16094,\n 16095,\n 16183,\n 16184,\n 16196,\n 16197,\n 16306,\n 16324,\n 16325,\n 16532,\n 16533,\n 16601,\n 16602,\n 16722,\n 16739,\n 16740,\n 16857,\n 16858,\n 16875,\n 16876,\n 16998,\n 17016,\n 17017,\n 17046,\n 17047,\n 17164,\n 17182,\n 17183,\n 17360,\n 17361,\n 17413,\n 17414,\n 17536,\n 17562,\n 17563,\n 17572,\n 17573,\n 17694,\n 17712,\n 17713,\n 17771,\n 17772,\n 17887,\n 17905,\n 17906,\n 17918,\n 17965,\n 17966,\n 18090,\n 18114,\n 18115,\n 18222,\n 18223,\n 18253,\n 18254,\n 18378,\n 18396,\n 18397,\n 18489,\n 18490,\n 18605,\n 18625,\n 18626,\n 18739,\n 18740,\n 18857,\n 18872,\n 18873,\n 18899,\n 18900,\n 19010,\n 19028,\n 19029,\n 19044,\n 19170,\n 19238,\n 19255,\n 19256,\n 19373,\n 19374,\n 19398,\n 19399,\n 19445,\n 19446,\n 19613,\n 19614,\n 19718,\n 19719,\n 19838,\n 19839,\n 19927,\n 19928,\n 20047,\n 20048,\n 20100,\n 20101,\n 20135,\n 20136,\n 20392,\n 20393,\n 20484,\n 20485,\n 20603,\n 20604,\n 20695,\n 20696,\n 20815,\n 20816,\n 20901,\n 20902,\n 21021,\n 21022,\n 21142,\n 21143,\n 21267,\n 21268,\n 21283,\n 21284,\n 21375,\n 21459,\n 21461,\n 21463,\n 21465,\n 21466,\n 21525\n ],\n \"line_end_idx\": [\n 16,\n 17,\n 46,\n 47,\n 71,\n 72,\n 99,\n 100,\n 101,\n 102,\n 103,\n 104,\n 500,\n 501,\n 600,\n 601,\n 1005,\n 1006,\n 1019,\n 1020,\n 1118,\n 1119,\n 1195,\n 1249,\n 1411,\n 1535,\n 1536,\n 1682,\n 1683,\n 1753,\n 1754,\n 1919,\n 1920,\n 1934,\n 1951,\n 1969,\n 1970,\n 1987,\n 1988,\n 2096,\n 2097,\n 2119,\n 2120,\n 2168,\n 2169,\n 2582,\n 2583,\n 2592,\n 2593,\n 2650,\n 2651,\n 2662,\n 2669,\n 2737,\n 2826,\n 2833,\n 2882,\n 3074,\n 3110,\n 3117,\n 3159,\n 3312,\n 3350,\n 3358,\n 3408,\n 3602,\n 3641,\n 3649,\n 3700,\n 3836,\n 3873,\n 3881,\n 3889,\n 3898,\n 3899,\n 4009,\n 4010,\n 4024,\n 4025,\n 4077,\n 4078,\n 4089,\n 4096,\n 4141,\n 4148,\n 4198,\n 4205,\n 4213,\n 4220,\n 4347,\n 4414,\n 4427,\n 4502,\n 4548,\n 4556,\n 4586,\n 4594,\n 4631,\n 4639,\n 4652,\n 4736,\n 4744,\n 4752,\n 4763,\n 4828,\n 4836,\n 4844,\n 4859,\n 4867,\n 4938,\n 4946,\n 4960,\n 4973,\n 5013,\n 5021,\n 5132,\n 5157,\n 5165,\n 5274,\n 5282,\n 5378,\n 5386,\n 5445,\n 5503,\n 5511,\n 5523,\n 5531,\n 5557,\n 5565,\n 5613,\n 5621,\n 5713,\n 5721,\n 5744,\n 5752,\n 5761,\n 5777,\n 5785,\n 5804,\n 5888,\n 5896,\n 5910,\n 5924,\n 5925,\n 5942,\n 5943,\n 6151,\n 6152,\n 6202,\n 6209,\n 6240,\n 6247,\n 6286,\n 6336,\n 6344,\n 6367,\n 6378,\n 6386,\n 6437,\n 6445,\n 6481,\n 6489,\n 6561,\n 6578,\n 6586,\n 6594,\n 6602,\n 6654,\n 6662,\n 6738,\n 6746,\n 6818,\n 6835,\n 6843,\n 6851,\n 6859,\n 6921,\n 6929,\n 6985,\n 6994,\n 7034,\n 7042,\n 7124,\n 7213,\n 7298,\n 7306,\n 7331,\n 7332,\n 7381,\n 7382,\n 7460,\n 7461,\n 7669,\n 7670,\n 7726,\n 7727,\n 7773,\n 7774,\n 7805,\n 7806,\n 8078,\n 8079,\n 8277,\n 8278,\n 8293,\n 8294,\n 8518,\n 8519,\n 8548,\n 8555,\n 8604,\n 8634,\n 8641,\n 8648,\n 8689,\n 8696,\n 8781,\n 8834,\n 8887,\n 8950,\n 9013,\n 9033,\n 9096,\n 9120,\n 9188,\n 9260,\n 9292,\n 9320,\n 9399,\n 9436,\n 9456,\n 9472,\n 9480,\n 9488,\n 9521,\n 9595,\n 9627,\n 9643,\n 9651,\n 9659,\n 9729,\n 9807,\n 9844,\n 9852,\n 9875,\n 9883,\n 9914,\n 9922,\n 9964,\n 9972,\n 10033,\n 10041,\n 10117,\n 10125,\n 10162,\n 10234,\n 10244,\n 10254,\n 10352,\n 10427,\n 10486,\n 10517,\n 10537,\n 10547,\n 10647,\n 10702,\n 10712,\n 10812,\n 10863,\n 10873,\n 10975,\n 11006,\n 11016,\n 11083,\n 11093,\n 11285,\n 11295,\n 11340,\n 11425,\n 11433,\n 11447,\n 11489,\n 11497,\n 11566,\n 11582,\n 11600,\n 11659,\n 11685,\n 11693,\n 11709,\n 11717,\n 11752,\n 11760,\n 11798,\n 11799,\n 11825,\n 11826,\n 12041,\n 12042,\n 12098,\n 12099,\n 12186,\n 12187,\n 12221,\n 12222,\n 12312,\n 12379,\n 12441,\n 12495,\n 12496,\n 12593,\n 12594,\n 12728,\n 12729,\n 12769,\n 12770,\n 12802,\n 12803,\n 12886,\n 12887,\n 13103,\n 13104,\n 13114,\n 13115,\n 13340,\n 13341,\n 13565,\n 13566,\n 13838,\n 13839,\n 13859,\n 13860,\n 14115,\n 14116,\n 14137,\n 14138,\n 14298,\n 14299,\n 14368,\n 14369,\n 14410,\n 14411,\n 14438,\n 14439,\n 14440,\n 14441,\n 14442,\n 14443,\n 14459,\n 14460,\n 14472,\n 14473,\n 14491,\n 14492,\n 14615,\n 14638,\n 14648,\n 14649,\n 14772,\n 14788,\n 14789,\n 14977,\n 14978,\n 15072,\n 15095,\n 15096,\n 15155,\n 15156,\n 15280,\n 15300,\n 15301,\n 15384,\n 15385,\n 15506,\n 15530,\n 15531,\n 15600,\n 15601,\n 15722,\n 15747,\n 15748,\n 15818,\n 15819,\n 15828,\n 15829,\n 15949,\n 15973,\n 15974,\n 16094,\n 16095,\n 16183,\n 16184,\n 16196,\n 16197,\n 16306,\n 16324,\n 16325,\n 16532,\n 16533,\n 16601,\n 16602,\n 16722,\n 16739,\n 16740,\n 16857,\n 16858,\n 16875,\n 16876,\n 16998,\n 17016,\n 17017,\n 17046,\n 17047,\n 17164,\n 17182,\n 17183,\n 17360,\n 17361,\n 17413,\n 17414,\n 17536,\n 17562,\n 17563,\n 17572,\n 17573,\n 17694,\n 17712,\n 17713,\n 17771,\n 17772,\n 17887,\n 17905,\n 17906,\n 17918,\n 17965,\n 17966,\n 18090,\n 18114,\n 18115,\n 18222,\n 18223,\n 18253,\n 18254,\n 18378,\n 18396,\n 18397,\n 18489,\n 18490,\n 18605,\n 18625,\n 18626,\n 18739,\n 18740,\n 18857,\n 18872,\n 18873,\n 18899,\n 18900,\n 19010,\n 19028,\n 19029,\n 19044,\n 19170,\n 19238,\n 19255,\n 19256,\n 19373,\n 19374,\n 19398,\n 19399,\n 19445,\n 19446,\n 19613,\n 19614,\n 19718,\n 19719,\n 19838,\n 19839,\n 19927,\n 19928,\n 20047,\n 20048,\n 20100,\n 20101,\n 20135,\n 20136,\n 20392,\n 20393,\n 20484,\n 20485,\n 20603,\n 20604,\n 20695,\n 20696,\n 20815,\n 20816,\n 20901,\n 20902,\n 21021,\n 21022,\n 21142,\n 21143,\n 21267,\n 21268,\n 21283,\n 21284,\n 21375,\n 21459,\n 21461,\n 21463,\n 21465,\n 21466,\n 21525,\n 21760\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 21760,\n \"ccnet_original_nlines\": 513,\n \"rps_doc_curly_bracket\": 0.001746320049278438,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2765653729438782,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.03548847883939743,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.009727629832923412,\n \"rps_doc_frac_no_alph_words\": 0.38099122047424316,\n \"rps_doc_frac_unique_words\": 0.3086223304271698,\n \"rps_doc_mean_word_length\": 4.769010543823242,\n \"rps_doc_num_sentences\": 527,\n \"rps_doc_symbol_to_word_ratio\": 0.005710789933800697,\n \"rps_doc_unigram_entropy\": 6.097607612609863,\n \"rps_doc_word_count\": 3143,\n \"rps_doc_frac_chars_dupe_10grams\": 0.07785709947347641,\n \"rps_doc_frac_chars_dupe_5grams\": 0.1304289847612381,\n \"rps_doc_frac_chars_dupe_6grams\": 0.11361665278673172,\n \"rps_doc_frac_chars_dupe_7grams\": 0.07972513139247894,\n \"rps_doc_frac_chars_dupe_8grams\": 0.07785709947347641,\n \"rps_doc_frac_chars_dupe_9grams\": 0.07785709947347641,\n \"rps_doc_frac_chars_top_2gram\": 0.017746349796652794,\n \"rps_doc_frac_chars_top_3gram\": 0.016011739149689674,\n \"rps_doc_frac_chars_top_4gram\": 0.012609249912202358,\n \"rps_doc_books_importance\": -2345.92041015625,\n \"rps_doc_books_importance_length_correction\": -2345.92041015625,\n \"rps_doc_openwebtext_importance\": -1270.41259765625,\n \"rps_doc_openwebtext_importance_length_correction\": -1270.41259765625,\n \"rps_doc_wikipedia_importance\": -965.7940673828125,\n \"rps_doc_wikipedia_importance_length_correction\": -965.7940673828125\n },\n \"fasttext\": {\n \"dclm\": 0.0005559300188906491,\n \"english\": 0.7302367091178894,\n \"fineweb_edu_approx\": 1.3230550289154053,\n \"eai_general_math\": 0.0015069800429046154,\n \"eai_open_web_math\": 0.36760562658309937,\n \"eai_web_code\": 0.0980343222618103\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"005.7\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n },\n \"secondary\": {\n \"code\": \"005.1\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":255,"cells":{"id":{"kind":"number","value":6056937581846274000,"string":"6,056,937,581,846,274,000"},"text":{"kind":"string","value":"Prolog... | Eyepiece and Adapters | Camera Attached to Eyepiece | Camera Attached to Telescope | Result: Photo of the Full Moon\n\nOn this page, I demonstrate how I attach the Ricoh GXR A12-50 combo to a telescope eyepiece with a T mount filter thread for astro photos using the projection technique. Projection technique means that the camera is mounted to the eyepiece, not directly to the telescope. The latter technique can only be used with SLR cameras where the body can be directly attached to the telescope - typically using a T mount adapter. I mention the 1:50 method on this site several times. This is a simple variant of the projection technique - you hold the camera by hand to the eyepiece instead of attaching it firmly...\n\n \n\nProlog...\n\nAt the beginning a few warnings:\n\n \n\nEyepiece and Adapters\n\nHere, you can see the Revelation 32mm DigiScope eyepiece and the two adapters needed to mount the Ricoh GXR A12-50 to the eyepiece. A second adapter is required, because there is no T mount adapter available, which directly fits the filter thread of the A12-50 camera unit (40.5mm).You can remove the upper part of the eyepiece including the eyecup to reveal the T mount filter thread.\n\nLeft: Baader DT ring adapter M37/M40.5 (#2458027); right: Baader digital camera T mount adapter M37/M42 (#2408165)\n\nTop left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece\n\nTop left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece\n\nTop left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece - eyecup removed\n\nRevelation 32mm DigiScope eyepiece - eyecup removed and adapters attached\n\n \n\n \n\nCamera Attached to Eyepiece\n\nHere, you can see the Ricoh GXR A12-50 attached to the eyepiece:\n\nDetail view\n\nComplete view\n\nDetail view\n\nComplete view\n\n \n\nCamera Attached to Telescope Heritage P130\n\nHere, you can see the Ricoh GXR A12-50 attached to the Dobsonian telescope Sky-Watcher Heritage P130:\n\nMore or less complete view\n\nDetail view\n\nView from front\n\nView from front\n\nView from front\n\n \n\n \n\nResult: Photo of the Full Moon\n\nFinally, here is a photo of the full moon with some additional sharpening that was taken with the equipment shown above (April 27, 2010):\n\nPhoto: Photo of the full moon\n\nPlease note that the 32mm is a wide angle eyepiece with a low magnification of about 20 at the Heritage P130 (it would deliver a magnification of about 40 at my Meade 10\" Dobson telescope). Such a low magnification is not sufficient for photos of planets. Therefore, I looked for a solution to attach the GXR A12-50 combo to my Baader Hyperion eyepiece having a focal length of 5mm (130x and 250x magnification) - and found it.\n\n \n\nAn den Anfang   Homepage  \n\nmade by walodesign on a mac!\n27.12.2011"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.waloszek.de/gxr_astro1_e.php\",\n \"source_domain\": \"www.waloszek.de\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"15605\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:4J4FJ7GFVSWJSB7UYFTIWX5IU6QEKR5F\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-26T04:26:42Z\",\n \"WARC-IP-Address\": \"81.169.145.163\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:XA4UW6M23KPBE4ZTQKFVDUFGXPY45YBX\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.waloszek.de/gxr_astro1_e.php\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 128,\n 129,\n 737,\n 738,\n 740,\n 741,\n 751,\n 752,\n 785,\n 786,\n 788,\n 789,\n 811,\n 812,\n 1198,\n 1199,\n 1314,\n 1315,\n 1446,\n 1447,\n 1578,\n 1579,\n 1727,\n 1728,\n 1802,\n 1803,\n 1805,\n 1806,\n 1808,\n 1809,\n 1837,\n 1838,\n 1903,\n 1904,\n 1916,\n 1917,\n 1931,\n 1932,\n 1944,\n 1945,\n 1959,\n 1960,\n 1962,\n 1963,\n 2006,\n 2007,\n 2109,\n 2110,\n 2137,\n 2138,\n 2150,\n 2151,\n 2167,\n 2168,\n 2184,\n 2185,\n 2201,\n 2202,\n 2204,\n 2205,\n 2207,\n 2208,\n 2239,\n 2240,\n 2378,\n 2379,\n 2409,\n 2410,\n 2838,\n 2839,\n 2841,\n 2842,\n 2869,\n 2870,\n 2899\n ],\n \"line_end_idx\": [\n 128,\n 129,\n 737,\n 738,\n 740,\n 741,\n 751,\n 752,\n 785,\n 786,\n 788,\n 789,\n 811,\n 812,\n 1198,\n 1199,\n 1314,\n 1315,\n 1446,\n 1447,\n 1578,\n 1579,\n 1727,\n 1728,\n 1802,\n 1803,\n 1805,\n 1806,\n 1808,\n 1809,\n 1837,\n 1838,\n 1903,\n 1904,\n 1916,\n 1917,\n 1931,\n 1932,\n 1944,\n 1945,\n 1959,\n 1960,\n 1962,\n 1963,\n 2006,\n 2007,\n 2109,\n 2110,\n 2137,\n 2138,\n 2150,\n 2151,\n 2167,\n 2168,\n 2184,\n 2185,\n 2201,\n 2202,\n 2204,\n 2205,\n 2207,\n 2208,\n 2239,\n 2240,\n 2378,\n 2379,\n 2409,\n 2410,\n 2838,\n 2839,\n 2841,\n 2842,\n 2869,\n 2870,\n 2899,\n 2909\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2909,\n \"ccnet_original_nlines\": 75,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2817869484424591,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.0824742317199707,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.02631578966975212,\n \"rps_doc_frac_no_alph_words\": 0.19415807723999023,\n \"rps_doc_frac_unique_words\": 0.36752137541770935,\n \"rps_doc_mean_word_length\": 4.858974456787109,\n \"rps_doc_num_sentences\": 22,\n \"rps_doc_symbol_to_word_ratio\": 0.008591069839894772,\n \"rps_doc_unigram_entropy\": 4.646841526031494,\n \"rps_doc_word_count\": 468,\n \"rps_doc_frac_chars_dupe_10grams\": 0.1741424798965454,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2735268175601959,\n \"rps_doc_frac_chars_dupe_6grams\": 0.25065964460372925,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1741424798965454,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1741424798965454,\n \"rps_doc_frac_chars_dupe_9grams\": 0.1741424798965454,\n \"rps_doc_frac_chars_top_2gram\": 0.021108180284500122,\n \"rps_doc_frac_chars_top_3gram\": 0.0343007892370224,\n \"rps_doc_frac_chars_top_4gram\": 0.06816183030605316,\n \"rps_doc_books_importance\": -246.44827270507812,\n \"rps_doc_books_importance_length_correction\": -246.44827270507812,\n \"rps_doc_openwebtext_importance\": -121.51215362548828,\n \"rps_doc_openwebtext_importance_length_correction\": -121.51215362548828,\n \"rps_doc_wikipedia_importance\": -83.26788330078125,\n \"rps_doc_wikipedia_importance_length_correction\": -83.26788330078125\n },\n \"fasttext\": {\n \"dclm\": 0.0006585100200027227,\n \"english\": 0.8405110836029053,\n \"fineweb_edu_approx\": 1.4239487648010254,\n \"eai_general_math\": 0.005493820179253817,\n \"eai_open_web_math\": 0.04390221834182739,\n \"eai_web_code\": 0.00025409000227227807\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"520\",\n \"labels\": {\n \"level_1\": \"Science and Natural history\",\n \"level_2\": \"Astronomy\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"681\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Handicraft and Occupations\",\n \"level_3\": \"Clocks and watches and Scientific apparatus and instruments\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":256,"cells":{"id":{"kind":"number","value":2811610667211816000,"string":"2,811,610,667,211,816,000"},"text":{"kind":"string","value":"Oregon Humane Society\n  Adopt\nRecent adoptees\n \n \n \n\nGo back or Visit the Dogs & Puppies page\n\n \nADOPTED: 5/21/2012   Name: Dove  Code Number: 127022  \nType: Dog     Breed: Rat Terrier/Mix     \nPattern:\nTri Color     Color: Tri Color/Unknown\nGender: Female     Age:   5 Yr     Weight: 13 lbs.    \nDescription:\n\nDo you love squeaky toys or tennis balls as much as I do? Probably not, but you'll definitely get a kick out of watching me enjoy them! I don't necessarily show off my best qualities right off the bat, but given a little time to adjust to my surroundings, I will wow you with my adorableness! I need to go home with kids old enough to know and respect that I'm not a fan of being fussed over, or an adult-only house would be just fine, too. I may be small, but I love to learn and would be perfectly suited for further training and daily exercise! What do you say, do I sound like a match for your lifestyle?\n\nThe adoption fee includes spay/neuter, microchip ID, collar and OHS I.D. tag, initial vaccines, courtesy veterinarian exam, and plenty of post adoption support!\n\nPrint this Page     Email to a Friend\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n "},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.oregonhumane.org/adopt/adopted_detail.asp?animalID=127022\",\n \"source_domain\": \"www.oregonhumane.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"53870\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:HG4TLYB2T6FLCTCOCXU2K7IF7NFE4CVL\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-18T12:32:47Z\",\n \"WARC-IP-Address\": \"198.145.182.51\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:CZLCDEQJV2JBHDS2CCB65MXXQDYMJZ52\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.oregonhumane.org/adopt/adopted_detail.asp?animalID=127022\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 22,\n 30,\n 46,\n 48,\n 50,\n 52,\n 53,\n 94,\n 95,\n 97,\n 152,\n 194,\n 203,\n 242,\n 297,\n 310,\n 311,\n 920,\n 921,\n 1082,\n 1083,\n 1121,\n 1123,\n 1124,\n 1125,\n 1126,\n 1127,\n 1128,\n 1129,\n 1130,\n 1131,\n 1132,\n 1133,\n 1134,\n 1135,\n 1136\n ],\n \"line_end_idx\": [\n 22,\n 30,\n 46,\n 48,\n 50,\n 52,\n 53,\n 94,\n 95,\n 97,\n 152,\n 194,\n 203,\n 242,\n 297,\n 310,\n 311,\n 920,\n 921,\n 1082,\n 1083,\n 1121,\n 1123,\n 1124,\n 1125,\n 1126,\n 1127,\n 1128,\n 1129,\n 1130,\n 1131,\n 1132,\n 1133,\n 1134,\n 1135,\n 1136,\n 1137\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1137,\n \"ccnet_original_nlines\": 36,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.340163916349411,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.053278688341379166,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.20081967115402222,\n \"rps_doc_frac_unique_words\": 0.7434555292129517,\n \"rps_doc_mean_word_length\": 4.37172794342041,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.796230792999268,\n \"rps_doc_word_count\": 191,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.011976050212979317,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -111.78770446777344,\n \"rps_doc_books_importance_length_correction\": -111.78770446777344,\n \"rps_doc_openwebtext_importance\": -56.39276885986328,\n \"rps_doc_openwebtext_importance_length_correction\": -51.83506393432617,\n \"rps_doc_wikipedia_importance\": -48.667694091796875,\n \"rps_doc_wikipedia_importance_length_correction\": -48.667694091796875\n },\n \"fasttext\": {\n \"dclm\": 0.001836959971114993,\n \"english\": 0.8705139756202698,\n \"fineweb_edu_approx\": 0.824756920337677,\n \"eai_general_math\": 0.00009095999848796055,\n \"eai_open_web_math\": 0.09132950752973557,\n \"eai_web_code\": -0.000006199999916134402\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"636.7\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Agriculture\",\n \"level_3\": \"Domestic animals and Pets\"\n }\n },\n \"secondary\": {\n \"code\": \"363.68\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Political activists\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":257,"cells":{"id":{"kind":"number","value":-5405884846366337000,"string":"-5,405,884,846,366,337,000"},"text":{"kind":"string","value":"Wayne Lai and his son do the voiceovers for an animated movie\n\nMonday, June 08, 2009 Posted by Admin\nDisney-PIXAR's movie \"Up\" has topped the box office in the United States. Wayne Lai who has recently gained popularity for his role \"Chai Gao\" was invited to do the voiceover for the Hong Kong version with his son Lai Ching Kiu in conjunction with Michael Hui. Wayne will do the voice of \"Dug\" the golden retriever that can translate his thoughts into speech. Wayne's son Ching Kiu will do the voice for main character Russell and resembles him a lot. His voice even sounds similar to the voice of the Amercian version. Although it was his first time stepping in a recording studio he didn't appear to be frightened. Even his father Wayne was surprised.\n\nAs to why Michael Hui accepted to do the voiceover for the character Carl? He stated that he originally disliked doing voiceovers because of having to lip read. But after reading the movie script he was touched by Carl and Russell's (Grandfather-Grandson) relationship. In addition, he even invited his 2 grandson's to support him at the studio.\n\nSource: Takungpao\nTranslated by: Matchbox @ mediachamber.net\nLabels:\n\nPost a Comment\n\n\n\nTVB News World - http://tvbnewsworld.blogspot.com\nBest Viewed in IE10, Mozilla Firefox 20 & Google Chrome 26\n\n© Some Copyright Reserved 2008-2013. Disclaimer: This site is not affiliated to TVB or ATV.\n "},"metadata":{"kind":"string","value":"{\n \"url\": \"http://tvbnewsworld.blogspot.com/2009/06/wayne-lai-and-his-son-do-voiceovers-for.html\",\n \"source_domain\": \"tvbnewsworld.blogspot.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"328557\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:PNQLNQ3DURJRWRU7OWJVPPHZI5QCNQSE\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T15:56:12Z\",\n \"WARC-IP-Address\": \"74.125.228.108\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:Q6M6DJ3XUMM72E7TAZDWGJNV4LOG57U2\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://tvbnewsworld.blogspot.com/2009/06/wayne-lai-and-his-son-do-voiceovers-for.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 62,\n 63,\n 101,\n 755,\n 756,\n 1102,\n 1103,\n 1121,\n 1164,\n 1172,\n 1173,\n 1188,\n 1189,\n 1190,\n 1191,\n 1241,\n 1300,\n 1301,\n 1393\n ],\n \"line_end_idx\": [\n 62,\n 63,\n 101,\n 755,\n 756,\n 1102,\n 1103,\n 1121,\n 1164,\n 1172,\n 1173,\n 1188,\n 1189,\n 1190,\n 1191,\n 1241,\n 1300,\n 1301,\n 1393,\n 1394\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1394,\n \"ccnet_original_nlines\": 19,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.34265732765197754,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.017482519149780273,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1818181872367859,\n \"rps_doc_frac_unique_words\": 0.6304347515106201,\n \"rps_doc_mean_word_length\": 4.8086957931518555,\n \"rps_doc_num_sentences\": 16,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.703401565551758,\n \"rps_doc_word_count\": 230,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.03978300094604492,\n \"rps_doc_frac_chars_dupe_6grams\": 0.03978300094604492,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02260397933423519,\n \"rps_doc_frac_chars_top_3gram\": 0.012658230029046535,\n \"rps_doc_frac_chars_top_4gram\": 0.0289330892264843,\n \"rps_doc_books_importance\": -137.7745361328125,\n \"rps_doc_books_importance_length_correction\": -137.73898315429688,\n \"rps_doc_openwebtext_importance\": -82.18710327148438,\n \"rps_doc_openwebtext_importance_length_correction\": -82.18710327148438,\n \"rps_doc_wikipedia_importance\": -78.71160888671875,\n \"rps_doc_wikipedia_importance_length_correction\": -75.986572265625\n },\n \"fasttext\": {\n \"dclm\": 0.0003890400112140924,\n \"english\": 0.974453330039978,\n \"fineweb_edu_approx\": 1.1380155086517334,\n \"eai_general_math\": 0.001491190050728619,\n \"eai_open_web_math\": 0.1410486102104187,\n \"eai_web_code\": 0.000004529999841906829\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.4372\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"791.457\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":258,"cells":{"id":{"kind":"number","value":-7953709146473596000,"string":"-7,953,709,146,473,596,000"},"text":{"kind":"string","value":"miranda2115: *somebodys heartbreak*\nAbout   Non-smoker with A Few Extra Pounds   City Williamstown Ohio\nDetails   27 year old Woman, 5' 6\" (168cm), Non-Religious Ethnicity Caucasian Virgo with Brown hair\nIntent   miranda2115 is looking for a relationship. Education High School\nPersonality   Profession dietary assistant\n\n\ndating\nnewest\n\n\n\n\n\n\nI am Seeking a Man For Hang out\nNeeds Test View her relationship needs Chemistry View her chemistry results\nDo you drink? Socially Do you want children? Yes\nMarital Status Single Do you do drugs? No\nPets No Pets Eye Color Green\nDo you have a car? Yes Do you have children? No\nLongest Relationship Under 1 year\n\n\nAbout Me\ni have brown hair, blue green eyes, about 5'6 tall. Im not skinny but i have feelings too.i enjoy reading, and hanging out with my friends, listening to music. think this site is a joke actually everyone is so into how people look that they dont see the true beauty whats inside is what counts.....i have 9 tattoos that can be covered up by clothes\nU dont have 2 be skinny 2 be sexy or beautiful. Confidence is sexy, & being urself is beautiful! If u want to be loved, just love urself & know U R Beautiful!\n\nFirst Date\nanywhere to get to know the person\n\n\n\n\n\nmiranda2115 has 2 roses available. Click Send Message to send miranda2115 a rose!\n\nCreate Your Seduction Guide.\n          \n\n\nCopyright 2001-2013 Plentyoffish Media Inc.\nPOF, PLENTYOFFISH, PLENTY OF FISH and PLENTY OF are registered trademarks of Plentyoffish Media Inc."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.pof.com/viewprofile.aspx?profile_id=3240853\",\n \"source_domain\": \"www.pof.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"20166\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:SH7TNRK4CIAIKXK2D3XIWXLCENTMPL74\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T20:30:09Z\",\n \"WARC-IP-Address\": \"199.182.216.166\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:L3FULOUZJQ4CEJS5NI2WNLFHVF2F2IPF\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.pof.com/viewprofile.aspx?profile_id=3240853\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 36,\n 104,\n 204,\n 278,\n 321,\n 322,\n 323,\n 330,\n 337,\n 338,\n 339,\n 340,\n 341,\n 342,\n 343,\n 375,\n 451,\n 500,\n 542,\n 571,\n 619,\n 653,\n 654,\n 655,\n 664,\n 1013,\n 1172,\n 1173,\n 1184,\n 1219,\n 1220,\n 1221,\n 1222,\n 1223,\n 1224,\n 1306,\n 1307,\n 1336,\n 1347,\n 1348,\n 1349,\n 1393\n ],\n \"line_end_idx\": [\n 36,\n 104,\n 204,\n 278,\n 321,\n 322,\n 323,\n 330,\n 337,\n 338,\n 339,\n 340,\n 341,\n 342,\n 343,\n 375,\n 451,\n 500,\n 542,\n 571,\n 619,\n 653,\n 654,\n 655,\n 664,\n 1013,\n 1172,\n 1173,\n 1184,\n 1219,\n 1220,\n 1221,\n 1222,\n 1223,\n 1224,\n 1306,\n 1307,\n 1336,\n 1347,\n 1348,\n 1349,\n 1393,\n 1493\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1493,\n \"ccnet_original_nlines\": 42,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 2,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.29794520139694214,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.04109589010477066,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1780821830034256,\n \"rps_doc_frac_unique_words\": 0.6747967600822449,\n \"rps_doc_mean_word_length\": 4.719511985778809,\n \"rps_doc_num_sentences\": 18,\n \"rps_doc_symbol_to_word_ratio\": 0.0034246600698679686,\n \"rps_doc_unigram_entropy\": 4.939522743225098,\n \"rps_doc_word_count\": 246,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.021533159539103508,\n \"rps_doc_frac_chars_top_3gram\": 0.015503879636526108,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -126.36311340332031,\n \"rps_doc_books_importance_length_correction\": -117.99571990966797,\n \"rps_doc_openwebtext_importance\": -62.729461669921875,\n \"rps_doc_openwebtext_importance_length_correction\": -62.729461669921875,\n \"rps_doc_wikipedia_importance\": -65.0687484741211,\n \"rps_doc_wikipedia_importance_length_correction\": -53.57778549194336\n },\n \"fasttext\": {\n \"dclm\": 0.00007403000199701637,\n \"english\": 0.8725810647010803,\n \"fineweb_edu_approx\": 0.686329185962677,\n \"eai_general_math\": 0.00003718999869306572,\n \"eai_open_web_math\": 0.05998134985566139,\n \"eai_web_code\": -0.000009180000233754981\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"306.854\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Culture\"\n }\n },\n \"secondary\": {\n \"code\": \"306.852\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Culture\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"About (Personal)\"\n },\n \"secondary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Partially Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":259,"cells":{"id":{"kind":"number","value":-6065427528583151000,"string":"-6,065,427,528,583,151,000"},"text":{"kind":"string","value":"BlackBerry maker's cash burn emerges as pressing concern\n\nMon Jun 25, 2012 2:26pm EDT\n \n\nBy Alastair Sharp\n\nTORONTO (Reuters) - While Research In Motion Ltd focuses on the make-or-break launch of its next-generation BlackBerrys later this year, a more immediate question for the embattled company is whether its cash can hold out until the new phones finally hit the market.\n\nRIM has already told investors to expect an operating loss when it releases fiscal first-quarter results on Thursday. With that in mind, the focus is now squarely on whether RIM, by reining in costs, mostly through job cuts, can buy enough time to get its shiny new smartphones into the hands of consumers.\n\n\"All I care about is cash. This is a distressed situation so focus should be on cash,\" said Matthew Thornton, an analyst at Avian Securities in Boston.\n\n\"If they're not cutting operating costs fast enough, then cash can drop off very quickly, and that's going to have implications for the stock and the valuation,\" he said.\n\nRIM has no debt and roughly $4 a share of cash and investments, a cash pile Thorsten Heins, the company's new chief executive, has said will increase this quarter. But bankers say RIM could blow through that $2.1 billion very quickly trying to right the ship.\n\nIf cash dwindles to the point where operations suffer, analysts say RIM may have to take on debt at unfavorable terms or issue dilutive stock at a discount to its already low price. Such scenarios would only heighten the sense that RIM's very survival hangs in the balance.\n\nThe stock is hovering at eight-year lows around $10, little more than double what the company earned per share in its last fiscal year and a fraction of the glory days near $150 in 2008.\n\nSTAKES ARE HIGH   Continued...\n\n \nA logo of the Blackberry maker's Research in Motion is seen on a building at the RIM Technology Park in Waterloo April 18, 2012. Picture taken April 18, 2012. REUTERS/Mark Blinch"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://ca.reuters.com/article/businessNews/idCABRE85O14J20120625\",\n \"source_domain\": \"ca.reuters.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"33111\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:IHRVZDXUQQXHSJXY3LMCSQ2XMSLG37WQ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-25T02:37:53Z\",\n \"WARC-IP-Address\": \"206.132.6.110\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:3VLSFP3RSYSAM6MEIDDGJT37CPTNVO37\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://ca.reuters.com/article/businessNews/idCABRE85O14J20120625\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 57,\n 58,\n 86,\n 88,\n 89,\n 107,\n 108,\n 375,\n 376,\n 683,\n 684,\n 836,\n 837,\n 1008,\n 1009,\n 1269,\n 1270,\n 1544,\n 1545,\n 1732,\n 1733,\n 1764,\n 1765,\n 1767\n ],\n \"line_end_idx\": [\n 57,\n 58,\n 86,\n 88,\n 89,\n 107,\n 108,\n 375,\n 376,\n 683,\n 684,\n 836,\n 837,\n 1008,\n 1009,\n 1269,\n 1270,\n 1544,\n 1545,\n 1732,\n 1733,\n 1764,\n 1765,\n 1767,\n 1945\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1945,\n \"ccnet_original_nlines\": 24,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.4039900302886963,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.03740648180246353,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.03999999910593033,\n \"rps_doc_frac_no_alph_words\": 0.16957606375217438,\n \"rps_doc_frac_unique_words\": 0.6385542154312134,\n \"rps_doc_mean_word_length\": 4.629518032073975,\n \"rps_doc_num_sentences\": 16,\n \"rps_doc_symbol_to_word_ratio\": 0.002493770094588399,\n \"rps_doc_unigram_entropy\": 5.055614471435547,\n \"rps_doc_word_count\": 332,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.020819779485464096,\n \"rps_doc_frac_chars_top_3gram\": 0.020819779485464096,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -144.86415100097656,\n \"rps_doc_books_importance_length_correction\": -144.86415100097656,\n \"rps_doc_openwebtext_importance\": -93.67396545410156,\n \"rps_doc_openwebtext_importance_length_correction\": -93.67396545410156,\n \"rps_doc_wikipedia_importance\": -80.94646453857422,\n \"rps_doc_wikipedia_importance_length_correction\": -80.94646453857422\n },\n \"fasttext\": {\n \"dclm\": 0.0017077899537980556,\n \"english\": 0.9649207592010498,\n \"fineweb_edu_approx\": 1.1016995906829834,\n \"eai_general_math\": 0.011036399751901627,\n \"eai_open_web_math\": 0.06634891033172607,\n \"eai_web_code\": 0.00035059000947512686\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"658.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n },\n \"secondary\": {\n \"code\": \"338.7\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":260,"cells":{"id":{"kind":"number","value":3074265812616243700,"string":"3,074,265,812,616,243,700"},"text":{"kind":"string","value":"Health knowledge made personal\nWellPage for Hindu Goddess\n+ Bookmark › Share\nGo\nSearch people:\n\nHindu Goddess - People\n\nFilter by ›\nAge:\nGender:\nmiles from:\nName\nHighlights\n\nDr Kranthi R Vardhan\n\nhyderabad, India\nDr KRANTHI VARDHAN RENUKUNTLA BAMS; MS (Psycho Therapy & Counseling); have started The Kerala Ayurvedic Care, Specialty Panchakarma Centre, in the year 1999 with an aim to provide high quality, personalized, compassionate & Purest hands-of Ayurveda (The Mother Of All The Sciences).His holistic approach enables him to create individualized programs, specifically tailored to your...\n\nLucia Gabriela Facebook\n\nSound Beach, New York\nLucia Gabriela Certified Health Coach. CHC, ADDP I am very proud and fortunate to have studied and completed all of the courses at the Institute of Integrative Nutrition in New York City. IIN is rated the number one school in the world for holistic nutrition and alternative health. We studied over 100 dietary theories and studied a variety of practical lifestyle coaching methods. My training...\nCommunities: Healthy Cooking\n\nDonna T. Facebook\n\nSunnyvale, California\nHinduism is the oldest religion in the world, as it is an eternal religion.   The mother of all languages of the world is Sanskrit, an eternal and Divine language that has never changed or evolved a bit over the past millions of years because it is already perfect.  My favorite book:  The True History and the Religion of India, by His Divinity Shree Swami...\n\nVeganBohemian\n\nAthens, Georgia\npeace, love, happiness, understanding, compassion, healing, forgiveness, kindness, veganism, hinduism, buddhism <3\nCommunities: Vegan, Raw Food\n\nLynette Sheppard Registered NurseHealth Maven\n\nHoolehua, Hawaii\nI'm a Registered Nurse, but these days my job (read passion) is connecting with and disseminating the wisdom of menopausal women via my blog at www.menopausegoddessblog.org. A core group of menopausal goddesses came together to make sense of the Changes assaulting us. What we learned and shared helped us beyond our wildest imaginings. Our small community has since expanded to a larger virtual...\n\nDating Goddess Patient Expert\n\nunknown, California\nWho is the Dating Goddess? I am a 53-year-old white, professional woman. My husband of nearly 20 years left me in April '03 and I started dating 18 months later. Generally, I have had a great time meeting interesting men, some of whom became romantic beaus, some became treasured friends, and some I never heard from again. In the beginning, I had dates with single male colleagues, but I quickly...\nCommunities: General Medicine\n\ngoddess\n\nUnited States"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.wellsphere.com/people/hindu-goddess\",\n \"source_domain\": \"www.wellsphere.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"54896\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2OLP4I4Z4UBAMPW7NJNKHIYHSEAHKP3Z\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T02:07:18Z\",\n \"WARC-IP-Address\": \"23.3.13.208\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:VBHMUBJTX7HMNWSGVCX72MO3W56SS36U\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.wellsphere.com/people/hindu-goddess\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 31,\n 58,\n 77,\n 80,\n 95,\n 96,\n 119,\n 120,\n 132,\n 137,\n 145,\n 157,\n 162,\n 173,\n 174,\n 195,\n 196,\n 213,\n 597,\n 598,\n 622,\n 623,\n 645,\n 1043,\n 1072,\n 1073,\n 1091,\n 1092,\n 1114,\n 1475,\n 1476,\n 1490,\n 1491,\n 1507,\n 1622,\n 1651,\n 1652,\n 1698,\n 1699,\n 1716,\n 2115,\n 2116,\n 2146,\n 2147,\n 2167,\n 2567,\n 2597,\n 2598,\n 2606,\n 2607\n ],\n \"line_end_idx\": [\n 31,\n 58,\n 77,\n 80,\n 95,\n 96,\n 119,\n 120,\n 132,\n 137,\n 145,\n 157,\n 162,\n 173,\n 174,\n 195,\n 196,\n 213,\n 597,\n 598,\n 622,\n 623,\n 645,\n 1043,\n 1072,\n 1073,\n 1091,\n 1092,\n 1114,\n 1475,\n 1476,\n 1490,\n 1491,\n 1507,\n 1622,\n 1651,\n 1652,\n 1698,\n 1699,\n 1716,\n 2115,\n 2116,\n 2146,\n 2147,\n 2167,\n 2567,\n 2597,\n 2598,\n 2606,\n 2607,\n 2620\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2620,\n \"ccnet_original_nlines\": 50,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.26131686568260193,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.039094649255275726,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.09803921729326248,\n \"rps_doc_frac_no_alph_words\": 0.18312756717205048,\n \"rps_doc_frac_unique_words\": 0.6641603708267212,\n \"rps_doc_mean_word_length\": 5.278195381164551,\n \"rps_doc_num_sentences\": 23,\n \"rps_doc_symbol_to_word_ratio\": 0.01028806995600462,\n \"rps_doc_unigram_entropy\": 5.291414260864258,\n \"rps_doc_word_count\": 399,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.009496680460870266,\n \"rps_doc_frac_chars_top_3gram\": 0.010446339845657349,\n \"rps_doc_frac_chars_top_4gram\": 0.013295349664986134,\n \"rps_doc_books_importance\": -231.4324493408203,\n \"rps_doc_books_importance_length_correction\": -231.4324493408203,\n \"rps_doc_openwebtext_importance\": -130.497314453125,\n \"rps_doc_openwebtext_importance_length_correction\": -130.497314453125,\n \"rps_doc_wikipedia_importance\": -97.00860595703125,\n \"rps_doc_wikipedia_importance_length_correction\": -97.00860595703125\n },\n \"fasttext\": {\n \"dclm\": 0.003885630052536726,\n \"english\": 0.9236975908279419,\n \"fineweb_edu_approx\": 1.340889811515808,\n \"eai_general_math\": 0.0043587698601186275,\n \"eai_open_web_math\": 0.05857861042022705,\n \"eai_web_code\": 0.0004140700038988143\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"294.5\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Religions\",\n \"level_3\": \"Hinduism, Brahmanism, Buddhism, and Sikhism\"\n }\n },\n \"secondary\": {\n \"code\": \"610\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"About (Personal)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":261,"cells":{"id":{"kind":"number","value":6932240856894277000,"string":"6,932,240,856,894,277,000"},"text":{"kind":"string","value":"Campus Watch Facebook\n\nSurveys: Saudi/Gulf Funding\n\nArticles marked by a icon are recommended by Campus Watch staff.\n\nWhy Saudis Send Their Kids to the Islamic Saudi Academy\nJune 12, 2013 at 1:24 pm\n\nAnti-Semite Ali Mazrui Honored by Alwaleed Bin Talal Center at Georgetown University\nMay 3, 2013 at 7:09 pm\n\nSecurity Clearance Case Isn't Fit for Federal Court [incl. Islamic Saudi Academy]\nApril 30, 2013 - Courthouse News Service\n\nRecommended by Campus Watch StaffDoes the Governor General's Wife Know Who's Coming to Dinner? [on Ingrid Mattson]\nApril 28, 2013 - The Ottawa Citizen\n\n'Israel Lobby' Threatening Free Speech at Berkeley?\nMarch 29, 2013 at 6:23 am\n\nRecommended by Campus Watch Staff'Israel Lobby' Threatening Free Speech at Berkeley?\nMarch 29, 2013 - FrontPage Magazine\n\nThe Iran Lobby Buys a Friendly Face for Despotism\nMarch 10, 2013 at 7:38 pm\n\nRecommended by Campus Watch StaffThe Iran Lobby Buys a Friendly Face for Despotism\nMarch 10, 2013 - American Thinker\n\nStudents to Present Research\nFebruary 28, 2013 - The Herald (student newspaper of Arkansas State University)\n\nThe Contradictions of Study Abroad\nAugust 9, 2012 - Newsbook (Blog of The Economist)\n\nIn The Wall Street Journal, Michael Oren is Right: Israel's Enemies Seek Its Delegitimization\nMay 16, 2012 - Snapshots (Blog of CAMERA)\n\nAmerican Universities, Panhandling for Petrodollars\nMay 11, 2012 - The Corner (Blog of National Review Online)\n\nRecommended by Campus Watch StaffBernard Lewis' Stubborn Hope\nMay 9, 2012 - Tablet: A New Read on Jewish Life\n\nRevisionist History [incl. Majid Khadduri]\nApril 11, 2012 - The Washington Free Beacon\n\nQatar Donates $1.25 Million to Islamic Studies Institute at McGill University\nApril 2, 2012 - The McGill Tribune\n\nOil and Anti-Semitism\nMarch 29, 2012 - Snapshots (Blog of CAMERA)\n\nBlood, Money and Jews\nMarch 28, 2012 - Ynet News\n\nHarvardstan?\nMarch 23, 2012 - FrontPage Magazine\n\nRecommended by Campus Watch StaffWhat Happened to Harvard's 'Veritas'? [incl. Noah Feldman]\nMarch 20, 2012 - FrontPage Magazine\n\nSurveillance Efforts Benefit University\nMarch 20, 2012 - The Daily Targum (student newspaper of Rutgers University)\n\nReflections on Richard Cravatts' \"Genocidal Liberalism: The University's Jihad Against Israel & Jews\"\nMarch 9, 2012 - FrontPage Magazine\n\nBeing 'Pro-Israel' Isn't Enough [incl. Tammi Rossman-Benjamin]\nMarch 2, 2012 - The Forward\n\nPrince Alwaleed and Princess Ameerah Host Prince Alwaleed University Centers' Annual Forum in Boston [incl. John Esposito]\nFebruary 18, 2012 - Zawya\n\nJohn Louis Esposito for the Defense (of an Alleged, Would-be Terrorist)\nFebruary 17, 2012 at 8:54 am\n\nRecommended by Campus Watch StaffJohn Louis Esposito for the Defense (of an Alleged, Would-be Terrorist)\nFebruary 17, 2012 - American Thinker\n\nHarvard to Host Conference Promoting Israel's Destruction [incl. Marc Ellis, Leila Farsakh]\nFebruary 17, 2012 - Committee for Accuracy on Middle East Reporting in America (CAMERA)\n\nHave You Heard About the Saudi Journalist Who Faces a Potential Death Sentence Under Sharia?\nFebruary 14, 2012 - The Corner (Blog of National Review Online)\n\nModerate Malaysian Government: Valentine's Day Can Invoke Wrath of Allah [incl. John Esposito]\nFebruary 12, 2012 - The Corner (Blog of National Review Online)\n\nWhy Saudi Prince Bin Talal Funds Middle East Studies in America\nFebruary 10, 2012 at 1:27 pm\n\nIslamophobia, Anti-Americanism, Arab Spring [incl. John Esposito]\nFebruary 9, 2012 - Harvard Magazine\n\nTweeting With a Pile of Saudi Money\nFebruary 9, 2012 - The Boston Globe\n\nRecommended by Campus Watch StaffSaudi Largesse at Georgetown and Harvard\nFebruary 6, 2012 - Phi Beta Cons (National Review Online)\n\nPower, Knowledge and the Universities [incl. Joseph Massad]\nFebruary 6, 2012 - Al Jazeera\n\nRecommended by Campus Watch StaffHarvard's Middle East Outreach Center: Propaganda for Teachers\nFebruary 5, 2012 - American Thinker\n\nHarvard: The Higher Madrassa\nJanuary 18, 2012 - RenewAmerica\n\nIs It Just About Money?\nJanuary 4, 2012 - The Jerusalem Post\n\nRecommended by Campus Watch StaffHarvard's Middle East Outreach Center Headed By BDS Supporter [incl. Paul Beran, Sara Roy]\nDecember 13, 2011 - Committee for Accuracy on Middle East Reporting in America (CAMERA)\n\nRashid Ghannoushi: John Esposito's Islamist in Tunis\nDecember 11, 2011 at 9:33 am\n\nRecommended by Campus Watch StaffRashid Ghannoushi: John Esposito's Islamist in Tunis\nDecember 11, 2011 - American Thinker\n\nAnd Tariq Ramadan, With His Boughten Professorship?\nNovember 22, 2011 - The Iconoclast - New English Review\n\nSultan of Oman Endows New Professorship at College of William and Mary\nNovember 10, 2011 - The Flat Hat (student newspaper of The College of William and Mary)\n\nSultan Qaboos Chair at College of William and Mary to Boost Research on Middle East\nOctober 29, 2011 - Muscat Daily\n\nNew HM Chair at College of William & Mary is Symbol of Amity, Partnership\nOctober 27, 2011 - Oman Daily Observer\n\nSigning and Celebration of Sultan Qaboos bin Said Professorship\nOctober 26, 2011 - News of The College of William & Mary\n\nSultan of Oman Gift to William & Mary Will Establish Middle East Studies Professorship\nOctober 25, 2011 - Associated Press\n\nCollege of William & Mary Receives Gift to Establish Sultan Qaboos Professorship\nOctober 24, 2011 - News of The College of William & Mary\n\nPrince Alwaleed Receives Deputy Assistant Secretary of State for the Arabian Gulf\nOctober 19, 2011 - Zawya\n\nAli Asani Named Head of Islamic Studies Program at Harvard\nOctober 3, 2011 - The Harvard Crimson\n\nCase Against Donor Revisited [incl. John Esposito]\nSeptember 20, 2011 - The Georgetown Hoya\n\nRecommended by Campus Watch StaffJohn L. Esposito: Apologist for Wahhabi Islam\nSeptember 18, 2011 - American Thinker\n\nNo Springtime for Hitler at Columbia?\nSeptember 17, 2011 - American Thinker\n\nHow Harvard Remembered 9/11\nSeptember 10, 2011 - Pajamas Media\n\nReport Card on the 9/11 Commission's Recommendations [incl. John Esposito]\nSeptember 7, 2011 - Family Security Matters\n\nSaudi Arabian Dollars Buying American Influence\nJuly 11, 2011 - WorldNetDaily\n\nJewish University Presidents Who Abandon Jews\nJuly 3, 2011 - American Thinker\n\nGeorgetown and the Islamist Money Changers\nJune 24, 2011 at 10:42 am\n\nRecommended by Campus Watch StaffGeorgetown and the Islamist Money Changers\nJune 24, 2011 - American Thinker\n\nIslam Buys Out Western Academia\nJune 23, 2011 - Arutz Sheva\n\nOIC Funneled $325,000 through Hamas-linked CAIR to Georgetown University to support restriction of free speech, criminalization of \"Islamophobia\" [incl. John Esposito]\nJune 15, 2011 - Jihad Watch\n\nRecommended by Campus Watch StaffGeorgetown U. Received $325,000 Funneled Through Terror Front Group\nJune 14, 2011 - Pajamas Media\n\nWhy is Yale University Shutting Its Anti-Semitism Study Institute?\nJune 14, 2011 - Arutz Sheva\n\nAnti-Semitism and Man at Yale [incl. Flynt and Hillary Mann Leverett]\nJune 13, 2011 - Jewish Ideas Daily\n\nCanada: Ontario College Accepts $2 Million from Islamic Groups Linked to Jihad Terrorism\nJune 6, 2011 - Jihad Watch\n\nSo Young May Understand, Huron Should Not Give In\nJune 3, 2011 - London Free Press\n\nMuslim Funding Raises Canada Hue and Cry\nJune 3, 2011 - OnIslam\n\nControversy Continues Over Global Muslim Brotherhood Funding Of Canadian Islamic Studies Chair\nJune 2, 2011 - The Global Muslim Brotherhood Daily Report\n\nThe Donor's Dilemma\nMay 18, 2011 - National Review Online\n\nUniversity of Western Ontario: Muslim Brotherhood Organizations Commit to Fund a Chair in Islamic Studies [incl. Ingrid Mattson, Tariq Ramadan]\nMay 14, 2011 - Point de Bascule\n\nCanada University Offered $2 Million from Muslim Brotherhood-linked Groups to Establish Islamic Studies Program\nMay 13, 2011 - Jihad Watch\n\nThe Dumbing-Down of Due Diligence at Canada's Huron College\nMay 11, 2011 at 10:57 am\n\nRecommended by Campus Watch StaffThe Dumbing-Down of Due Diligence at Canada's Huron College\nMay 11, 2011 - Campus Watch\n\nDumbing-Down about Islam at Canada's Huron College\nMay 11, 2011 - The Ottawa Citizen\n\nRecommended by Campus Watch StaffCongressional GOP Gets One Right\nApril 14, 2011 - The Corner (NRO)\n\nConcerns About the Funding of a Chair in Islamic Studies at Huron College, University of Western Ontario\nApril 5, 2011 - EclectEcon Blog\n\nJewish Students Under Assault -- Part U\nApril 1, 2011 - Yated Ne'eman\n\nAnti-American, Foreign Donors Are Paying Off Our Profs. Shouldn't We Address This?\nMarch 25, 2011 - Pajamas Media\n\nRecommended by Campus Watch StaffMideast Unrest Reawakens Concern Over Taint of Foreign Money [incl. John Esposito]\nMarch 20, 2011 - The Chronicle of Higher Education\n\nDalhousie Medical School to Sell Saudis Ten Seats\nMarch 17, 2011 - The Globe and Mail\n\nUS/Canadian Muslim Brotherhoods Fund Islamic Chair At Canadian University\nMarch 16, 2011 - The Global Muslim Brotherhood Daily Report\n\nUS/Canadian Muslim Brotherhoods Fund Islamic Chair At Canadian University\nMarch 15, 2011 - The Global Muslim Brotherhood Daily Report\n\nWitness List Set for King Hearing [incl. Islamic Saudi Academy]\nMarch 7, 2011 - The Investigative Project on Terrorism\n\nKuwait Gifts $4.5m to George Washington University\nMarch 5, 2011 - The Kuwait Times\n\nLondon School of Economics's Ties to Libya the Tip of the Iceberg for Academia\nMarch 4, 2011 - Commentary Magazine\n\nFollow the Money\nMarch 2, 2011 - Jewish Ideas Daily\n\nKuwait Gives George Washington University $4.5 Million Gift for Middle East Studies\nFebruary 24, 2011 - The GW Hatchet (student newspaper of George Washington University)\n\n$4.5 Million Gift to Support George Washington University's Middle East Programs\nFebruary 23, 2011 - George Washington University News\n\nSharia University\nDecember 9, 2010 - Red State Blog\n\nArab Lobby a Force to be Reckoned With, Author Charges\nNovember 4, 2010 - Washington Jewish Week\n\nSupervisors Extend Saudi Academy's Lease Another Year Along Party Lines\nOctober 27, 2010 - The Fairfax Times\n\nD.C. Suburb OKs Saudi Madrassa – Again [on Islamic Saudi Academy]\nOctober 27, 2010 - WorldNetDaily\n\nWhat, We Worried? [on Islamic Saudi Academy]\nOctober 25, 2010 - WORLD Magazine\n\nIs Jihad Being Taught in the Backyard of the Nation's Capital? [on Islamic Saudi Academy]\nOctober 21, 2010 - InsiderOnline Blog\n\nSupervisors Vote to Extend Islamic Saudi Academy Lease\nOctober 21, 2010 - Kingstowne Patch\n\nRecommended by Campus Watch StaffExtremists and Allys Narrow the Parameters of Free Speech [incl. John Esposito]\nOctober 20, 2010 - Scrippsnews\n\nFairfax County Renews Lease for Saudi Wahhabi School [on Islamic Saudi Academy]\nOctober 20, 2010 - The Corner (Blog of National Review Online)\n\nConnolly Takes $18,758 From Saudi Nationals? [on Islamic Saudi Academy]\nOctober 19, 2010 - Bearing Drift (Blog of The Washington Post Blog Network)\n\nIranian Front Group Pumping Funds into US Universities\nOctober 11, 2010 - National Review Online\n\nThe Arab Lobby Exposes Seventy Years of Coercion By Saudi Arabia\nOctober 10, 2010 - News Blaze\n\nArab Lobby's Unseen Influence\nOctober 6, 2010 - Political Bookworm (A blog of the Washington Post)\n\n'Zaytuna College' and Its Continuing Media Circus\nSeptember 28, 2010 at 6:05 am\n\nRecommended by Campus Watch Staff'Zaytuna College' and Its Continuing Media Circus\nSeptember 28, 2010 - American Thinker\n\nQ & A with Dr. Mitchell Bard\nSeptember 15, 2010 - Jewish Ledger\n\nRecommended by Campus Watch StaffWho're You Calling a 'Bigot'? Middle East Studies Professors Attack Opponents of the Ground Zero Mosque\nAugust 29, 2010 - American Thinker\n\nThe Ground Zero Mosque Should Be Stopped [incl. John Esposito]\nAugust 2, 2010 - RedState\n\nGeorgetown Professor Misses the Mark on NYC Islamic Center [on John Esposito]\nJuly 21, 2010 - The Washington Times\n\nKagan Promoted Shariah Law at Harvard\nJuly 21, 2010 - Townhall.com\n\nElena Kagan's 'Don't Ask Don't Tell' Sharia Policy\nJuly 8, 2010 - National Review Online\n\nSenate Republican Accuses Kagan of Staying Silent on Saudi Gift to Harvard\nJune 16, 2010 - FOXNews.com\n\nRecommended by Campus Watch StaffInterfaith Meeting Rocked by Terror Accusation [incl. Ingrid Mattson]\nMay 14, 2010 - WorldNetDaily\n\nSEALs Case Shows How Terrorists Use 'Lawfare' to Undermine U.S.\nMarch 8, 2010 - Human Events\n\nRep. Myrick Looks to Heal Long Rift with Muslims [incl. Ebrahim Moosa]\nFebruary 25, 2010 - The Charlotte Observer\n\nNew Campus Watch Research: the Model Arab League, and Massad at UCLA\nFebruary 1, 2010 at 6:58 pm\n\nRecommended by Campus Watch StaffModel Middle East Indoctrination\nJanuary 31, 2010 - American Thinker\n\nSaudis to Establish School in Dublin [incl. Islamic Saudi Academy]\nDecember 9, 2009 - The Irish Times\n\nAcademics Behaving Badly [incl. John Esposito, Martin Kramer]\nNovember 24, 2009 - Jerusalem Post\n\nSchools' Iran $$ Pipeline [incl. Hamid Dabashi, Hooshang Amirahmadi, Gary Sick]\nNovember 22, 2009 - New York Post\n\nSchoolhouse Shariah [incl. Islamic Saudi Academy]\nSeptember 24, 2009 - Investor's Business Daily\n\nYale Sells Its Freedom Of Speech [incl. Jytte Klausen]\nSeptember 15, 2009 - Cincinnati Independent Examiner\n\nRecommended by Campus Watch StaffAn Update on Yale [incl. Jytte Klausen]\nSeptember 4, 2009 - Contentions (blog of Commentary magazine)\n\nHate Speech on Campus\nSeptember 3, 2009 - Intellectual Conservative\n\nYale: Betraying Nathan Hale, Embracing the Muslim Brotherhood\nAugust 25, 2009 - DianaWest.net\n\nDid Yale Prostitute Itself For Oil Money?\nAugust 25, 2009 - The American Thinker\n\nYale Selects Daughter of Global Muslim Brotherhood Leader as 2009 Fellow [incl. John Esposito and Jytte Klausen]\nAugust 24, 2009 - Family Security Matters: Global Muslim Brotherhood Daily Report\n\nFeds Rule Seizure of Terror Funding Muslim Charity's Assets Unconstitutional [incl. Hatem Bazian]\nAugust 24, 2009 - Creeping Sharia Blog\n\nYale Dhimmitude: It's About Saudi Money\nAugust 22, 2009 - The Jawa Report\n\nRecommended by Campus Watch StaffSome Day, Yale's Prince Will Come [incl. Jytte Klausen, Roy Mottahedeh, John Esposito]\nAugust 21, 2009 - Sandbox (Weblog of Martin Kramer)\n\nMy Final Piece on Yale and the Danish Cartoons: Martin Kramer Connects the Dots [incl. Jytte Klausen]\nAugust 21, 2009 - Roger's Rules (Blog of Pajamas Media)\n\nA Slow-Motion Honor Killing [incl. John Esposito]\nAugust 13, 2009 - FrontPage Magazine\n\nFrom Gulag Liberators to Saudi Retainers [incl. Joseph Massad]\nJuly 21, 2009 - National Review Online\n\nThe Inroads of the Muslim Brotherhood in the Obama Administration [incl. John Esposito]\nApril 13, 2009 - Counterterrorism Blog\n\nWhy the Jews? [incl. Rashid Khalidi, John Esposito]\nMarch 26, 2009 - FrontPage Magazine\n\nIs Israel Being Held To A Different Standard Or Is It Simply Anti-Semitism?\nMarch 16, 2009 - The Bulletin (Philadelphia)\n\nProposed USC-Dubai Journalism School Concerns Faculty and Community\nOctober 29, 2008 - The Jewish Journal\n\nThe Economic Crisis and Middle Eastern Studies\nOctober 15, 2008 - Phi Beta Cons\n\nInterview with Brigitte Gabriel [incl. Susan Douglas, Islamic Saudi Academy, Khalil Gibran International Academy, et al.]\nOctober 9, 2008 - The Examiner\n\nRecommended by Campus Watch StaffPublic Schools Teach the ABC's of Islam\nOctober 8, 2008 - Christian Broadcast Network\n\nObama's Sleazy Friends [incl. Rashid Khalidi]\nOctober 7, 2008 - The Washington Times\n\nRecommended by Campus Watch StaffSharia Law: Coming to a Western Nation Near You? [incl. John Esposito, Noah Feldman]\nSeptember 25, 2008 - FrontPage Magazine\n\nUniversities Disclose Foreign Gifts [incl. Edward Said, Rashid Khalidi]\nSeptember 24, 2008 - The New York Sun\n\nWolf Challenges State Department ISA Inaction [on Islamic Saudi Academy]\nSeptember 24, 2008 - Mount Vernon Gazette\n\nSaudi Infiltration into U.S. Education\nSeptember 18, 2008 - Arutz Sheva, Israel National News\n\nWolf Continues Pressing State Dept. on Saudi School [on the Islamic Saudi Academy in Va.]\nSeptember 17, 2008 - Investigative Project on Terrorism (For the Record-IPT Blog)\n\n2007-2008: Another Year of Global Academic Anti-Semitism and Anti-Israelism [incl. MESA, ASMEA, Joseph Massad, Nadia Abu El-Haj, Yinon Conen, et al.]\nOctober 2008 - Institute for Global Jewish Affairs\n\nSaudi Textbooks Teach Students to Hate [incl. the Islamic Saudi Academy in VA]\nSeptember 5, 2008 - Washington Post (Post Global Blog)\n\nProtecting Mosques in New York [incl. the Islamic Saudi Academy in VA]\nSeptember 4, 2008 - Frontpage Magazine\n\nTextbook Appeasement: The State Department and the Islamic Saudi Academy\nSeptember 2, 2008 - The Heritage Foundation\n\nSymposium: The Closing of the American Psyche [incl. Campus Watch, Middle East studies]\nAugust 29, 2008 - Frontpage Magazine\n\nPut Up vs. Shut Up [on the Islamic Saudi Academy in VA]\nAugust 19, 2008 - Richmond-Times Dispatch\n\nWill State Department Punt (Again) on Islamic Saudi Academy's Radical Textbooks?\nAugust 7, 2008 - Counterterrorism Blog\n\nNew Page in Saudi Debate [on the Islamic Saudi Academy in VA]\nAugust 6, 2008 - Fairfax County Times\n\nBehind the Veil at the Islamic Saudi Academy\nAugust 2008 - New English Review\n\nThe Islamic Saudi Academy: A ‘Hot Potato'\nJuly 2008 - New English Review\n\nHead of Islamic School Guilty of Not Reporting Child Abuse [on the Islamic Saudi Academy in VA]\nJuly 31, 2008 - Washington Post\n\nHead of Jihadist School in Virginia Guilty of Not Reporting Child Abuse [on the Islamic Saudi Academy]\nJuly 31, 2008 - Jihad Watch\n\nPage B6 WaPo Story: Islamic School Chief Guilty for Not Reporting Child Abuse [on the Islamic Saudi Academy in VA]\nJuly 31, 2008 - NewsBusters\n\nFairfax Stuck in Middle of Saudi Academy Dispute\nJuly 31, 2008 - WTOP Radio\n\nHead of Saudi School Admits He Didn't Report Abuse [on the Islamic Saudi Academy in VA]\nJuly 30, 2008 - Associated Press\n\nIslamic Anti-Semitism: From Sacred Texts to Modern Textbooks [incl. the Islamic Saudi Academy in VA]\nJuly 28, 2008 - Family Security Matters\n\nTextbook Terrorism [on Saudi textbooks]\nJuly 24, 2008 - Investor's Business Daily\n\nState Dept. Stands Aside [on the Islamic Saudi Academy in VA]\nJuly 23, 2008 - Fairfax County Times\n\nMultiple Choice Exams, the Saudi Way [incl. the Islamic Saudi Academy in VA]\nJuly 22, 2008 - The Platform (St. Louis Post-Dispatch Blog)\n\nDespite Saudi Promises, Textbooks Filled With Hate [incl. the Islamic Saudi Academy in VA]\nJuly 22, 2008 - New York Sun\n\nA Textbook Case of Intolerance [on Saudi textbooks]\nJuly 21, 2008 - Slate.com\n\nSchool for Scoundrels [on the Islamic Saudi Academy in VA; ref. Bernard Lewis]\nJuly 17, 2008 - Townhall.com\n\nRep. Wolf to Secretary Rice: Figure Out What Saudi School is Teaching [on the Islamic Saudi Academy in VA]\nJuly 17, 2008 - Alexandria Times\n\nSaudi Textbooks Still Teaching Hate: Report\nJuly 17, 2008 - National Post\n\nChristians are 'Swine', Jews 'Condemnable', Say Saudi Textbooks\nJuly 17, 2008 - Posted (National Post Blog)\n\nIs Anyone Responsible? [incl. the Islamic Saudi Academy in VA]\nJuly 16, 2008 - Investigate Project on Terrorism\n\nDevelopments in Islamic Saudi Academy and Saudi Textbook Issues\nJuly 16, 2008 - Counterterrorism Blog\n\nReview Finds Slurs In '06 Saudi Texts [on the Islamic Saudi Academy in VA; incl. Amin Bonnah]\nJuly 15, 2008 - Washington Post\n\nNew Hudson Institute Report Shows Saudi Ministry Textbooks Still Teach Extreme Intolerance [incl. the Islamic Saudi Academy in VA]\nJuly 15, 2008 - American Congress for Truth Blog\n\nNew Report Shows Saudi Ministry Textbooks Still Teach Extreme Intolerance [incl. the Islamic Saudi Academy in VA]\nJuly 15, 2008 - PRNewswire\n\nThis Country Is so Pro-Muslim It Is Giving Succor to the Extremists Who Would Destroy Us [on the UK; incl. MES, Saudi funding]\nJuly 8, 2008 - The Daily Mail (U.K)\n\nJohn Esposito on 'Moderation' and 'Peace'\nJuly 8, 2008 - First Things Blog\n\nThe Esposito School: Islamic Apologists in Action, or Who is the \"Near Enemy\"? [incl. John Voll, Natana Delong-Bas, the Prince Alwaleed Center for Muslim-Christian Understanding]\nJuly 1, 2008 - Sharia Finance Watch\n\nVirginia's Islamic Academy on Shaky Legal Ground [on the Islamic Saudi Academy in N. Va.]\nJune 27, 2008 - Pajamas Media\n\nSaudi School Debate is About More Than Cutting the Grass [on the Islamic Saudi Academy in VA]\nJune 27, 2008 - Alexandria Times\n\nState Dept. Stands Alone on Virginia Saudi School [on the Islamic Saudi Academy in N. Va.]\nJune 26, 2008 - IPT News (Investigative Project on Terrorism)\n\nIslamic Saudi Academy Latest Example of Saudis' Distribution of Propaganda\nJune 26, 2008 - Counterterrorism Blog\n\nFairfax County Supervisors Wimp Out on Islamic Saudi Academy Textbooks\nJune 25, 2008 - Counterterrorism Blog\n\nAl-Jazeera TV Reports on Fairfax, Virginia, Islamic Saudi Academy Controversy, Says U.S. Commission on International Religious Freedom Persecuting U.S. Muslims\nJune 25, 2008 - Middle East Media Research Institute (MEMRI.org)\n\nSupervisors Pass Buck on Islamic School [on the Islamic Saudi Academy in VA]\nJune 25, 2008 - Fairfax County Times\n\nRep. Wolf Wants State Department to Step Up in Saudi Academy Controversy [on the Islamic Saudi Academy in N. Va.]\nJune 25, 2008 - Congressional Quarterly's Homeland Security News and Analysis\n\nSaudi Academy Challenged Again [on the Islamic Saudi Academy in VA]\nJune 25, 2008 - Mount Vernon Gazette\n\nBoard Seeks Input On Islamic School [on the Islamic Saudi Academy in VA]\nJune 24, 2008 - Washington Post\n\nPolitics, Religion and Education a Potent Mix in Virginia Congressional Race [incl. the Islamic Saudi Academy]\nJune 24, 2008 - Congressional Quarterly\n\nState Department Asked To Investigate Saudi Academy\nJune 23, 2008 - NBC4.com\n\nSaudi Academy Intimately Tied To Extremist Saudi Muslims\nJune 22, 2008 - PipeLineNews.org\n\nIslamic Saudi Hate Academy\nJune 20, 2008 - Frontpage Magazine\n\nSaudi Hate No Worry for Clueless Energy Crowd [on the Islamic Saudi Academy in VA]\nJune 20, 2008 - Seattle Post Intelligencer\n\nIslamic School Has Notorious Alumni [on the Islamic Saudi Academy in VA]\nJune 20, 2008 - OneNewsNow.com\n\nSaudi School Head Charged [on the Islamic Saudi Academy]\nJune 19, 2008 - Alexandria Times\n\nFrom Most Groups Overseeing Islamic Saudi Academy, Support or Inaction\nJune 19, 2008 - Alexandria Times\n\nReligious Commission Criticizes Saudi Textbooks [on the Islamic Saudi Academy in VA]\nJune 19, 2008 - Baptist Press\n\nFeds: Islamic School Condones Violence [on the Islamic Saudi Academy in VA]\nJune 18, 2008 - World on the Web\n\nDirector of Saudi Academy Arrested for Failing to Report Child Abuse [on the Islamic Saudi Academy in Fairfax, VA]\nJune 17, 2008 - Associated Press\n\nCinnamon Stillwell: Islam in America's Public Schools: Education or Indoctrination?\nJune 17, 2008 - Solomonia Blog\n\nTraditional Values Groups Organizes Protest At Virginia's Islamic Saudi Academy\nJune 17, 2008 - PipeLineNews.org\n\n'Soft Jihad' Advancing in U.S. Classrooms\nJune 16, 2008 - Phi Beta Cons\n\nIslamic Saudi Academy Director Arrested for Obstruction of Justice\nJune 16, 2008 - Saudi Watch Blog\n\nThe Next Attack: Coming Soon [incl. the Islamic Saudi Academy in VA]\nJune 16, 2008 - Human Events\n\nFoe, Not Friend [incl. the Islamic Saudi Academy in VA]\nJune 16, 2008 - Townhall.com\n\nShould Justice Dept. Investigate Violent Teachings at Islamic Saudi Academy?\nJune 14, 2008 - Family Security Matters\n\nU.S. Students Learn Hatred Saudi Style [on the Islamic Saudi Academy]\nJune 14, 2008 - History News Network\n\nState Lets Islamic School Operate [on the Islamic Saudi Academy]\nJune 13, 2008 - Washington Times\n\nState Department: Saudis to Scrub Curriculum by School Year Start [on the Islamic Saudi Academy]\nJune 13, 2008 - The Examiner\n\nIslam in America's Public Schools: Education or Indoctrination?\nJune 13, 2008 - Investigate Project on Terrorism\n\nMad For Madrassas [on the Islamic Saudi Academy]\nJune 13, 2008 - Investor's Business Daily\n\nWhat Virginia's Islamic Academy Doesn't Want You to Know\nJune 13, 2008 - Pajamas Media\n\nStatement from the Islamic Saudi Academy in Response to the US Commission on International Religious Freedom\nJune 13, 2008 - Islamic Saudi Academy\n\nTeaching Hate [on the Islamic Saudi Academy in N. Va.]\nJune 12, 2008 - The New York Sun\n\nReview: Troubling Passages in Texts at Va. School [on the Islamic Saudi Academy in N. Va.]\nJune 12, 2008 - Associated Press\n\nPanel: Saudi-Run Va. School Promotes Hate [on the Islamic Saudi Academy in N. Va.]\nJune 12, 2008 - The New York Sun\n\nSchool's Books Found to Promote Violence [on the Islamic Saudi Academy in N. Va.]\nJune 12, 2008 - The Examiner\n\nIslamic Saudi Academy in Virginia: Case Study in Homegrown Radicalization\nJune 12, 2008 - Counterterrorism Blog\n\nTraditional Values Coalition Asks Justice Dept. To Investigate Violent Teachings at Islamic Saudi Academy\nJune 12, 2008 - Traditional Values Coalition\n\nSaudi Academy's Books Promote Violence, Intolerance, Panel Says [on the Islamic Saudi Academy in N. Va.]\nJune 11, 2008 - Bloomberg.com\n\nUSCIRF Confirms Material Inciting Violence, Intolerance Remains in Textbooks Used at Saudi Government's Islamic Saudi Academy\nJune 11, 2008 - U.S. Commission on International Religious Freedom\n\nWhy Arabian Gulf Countries Donate to US Universities\nJune 9, 2008 - FrontPage Magazine\n\nRecommended by Campus Watch StaffSpreading Islam in the Academy [incl. Alwaleed bin Talal]\nJune 9, 2008 - Forum (the blog of Minding the Campus)\n\nA Medal for Brass [incl. Alwaleed bin Talal Center for Muslim-Christian Understanding]\nMay 26, 2008 - The Weekly Standard\n\nThe Real World: Runaway Oil [incl. Saudi gifts to Middle East studies]\nMay 23, 2008 - Middle East Times\n\nExclusive: Should a Saudi School Lease Be Put on Hold? [on the Islamic Saudi Academy]\nMay 17, 2008 - Family Security Matters\n\nRecommended by Campus Watch StaffMiddle East Studies in Fiction [incl. John Esposito, Rashid Khalidi, Juan Cole, et al.]\nMay 15, 2008 - FrontPage Magazine\n\nArmy Colonel Says U.S. Needs Better Focus in the War on Terror [incl. Saudi funding]\nMay 15, 2008 - Congressional Quarterly's Homeland Security News and Analysis\n\nAre American Universities in Bed with America's Enemies? [incl. Prince Alwaleed Bin Talal]\nMay 14, 2008 - Family Security Matters\n\nPrince Alwaleed Receives Business Leader of the Year Award from Foreign Policy Association [incl. Middle East studies]\nMay 13, 2008 - ArabianBusiness.com\n\nOver a Barrel [incl. Saudi funding for higher education]\nMay 11, 2008 - New York Post\n\n2 British Universities to Benefit From Saudi Prince's Gifts [on Alwaleed bin Talal; the universities of Cambridge and Edinburgh; John Esposito]\nMay 9, 2008 - The Chronicle of Higher Education\n\nSaudi Prince Gives Universities 16m Pounds for Study of Islam [on Alwaleed bin Talal Abdulaziz al-Saud; the universities of Cambridge and Edinburgh]\nMay 8, 2008 - The Independent (U.K.)\n\nCambridge and Edinburgh Universities announce New Centres for Islamic Studies [on Alwaleed bin Abdulaziz al-Saud]\nMay 8, 2008 - University of Cambridge\n\nAlwaleed Gives $31 Million for U.K. University Islamic Centers [on Cambridge and Edinburgh]\nMay 8, 2008 - Bloomberg.com\n\nNews Flash: Muslims Want Free Speech for Themselves! [on John Esposito]\nMay 8, 2008 - Citizens Against Sharia Blog\n\nArabian Gulf Money and US Universities (Continued) [incl. Middle East studies]\nMay 7, 2008 - Jay P. Greene's Blog\n\nA Safe Space to Talk about Islam\nMay 7, 2008 - The Guardian (U.K.)\n\nSaudi Cash Seduction is Faustian Pact\nApril 29, 2008 - The Australian\n\nUni Defends Saudi Grant\nApril 24, 2008 - The Australian\n\nSpencer and Pipes Explain Jihad\nApril 22, 2008 - The Stanford Review\n\n\"Extremism\" Fear over Islam Studies Donations\nApril 14, 2008 - The Daily Telegraph (London)\n\nSaudi Giving at the Heart of a Great Debate Over Middle East Studies\nApril 11, 2008 - Congressional Quarterly\n\nJihad Against West is Well-Entrenched, Author Says [on Walid Phares; incl. higher education]\nMarch 31, 2008 - Cybercast News Service\n\nDesert Bloom [on academic institutions in the Persian Gulf; quotes Zachary Lockman, Bernard Haykel]\nMarch 28, 2008 - Chronicle of Higher Education\n\nFollowing the Foreign Money [incl. the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding; Title VI]\nMarch 26, 2008 - National Review Online\n\nRep. Wolf's Questions for Georgetown Over Gift From Saudi Prince Spark Debate [incl. John Esposito, John Voll]\nMarch 26, 2008 - Congressional Quarterly\n\nDeGioia Insists Center Neutral Despite Saudi Funds [incl. John Esposito, John Voll, Amira Sonbol, Alwaleed Bin Talal Center for Muslim-Christian Understanding]\nMarch 14, 2008 - The Hoya (Georgetown University)\n\nPrince in £8m Gift for Centre [on Prince Alwaleed Bin Talal]\nMarch 14, 2008 - Cambridge News Online\n\nRecommended by Campus Watch StaffSaudis's Multi-Million Dollar PR Machine [incl. John Esposito]\nMarch 10, 2008 - CBNNews.com\n\nGeorgetown to Congressman: Don't Worry About Our Petrodollars [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito]\nFebruary 29, 2008 - Investigate Project on Terrorism\n\nCongressman Questions GU Over Saudi Prince's Gift [incl. John Esposito, John Voll]\nFebruary 22, 2008 - The Hoya (Georgetown University)\n\n$20 Million Gift to Muslim Center Questioned [incl. John Esposito, John Voll, Martin Kramer]\nFebruary 21, 2008 - The Georgetown Voice\n\nGeorgetown U's Wahhabi Front [incl. John Esposito]\nFebruary 19, 2008 - FrontPage Magazine\n\nHungry Like Rep. Wolf [on Prince Alwaleed bin Talal's gift to Georgetown U.; John Esposito]\nFebruary 16, 2008 - Phi Beta Cons\n\nRecommended by Campus Watch StaffEsposito at Stanford\nFebruary 15, 2008 - Frontpage Magazine\n\n$20 Million Saudi Gift Is Questioned [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito]\nFebruary 15, 2008 - Washington Post\n\nWolf to Georgetown: Detail Use of Saudi Millions [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito]\nFebruary 15, 2008 - Investigate Project on Terrorism\n\nWolf Seeks Additional Details From Georgetown University About Gift to Center for Muslim-Christian Understanding [on the Alwaleed bin Talal Center]\nFebruary 14, 2008 - Web Site of Rep. Frank Wolf (R-Va)\n\nThe Fifth Column [on Middle East studies, Title VI, Saudi funding; refs. John Esposito, Hamid Algar]\nJanuary 23, 2008 - The Conservative Jedi Blog\n\nClinton's Arab Connections Why Aren't People Talking About It?\nJanuary 22, 2008 - Yid with Lid Blog\n\nAl-Babtain Library to Set Up Arabic Language Center in US [on the forthcoming Kuwaiti-funded Arabic Language Center in Eckerd College, Florida]\nJanuary 22, 2008 - Arab Times (Kuwait)\n\nHillary Clinton and Saudi Funny Money: Conflict of Interest? [incl. Middle East studies at the Univ. of Arkansas]\nJanuary 21, 2008 - Family Security Matters\n\nThe Clintons Have Some 'Splainin' to Do [incl. John Esposito]\nJanuary 21, 2008 - Jihad Watch\n\nRecommended by Campus Watch StaffWhat Influence Does Saudi Money Buy? [incl. Mahmoud Ayoub, Prince Alwaleed bin Talal, Sheik Zayed bin Sultan al-Nahyan, Fouad Ajami]\nJanuary 17, 2008 - Jewish Exponent\n\nRecommended by Campus Watch StaffIslamic Economics: What Does It Mean? [incl. Timur Kuran]\nSeptember 26, 2007 - The Jerusalem Post\n\nAmerican Accused in a Plot to Assassinate Bush [incl. Islamic Saudi Academy]\nFebruary 23, 2005 - New York Times\n\n© 2002 - 2013 The Middle East Forum. Campus Watch contact e-mail: campus-watch@meforum.org\n\nDonate"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.campus-watch.org/survey.php/id/67\",\n \"source_domain\": \"www.campus-watch.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"79112\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:7HBHQR3HLQ5VY7FCYRRQNHMVTFP6BZB3\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-18T22:36:56Z\",\n \"WARC-IP-Address\": \"64.131.76.240\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:CGL36R3JUYGCXTVY6RTBPUYG7RLML7TE\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.campus-watch.org/survey.php/id/67\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 22,\n 23,\n 51,\n 52,\n 117,\n 118,\n 174,\n 199,\n 200,\n 285,\n 308,\n 309,\n 391,\n 432,\n 433,\n 548,\n 584,\n 585,\n 637,\n 663,\n 664,\n 749,\n 785,\n 786,\n 836,\n 862,\n 863,\n 946,\n 980,\n 981,\n 1010,\n 1090,\n 1091,\n 1126,\n 1176,\n 1177,\n 1271,\n 1313,\n 1314,\n 1366,\n 1425,\n 1426,\n 1488,\n 1536,\n 1537,\n 1580,\n 1624,\n 1625,\n 1703,\n 1738,\n 1739,\n 1761,\n 1805,\n 1806,\n 1828,\n 1855,\n 1856,\n 1869,\n 1905,\n 1906,\n 1998,\n 2034,\n 2035,\n 2075,\n 2151,\n 2152,\n 2254,\n 2289,\n 2290,\n 2353,\n 2381,\n 2382,\n 2505,\n 2531,\n 2532,\n 2604,\n 2633,\n 2634,\n 2739,\n 2776,\n 2777,\n 2869,\n 2957,\n 2958,\n 3051,\n 3115,\n 3116,\n 3211,\n 3275,\n 3276,\n 3340,\n 3369,\n 3370,\n 3436,\n 3472,\n 3473,\n 3509,\n 3545,\n 3546,\n 3620,\n 3678,\n 3679,\n 3739,\n 3769,\n 3770,\n 3866,\n 3902,\n 3903,\n 3932,\n 3964,\n 3965,\n 3989,\n 4026,\n 4027,\n 4151,\n 4239,\n 4240,\n 4293,\n 4322,\n 4323,\n 4409,\n 4446,\n 4447,\n 4499,\n 4555,\n 4556,\n 4627,\n 4715,\n 4716,\n 4800,\n 4832,\n 4833,\n 4907,\n 4946,\n 4947,\n 5011,\n 5068,\n 5069,\n 5156,\n 5192,\n 5193,\n 5274,\n 5331,\n 5332,\n 5414,\n 5439,\n 5440,\n 5499,\n 5537,\n 5538,\n 5589,\n 5630,\n 5631,\n 5710,\n 5748,\n 5749,\n 5787,\n 5825,\n 5826,\n 5854,\n 5889,\n 5890,\n 5965,\n 6009,\n 6010,\n 6058,\n 6088,\n 6089,\n 6135,\n 6167,\n 6168,\n 6211,\n 6237,\n 6238,\n 6314,\n 6347,\n 6348,\n 6380,\n 6408,\n 6409,\n 6577,\n 6605,\n 6606,\n 6707,\n 6737,\n 6738,\n 6805,\n 6833,\n 6834,\n 6904,\n 6939,\n 6940,\n 7029,\n 7056,\n 7057,\n 7107,\n 7140,\n 7141,\n 7182,\n 7205,\n 7206,\n 7301,\n 7359,\n 7360,\n 7380,\n 7418,\n 7419,\n 7563,\n 7595,\n 7596,\n 7708,\n 7735,\n 7736,\n 7796,\n 7821,\n 7822,\n 7915,\n 7943,\n 7944,\n 7995,\n 8029,\n 8030,\n 8096,\n 8130,\n 8131,\n 8236,\n 8268,\n 8269,\n 8309,\n 8339,\n 8340,\n 8423,\n 8454,\n 8455,\n 8571,\n 8622,\n 8623,\n 8673,\n 8709,\n 8710,\n 8784,\n 8844,\n 8845,\n 8919,\n 8979,\n 8980,\n 9044,\n 9099,\n 9100,\n 9151,\n 9184,\n 9185,\n 9264,\n 9300,\n 9301,\n 9318,\n 9353,\n 9354,\n 9438,\n 9525,\n 9526,\n 9607,\n 9661,\n 9662,\n 9680,\n 9714,\n 9715,\n 9770,\n 9812,\n 9813,\n 9885,\n 9922,\n 9923,\n 9989,\n 10022,\n 10023,\n 10068,\n 10102,\n 10103,\n 10193,\n 10231,\n 10232,\n 10287,\n 10323,\n 10324,\n 10437,\n 10468,\n 10469,\n 10549,\n 10612,\n 10613,\n 10685,\n 10761,\n 10762,\n 10817,\n 10859,\n 10860,\n 10925,\n 10955,\n 10956,\n 10986,\n 11055,\n 11056,\n 11106,\n 11136,\n 11137,\n 11220,\n 11258,\n 11259,\n 11288,\n 11323,\n 11324,\n 11461,\n 11496,\n 11497,\n 11560,\n 11586,\n 11587,\n 11665,\n 11702,\n 11703,\n 11741,\n 11770,\n 11771,\n 11822,\n 11860,\n 11861,\n 11936,\n 11964,\n 11965,\n 12068,\n 12097,\n 12098,\n 12162,\n 12191,\n 12192,\n 12263,\n 12306,\n 12307,\n 12376,\n 12404,\n 12405,\n 12471,\n 12507,\n 12508,\n 12575,\n 12610,\n 12611,\n 12673,\n 12708,\n 12709,\n 12789,\n 12823,\n 12824,\n 12874,\n 12921,\n 12922,\n 12977,\n 13030,\n 13031,\n 13104,\n 13166,\n 13167,\n 13189,\n 13235,\n 13236,\n 13298,\n 13330,\n 13331,\n 13373,\n 13412,\n 13413,\n 13526,\n 13608,\n 13609,\n 13707,\n 13746,\n 13747,\n 13787,\n 13821,\n 13822,\n 13942,\n 13994,\n 13995,\n 14097,\n 14153,\n 14154,\n 14204,\n 14241,\n 14242,\n 14305,\n 14344,\n 14345,\n 14433,\n 14472,\n 14473,\n 14525,\n 14561,\n 14562,\n 14638,\n 14683,\n 14684,\n 14752,\n 14790,\n 14791,\n 14838,\n 14871,\n 14872,\n 14994,\n 15025,\n 15026,\n 15099,\n 15145,\n 15146,\n 15192,\n 15231,\n 15232,\n 15350,\n 15390,\n 15391,\n 15463,\n 15501,\n 15502,\n 15575,\n 15617,\n 15618,\n 15657,\n 15712,\n 15713,\n 15803,\n 15885,\n 15886,\n 16036,\n 16087,\n 16088,\n 16167,\n 16222,\n 16223,\n 16294,\n 16333,\n 16334,\n 16407,\n 16451,\n 16452,\n 16540,\n 16577,\n 16578,\n 16634,\n 16676,\n 16677,\n 16758,\n 16797,\n 16798,\n 16860,\n 16898,\n 16899,\n 16944,\n 16977,\n 16978,\n 17020,\n 17051,\n 17052,\n 17148,\n 17180,\n 17181,\n 17284,\n 17312,\n 17313,\n 17428,\n 17456,\n 17457,\n 17506,\n 17533,\n 17534,\n 17622,\n 17655,\n 17656,\n 17757,\n 17797,\n 17798,\n 17838,\n 17880,\n 17881,\n 17943,\n 17980,\n 17981,\n 18058,\n 18118,\n 18119,\n 18210,\n 18239,\n 18240,\n 18292,\n 18318,\n 18319,\n 18398,\n 18427,\n 18428,\n 18535,\n 18568,\n 18569,\n 18613,\n 18643,\n 18644,\n 18708,\n 18752,\n 18753,\n 18816,\n 18865,\n 18866,\n 18930,\n 18968,\n 18969,\n 19063,\n 19095,\n 19096,\n 19227,\n 19276,\n 19277,\n 19391,\n 19418,\n 19419,\n 19546,\n 19582,\n 19583,\n 19625,\n 19658,\n 19659,\n 19838,\n 19874,\n 19875,\n 19965,\n 19995,\n 19996,\n 20090,\n 20123,\n 20124,\n 20215,\n 20277,\n 20278,\n 20353,\n 20391,\n 20392,\n 20463,\n 20501,\n 20502,\n 20662,\n 20727,\n 20728,\n 20805,\n 20842,\n 20843,\n 20957,\n 21035,\n 21036,\n 21104,\n 21141,\n 21142,\n 21215,\n 21247,\n 21248,\n 21359,\n 21399,\n 21400,\n 21452,\n 21477,\n 21478,\n 21535,\n 21568,\n 21569,\n 21596,\n 21631,\n 21632,\n 21715,\n 21758,\n 21759,\n 21832,\n 21863,\n 21864,\n 21921,\n 21954,\n 21955,\n 22026,\n 22059,\n 22060,\n 22145,\n 22175,\n 22176,\n 22252,\n 22285,\n 22286,\n 22401,\n 22434,\n 22435,\n 22519,\n 22550,\n 22551,\n 22631,\n 22664,\n 22665,\n 22707,\n 22737,\n 22738,\n 22805,\n 22838,\n 22839,\n 22908,\n 22937,\n 22938,\n 22994,\n 23023,\n 23024,\n 23101,\n 23141,\n 23142,\n 23212,\n 23249,\n 23250,\n 23315,\n 23348,\n 23349,\n 23446,\n 23475,\n 23476,\n 23540,\n 23589,\n 23590,\n 23639,\n 23681,\n 23682,\n 23739,\n 23769,\n 23770,\n 23879,\n 23917,\n 23918,\n 23973,\n 24006,\n 24007,\n 24098,\n 24131,\n 24132,\n 24215,\n 24248,\n 24249,\n 24331,\n 24360,\n 24361,\n 24435,\n 24473,\n 24474,\n 24580,\n 24625,\n 24626,\n 24731,\n 24761,\n 24762,\n 24888,\n 24955,\n 24956,\n 25009,\n 25043,\n 25044,\n 25135,\n 25189,\n 25190,\n 25277,\n 25312,\n 25313,\n 25384,\n 25417,\n 25418,\n 25504,\n 25543,\n 25544,\n 25665,\n 25699,\n 25700,\n 25785,\n 25862,\n 25863,\n 25954,\n 25993,\n 25994,\n 26113,\n 26148,\n 26149,\n 26206,\n 26235,\n 26236,\n 26380,\n 26428,\n 26429,\n 26578,\n 26615,\n 26616,\n 26730,\n 26768,\n 26769,\n 26861,\n 26889,\n 26890,\n 26962,\n 27005,\n 27006,\n 27085,\n 27120,\n 27121,\n 27154,\n 27188,\n 27189,\n 27227,\n 27259,\n 27260,\n 27284,\n 27316,\n 27317,\n 27349,\n 27386,\n 27387,\n 27433,\n 27479,\n 27480,\n 27549,\n 27590,\n 27591,\n 27684,\n 27724,\n 27725,\n 27825,\n 27872,\n 27873,\n 27991,\n 28031,\n 28032,\n 28143,\n 28184,\n 28185,\n 28345,\n 28395,\n 28396,\n 28457,\n 28496,\n 28497,\n 28593,\n 28622,\n 28623,\n 28777,\n 28830,\n 28831,\n 28914,\n 28967,\n 28968,\n 29061,\n 29102,\n 29103,\n 29154,\n 29193,\n 29194,\n 29286,\n 29320,\n 29321,\n 29375,\n 29414,\n 29415,\n 29544,\n 29580,\n 29581,\n 29722,\n 29775,\n 29776,\n 29924,\n 29979,\n 29980,\n 30081,\n 30127,\n 30128,\n 30191,\n 30228,\n 30229,\n 30373,\n 30412,\n 30413,\n 30527,\n 30570,\n 30571,\n 30633,\n 30664,\n 30665,\n 30831,\n 30866,\n 30867,\n 30958,\n 30998,\n 30999,\n 31076,\n 31111,\n 31112,\n 31203,\n 31204\n ],\n \"line_end_idx\": [\n 22,\n 23,\n 51,\n 52,\n 117,\n 118,\n 174,\n 199,\n 200,\n 285,\n 308,\n 309,\n 391,\n 432,\n 433,\n 548,\n 584,\n 585,\n 637,\n 663,\n 664,\n 749,\n 785,\n 786,\n 836,\n 862,\n 863,\n 946,\n 980,\n 981,\n 1010,\n 1090,\n 1091,\n 1126,\n 1176,\n 1177,\n 1271,\n 1313,\n 1314,\n 1366,\n 1425,\n 1426,\n 1488,\n 1536,\n 1537,\n 1580,\n 1624,\n 1625,\n 1703,\n 1738,\n 1739,\n 1761,\n 1805,\n 1806,\n 1828,\n 1855,\n 1856,\n 1869,\n 1905,\n 1906,\n 1998,\n 2034,\n 2035,\n 2075,\n 2151,\n 2152,\n 2254,\n 2289,\n 2290,\n 2353,\n 2381,\n 2382,\n 2505,\n 2531,\n 2532,\n 2604,\n 2633,\n 2634,\n 2739,\n 2776,\n 2777,\n 2869,\n 2957,\n 2958,\n 3051,\n 3115,\n 3116,\n 3211,\n 3275,\n 3276,\n 3340,\n 3369,\n 3370,\n 3436,\n 3472,\n 3473,\n 3509,\n 3545,\n 3546,\n 3620,\n 3678,\n 3679,\n 3739,\n 3769,\n 3770,\n 3866,\n 3902,\n 3903,\n 3932,\n 3964,\n 3965,\n 3989,\n 4026,\n 4027,\n 4151,\n 4239,\n 4240,\n 4293,\n 4322,\n 4323,\n 4409,\n 4446,\n 4447,\n 4499,\n 4555,\n 4556,\n 4627,\n 4715,\n 4716,\n 4800,\n 4832,\n 4833,\n 4907,\n 4946,\n 4947,\n 5011,\n 5068,\n 5069,\n 5156,\n 5192,\n 5193,\n 5274,\n 5331,\n 5332,\n 5414,\n 5439,\n 5440,\n 5499,\n 5537,\n 5538,\n 5589,\n 5630,\n 5631,\n 5710,\n 5748,\n 5749,\n 5787,\n 5825,\n 5826,\n 5854,\n 5889,\n 5890,\n 5965,\n 6009,\n 6010,\n 6058,\n 6088,\n 6089,\n 6135,\n 6167,\n 6168,\n 6211,\n 6237,\n 6238,\n 6314,\n 6347,\n 6348,\n 6380,\n 6408,\n 6409,\n 6577,\n 6605,\n 6606,\n 6707,\n 6737,\n 6738,\n 6805,\n 6833,\n 6834,\n 6904,\n 6939,\n 6940,\n 7029,\n 7056,\n 7057,\n 7107,\n 7140,\n 7141,\n 7182,\n 7205,\n 7206,\n 7301,\n 7359,\n 7360,\n 7380,\n 7418,\n 7419,\n 7563,\n 7595,\n 7596,\n 7708,\n 7735,\n 7736,\n 7796,\n 7821,\n 7822,\n 7915,\n 7943,\n 7944,\n 7995,\n 8029,\n 8030,\n 8096,\n 8130,\n 8131,\n 8236,\n 8268,\n 8269,\n 8309,\n 8339,\n 8340,\n 8423,\n 8454,\n 8455,\n 8571,\n 8622,\n 8623,\n 8673,\n 8709,\n 8710,\n 8784,\n 8844,\n 8845,\n 8919,\n 8979,\n 8980,\n 9044,\n 9099,\n 9100,\n 9151,\n 9184,\n 9185,\n 9264,\n 9300,\n 9301,\n 9318,\n 9353,\n 9354,\n 9438,\n 9525,\n 9526,\n 9607,\n 9661,\n 9662,\n 9680,\n 9714,\n 9715,\n 9770,\n 9812,\n 9813,\n 9885,\n 9922,\n 9923,\n 9989,\n 10022,\n 10023,\n 10068,\n 10102,\n 10103,\n 10193,\n 10231,\n 10232,\n 10287,\n 10323,\n 10324,\n 10437,\n 10468,\n 10469,\n 10549,\n 10612,\n 10613,\n 10685,\n 10761,\n 10762,\n 10817,\n 10859,\n 10860,\n 10925,\n 10955,\n 10956,\n 10986,\n 11055,\n 11056,\n 11106,\n 11136,\n 11137,\n 11220,\n 11258,\n 11259,\n 11288,\n 11323,\n 11324,\n 11461,\n 11496,\n 11497,\n 11560,\n 11586,\n 11587,\n 11665,\n 11702,\n 11703,\n 11741,\n 11770,\n 11771,\n 11822,\n 11860,\n 11861,\n 11936,\n 11964,\n 11965,\n 12068,\n 12097,\n 12098,\n 12162,\n 12191,\n 12192,\n 12263,\n 12306,\n 12307,\n 12376,\n 12404,\n 12405,\n 12471,\n 12507,\n 12508,\n 12575,\n 12610,\n 12611,\n 12673,\n 12708,\n 12709,\n 12789,\n 12823,\n 12824,\n 12874,\n 12921,\n 12922,\n 12977,\n 13030,\n 13031,\n 13104,\n 13166,\n 13167,\n 13189,\n 13235,\n 13236,\n 13298,\n 13330,\n 13331,\n 13373,\n 13412,\n 13413,\n 13526,\n 13608,\n 13609,\n 13707,\n 13746,\n 13747,\n 13787,\n 13821,\n 13822,\n 13942,\n 13994,\n 13995,\n 14097,\n 14153,\n 14154,\n 14204,\n 14241,\n 14242,\n 14305,\n 14344,\n 14345,\n 14433,\n 14472,\n 14473,\n 14525,\n 14561,\n 14562,\n 14638,\n 14683,\n 14684,\n 14752,\n 14790,\n 14791,\n 14838,\n 14871,\n 14872,\n 14994,\n 15025,\n 15026,\n 15099,\n 15145,\n 15146,\n 15192,\n 15231,\n 15232,\n 15350,\n 15390,\n 15391,\n 15463,\n 15501,\n 15502,\n 15575,\n 15617,\n 15618,\n 15657,\n 15712,\n 15713,\n 15803,\n 15885,\n 15886,\n 16036,\n 16087,\n 16088,\n 16167,\n 16222,\n 16223,\n 16294,\n 16333,\n 16334,\n 16407,\n 16451,\n 16452,\n 16540,\n 16577,\n 16578,\n 16634,\n 16676,\n 16677,\n 16758,\n 16797,\n 16798,\n 16860,\n 16898,\n 16899,\n 16944,\n 16977,\n 16978,\n 17020,\n 17051,\n 17052,\n 17148,\n 17180,\n 17181,\n 17284,\n 17312,\n 17313,\n 17428,\n 17456,\n 17457,\n 17506,\n 17533,\n 17534,\n 17622,\n 17655,\n 17656,\n 17757,\n 17797,\n 17798,\n 17838,\n 17880,\n 17881,\n 17943,\n 17980,\n 17981,\n 18058,\n 18118,\n 18119,\n 18210,\n 18239,\n 18240,\n 18292,\n 18318,\n 18319,\n 18398,\n 18427,\n 18428,\n 18535,\n 18568,\n 18569,\n 18613,\n 18643,\n 18644,\n 18708,\n 18752,\n 18753,\n 18816,\n 18865,\n 18866,\n 18930,\n 18968,\n 18969,\n 19063,\n 19095,\n 19096,\n 19227,\n 19276,\n 19277,\n 19391,\n 19418,\n 19419,\n 19546,\n 19582,\n 19583,\n 19625,\n 19658,\n 19659,\n 19838,\n 19874,\n 19875,\n 19965,\n 19995,\n 19996,\n 20090,\n 20123,\n 20124,\n 20215,\n 20277,\n 20278,\n 20353,\n 20391,\n 20392,\n 20463,\n 20501,\n 20502,\n 20662,\n 20727,\n 20728,\n 20805,\n 20842,\n 20843,\n 20957,\n 21035,\n 21036,\n 21104,\n 21141,\n 21142,\n 21215,\n 21247,\n 21248,\n 21359,\n 21399,\n 21400,\n 21452,\n 21477,\n 21478,\n 21535,\n 21568,\n 21569,\n 21596,\n 21631,\n 21632,\n 21715,\n 21758,\n 21759,\n 21832,\n 21863,\n 21864,\n 21921,\n 21954,\n 21955,\n 22026,\n 22059,\n 22060,\n 22145,\n 22175,\n 22176,\n 22252,\n 22285,\n 22286,\n 22401,\n 22434,\n 22435,\n 22519,\n 22550,\n 22551,\n 22631,\n 22664,\n 22665,\n 22707,\n 22737,\n 22738,\n 22805,\n 22838,\n 22839,\n 22908,\n 22937,\n 22938,\n 22994,\n 23023,\n 23024,\n 23101,\n 23141,\n 23142,\n 23212,\n 23249,\n 23250,\n 23315,\n 23348,\n 23349,\n 23446,\n 23475,\n 23476,\n 23540,\n 23589,\n 23590,\n 23639,\n 23681,\n 23682,\n 23739,\n 23769,\n 23770,\n 23879,\n 23917,\n 23918,\n 23973,\n 24006,\n 24007,\n 24098,\n 24131,\n 24132,\n 24215,\n 24248,\n 24249,\n 24331,\n 24360,\n 24361,\n 24435,\n 24473,\n 24474,\n 24580,\n 24625,\n 24626,\n 24731,\n 24761,\n 24762,\n 24888,\n 24955,\n 24956,\n 25009,\n 25043,\n 25044,\n 25135,\n 25189,\n 25190,\n 25277,\n 25312,\n 25313,\n 25384,\n 25417,\n 25418,\n 25504,\n 25543,\n 25544,\n 25665,\n 25699,\n 25700,\n 25785,\n 25862,\n 25863,\n 25954,\n 25993,\n 25994,\n 26113,\n 26148,\n 26149,\n 26206,\n 26235,\n 26236,\n 26380,\n 26428,\n 26429,\n 26578,\n 26615,\n 26616,\n 26730,\n 26768,\n 26769,\n 26861,\n 26889,\n 26890,\n 26962,\n 27005,\n 27006,\n 27085,\n 27120,\n 27121,\n 27154,\n 27188,\n 27189,\n 27227,\n 27259,\n 27260,\n 27284,\n 27316,\n 27317,\n 27349,\n 27386,\n 27387,\n 27433,\n 27479,\n 27480,\n 27549,\n 27590,\n 27591,\n 27684,\n 27724,\n 27725,\n 27825,\n 27872,\n 27873,\n 27991,\n 28031,\n 28032,\n 28143,\n 28184,\n 28185,\n 28345,\n 28395,\n 28396,\n 28457,\n 28496,\n 28497,\n 28593,\n 28622,\n 28623,\n 28777,\n 28830,\n 28831,\n 28914,\n 28967,\n 28968,\n 29061,\n 29102,\n 29103,\n 29154,\n 29193,\n 29194,\n 29286,\n 29320,\n 29321,\n 29375,\n 29414,\n 29415,\n 29544,\n 29580,\n 29581,\n 29722,\n 29775,\n 29776,\n 29924,\n 29979,\n 29980,\n 30081,\n 30127,\n 30128,\n 30191,\n 30228,\n 30229,\n 30373,\n 30412,\n 30413,\n 30527,\n 30570,\n 30571,\n 30633,\n 30664,\n 30665,\n 30831,\n 30866,\n 30867,\n 30958,\n 30998,\n 30999,\n 31076,\n 31111,\n 31112,\n 31203,\n 31204,\n 31210\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 31210,\n \"ccnet_original_nlines\": 800,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.11001615971326828,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.019224559888243675,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3158319890499115,\n \"rps_doc_frac_unique_words\": 0.2581755518913269,\n \"rps_doc_mean_word_length\": 5.2999138832092285,\n \"rps_doc_num_sentences\": 201,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.950671672821045,\n \"rps_doc_word_count\": 4648,\n \"rps_doc_frac_chars_dupe_10grams\": 0.07518064230680466,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2473410665988922,\n \"rps_doc_frac_chars_dupe_6grams\": 0.1861654669046402,\n \"rps_doc_frac_chars_dupe_7grams\": 0.16229601204395294,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1470731496810913,\n \"rps_doc_frac_chars_dupe_9grams\": 0.10481447726488113,\n \"rps_doc_frac_chars_top_2gram\": 0.03945766016840935,\n \"rps_doc_frac_chars_top_3gram\": 0.057846881449222565,\n \"rps_doc_frac_chars_top_4gram\": 0.04465372860431671,\n \"rps_doc_books_importance\": -3172.280517578125,\n \"rps_doc_books_importance_length_correction\": -3172.280517578125,\n \"rps_doc_openwebtext_importance\": -1775.2838134765625,\n \"rps_doc_openwebtext_importance_length_correction\": -1775.2838134765625,\n \"rps_doc_wikipedia_importance\": -992.309326171875,\n \"rps_doc_wikipedia_importance_length_correction\": -992.309326171875\n },\n \"fasttext\": {\n \"dclm\": -0.000009890000001178123,\n \"english\": 0.8558091521263123,\n \"fineweb_edu_approx\": 1.5464881658554077,\n \"eai_general_math\": 0.00003052000101888552,\n \"eai_open_web_math\": 0.3946745991706848,\n \"eai_web_code\": -0.000009890000001178123\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"378.196\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Education\",\n \"level_3\": \"Education, Higher and Universities and colleges\"\n }\n },\n \"secondary\": {\n \"code\": \"320.956\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Metacognitive\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":262,"cells":{"id":{"kind":"number","value":832777717084448100,"string":"832,777,717,084,448,100"},"text":{"kind":"string","value":"7 Worlds Collide\n\n7 Worlds Collide\n • Websites:\n • Bio: The first 7 Worlds Collide album, a collection of amazing musical talents from across the globe in aid of Médecins Sans Frontières, was a unique live performance experience ... (more)\n • Bio: The first 7 Worlds Collide album, a collection of amazing musical talents from across the globe in aid of Médecins Sans Frontières, was a unique live performance experience, fusing the varied talents of a stellar cast across a range of cover versions to create a series of shows that culminated in the live album of the same name. Seven years after that project, instigator Neil Finn has upped the ante with the new 7 Worlds Collide project, The Sun Came Out, a double album of original songs created and recorded by many of the original cast alongside notable new additions in an intense three weeks in his native New Zealand. This time the beneficiaries of this album will be Oxfam, as well as music lovers worldwide.\n\n Familiar faces from the original album abound, Johnny Marr, Ed O’Brien and Phil Selway of Radiohead but this album, first and foremost presents the listener with new songs rather than interpretations of old favourites. The Sun Came Out also features a whole host of new guest talents such as KT Tunstall and Wilco and heart stopping firsts, including Phil Selway's songwriting and vocal debut as well as dream collaborations such as those between Johnny Marr and Wilco's Jeff Tweedy; and KT Tunstall and Neil Finn .\n\n At the heart of the record is Neil Finn. His enthusiasm and drive persuaded the likes of celebrated producer Jim Scott, Lisa Germano, Johnny Marr and Wilco’s Jeff Tweedy, Pat Sansone, John Stirratt and Glenn Kotche (amongst others) to spend their Christmas holiday in New Zealand and even interrupted KT Tunstall’s honeymoon in the process.\n\n With families welcome, the studio became a constant whirl of creativity and energy throughout the three weeks allocated to create the record. Johnny Marr returned from a run on the beach with the basis of ‘Too Blue’, where Jeff Tweedy was waiting to add his talents; KT Tunstall stopped Neil retiring to his bed to complete ‘Hazel Black’; a wandering Johnny Marr added a chorus melody to Liam Finn’s ‘Red Wine Bottle’; Ed O’Brien fashioned ‘Bodhisattva Blues’ from a Tibetan chant. In this atmosphere, anything was possible and Neil’s wife Sharon found herself laying down her debut vocal on ‘Little By Little’ whilst Phil Selway also took his vocal bow and unveiled a hitherto unknown songwriting talent with his solo turn ‘The Ties That Bind Us’ in one take.\n\n From Neil’s original doubts over the idea, “I thought, what is this? Is it just an ego thing,”came a double album of astounding collaborations for the listener and amazing memories for all those concerned in the recording. At the center of it all stands Neil Finn, too humble to take the glory himself, it is left to KT Tunstall to give the credit due to the man who made this happen: “It’s Neil. It all comes from him. There’s something about him that made everyone open up creatively.”\n\n Jeremy Hobbs, Director of Oxfam International said: \"7 Worlds Collide is a great project. I hope The Sun Came Out is a huge success. Not just because it's a unique musical experience but because each CD sold will make a difference -- raising money to fund Oxfam's work to fight poverty.\"\n (less)\n\nThe Sun Came Out\n\nThe Sun Came Out\n • 01\n download | share\n Please do not rehost this download."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://rcrdlbl.com/artists/7_Worlds_Collide/\",\n \"source_domain\": \"rcrdlbl.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"25187\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:RVO3BUMOG4BIYGIAI5DRN6A26XTMW5PU\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T01:46:23Z\",\n \"WARC-IP-Address\": \"184.169.145.63\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:3BLT6GZ7O533ROFM3I4KDXAFEED24A2A\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://rcrdlbl.com/artists/7_Worlds_Collide/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 17,\n 18,\n 35,\n 49,\n 242,\n 971,\n 972,\n 1492,\n 1493,\n 1838,\n 1839,\n 2604,\n 2605,\n 3097,\n 3098,\n 3390,\n 3401,\n 3402,\n 3419,\n 3420,\n 3437,\n 3444,\n 3465\n ],\n \"line_end_idx\": [\n 17,\n 18,\n 35,\n 49,\n 242,\n 971,\n 972,\n 1492,\n 1493,\n 1838,\n 1839,\n 2604,\n 2605,\n 3097,\n 3098,\n 3390,\n 3401,\n 3402,\n 3419,\n 3420,\n 3437,\n 3444,\n 3465,\n 3504\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3504,\n \"ccnet_original_nlines\": 23,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.35395681858062744,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.014388489536941051,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.14244604110717773,\n \"rps_doc_frac_unique_words\": 0.5092748403549194,\n \"rps_doc_mean_word_length\": 4.708262920379639,\n \"rps_doc_num_sentences\": 20,\n \"rps_doc_symbol_to_word_ratio\": 0.0014388499548658729,\n \"rps_doc_unigram_entropy\": 5.2297139167785645,\n \"rps_doc_word_count\": 593,\n \"rps_doc_frac_chars_dupe_10grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_dupe_5grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_dupe_6grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_dupe_9grams\": 0.1067335233092308,\n \"rps_doc_frac_chars_top_2gram\": 0.015042980201542377,\n \"rps_doc_frac_chars_top_3gram\": 0.030085960403084755,\n \"rps_doc_frac_chars_top_4gram\": 0.023280799388885498,\n \"rps_doc_books_importance\": -332.85504150390625,\n \"rps_doc_books_importance_length_correction\": -332.85504150390625,\n \"rps_doc_openwebtext_importance\": -178.74449157714844,\n \"rps_doc_openwebtext_importance_length_correction\": -178.74449157714844,\n \"rps_doc_wikipedia_importance\": -123.4899673461914,\n \"rps_doc_wikipedia_importance_length_correction\": -123.4899673461914\n },\n \"fasttext\": {\n \"dclm\": 0.0071146502159535885,\n \"english\": 0.9376986026763916,\n \"fineweb_edu_approx\": 1.0567569732666016,\n \"eai_general_math\": 0.004489480052143335,\n \"eai_open_web_math\": 0.05788356065750122,\n \"eai_web_code\": 0.0007216300000436604\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"782.4216\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Music\",\n \"level_3\": \"Dramatic music\"\n }\n },\n \"secondary\": {\n \"code\": \"362.4\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Hospitals, Asylums, and Human services\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":263,"cells":{"id":{"kind":"number","value":2697718154962630000,"string":"2,697,718,154,962,630,000"},"text":{"kind":"string","value":"East Africa: Additional Ugandan and S. Sudanese Troops Join Anti-LRA Force\n\nPhoto: Arhur Kintu/New Vision\nSudanese soldiers ready for combat: Sudan People's Liberation Army sent 500 soldiers to join the African Union task force.\n\nJuba — The African Union-initiated Regional Task Force (RTF), established to hunt down the Lord's Resistance Army (LRA) rebels, on Tuesday received 2,000 soldiers from the Ugandan army (UPDF) and 500 from South Sudan army (SPLA).\n\nCommanders of the AU Regional Task Force pose for a photo in Juba, South Sudan, March 24, 2012 (ST)\n\nThe 2,500 troops were handed over to RTF at their base in Yambio, the provincial capital of South Sudan's Western Equatoria state.\n\nAbou Moussa, the Special Representative of the United Nations Secretary General, said the handover of the additional troops signal the RTF's collective efforts to put an end to the activities of the LRA, which has caused untold suffering to populations in affected countries.\n\nIn March this year, four African countries, with the backing of the UN and the AU officially launched a joint military task force aimed at pursuing the LRA rebels and its elusive leader, Joseph Kony.\n\nThe first batch of the RTF initially comprised of about 5,000 soldiers from Uganda, South Sudan, the Democratic Republic of Congo (DRC) and Central Africa Republic (CAR) initially made up the first batch of the RTF.\n\nThese are nations that have been greatly affected by over two-decade of the LRA insurgency.\n\nMousa, also the Head of the UN Regional Office for Central Africa (UNOCA), which coordinates UN efforts to address the threat posed by the LRA, further lauded efforts and commitment of these countries towards ending the insurgency, despite other pressing national priorities.\n\nHe pledged the UN's continued support to the African regional body and other partners, in the implementation of the regional strategy against the LRA, which was adopted by the UN Security Council on 29 June 2012.\n\nMoussa, who was on a two-day visit to South Sudan, however, emphasized the need for quick implement the strategy, if the RTF is to achieve its mandate against the LRA problem.\n\nThe UN, he acknowledged, have been very instrumental in addressing the threat posed by the LRA, specifically citing the UN Mission for Stabilization in Democratic Republic of Congo (MONUSCO) and the United Nations Mission in South Sudan (UNMISS), which provide support to national authorities in the two countries in their responses to the LRA.\n\n\"The UN Peacekeepers have been offering military escorts and patrols in and around villages and towns where the LRA has been seen, thereby maintaining a level of security that has saved lives\", said Moussa, in a statement extended to Sudan Tribune.\n\nMeanwhile, the AU Special Envoy for the LRA issue, Francisco Madeira, said the RFT, despite making some progress, still faces logistical, material and financial resource challenges, which limits their operations.\n\nThe event comes barely a week after 360 soldiers of the Forces Armées Centrafricaines (FACA) were handed over to the AU on 12 September, in CAR, while additional troops are also expected from the DRC in the near future.\n\n • Comment\n\nCopyright © 2012 Sudan Tribune. All rights reserved. Distributed by AllAfrica Global Media (allAfrica.com). To contact the copyright holder directly for corrections — or for permission to republish or make other authorized use of this material, click here.\n\nAllAfrica aggregates and indexes content from over 130 African news organizations, plus more than 200 other sources, who are responsible for their own reporting and views. Articles and commentaries that identify allAfrica.com as the publisher are produced or commissioned by AllAfrica.\n\nComments Post a comment\n\nInFocus\n\nAfrican Union Steps Up Hunt For Joseph Kony Rebels\n\npicture\n\nThe United Nations has welcomed the addition of 2,500 soldiers to an African Union task force assigned to hunt down Lord's Resistance Army rebels, who have terrorized northern ... Read more »"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://allafrica.com/stories/201209190557.html\",\n \"source_domain\": \"allafrica.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"55267\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:LQ5A4WM4J4MABLQ6K6QDORJR2A5K53ZC\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T03:19:41Z\",\n \"WARC-IP-Address\": \"173.203.36.104\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:HAWW6CZPUX4YTEDOW2DBAPJO4BUMYNPC\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://allafrica.com/stories/201209190557.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 75,\n 76,\n 106,\n 229,\n 230,\n 460,\n 461,\n 561,\n 562,\n 693,\n 694,\n 970,\n 971,\n 1171,\n 1172,\n 1388,\n 1389,\n 1481,\n 1482,\n 1758,\n 1759,\n 1972,\n 1973,\n 2149,\n 2150,\n 2495,\n 2496,\n 2745,\n 2746,\n 2959,\n 2960,\n 3180,\n 3181,\n 3193,\n 3194,\n 3451,\n 3452,\n 3738,\n 3739,\n 3763,\n 3764,\n 3772,\n 3773,\n 3824,\n 3825,\n 3833,\n 3834\n ],\n \"line_end_idx\": [\n 75,\n 76,\n 106,\n 229,\n 230,\n 460,\n 461,\n 561,\n 562,\n 693,\n 694,\n 970,\n 971,\n 1171,\n 1172,\n 1388,\n 1389,\n 1481,\n 1482,\n 1758,\n 1759,\n 1972,\n 1973,\n 2149,\n 2150,\n 2495,\n 2496,\n 2745,\n 2746,\n 2959,\n 2960,\n 3180,\n 3181,\n 3193,\n 3194,\n 3451,\n 3452,\n 3738,\n 3739,\n 3763,\n 3764,\n 3772,\n 3773,\n 3824,\n 3825,\n 3833,\n 3834,\n 4025\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4025,\n \"ccnet_original_nlines\": 47,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3381389379501343,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.05635648965835571,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.17038008570671082,\n \"rps_doc_frac_unique_words\": 0.48750001192092896,\n \"rps_doc_mean_word_length\": 5.073437690734863,\n \"rps_doc_num_sentences\": 25,\n \"rps_doc_symbol_to_word_ratio\": 0.001310619991272688,\n \"rps_doc_unigram_entropy\": 5.1806817054748535,\n \"rps_doc_word_count\": 640,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.02648599073290825,\n \"rps_doc_frac_chars_dupe_6grams\": 0.02648599073290825,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.01693871058523655,\n \"rps_doc_frac_chars_top_3gram\": 0.014782880432903767,\n \"rps_doc_frac_chars_top_4gram\": 0.01293502002954483,\n \"rps_doc_books_importance\": -388.1764221191406,\n \"rps_doc_books_importance_length_correction\": -388.1764221191406,\n \"rps_doc_openwebtext_importance\": -198.92752075195312,\n \"rps_doc_openwebtext_importance_length_correction\": -198.92752075195312,\n \"rps_doc_wikipedia_importance\": -161.52212524414062,\n \"rps_doc_wikipedia_importance_length_correction\": -161.52212524414062\n },\n \"fasttext\": {\n \"dclm\": 0.0026628999039530754,\n \"english\": 0.9475252628326416,\n \"fineweb_edu_approx\": 2.1519510746002197,\n \"eai_general_math\": 0.005125110037624836,\n \"eai_open_web_math\": 0.12611454725265503,\n \"eai_web_code\": 0.00026733000413514674\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"355.4\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Public administration and Military art and science\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"327.6969\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"International relations and World politics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":264,"cells":{"id":{"kind":"number","value":8528091782118177000,"string":"8,528,091,782,118,177,000"},"text":{"kind":"string","value":"Gun sales boom as election looms - KCBD NewsChannel 11 Lubbock\n\nGun sales boom as election looms\n\nPosted: Updated:\nLUBBOCK, TX (KCBD) -\n\nGun sales nationwide are through the roof and some speculate the looming election may be to blame.\n\nSharpshooters Inc. in Lubbock says they often see an increase in gun sales come election season, but it's never been this drastic. They estimate a 40 percent increase in their sales recently.\n\nLast year, the FBI received over 16 million background check inquiries for potential gun buyers. Texas accounted for one million of these requests over each of the past four years. Texas came second only to Kentucky, which had nearly double the amount of requests.\n\nJ.D. Clay is a salesman at Sharpshooters. He says a lot of customers come in because they're concerned about the future of their second amendment rights if Obama is elected again.\n\n\"Now that it's election season again, you have people uncertain… You have a customer or two coming in and saying that they're buying because they're afraid they won't be able to get it soon,\" Clay said.\n\nClay said that if Obama were to pass legislation banning some types of firearms that it wouldn't be the first time. In 1994, President Bill Clinton signed a bill that banned certain assault weapons, but it expired ten years later. Months after he signed that bill, voters went to the polls and both the House and the Senate flipped control from Democratic to Republican.\n\nLubbock County Democratic Party Chair Pam Brink was shocked to hear people were trying to correlate the two. She said Americans love their guns and that this was totally out of the blue.\n\n\"President Obama has not changed his gun policy in the four years he's been in office. In fact, he's been generous,\" Brink said.\n\nBrink believes that the boom in gun sales shows that the economy has improved. She says now that people have more cash in their pockets, they're going out to purchase the things they love.\n\nAlthough Sharpshooters is enjoying the business increase, they don't believe this is a huge issue and they're not worried they'll have to put down their guns anytime soon.\n\nCopyright 2012 KCBD. All rights reserved."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.kcbd.com/story/17151444/gun-sales-boom-as-election-looms\",\n \"source_domain\": \"www.kcbd.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"40643\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2VQGLJJJBQV2VLACV46FS7RJ5GPG3CCV\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T16:39:19Z\",\n \"WARC-IP-Address\": \"165.254.27.91\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:4FFNQCBSL56UMRJCVXNBH6A2VCSWHL3W\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.kcbd.com/story/17151444/gun-sales-boom-as-election-looms\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 63,\n 64,\n 97,\n 98,\n 115,\n 136,\n 137,\n 236,\n 237,\n 429,\n 430,\n 695,\n 696,\n 876,\n 877,\n 1080,\n 1081,\n 1452,\n 1453,\n 1640,\n 1641,\n 1770,\n 1771,\n 1960,\n 1961,\n 2133,\n 2134\n ],\n \"line_end_idx\": [\n 63,\n 64,\n 97,\n 98,\n 115,\n 136,\n 137,\n 236,\n 237,\n 429,\n 430,\n 695,\n 696,\n 876,\n 877,\n 1080,\n 1081,\n 1452,\n 1453,\n 1640,\n 1641,\n 1770,\n 1771,\n 1960,\n 1961,\n 2133,\n 2134,\n 2175\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2175,\n \"ccnet_original_nlines\": 27,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.44343891739845276,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.018099550157785416,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.14479638636112213,\n \"rps_doc_frac_unique_words\": 0.5555555820465088,\n \"rps_doc_mean_word_length\": 4.693767070770264,\n \"rps_doc_num_sentences\": 24,\n \"rps_doc_symbol_to_word_ratio\": 0.0022624400444328785,\n \"rps_doc_unigram_entropy\": 5.009943008422852,\n \"rps_doc_word_count\": 369,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.031177829951047897,\n \"rps_doc_frac_chars_dupe_6grams\": 0.031177829951047897,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02309468947350979,\n \"rps_doc_frac_chars_top_3gram\": 0.013856809586286545,\n \"rps_doc_frac_chars_top_4gram\": 0.01616627909243107,\n \"rps_doc_books_importance\": -192.59507751464844,\n \"rps_doc_books_importance_length_correction\": -192.59507751464844,\n \"rps_doc_openwebtext_importance\": -94.98883056640625,\n \"rps_doc_openwebtext_importance_length_correction\": -94.98883056640625,\n \"rps_doc_wikipedia_importance\": -50.140987396240234,\n \"rps_doc_wikipedia_importance_length_correction\": -50.140987396240234\n },\n \"fasttext\": {\n \"dclm\": 0.02638917975127697,\n \"english\": 0.9908638000488281,\n \"fineweb_edu_approx\": 1.1197822093963623,\n \"eai_general_math\": 0.0016703000292181969,\n \"eai_open_web_math\": 0.023060740903019905,\n \"eai_web_code\": 0.00039892998756840825\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"323.119\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"Human rights, Ethnic relations, Race relations, and Minorities\"\n }\n },\n \"secondary\": {\n \"code\": \"338.476\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":265,"cells":{"id":{"kind":"number","value":8144780344858929000,"string":"8,144,780,344,858,929,000"},"text":{"kind":"string","value":" \n\nYou no longer follow Thomas\n\nYou will no longer see updates from this user when they write new reviews, or suggestions based on their library or recommendations.\n\nYou can re-follow a user if you change your mind.\n\nOK\n\nYou now follow Thomas\n\nYou will receive updates from this user when they write new reviews, or suggestions based on their library or recommendations.\n\nYou can unfollow a user if you change your mind.\n\nOK\n\nThomas\n\nJasper, IN, United States | Member Since 2011\n\n2\nHELPFUL VOTES\n • 3 reviews\n • 4 ratings\n • 85 titles in library\n • 8 purchased in 2013\nFOLLOWING\n0\nFOLLOWERS\n0\n\n • Listening Is an Act of Love\n\n • ABRIDGED (55 mins)\n • By Dave Isay\n • Narrated By Dave Isay\n Overall\n (1243)\n Performance\n (1045)\n Story\n (1050)\n\n Drawn from the work of StoryCorps, the largest and most ambitious private oral history project in American history, comes this tapestry of the stories Americans have been sharing from their lives to leave behind to their loved ones.\n\n Debra says: \"Touching\"\n \"Awesome Stories\"\n Overall\n Performance\n Story\n What did you love best about Listening Is an Act of Love?\n\n This is an awesome listen, we need to hear these stories to help stay grounded.\n\n\n What did you like best about this story?\n\n the realness of the stories\n\n\n Which character – as performed by Dave Isay – was your favorite?\n\n All of them\n\n\n Was this a book you wanted to listen to all in one sitting?\n\n most definetly\n\n\n 0 of 0 people found this review helpful\n • The Energy Bus: 10 Rules to Fuel Your Life, Work, and Team with Positive Energy\n\n • UNABRIDGED (2 hrs and 53 mins)\n • By Jon Gordon\n • Narrated By Jon Gordon\n • Whispersync for Voice-ready\n Overall\n (153)\n Performance\n (84)\n Story\n (82)\n\n In the mode of other best selling business fables The Energy Bus, takes listeners on an enlightening and inspiring ride that reveals 10 secrets for approaching life and work with the kind of positive, forward thinking that leads to true accomplishment - at work and at home. Everyone faces challenges. And every person, organization, company and team will have to overcome negativity and adversity to define themselves and create their success.\n\n Shemia says: \"Simple, straightforward\"\n \"Awesome informative read\"\n Overall\n Performance\n Story\n What made the experience of listening to The Energy Bus the most enjoyable?\n\n It was exactly what I was needing, when I needed it\n\n\n What did you like best about this story?\n\n It was put in a way that made it easy to understand, and a way that everyone could relate too.\n\n\n What does Jon Gordon bring to the story that you wouldn’t experience if you just read the book?\n\n I think so, he can tell it the way it is suppose to be said.\n\n\n What did you learn from The Energy Bus that you would use in your daily life?\n\n That a good positive mental outlook and positive energy will go a lot further than the opposite.\n\n\n 0 of 0 people found this review helpful\n • Start Something That Matters\n\n • UNABRIDGED (4 hrs and 50 mins)\n • By Blake Mycoskie\n • Narrated By Blake Mycoskie\n Overall\n (180)\n Performance\n (163)\n Story\n (162)\n\n What matters most to you? Should you focus on earning a living, pursuing your passions, or devoting yourself to the causes that inspire you? The surprising truth is that you don’t have to choose—and that you’ll find more success if you don’t. That’s the breakthrough message of the TOMS One for One movement. You don’t have to be rich to give back and you don’t have to retire to spend every day doing what you love. You can find profit, passion, and meaning all at once—right now.\n\n Thundersinspring says: \"My eyes welled up several times!\"\n \"AWESOME\"\n Overall\n Performance\n Story\n Would you recommend this audiobook to a friend? If so, why?\n\n I have recommended this books to many friends, already I just love the story but also the fact that it gives you resoiurces to use to follow your own passion to be able to \"Start something that Matters\"\n\n\n What did you like best about this story?\n\n His Story on how he got started and then how his ideas began to grow.\n\n\n Which character – as performed by Blake Mycoskie – was your favorite?\n\n Blake himself\n\n\n Was this a book you wanted to listen to all in one sitting?\n\n I've listened to it twice now and have gone out a baught a copy to tab and highlight for future references.\n\n\n Any additional comments?\n\n I would encourage everyone with a passion about anything to go and read this one.\n\n 2 of 2 people found this review helpful\n\nReport Inappropriate Content\n\nIf you find this review inappropriate and think it should be removed from our site, let us know. This report will be reviewed by Audible and we will take appropriate action.\n\nCANCEL\n\nThank You\n\nYour report has been received. It will be reviewed by Audible and we will take appropriate action."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.audible.com/listener/A3SZ2XHIOHOZWI/Listening-Is-an-Act-of-Love/ref=pd_seeReview_1_2?asin=B002V5B75Y\",\n \"source_domain\": \"www.audible.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"46532\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:U3W54RB66VPMRLWGNSWM7QDCGASMHVQH\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T05:48:31Z\",\n \"WARC-IP-Address\": \"72.21.211.97\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:ZNAHWWWMUG3CBCKJLVLT7JZMGOV2H44G\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.audible.com/listener/A3SZ2XHIOHOZWI/Listening-Is-an-Act-of-Love/ref=pd_seeReview_1_2?asin=B002V5B75Y\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 2,\n 3,\n 31,\n 32,\n 165,\n 166,\n 216,\n 217,\n 220,\n 221,\n 243,\n 244,\n 371,\n 372,\n 421,\n 422,\n 425,\n 426,\n 433,\n 434,\n 480,\n 481,\n 483,\n 497,\n 511,\n 525,\n 550,\n 574,\n 584,\n 586,\n 596,\n 598,\n 599,\n 631,\n 632,\n 657,\n 676,\n 704,\n 716,\n 727,\n 743,\n 754,\n 764,\n 775,\n 776,\n 1013,\n 1014,\n 1041,\n 1063,\n 1075,\n 1091,\n 1101,\n 1163,\n 1164,\n 1248,\n 1249,\n 1250,\n 1295,\n 1296,\n 1328,\n 1329,\n 1330,\n 1399,\n 1400,\n 1416,\n 1417,\n 1418,\n 1482,\n 1483,\n 1502,\n 1503,\n 1504,\n 1548,\n 1632,\n 1633,\n 1670,\n 1690,\n 1719,\n 1753,\n 1765,\n 1775,\n 1791,\n 1800,\n 1810,\n 1819,\n 1820,\n 2269,\n 2270,\n 2313,\n 2344,\n 2356,\n 2372,\n 2382,\n 2462,\n 2463,\n 2519,\n 2520,\n 2521,\n 2566,\n 2567,\n 2666,\n 2667,\n 2668,\n 2768,\n 2769,\n 2834,\n 2835,\n 2836,\n 2918,\n 2919,\n 3020,\n 3021,\n 3022,\n 3066,\n 3099,\n 3100,\n 3137,\n 3161,\n 3194,\n 3206,\n 3216,\n 3232,\n 3242,\n 3252,\n 3262,\n 3263,\n 3749,\n 3750,\n 3812,\n 3826,\n 3838,\n 3854,\n 3864,\n 3928,\n 3929,\n 4136,\n 4137,\n 4138,\n 4183,\n 4184,\n 4258,\n 4259,\n 4260,\n 4334,\n 4335,\n 4353,\n 4354,\n 4355,\n 4419,\n 4420,\n 4532,\n 4533,\n 4534,\n 4563,\n 4564,\n 4650,\n 4651,\n 4695,\n 4696,\n 4725,\n 4726,\n 4900,\n 4901,\n 4908,\n 4909,\n 4919,\n 4920\n ],\n \"line_end_idx\": [\n 2,\n 3,\n 31,\n 32,\n 165,\n 166,\n 216,\n 217,\n 220,\n 221,\n 243,\n 244,\n 371,\n 372,\n 421,\n 422,\n 425,\n 426,\n 433,\n 434,\n 480,\n 481,\n 483,\n 497,\n 511,\n 525,\n 550,\n 574,\n 584,\n 586,\n 596,\n 598,\n 599,\n 631,\n 632,\n 657,\n 676,\n 704,\n 716,\n 727,\n 743,\n 754,\n 764,\n 775,\n 776,\n 1013,\n 1014,\n 1041,\n 1063,\n 1075,\n 1091,\n 1101,\n 1163,\n 1164,\n 1248,\n 1249,\n 1250,\n 1295,\n 1296,\n 1328,\n 1329,\n 1330,\n 1399,\n 1400,\n 1416,\n 1417,\n 1418,\n 1482,\n 1483,\n 1502,\n 1503,\n 1504,\n 1548,\n 1632,\n 1633,\n 1670,\n 1690,\n 1719,\n 1753,\n 1765,\n 1775,\n 1791,\n 1800,\n 1810,\n 1819,\n 1820,\n 2269,\n 2270,\n 2313,\n 2344,\n 2356,\n 2372,\n 2382,\n 2462,\n 2463,\n 2519,\n 2520,\n 2521,\n 2566,\n 2567,\n 2666,\n 2667,\n 2668,\n 2768,\n 2769,\n 2834,\n 2835,\n 2836,\n 2918,\n 2919,\n 3020,\n 3021,\n 3022,\n 3066,\n 3099,\n 3100,\n 3137,\n 3161,\n 3194,\n 3206,\n 3216,\n 3232,\n 3242,\n 3252,\n 3262,\n 3263,\n 3749,\n 3750,\n 3812,\n 3826,\n 3838,\n 3854,\n 3864,\n 3928,\n 3929,\n 4136,\n 4137,\n 4138,\n 4183,\n 4184,\n 4258,\n 4259,\n 4260,\n 4334,\n 4335,\n 4353,\n 4354,\n 4355,\n 4419,\n 4420,\n 4532,\n 4533,\n 4534,\n 4563,\n 4564,\n 4650,\n 4651,\n 4695,\n 4696,\n 4725,\n 4726,\n 4900,\n 4901,\n 4908,\n 4909,\n 4919,\n 4920,\n 5018\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5018,\n \"ccnet_original_nlines\": 167,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.396246075630188,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.02085505984723568,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.17831073701381683,\n \"rps_doc_frac_unique_words\": 0.4142512083053589,\n \"rps_doc_mean_word_length\": 4.466183662414551,\n \"rps_doc_num_sentences\": 40,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.31158447265625,\n \"rps_doc_word_count\": 828,\n \"rps_doc_frac_chars_dupe_10grams\": 0.10600323975086212,\n \"rps_doc_frac_chars_dupe_5grams\": 0.19848567247390747,\n \"rps_doc_frac_chars_dupe_6grams\": 0.19091400504112244,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1638723611831665,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1638723611831665,\n \"rps_doc_frac_chars_dupe_9grams\": 0.1238507330417633,\n \"rps_doc_frac_chars_top_2gram\": 0.0067604100331664085,\n \"rps_doc_frac_chars_top_3gram\": 0.013520820066332817,\n \"rps_doc_frac_chars_top_4gram\": 0.011357489973306656,\n \"rps_doc_books_importance\": -484.6587829589844,\n \"rps_doc_books_importance_length_correction\": -484.6587829589844,\n \"rps_doc_openwebtext_importance\": -250.20542907714844,\n \"rps_doc_openwebtext_importance_length_correction\": -250.20542907714844,\n \"rps_doc_wikipedia_importance\": -180.28866577148438,\n \"rps_doc_wikipedia_importance_length_correction\": -180.28866577148438\n },\n \"fasttext\": {\n \"dclm\": 0.0003697900101542473,\n \"english\": 0.9521796703338623,\n \"fineweb_edu_approx\": 1.4370203018188477,\n \"eai_general_math\": 0.0028742600698024035,\n \"eai_open_web_math\": 0.07365698367357254,\n \"eai_web_code\": 0.00006222999945748597\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"782.42\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Music\",\n \"level_3\": \"Dramatic music\"\n }\n },\n \"secondary\": {\n \"code\": \"025.044\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Library science\",\n \"level_3\": \"Library administration\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"Reviews/Critiques\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"24\",\n \"label\": \"User Review\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":266,"cells":{"id":{"kind":"number","value":-6545109824602445000,"string":"-6,545,109,824,602,445,000"},"text":{"kind":"string","value":"BeneficialAddiction\n\nStories Written (10)\n\nTitle Age Rating Reviews Chapters Complete Words\nTry Outs Everyone 4.5/5 140 6 Yes 7858\nNew Chapter When the jocks at Forks High School start getting on their nerves, the Cullen boys decide it’s time to give them a taste of their own medicine. ***Some Eclipse References*** Completed for now, but I may add more if inspiration strikes. I've redone CH 1 par all my reviewers who caught Edward's slipup. Sorry 'bout that.\nFallen Angel Broken Song Everyone 4.5/5 192 15 No 15934\nBanner by Marauder by Midnight Banner 1 What if... Edward wasn't as strong as we thought he was? ***Eclipse References***\nTwilight the Musical Everyone 5/5 17 7 No 3466\nTwilight characters put their lives to song.\nProfessor Cuddles Everyone 4.5/5 28 1 Yes 796\nAlice has something that Bella apparently suggested and that has Edward testy. What did she go and do now?\nVitamin V Everyone 5/5 73 7 No 5023\nGenerated image Rosalie makes a startling online discovery that could change the lives of the Cullens as we know it.\nChicken Soup Everyone 5/5 22 1 Yes 1084\nWhen Edward and Alice contract the flu, how does Bella react?\nBasswood Guitar Everyone 5/5 20 6 No 4356\nGenerated image When Jasper finds an old basswood guitar at a rummage sale, will he rediscover an old passion in himself?\nLeashed Everyone 5/5 14 7 No 4255\nGenerated image Jacob has always been willing to do anything for Bella. Now Bella is willing to let him do anything for her. Edward is a little more convincing, Jacob a little more usable, and Bella just a little more vindictive. “He left me! No, no, no! How could he do this? How could he leave me? No, no, he can’t leave me! He left me!” she sobbed. “He left me!” Bella choked, caught her breath. Raised her head, eyes glittering. HE LEFT ME.\nMissunderstand Me Everyone 5/5 5 1 Yes 998\nCreate your own banner at mybannermaker.com!\nOne Shot This is my take on the missing scene from New Moon, when Edward confronts Jasper after the papercut incident. Revised\nThe One Thing I'd Deny Her Everyone 5/5 5 1 Yes 1352\nJasper loves Alice. He'd do anything for her. Anything. So is there one thing he will deny her? Reposted with Corrections\n\nSeries Written (0)\n\nTitle Rating Reviews Stories"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.twilightarchives.com/users/874\",\n \"source_domain\": \"www.twilightarchives.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"22231\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:EVTVUGVS2ZYWHLZ54Z6O45G4IEGU6GNU\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T08:45:11Z\",\n \"WARC-IP-Address\": \"72.251.218.88\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:4D3ANGALBXUXPZXSHSPDCNQZ3RI6OWDN\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.twilightarchives.com/users/874\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 20,\n 21,\n 42,\n 43,\n 92,\n 131,\n 463,\n 519,\n 641,\n 688,\n 733,\n 779,\n 886,\n 922,\n 1039,\n 1079,\n 1141,\n 1183,\n 1305,\n 1339,\n 1784,\n 1827,\n 1872,\n 1999,\n 2052,\n 2174,\n 2175,\n 2194,\n 2195\n ],\n \"line_end_idx\": [\n 20,\n 21,\n 42,\n 43,\n 92,\n 131,\n 463,\n 519,\n 641,\n 688,\n 733,\n 779,\n 886,\n 922,\n 1039,\n 1079,\n 1141,\n 1183,\n 1305,\n 1339,\n 1784,\n 1827,\n 1872,\n 1999,\n 2052,\n 2174,\n 2175,\n 2194,\n 2195,\n 2223\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2223,\n \"ccnet_original_nlines\": 29,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.30142566561698914,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.016293279826641083,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2729124128818512,\n \"rps_doc_frac_unique_words\": 0.5674300193786621,\n \"rps_doc_mean_word_length\": 4.43765926361084,\n \"rps_doc_num_sentences\": 37,\n \"rps_doc_symbol_to_word_ratio\": 0.0020366599783301353,\n \"rps_doc_unigram_entropy\": 5.149837017059326,\n \"rps_doc_word_count\": 393,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.017201829701662064,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.04013761132955551,\n \"rps_doc_frac_chars_top_3gram\": 0.022362390533089638,\n \"rps_doc_frac_chars_top_4gram\": 0.01834861934185028,\n \"rps_doc_books_importance\": -202.2469940185547,\n \"rps_doc_books_importance_length_correction\": -202.2469940185547,\n \"rps_doc_openwebtext_importance\": -98.20408630371094,\n \"rps_doc_openwebtext_importance_length_correction\": -98.20408630371094,\n \"rps_doc_wikipedia_importance\": -55.23422622680664,\n \"rps_doc_wikipedia_importance_length_correction\": -55.23422622680664\n },\n \"fasttext\": {\n \"dclm\": 0.011953470297157764,\n \"english\": 0.9234578609466553,\n \"fineweb_edu_approx\": 1.036771535873413,\n \"eai_general_math\": 0.0027506400365382433,\n \"eai_open_web_math\": 0.2552146315574646,\n \"eai_web_code\": 0.0008054400095716119\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"813.6\",\n \"labels\": {\n \"level_1\": \"Literature\",\n \"level_2\": \"American literature\",\n \"level_3\": \"American fiction\"\n }\n },\n \"secondary\": {\n \"code\": \"025.04\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Library science\",\n \"level_3\": \"Library administration\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"About (Personal)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":267,"cells":{"id":{"kind":"number","value":4674915730112592000,"string":"4,674,915,730,112,592,000"},"text":{"kind":"string","value":"\n\nInvestor InformationCorporate GovernanceFinancial & Media Contacts\nStock Quote\n\nCorporate Governance Frequently Asked Questions\n \n\n \n\n \n\n \n\nBoard Structure\n\nHow many directors serve on the Board of Directors?\nPresently, twelve. A current list of our directors can be found here.\n\nDoes the Board of Directors satisfy the independence requirements of the New York Stock Exchange?\nYes. Eleven of our twelve directors are independent, with the one exception being John D. Finnegan, our Chairman, President and Chief Executive Officer.\n\nDo your Audit Committee, Corporate Governance & Nominating Committee and Organization & Compensation Committee satisfy the independence requirements of the New York Stock Exchange?\nOnly independent directors serve on each of these committees.\n\nDo you have a Lead Director?\nJames M. Zimmerman, an independent director, presently serves as Lead Director.\n\nWhat is the function of the Lead Director?\nThe Lead Director ensures that our Board of Directors remains independent of management by acting as an intermediary between the non-employee directors and management when special circumstances exist or communication out of the ordinary course is necessary.\n\nHow often do your independent directors meet in executive session without any members of management?\nOur independent directors meet in executive session without any members of management after most regularly scheduled board meetings.\n\n \n\nDirector Nominations\n\nWhere can I find information about the qualifications and other factors that the Corporate Governance & Nominating Committee evaluates in selecting nominees to serve as directors?\nThis information is available in our Corporate Governance Guidelines.\n\nWill the Corporate Governance & Nominating Committee consider individuals I suggest as potential director nominees?\nYes. The Corporate Governance & Nominating Committee considers suggestions from many sources, including shareholders, regarding possible candidates for director. The procedures a shareholder wishing to propose a director candidate should follow are described in our Bylaws and Corporate Governance Guidelines.\n\n\nContacting Our Board of Directors and Audit Committee\n\nHow can I contact your Board of Directors?\nThe procedures for contacting our board of directors, the Chairman of the Board, the Lead Director or any individual director can be found in our Corporate Governance Guidelines.\n\nWho should I contact if I have a concern about Chubb's accounting, internal accounting controls or auditing matters?\nContact the Audit Committee. The procedures for relaying concerns about our accounting, internal accounting controls or auditing matters are described in our Corporate Governance Guidelines.\n\n \n\nManagement\n\nWhere can I find information about Chubb’s management?\nInformation about our senior officers can be found here.\n\n \n\nCorporate Governance Materials and SEC Filings\n\nWhere can I obtain copies of your corporate governance documents?\nCopies of our certificate of incorporationBy-Lawskey committee charterscorporate governance guidelinescodes of business conduct  and ethics and other materials are available on this Web site. Shareholders may also request copies of these materials by writing to:\n\nCorporate Secretary\nThe Chubb Corporation\n15 Mountain View Road\nP.O. Box 1615\nWarren, NJ 07061-1615\n\nWhere can I find copies of your SEC filings?\nCopies of our most recent SEC filings are available on this Web site. The SEC maintains a Web site at www.sec.gov that contains our SEC filings since 1994. Shareholders also may obtain copies by writing to our Corporate Secretary at the address provided above.\n\n \n\nCommitment to Diversity\n\nWhere can I find information on your commitment to diversity?\nInformation regarding our commitment to diversity can be found here.\n\n \n\nTransfer Agent\n\nWho serves as your transfer agent?\nComputershare Shareholder Services LLC\n\n \n\nIndependent Auditor\n\nWho serves as your independent auditor?\nErnst & Young LLP\n\n \n\n \n\nPDFs require the free Adobe Acrobat Reader. Get it here."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://chubb.com/investors/chubb3243.html\",\n \"source_domain\": \"chubb.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"27301\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:62JSMCG5INMW2NQ37SX23KDJ5ES34SPH\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-20T12:06:04Z\",\n \"WARC-IP-Address\": \"164.44.64.195\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:ML7RSAD5VEVTS3YPU4GCQZU4XS36KLRH\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://chubb.com/investors/chubb3243.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 1,\n 2,\n 69,\n 81,\n 82,\n 130,\n 132,\n 133,\n 135,\n 136,\n 138,\n 139,\n 141,\n 142,\n 158,\n 159,\n 211,\n 281,\n 282,\n 380,\n 533,\n 534,\n 715,\n 777,\n 778,\n 807,\n 887,\n 888,\n 931,\n 1189,\n 1190,\n 1291,\n 1424,\n 1425,\n 1427,\n 1428,\n 1449,\n 1450,\n 1630,\n 1700,\n 1701,\n 1817,\n 2127,\n 2128,\n 2129,\n 2183,\n 2184,\n 2227,\n 2406,\n 2407,\n 2524,\n 2715,\n 2716,\n 2718,\n 2719,\n 2730,\n 2731,\n 2786,\n 2843,\n 2844,\n 2846,\n 2847,\n 2894,\n 2895,\n 2961,\n 3224,\n 3225,\n 3245,\n 3267,\n 3289,\n 3303,\n 3325,\n 3326,\n 3371,\n 3632,\n 3633,\n 3635,\n 3636,\n 3660,\n 3661,\n 3723,\n 3792,\n 3793,\n 3795,\n 3796,\n 3811,\n 3812,\n 3847,\n 3886,\n 3887,\n 3889,\n 3890,\n 3910,\n 3911,\n 3951,\n 3969,\n 3970,\n 3972,\n 3973,\n 3975,\n 3976\n ],\n \"line_end_idx\": [\n 1,\n 2,\n 69,\n 81,\n 82,\n 130,\n 132,\n 133,\n 135,\n 136,\n 138,\n 139,\n 141,\n 142,\n 158,\n 159,\n 211,\n 281,\n 282,\n 380,\n 533,\n 534,\n 715,\n 777,\n 778,\n 807,\n 887,\n 888,\n 931,\n 1189,\n 1190,\n 1291,\n 1424,\n 1425,\n 1427,\n 1428,\n 1449,\n 1450,\n 1630,\n 1700,\n 1701,\n 1817,\n 2127,\n 2128,\n 2129,\n 2183,\n 2184,\n 2227,\n 2406,\n 2407,\n 2524,\n 2715,\n 2716,\n 2718,\n 2719,\n 2730,\n 2731,\n 2786,\n 2843,\n 2844,\n 2846,\n 2847,\n 2894,\n 2895,\n 2961,\n 3224,\n 3225,\n 3245,\n 3267,\n 3289,\n 3303,\n 3325,\n 3326,\n 3371,\n 3632,\n 3633,\n 3635,\n 3636,\n 3660,\n 3661,\n 3723,\n 3792,\n 3793,\n 3795,\n 3796,\n 3811,\n 3812,\n 3847,\n 3886,\n 3887,\n 3889,\n 3890,\n 3910,\n 3911,\n 3951,\n 3969,\n 3970,\n 3972,\n 3973,\n 3975,\n 3976,\n 4032\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4032,\n \"ccnet_original_nlines\": 101,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3225308656692505,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.03395061939954758,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.11882715672254562,\n \"rps_doc_frac_unique_words\": 0.40140846371650696,\n \"rps_doc_mean_word_length\": 5.84683084487915,\n \"rps_doc_num_sentences\": 45,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.9543986320495605,\n \"rps_doc_word_count\": 568,\n \"rps_doc_frac_chars_dupe_10grams\": 0.07828967273235321,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2351701259613037,\n \"rps_doc_frac_chars_dupe_6grams\": 0.14272809028625488,\n \"rps_doc_frac_chars_dupe_7grams\": 0.11020776629447937,\n \"rps_doc_frac_chars_dupe_8grams\": 0.07828967273235321,\n \"rps_doc_frac_chars_dupe_9grams\": 0.07828967273235321,\n \"rps_doc_frac_chars_top_2gram\": 0.06293284893035889,\n \"rps_doc_frac_chars_top_3gram\": 0.028906960040330887,\n \"rps_doc_frac_chars_top_4gram\": 0.0457693487405777,\n \"rps_doc_books_importance\": -251.7688446044922,\n \"rps_doc_books_importance_length_correction\": -251.7688446044922,\n \"rps_doc_openwebtext_importance\": -126.0549087524414,\n \"rps_doc_openwebtext_importance_length_correction\": -126.0549087524414,\n \"rps_doc_wikipedia_importance\": -57.868507385253906,\n \"rps_doc_wikipedia_importance_length_correction\": -57.868507385253906\n },\n \"fasttext\": {\n \"dclm\": 0.00003839000055450015,\n \"english\": 0.9023997187614441,\n \"fineweb_edu_approx\": 0.9610142707824707,\n \"eai_general_math\": 0.0029193200170993805,\n \"eai_open_web_math\": 0.16886568069458008,\n \"eai_web_code\": 0.00023812000290490687\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"658.4\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n },\n \"secondary\": {\n \"code\": \"658.3\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"FAQ\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":268,"cells":{"id":{"kind":"number","value":2971845943212383000,"string":"2,971,845,943,212,383,000"},"text":{"kind":"string","value":"happy birthday to me\n\nFriday is my birthday… I don’t even want to talk about how old I’m going to be. Being a grown up sucks. Let’s just leave it at that. I had promised myself that I would make my own birthday cake this year. Chocolate and peanut butter, of course. Because what is better than chocolate and peanut butter? (Nothing, that’s what).\n\nI surprised even myself with this one. Very rarely does something that I make really blow me out of the water. I mean, of course it’s good or else I wouldn’t post it, but it’s just silly to think that every single recipe I make is going to be mind-blowingly good.\n\nThis recipe, though… Mind = Blown.\n\nIt was so good that I even froze a piece to save for my actual birthday on Friday. It was so good I didn’t want to send it to work with the Boyfriend. I just wanted to keep it at home all to myself. The cake was so incredibly moist, the peanut butter frosting was perfect in flavor and texture, and yeah I technically “messed up” the ganache layer (aesthetically speaking), but flavor wise… my god. So good.\nIt was totally worth the extra trip to Sur La Table for a third cake pan. So worthy of being the first cake to be displayed on my brand new cake stand (which, by the way, was a steal at Homegoods). It was so good that I think I found my new go-to chocolate cake recipe.\n\nOn top of all of that… it’s so easy to make the cake layer that you don’t even need a mixer. Yep, you read that right, NO MIXER REQUIRED.\n\nI don’t know if that piece in the freezer will make it to my birthday……. I mean, just look at that thing. I’m drooling just thinking about it.\n\nChocolate Cake with Peanut Butter Frosting\n\n[ Printable Recipe ]\n\n • 2 cups all-purpose flour\n • 2 1/2 cups sugar\n • 3/4 cup unsweetened cocoa powder, preferably Dutch process\n • 2 teaspoons baking soda\n • 1 teaspoon salt\n • 1 cup neutral vegetable oil\n • 1 cup sour cream\n • 1 1/2 cups water\n • 2 tablespoons distilled white vinegar\n • 1 teaspoon vanilla extract\n • 2 eggs\n\n1. Preheat the oven to 350 degrees F and prepare three 8-inch cake pans with butter and parchment\n\n2. Sift the flour, sugar, cocoa powder, baking soda, and salt into a large bowl and whisk to combine. Add the oil and sour cream and whisk to blend. Gradually beat in the water. Once the water is incorporated, add the vinegar and vanilla. Whisk in the eggs and continue to beat until well blended. Scrape down the sides and bottom of the bowl to make sure there are no flour bombs lurking in there. Divide the batter evenly among the 3 prepared cake pans.\n\n3. Bake for 30 to 35 minutes, or until a cake tester or wooden toothpick inserted in the center comes out almost clean. I was able to fit all three on one rack in the middle of my oven. If you can’t, just put two on the bottom 1/3 and one on the top 1/3 and rotate about 20 minutes into baking… but be careful or they might fall!\n\n4. Let cool in the pans for about 20 minutes. Invert onto wire racks, carefully peel off the paper liners, and let cool completely. The cakes are very soft – chill the cooled cakes in the freezer for 30 minutes (or overnight if you don’t want to do it all in one day) before continuing.\n\n5. To frost the cake, place one layer, flat side up, on a cake stand or large serving plate. Spread 2/3 cups of the peanut butter frosting evenly over the top. Repeat with the next layer. Place the last layer on top and frost the top and sides of the cake with the remaining frosting.\n\nSmitten Kitchen Recommends:\n\n1: Making a crumb coat of frosting–a thin layer that binds the dark crumbs to the cake so they don’t show up in the final outer frosting layer–is a great idea for this cake, or any with a dark cake and lighter-colored frosting. Once you “mask” your cake, let it chill for 15 to 30 minutes until firm, then use the remainder of the frosting to create a smooth final coating.\n\n2: Once the cake is fully frosted, it helps to chill it again and let it firm up. The cooler and more set the peanut butter frosting is, the better drip effect you’ll get from the Chocolate-Peanut Butter Glaze.)\n\n6. To decorate with the Chocolate–Peanut Butter Glaze, put the cake plate on a large baking sheet to catch any drips. Simply pour the glaze over the top of the cake, and using an offset spatula, spread it evenly over the top just to the edges so that it runs down the sides of the cake in long drips. Refrigerate, uncovered, for at least 30 minutes to allow the glaze and frosting to set completely. Remove about 1 hour before serving.\n\nThis is where I failed – my glaze did not want to drip in a pretty fashion, so I just went for it and used it to cover the entire cake. Honestly, I can’t imagine not having the chocolate ganache all over the cake. I think it was a good move, but if you want it to look fancier, go ahead and try the drippy method.\n\nPeanut Butter Frosting\nMakes about 5 cups\n\n • 10 ounces cream cheese, at room temperature* (I used 8, because I only had one package of cream cheese and I wasn’t going to run to the store again)\n • 1 stick (4 ounces) unsalted butter, at room temperature\n • ½ teaspoon vanilla extract\n • 5 cups powdered sugar\n • 2/3 cup smooth peanut butter\n\n1. In a large bowl with an electric mixer, beat the cream cheese and butter until light and fluffy. Beat in vanilla. Gradually add the confectioners’ sugar 1 cup at a time, mixing thoroughly after each addition and scraping down the sides of the bowl often. Continue to beat on medium speed until light and fluffy, 3 to 4 minutes.\n\n2. Add the peanut butter and beat until thoroughly blended. Taste it…. you know, for quality control\n\nChocolate-Peanut Butter Glaze\nMakes about 1 1/2 cups\n\n • 8 ounces semisweet chocolate, coarsely chopped\n • 3 tablespoons smooth peanut butter\n • 2 tablespoons light corn syrup\n • 1/2 cup half-and-half\n\n1. In the top of a double boiler or in a bowl set over simmering water, combine the chocolate, peanut butter, and corn syrup. Cook, whisking often, until the chocolate is melted and the mixture is smooth.\n\n2. Remove from the heat and whisk in the half-and-half, beating until smooth. Use while still warm.\n\nOnce the cake is fully frosted, it helps to chill it again and let it firm up. The cooler and more set the peanut butter frosting is, the better drip effect you’ll get from the Chocolate-Peanut Butter Glaze.)\n\n To decorate with the Chocolate–Peanut Butter Glaze, put the cake plate on a large baking sheet to catch any drips. Simply pour the glaze over the top of the cake, and using an offset spatula, spread it evenly over the top just to the edges so that it runs down the sides of the cake in long drips. Refrigerate, uncovered, for at least 30 minutes to allow the glaze and frosting to set completely. Remove about 1 hour before serving.\n\nThis is where I failed – my glaze did not want to drip in a pretty fashion, so I just went for it and used it to cover the entire cake. Honestly, I can’t imagine not having the chocolate ganache all over the cake. I think it was a good move, but if you want it to look fancier, go ahead and try the drippy method.\n\n[ adapted from Smitten Kitchen ]\n\nYou may also like…\n\nPrint Friendly\n\n11 thoughts on “happy birthday to me\n\n 1. happy birthday to you!!! you’re right…it DOES suck being grown up (although i tend to act, at times, like an eight-year old), but only grownups could make. this. CAKE!\n\n oh, natalie, it looks delicious! i avoid the deadly chocolate/peanut butter combo most of the time because i’m dangerous around it, but this cake…i may not be able to resist. love it.\n\n 2. Happy Birthday! Well, i have a birthday cake recipe checked now. I love how the frosting is a combination of cream cheese and peanut butter. However, thinks 5 cups of sugar is scary… crazy scary… Gonna try this out! ;)\n\n • I don’t think I used the full five, but ended up running out of frosting as a result lol :) In general, though, sugar is the easiest thing to cut back on in a recipe. Itll be your birthday- just go for it! (calories don’t count on your birthday)\n\n 3. I made this cake last weekend, and totally agree! It was amazing, got my exact recipe from one of my cake cookbooks… can’t exactly remember the name.Mile high cakes or something like that.\n It’s a kepper for sure\n\nLeave a Reply\n\nYour email address will not be published. Required fields are marked *\n\nYou may use these HTML tags and attributes:
"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://wee-eats.com/2012/03/15/chocolate-peanut-butter-cake/\",\n \"source_domain\": \"wee-eats.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"59648\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:UNIZAULHQCSTH5D3NZVDBAEBWKSDNDNY\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-22T13:56:40Z\",\n \"WARC-IP-Address\": \"69.195.124.88\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:ZZX4VB3MDJAO3IWPV7YKJUX5NSCYSFOU\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://wee-eats.com/2012/03/15/chocolate-peanut-butter-cake/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 21,\n 22,\n 348,\n 349,\n 613,\n 614,\n 649,\n 650,\n 1058,\n 1328,\n 1329,\n 1467,\n 1468,\n 1611,\n 1612,\n 1655,\n 1656,\n 1677,\n 1678,\n 1707,\n 1728,\n 1791,\n 1819,\n 1839,\n 1871,\n 1892,\n 1913,\n 1955,\n 1986,\n 1997,\n 1998,\n 2096,\n 2097,\n 2553,\n 2554,\n 2884,\n 2885,\n 3172,\n 3173,\n 3458,\n 3459,\n 3487,\n 3488,\n 3862,\n 3863,\n 4075,\n 4076,\n 4512,\n 4513,\n 4827,\n 4828,\n 4851,\n 4870,\n 4871,\n 5024,\n 5084,\n 5115,\n 5141,\n 5174,\n 5175,\n 5506,\n 5507,\n 5608,\n 5609,\n 5639,\n 5662,\n 5663,\n 5714,\n 5753,\n 5788,\n 5814,\n 5815,\n 6020,\n 6021,\n 6121,\n 6122,\n 6331,\n 6332,\n 6766,\n 6767,\n 7081,\n 7082,\n 7115,\n 7116,\n 7135,\n 7136,\n 7151,\n 7152,\n 7189,\n 7190,\n 7363,\n 7364,\n 7552,\n 7553,\n 7777,\n 7778,\n 8030,\n 8031,\n 8225,\n 8252,\n 8253,\n 8267,\n 8268,\n 8339,\n 8340\n ],\n \"line_end_idx\": [\n 21,\n 22,\n 348,\n 349,\n 613,\n 614,\n 649,\n 650,\n 1058,\n 1328,\n 1329,\n 1467,\n 1468,\n 1611,\n 1612,\n 1655,\n 1656,\n 1677,\n 1678,\n 1707,\n 1728,\n 1791,\n 1819,\n 1839,\n 1871,\n 1892,\n 1913,\n 1955,\n 1986,\n 1997,\n 1998,\n 2096,\n 2097,\n 2553,\n 2554,\n 2884,\n 2885,\n 3172,\n 3173,\n 3458,\n 3459,\n 3487,\n 3488,\n 3862,\n 3863,\n 4075,\n 4076,\n 4512,\n 4513,\n 4827,\n 4828,\n 4851,\n 4870,\n 4871,\n 5024,\n 5084,\n 5115,\n 5141,\n 5174,\n 5175,\n 5506,\n 5507,\n 5608,\n 5609,\n 5639,\n 5662,\n 5663,\n 5714,\n 5753,\n 5788,\n 5814,\n 5815,\n 6020,\n 6021,\n 6121,\n 6122,\n 6331,\n 6332,\n 6766,\n 6767,\n 7081,\n 7082,\n 7115,\n 7116,\n 7135,\n 7136,\n 7151,\n 7152,\n 7189,\n 7190,\n 7363,\n 7364,\n 7552,\n 7553,\n 7777,\n 7778,\n 8030,\n 8031,\n 8225,\n 8252,\n 8253,\n 8267,\n 8268,\n 8339,\n 8340,\n 8535\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 8535,\n \"ccnet_original_nlines\": 105,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 2,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3906976580619812,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.021188629791140556,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.009433959610760212,\n \"rps_doc_frac_no_alph_words\": 0.20620155334472656,\n \"rps_doc_frac_unique_words\": 0.33164235949516296,\n \"rps_doc_mean_word_length\": 4.162967681884766,\n \"rps_doc_num_sentences\": 102,\n \"rps_doc_symbol_to_word_ratio\": 0.007235140074044466,\n \"rps_doc_unigram_entropy\": 5.488275527954102,\n \"rps_doc_word_count\": 1577,\n \"rps_doc_frac_chars_dupe_10grams\": 0.2284843921661377,\n \"rps_doc_frac_chars_dupe_5grams\": 0.23594820499420166,\n \"rps_doc_frac_chars_dupe_6grams\": 0.2333587259054184,\n \"rps_doc_frac_chars_dupe_7grams\": 0.2284843921661377,\n \"rps_doc_frac_chars_dupe_8grams\": 0.2284843921661377,\n \"rps_doc_frac_chars_dupe_9grams\": 0.2284843921661377,\n \"rps_doc_frac_chars_top_2gram\": 0.015993909910321236,\n \"rps_doc_frac_chars_top_3gram\": 0.01827874965965748,\n \"rps_doc_frac_chars_top_4gram\": 0.014013710431754589,\n \"rps_doc_books_importance\": -852.1370849609375,\n \"rps_doc_books_importance_length_correction\": -852.1370849609375,\n \"rps_doc_openwebtext_importance\": -486.6207275390625,\n \"rps_doc_openwebtext_importance_length_correction\": -486.6207275390625,\n \"rps_doc_wikipedia_importance\": -369.69830322265625,\n \"rps_doc_wikipedia_importance_length_correction\": -369.69830322265625\n },\n \"fasttext\": {\n \"dclm\": 0.007115240208804607,\n \"english\": 0.9269095063209534,\n \"fineweb_edu_approx\": 1.0652409791946411,\n \"eai_general_math\": 0.012451290152966976,\n \"eai_open_web_math\": 0.16962605714797974,\n \"eai_web_code\": 0.0002885500143747777\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"641.863\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Cooking and Gastronomy\"\n }\n },\n \"secondary\": {\n \"code\": \"641.862\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Cooking and Gastronomy\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n },\n \"secondary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":269,"cells":{"id":{"kind":"number","value":2728031493280149500,"string":"2,728,031,493,280,149,500"},"text":{"kind":"string","value":"Classic Twill - Apple/Violet\n#13401\n\n.\nClassic Twill - Apple/Violet\n\nHover to see enlarged image\nShirts\n\n\n\n\n\n\n\nSuits\nNavy Suit\nOlive Suit\nTaupe Suit\nBrown Suit\nCharcoal Suit\nBlack Suit\nPinstripe the Suit\nNo Suit Overlay\nOur college stripe design set in a luxurious silk twill. A classic to own and never goes out of style.\n\nHandmade of 100% Woven Silk\n$15.00 for Regular Length (58\" x 3 ½\")\n$20.00 for Extra Length (63\" x 3 ¾\")\n\n\nQuantity:\n\nShare this product:  \n\nShipping Questions? Click here  \nReturns & Exchange Questions? Click here\n\nDry-clean Only\nImported\n.\n   \n  checkout\nadd to wish-list\n \n \n  Suggestions that match this item:\nHendrix Paisley - Apple/Violet\n#23104 • Silk\nClassic Twill - White/Light Cornflower\n#13404 • Silk\nClassic Twill - Royal/Apple\n#12311 • Silk\nTotally Tartan - Violet/Apple\n#22804 • Silk\nClassic Twill - Red/Ivory\n#10339 • Silk\n \n  Customer Testimonials:\n“.....When I received the tie I ordered, I found I had ordered the wrong shade of red. I returned it and got the correct color very quickly, with no additional shipping charges. I am very pleased.....” \n \n–Ricky P., Martin, TN   \n \n\nSilk Ties   •   Wool Ties   •   Cotton Ties   •   Linen Ties   •   Silk Knit Ties   •   Wool Knit Ties"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.thetiebar.com/order_page.asp?pn=13401&orderPageReturn=%2FcategoryPages%2FExtra_Long_Ties.asp&pg=48&categoryIds=31&optionValueIds=2\",\n \"source_domain\": \"www.thetiebar.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"56543\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:MFI3QCSPBTQR6HZVTJB2NOOH4IZHOKOX\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T10:06:39Z\",\n \"WARC-IP-Address\": \"209.35.7.81\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:UNN4OZY2YBPFSWQK6JVNVZAPOVZFULLU\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.thetiebar.com/order_page.asp?pn=13401&orderPageReturn=%2FcategoryPages%2FExtra_Long_Ties.asp&pg=48&categoryIds=31&optionValueIds=2\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 29,\n 36,\n 37,\n 39,\n 68,\n 69,\n 97,\n 104,\n 105,\n 106,\n 107,\n 108,\n 109,\n 110,\n 111,\n 117,\n 127,\n 138,\n 149,\n 160,\n 174,\n 185,\n 204,\n 220,\n 323,\n 324,\n 352,\n 391,\n 428,\n 429,\n 430,\n 440,\n 441,\n 463,\n 464,\n 497,\n 538,\n 539,\n 554,\n 563,\n 565,\n 569,\n 580,\n 597,\n 599,\n 601,\n 637,\n 668,\n 682,\n 721,\n 735,\n 763,\n 777,\n 807,\n 821,\n 847,\n 861,\n 863,\n 888,\n 1091,\n 1093,\n 1118,\n 1120,\n 1121\n ],\n \"line_end_idx\": [\n 29,\n 36,\n 37,\n 39,\n 68,\n 69,\n 97,\n 104,\n 105,\n 106,\n 107,\n 108,\n 109,\n 110,\n 111,\n 117,\n 127,\n 138,\n 149,\n 160,\n 174,\n 185,\n 204,\n 220,\n 323,\n 324,\n 352,\n 391,\n 428,\n 429,\n 430,\n 440,\n 441,\n 463,\n 464,\n 497,\n 538,\n 539,\n 554,\n 563,\n 565,\n 569,\n 580,\n 597,\n 599,\n 601,\n 637,\n 668,\n 682,\n 721,\n 735,\n 763,\n 777,\n 807,\n 821,\n 847,\n 861,\n 863,\n 888,\n 1091,\n 1093,\n 1118,\n 1120,\n 1121,\n 1223\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1223,\n \"ccnet_original_nlines\": 64,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.14566929638385773,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.03543306887149811,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.31496062874794006,\n \"rps_doc_frac_unique_words\": 0.6368421316146851,\n \"rps_doc_mean_word_length\": 4.721052646636963,\n \"rps_doc_num_sentences\": 14,\n \"rps_doc_symbol_to_word_ratio\": 0.03149605914950371,\n \"rps_doc_unigram_entropy\": 4.509908199310303,\n \"rps_doc_word_count\": 190,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03344482183456421,\n \"rps_doc_frac_chars_top_3gram\": 0.04013378173112869,\n \"rps_doc_frac_chars_top_4gram\": 0.0568561889231205,\n \"rps_doc_books_importance\": -127.1697006225586,\n \"rps_doc_books_importance_length_correction\": -127.1697006225586,\n \"rps_doc_openwebtext_importance\": -84.60797119140625,\n \"rps_doc_openwebtext_importance_length_correction\": -84.60792541503906,\n \"rps_doc_wikipedia_importance\": -56.02721405029297,\n \"rps_doc_wikipedia_importance_length_correction\": -56.02721405029297\n },\n \"fasttext\": {\n \"dclm\": 0.000022289999833446927,\n \"english\": 0.701119065284729,\n \"fineweb_edu_approx\": 0.6266062259674072,\n \"eai_general_math\": -0.000007390000064333435,\n \"eai_open_web_math\": 0.1481928825378418,\n \"eai_web_code\": -0.000009540000064589549\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"646.722\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Clothing and dress, Fashion, and Beauty, Personal\"\n }\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"labels\": {\n \"level_1\": \"\",\n \"level_2\": \"\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"21\",\n \"label\": \"Customer Support\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":270,"cells":{"id":{"kind":"number","value":5012780308324820000,"string":"5,012,780,308,324,820,000"},"text":{"kind":"string","value":"Don\\'t Miss\nHome / Tag Archives: Draw-a-pig\n\nDQ links for April 11, 2007\n\nWeb Applications skrbl.com – An online whiteboard. Write notes, draw, upload pictures, share files. Collaborate with friends on the same screen. Talkr.com – Audio chat instantly. Tweeto.com – An online task manager. Add tags to tasks, color label tasks and track active/completed tasks through RSS feeds. Software Coolexon Dictionary – 60 Languages in a 3MB [...]\nRead More »\n\nScrolling Box\n\nScroll To Top"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.dq.winsila.com/tag/draw-a-pig\",\n \"source_domain\": \"www.dq.winsila.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"57276\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:B2JNQUCVVBBLRYW2JILRH6XY5MDADIKS\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-20T00:11:03Z\",\n \"WARC-IP-Address\": \"74.220.202.34\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:D56AQMMJA7QUKIFFEC5JXWKW5GMCSZEO\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.dq.winsila.com/tag/draw-a-pig\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 12,\n 44,\n 45,\n 73,\n 74,\n 438,\n 450,\n 451,\n 465,\n 466\n ],\n \"line_end_idx\": [\n 12,\n 44,\n 45,\n 73,\n 74,\n 438,\n 450,\n 451,\n 465,\n 466,\n 479\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 479,\n \"ccnet_original_nlines\": 10,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.1456310749053955,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.029126210138201714,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.28155338764190674,\n \"rps_doc_frac_unique_words\": 0.8933333158493042,\n \"rps_doc_mean_word_length\": 4.973333358764648,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0.009708739817142487,\n \"rps_doc_unigram_entropy\": 4.144155979156494,\n \"rps_doc_word_count\": 75,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.0160857904702425,\n \"rps_doc_frac_chars_top_3gram\": 0.04825736954808235,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -34.605770111083984,\n \"rps_doc_books_importance_length_correction\": -40.54154968261719,\n \"rps_doc_openwebtext_importance\": -30.083633422851562,\n \"rps_doc_openwebtext_importance_length_correction\": -36.019412994384766,\n \"rps_doc_wikipedia_importance\": -30.352235794067383,\n \"rps_doc_wikipedia_importance_length_correction\": -36.28801727294922\n },\n \"fasttext\": {\n \"dclm\": -0.000010009999641624745,\n \"english\": 0.7570003867149353,\n \"fineweb_edu_approx\": 1.0723419189453125,\n \"eai_general_math\": 0.000007029999778751517,\n \"eai_open_web_math\": 0.09297717362642288,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"004.67\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computers and Computer science\"\n }\n },\n \"secondary\": {\n \"code\": \"005.457\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":271,"cells":{"id":{"kind":"number","value":4464786666327673000,"string":"4,464,786,666,327,673,000"},"text":{"kind":"string","value":"Surgical Products\n\nMultimedia\n\nView Sample\n\nFREE Email Newsletter\n\nSurgical Products Daily\n\nBack Surgery Device Presented\n\nOctober 25, 2012 6:45 am Videos Comments\n\n  Dawn's ability to compete in triathlons was diminishing with each race. After years of severe pain and weakness, her doctor recommended spine fusion with the ASPEN MIS Fusion System.\n\nMinimally Invasive Aortic Valve Replacement Through A Minithoracotomy\n\nOctober 25, 2012 6:41 am Videos Comments\n\n  Dr. Atiq Rehman, director of robotics and minimally invasive cardiac surgery at Columbia University, presents a non-sternotomy approach for aortic valve replacement.\n\nAdvertisement\n\nFull Face Transplant A Success\n\nOctober 25, 2012 6:32 am Videos Comments\n\nUnfortunately your browser does not support IFrames.   Surgeons at the University of Maryland succeed in the fullest face transplant ever.\n\nDoctors' Notes Empower Patients\n\nOctober 18, 2012 7:01 am Videos Comments\n\nMelisa Raney takes a look at how patients benefit from reading doctors' write-ups about their office visits.\n\nNew Breath Test Can Diagnose Disease\n\nOctober 18, 2012 6:53 am Videos Comments\n\nDr. Peter Mazzone, of the Cleveland Clinic's Respiratory Institute, talks to Anthony Mason and Norah O'Donnell about a new high-tech device that can check your breath and tell you if you're seriously ill.\n\nM.D.s Using Social Media, Other Tech To Stay Connected To Patients\n\nOctober 18, 2012 6:50 am Videos Comments\n\nDr. Natasha Burgert, of Kansay City, Mo., uses Twitter, Facebook, and texting to keep in contact with her patients. She's part of a growing number of doctors turning to technology to be better doctors. She talks with Rebecca Jarvis and Anthony Mason about how it's improved her practice.\n\nAdvertisement\n\nSubstance Abuse After Weight Loss Surgery\n\nOctober 18, 2012 6:47 am Videos Comments\n\nUnfortunately your browser does not support IFrames.   Dr. Leslie Heinberg says it's important to prepare patients for life after weight loss surgery.\n\nA Medical News Roundup From Johns Hopkins\n\nOctober 18, 2012 6:38 am Videos Comments\n\nPodMed is a weekly podcast from Johns Hopkins Medicine. In it, Elizabeth Tracey, director of electronic media for Johns Hopkins Medicine, and Rick Lange, MD, professor of medicine at Johns Hopkins and vice chairman of medicine at the University of Texas Health Science Center at San Antonio, look at the top medical stories of the week.\n\nIs The Cost Of Robotic Surgery Justified?\n\nOctober 11, 2012 6:41 am Videos Comments\n\n  Robotic prostate surgery is often favored as the next big thing in prostate cancer treatment, but its value is repeatedly called into question. Do the benefits of robotic prostatectomy surgery outweigh the expense? How much more expensive is robotic surgery? In the delicate world of prostate cancer and saving lives, at what point does price matter? Dr.\n\nNew Breath Test Could Diagnose Chronic Disease And Cancer\n\nOctober 11, 2012 6:01 am Videos Comments\n\nScientists say that high-tech breath analyzers may soon be able to diagnose serious conditions -- from diabetes to lung cancer -- in just minutes.\n\nDemonstrating Benefits Of Using Ports For Laparascopic Surgery\n\nOctober 4, 2012 7:22 am Videos Comments\n\n  Dr. Kella talks, intra operatively, of the benefits of using SurgiQuest ports during laparascopic surgery. Bang Surgical was used to stream live OR video to audience members across the US. Dr. Kella performed a laparascopic radical prostatectomy using Intuitives Da Vinci surgical robotic system.\n\nTexas Company Battles 'Vulnerability' Of U.S. Surgical Mask Supply\n\nOctober 4, 2012 7:00 am Videos Comments\n\nWhen the swine flu pandemic hit in 2009, a small surgical mask company in North Richland Hills suddenly found itself in high demand. Prestige Ameritech has one of very few plants still making masks in the U.\n\nDoctors Grow New Ear On Cancer Victim's Arm\n\nOctober 4, 2012 6:49 am Videos Comments\n\nUnfortunately your browser does not support IFrames.   Sherrie Walter lost her ear to cancer two years ago, but doctors at Johns Hopkins Hospital in Baltimore offered Walter a chance at a new ear -- a permanent one built from her own tissue.\n\nPages\n\nX\nYou may login with either your assigned username or your e-mail address.\nThe password field is case sensitive.\nLoading"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.surgicalproductsmag.com/multimedia?items_per_page=15&page=9&qt-recent_blogs_articles=0\",\n \"source_domain\": \"www.surgicalproductsmag.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"125325\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:SJMCB4YNYJGLSD5V5K3IW44FTRIDLCZC\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T14:45:25Z\",\n \"WARC-IP-Address\": \"107.20.166.183\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:YHSH6DNMXY6Y6UBGSV2R4IXU5VI6S443\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.surgicalproductsmag.com/multimedia?items_per_page=15&page=9&qt-recent_blogs_articles=0\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 18,\n 19,\n 30,\n 31,\n 43,\n 44,\n 66,\n 67,\n 91,\n 92,\n 122,\n 123,\n 164,\n 165,\n 350,\n 351,\n 421,\n 422,\n 463,\n 464,\n 632,\n 633,\n 647,\n 648,\n 679,\n 680,\n 721,\n 722,\n 861,\n 862,\n 894,\n 895,\n 936,\n 937,\n 1046,\n 1047,\n 1084,\n 1085,\n 1126,\n 1127,\n 1332,\n 1333,\n 1400,\n 1401,\n 1442,\n 1443,\n 1731,\n 1732,\n 1746,\n 1747,\n 1789,\n 1790,\n 1831,\n 1832,\n 1983,\n 1984,\n 2026,\n 2027,\n 2068,\n 2069,\n 2406,\n 2407,\n 2449,\n 2450,\n 2491,\n 2492,\n 2849,\n 2850,\n 2908,\n 2909,\n 2950,\n 2951,\n 3098,\n 3099,\n 3162,\n 3163,\n 3203,\n 3204,\n 3503,\n 3504,\n 3571,\n 3572,\n 3612,\n 3613,\n 3821,\n 3822,\n 3866,\n 3867,\n 3907,\n 3908,\n 4150,\n 4151,\n 4157,\n 4158,\n 4160,\n 4233,\n 4271\n ],\n \"line_end_idx\": [\n 18,\n 19,\n 30,\n 31,\n 43,\n 44,\n 66,\n 67,\n 91,\n 92,\n 122,\n 123,\n 164,\n 165,\n 350,\n 351,\n 421,\n 422,\n 463,\n 464,\n 632,\n 633,\n 647,\n 648,\n 679,\n 680,\n 721,\n 722,\n 861,\n 862,\n 894,\n 895,\n 936,\n 937,\n 1046,\n 1047,\n 1084,\n 1085,\n 1126,\n 1127,\n 1332,\n 1333,\n 1400,\n 1401,\n 1442,\n 1443,\n 1731,\n 1732,\n 1746,\n 1747,\n 1789,\n 1790,\n 1831,\n 1832,\n 1983,\n 1984,\n 2026,\n 2027,\n 2068,\n 2069,\n 2406,\n 2407,\n 2449,\n 2450,\n 2491,\n 2492,\n 2849,\n 2850,\n 2908,\n 2909,\n 2950,\n 2951,\n 3098,\n 3099,\n 3162,\n 3163,\n 3203,\n 3204,\n 3503,\n 3504,\n 3571,\n 3572,\n 3612,\n 3613,\n 3821,\n 3822,\n 3866,\n 3867,\n 3907,\n 3908,\n 4150,\n 4151,\n 4157,\n 4158,\n 4160,\n 4233,\n 4271,\n 4278\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4278,\n \"ccnet_original_nlines\": 97,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2565379738807678,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.019925279542803764,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2017434537410736,\n \"rps_doc_frac_unique_words\": 0.5203007459640503,\n \"rps_doc_mean_word_length\": 5.168421268463135,\n \"rps_doc_num_sentences\": 42,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.404699802398682,\n \"rps_doc_word_count\": 665,\n \"rps_doc_frac_chars_dupe_10grams\": 0.05324411019682884,\n \"rps_doc_frac_chars_dupe_5grams\": 0.0666278675198555,\n \"rps_doc_frac_chars_dupe_6grams\": 0.05324411019682884,\n \"rps_doc_frac_chars_dupe_7grams\": 0.05324411019682884,\n \"rps_doc_frac_chars_dupe_8grams\": 0.05324411019682884,\n \"rps_doc_frac_chars_dupe_9grams\": 0.05324411019682884,\n \"rps_doc_frac_chars_top_2gram\": 0.03025894984602928,\n \"rps_doc_frac_chars_top_3gram\": 0.06051788851618767,\n \"rps_doc_frac_chars_top_4gram\": 0.02094849944114685,\n \"rps_doc_books_importance\": -303.2101135253906,\n \"rps_doc_books_importance_length_correction\": -303.2101135253906,\n \"rps_doc_openwebtext_importance\": -183.85658264160156,\n \"rps_doc_openwebtext_importance_length_correction\": -183.85658264160156,\n \"rps_doc_wikipedia_importance\": -198.33680725097656,\n \"rps_doc_wikipedia_importance_length_correction\": -198.33680725097656\n },\n \"fasttext\": {\n \"dclm\": -0.0000029800000902469037,\n \"english\": 0.9128228425979614,\n \"fineweb_edu_approx\": 1.397447109222412,\n \"eai_general_math\": 0.000009059999683813658,\n \"eai_open_web_math\": 0.05578147992491722,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"617.0\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"Surgery and Dentistry\"\n }\n },\n \"secondary\": {\n \"code\": \"610.28\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":272,"cells":{"id":{"kind":"number","value":-5254130357592507000,"string":"-5,254,130,357,592,507,000"},"text":{"kind":"string","value":"Buy tickets to premium and sold out events\nCall us at: 800-927-2770\nWho's next? Looking ahead to the best of the 2010 draft class\nUpdated  | Comment  | Recommend E-mail | Print |\nSouthern California free safety Taylor Mays is expected to be a difference-maker on the defensive side of the ball in the NFL next season.\nBy Mark J. Terrill, AP\nSouthern California free safety Taylor Mays is expected to be a difference-maker on the defensive side of the ball in the NFL next season.\n BEST OF THE UNDERCLASSMEN\n\nTop 2010 underclassmen (listed by position):\n\nQB Sam Bradford, Oklahoma\nQB Jevan Snead, Mississippi\nRB Jahvid Best, California\nRB Jonathan Dwyer, Georgia Tech\nRB Joe McKnight, USC\nRB DeMarco Murray, Oklahoma\nRB Evan Royster, Penn State\nWR Dez Bryant, Oklahoma State\nWR Arrelious Benn, Illinois\nWR Damian Williams, USC\nTE Rob Gronkowski, Arizona\nG Michael Pouncey, Florida\nOT Bryan Bulaga, Iowa\nOT Anthony Davis, Rutgers\nDE Greg Romeus, Pittsburgh\nDE Carlos Dunlap, Florida\nDE Everson Griffen, Southern Cal\nDT Marvin Austin, North Carolina\nDT Gerald McCoy, Oklahoma\nILB Rolando McClain, Alabama\nCB Joe Haden, Florida,\nSS Eric Berry, Tennessee\nSS Chad Jones, LSU\n\n NFL OFFSEASON\nEven as the results from this year's NFL draft are being analyzed ad nauseam into training camps, teams and fans are already wondering which college players to watch with an eye toward next year's draft.\n\nActually, that's really not surprising, considering the league itself is so hyped on the draft as an event that NFL officials are discussing the possibility of starting it on Thursday next year, effectively turning the drama into a made-for-TV miniseries.\n\nThe next draft promises to provide a richer pool of elite talent than was available this year. As usual, the focus is already on quarterbacks as football observers ranging from casual fans to NFL scouts wonder whether Tim Tebow of Florida and Colt McCoy of Texas can convert prolific college careers spent in spread-formation offenses into productive pro careers.\n\nIn fact, it seems the NFL is already gearing up to greet them as teams are embracing the proliferation of the Wildcat formation, which ideally features run-and-pass athletes under center.\n\nBut from this long-range perspective, the best senior prospect in the 2010 draft seems to be Southern California's extra large safety, Taylor Mays, according to early ratings by NFLDraftScout.com.\n\nAs always, the next draft will be upgraded by an array of talented underclassmen, but projecting who will leapfrog to the pros at this point is premature speculation.\n\nBut for now, here is an initial ranking with commentary of the top 32 senior prospects — those that seem most likely to constitute the 2010 draft's first round — followed by a quick list of underclassmen who could potentially be impact players in the next draft (position, school, height and weight listed):\n\n1. Taylor Mays, FS, Southern California, 6-3, 230:  With a freaky combination of size, speed and athleticism, Mays is expected to be an NFL difference-maker.\n\n2. Russell Okung, OT, Oklahoma State, 6-5, 300:  He became a starter and a standout as a true freshman and is reliable while pass protecting on the blind side.\n\n3. Jermaine Gresham, TE, Oklahoma, 6-6, 262:  The most dynamic tight end at Oklahoma since Keith Jackson can block, catch and run.\n\n4. Mark Herzlich, OLB, Boston College, 6-4, 238:  He was the Atlantic Coast Conference defensive player of year in 2008 with 110 tackles (13 for loss), three sacks and six interceptions.\n\n5. Colt McCoy, QB, Texas, 6-3, 216:  Completed an NCAA record 76.7% of his passes in 2008 and is a great team leader.\n\n6. Ndamukong Suh, DT, Nebraska, 6-4, 305:  Primarily a nose tackle in 2008, Suh led Nebraska in tackles (76), tackles for loss (19), sacks (7½) and interceptions (two).\n\n7. Sergio Kindle, OLB, Texas, 6-4, 254:  After playing linebacker, where he was in on 53 tackles and 10½ sacks last year, Kindle takes over the rush-end position vacated by newly drafted Washington Redskin Brian Orakpo.\n\n8. Brandon Spikes, ILB, Florida, 6-3, 245:  In the 2008 regular season, he had 87 tackles, eight for loss, two sacks and four interceptions.\n\n9. Terrence Cody, DT, Alabama, 6-5, 365:  This disruptive load of a nose tackle made his impact in 2008 with 24 tackles, 4½ of them resulting in a loss of yardage.\n\n10. Trent Williams, OT, Oklahoma, 6-5, 309:  After three years manning the right-tackle post, Williams returns for his senior season to show he can play left tackle, too.\n\n11. Tim Tebow, QB, Florida, 6-3, 238:  Thriving in coach Urban Meyer's spread formation, Tebow has helped the Gators to two national championships while winning one Heisman Trophy. He's likely to be the most debated prospect available entering the 2010 draft.\n\n12. Trevard Lindley, CB, Kentucky, 6-0,178:  Last year he led the Southeastern Conference in passes defended per game, totaling 11 breakups and four interceptions.\n\n13. C.J. Spiller, RB, Clemson, 5-11, 193:  A versatile back, he led the ACC in all-purpose yards in 2008, averaging 147.5 a game with 11 combined touchdowns, rushing, receiving and kick returns.\n\n14. Brandon LaFell, WR, LSU, 6-3, 210:  A big, aggressive receiver who has 118 catches, 1,725 yards, 14 touchdowns and plenty of downfield blocks in his career.\n\n15. Sean Weatherspoon, OLB, Missouri, 6-1, 235:  Versatile prep standout in football, basketball and track (high jump), he established himself as a defensive leader as a sophomore in 2007.\n\n16. Ciron Black, OT, LSU, 6-5, 328:  He's started at left tackle in all 40 of his career games.\n\n17. Greg Hardy, DE, Mississippi, 6-4, 265:  He was sidelined part of 2008 with a foot injury but still managed 8½ sacks in nine games.\n\n18. Adam Ulatoski, OT, Texas, 6-8, 310:  A huge, reliable, seasoned lineman with 30 starts — 14 at left tackle and 16 on the right side.\n\n19. Antonio Coleman, OLB, Auburn, 6-2, 252:  Enters his senior season with 30 career tackles for loss and 14½ sacks.\n\n20. George Selvie, DE, South Florida, 6-4, 252:  Despite being slowed by a high ankle injury in 2008, he is the NCAA's active career leader in tackles for a loss with 79½.\n\n21. Geno Atkins, DT, Georgia, 6-1, 290:  He started all 13 games last year and totaled 34 tackles with a team-high 30 quarterback hurries.\n\n22. Marshwan Gilyard, WR, Cincinnati, 6-0, 185:  In 2008, he caught 81 passes for a school-record 1,276 yards and 11 touchdowns and set school mark with 994 yards on kickoff returns.\n\n23. Chris Brown, RB, Oklahoma, 5-11, 208:  Ready for a big senior season after rushing for 1,220 yards and scoring 20 touchdowns in 2008.\n\n24. Javier Arenas, CB, Alabama, 5-9, 198:  This All-SEC performer is also one of the most dangerous return specialists in college football.\n\n25. Jerry Hughes, OLB, Texas Christian, 6-2, 248:  He led the nation last year with 15 sacks, while placing in the top 10 with 19½ tackles for loss and six forced fumbles.\n\n26. Sergio Render, G, Virginia Tech, 6-3, 314:  This three-year starter had arthroscopic surgery on his shoulder in January but is expected to be fine for 2009.\n\n27. Brandon Lang, DE, Troy, 6-4, 250:  Physical force returned from 2007 knee injury to record 10½ sacks and 17½ tackles for loss in '08.\n\n28. Rico McCoy, OLB, Tennessee, 6-1, 224:  Excellent quickness helped him gather 87 tackles from the weakside spot last year.\n\n29. Brandon Graham, DE, Michigan, 6-2, 270:  He finished second in the nation a year ago with 20 tackles for loss and 10 sacks.\n\n30. Dennis Pitta, TE, Brigham Young, 6-5, 250:  Struggled with a knee injury last year but still caught 78 passes for 1,025 yards.\n\n31. Sam Young, OT, Notre Dame, 6-8, 330:  He has started 38 consecutive games, playing on the right and left side.\n\n32. Kyle Wilson, CB, Boise State, 5-10, 190:  Not only does he have excellent coverage skills, but last year Wilson averaged 14.2 yards on punt returns with three touchdowns.\n\n***\n\nCooney is publisher of NFLDraftScout.com.\n\nPosted\nUpdated\nE-mail | Print |\nTo report corrections and clarifications, contact Reader Editor Brent Jones. For publication consideration in the newspaper, send comments to letters@usatoday.com. Include name, phone number, city and state for verification. To view our corrections, go to corrections.usatoday.com.\nGuidelines: You share in the USA TODAY community, so please keep your comments smart and civil. Don't attack other readers personally, and keep your language decent. Use the \"Report Abuse\" button to make a difference. Read more."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://usatoday30.usatoday.com/sports/football/nfl/2009-05-05-2010-draft-preview_N.htm\",\n \"source_domain\": \"usatoday30.usatoday.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"80498\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:3NAUXLHVVMIDRQ3HMW3YQUH35PEWT5QA\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T06:14:49Z\",\n \"WARC-IP-Address\": \"165.254.27.73\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:35JWXWVXUO5S47KCRP6Q3MQ52C66CHJT\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://usatoday30.usatoday.com/sports/football/nfl/2009-05-05-2010-draft-preview_N.htm\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 43,\n 68,\n 130,\n 179,\n 318,\n 341,\n 480,\n 507,\n 508,\n 553,\n 554,\n 580,\n 608,\n 635,\n 667,\n 688,\n 716,\n 744,\n 774,\n 802,\n 826,\n 853,\n 880,\n 902,\n 928,\n 955,\n 981,\n 1014,\n 1047,\n 1073,\n 1102,\n 1125,\n 1150,\n 1169,\n 1170,\n 1185,\n 1389,\n 1390,\n 1646,\n 1647,\n 2011,\n 2012,\n 2200,\n 2201,\n 2398,\n 2399,\n 2566,\n 2567,\n 2875,\n 2876,\n 3034,\n 3035,\n 3195,\n 3196,\n 3327,\n 3328,\n 3515,\n 3516,\n 3634,\n 3635,\n 3804,\n 3805,\n 4025,\n 4026,\n 4167,\n 4168,\n 4332,\n 4333,\n 4504,\n 4505,\n 4765,\n 4766,\n 4930,\n 4931,\n 5126,\n 5127,\n 5288,\n 5289,\n 5478,\n 5479,\n 5575,\n 5576,\n 5711,\n 5712,\n 5849,\n 5850,\n 5967,\n 5968,\n 6140,\n 6141,\n 6280,\n 6281,\n 6464,\n 6465,\n 6603,\n 6604,\n 6744,\n 6745,\n 6917,\n 6918,\n 7079,\n 7080,\n 7218,\n 7219,\n 7345,\n 7346,\n 7474,\n 7475,\n 7606,\n 7607,\n 7722,\n 7723,\n 7898,\n 7899,\n 7903,\n 7904,\n 7946,\n 7947,\n 7954,\n 7962,\n 7979,\n 8261\n ],\n \"line_end_idx\": [\n 43,\n 68,\n 130,\n 179,\n 318,\n 341,\n 480,\n 507,\n 508,\n 553,\n 554,\n 580,\n 608,\n 635,\n 667,\n 688,\n 716,\n 744,\n 774,\n 802,\n 826,\n 853,\n 880,\n 902,\n 928,\n 955,\n 981,\n 1014,\n 1047,\n 1073,\n 1102,\n 1125,\n 1150,\n 1169,\n 1170,\n 1185,\n 1389,\n 1390,\n 1646,\n 1647,\n 2011,\n 2012,\n 2200,\n 2201,\n 2398,\n 2399,\n 2566,\n 2567,\n 2875,\n 2876,\n 3034,\n 3035,\n 3195,\n 3196,\n 3327,\n 3328,\n 3515,\n 3516,\n 3634,\n 3635,\n 3804,\n 3805,\n 4025,\n 4026,\n 4167,\n 4168,\n 4332,\n 4333,\n 4504,\n 4505,\n 4765,\n 4766,\n 4930,\n 4931,\n 5126,\n 5127,\n 5288,\n 5289,\n 5478,\n 5479,\n 5575,\n 5576,\n 5711,\n 5712,\n 5849,\n 5850,\n 5967,\n 5968,\n 6140,\n 6141,\n 6280,\n 6281,\n 6464,\n 6465,\n 6603,\n 6604,\n 6744,\n 6745,\n 6917,\n 6918,\n 7079,\n 7080,\n 7218,\n 7219,\n 7345,\n 7346,\n 7474,\n 7475,\n 7606,\n 7607,\n 7722,\n 7723,\n 7898,\n 7899,\n 7903,\n 7904,\n 7946,\n 7947,\n 7954,\n 7962,\n 7979,\n 8261,\n 8489\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 8489,\n \"ccnet_original_nlines\": 122,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.23557187616825104,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.04669465124607086,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3326337933540344,\n \"rps_doc_frac_unique_words\": 0.49607422947883606,\n \"rps_doc_mean_word_length\": 4.686652183532715,\n \"rps_doc_num_sentences\": 95,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.998222351074219,\n \"rps_doc_word_count\": 1401,\n \"rps_doc_frac_chars_dupe_10grams\": 0.03441974148154259,\n \"rps_doc_frac_chars_dupe_5grams\": 0.03716113045811653,\n \"rps_doc_frac_chars_dupe_6grams\": 0.03441974148154259,\n \"rps_doc_frac_chars_dupe_7grams\": 0.03441974148154259,\n \"rps_doc_frac_chars_dupe_8grams\": 0.03441974148154259,\n \"rps_doc_frac_chars_dupe_9grams\": 0.03441974148154259,\n \"rps_doc_frac_chars_top_2gram\": 0.006853490136563778,\n \"rps_doc_frac_chars_top_3gram\": 0.010660979896783829,\n \"rps_doc_frac_chars_top_4gram\": 0.008528780192136765,\n \"rps_doc_books_importance\": -853.8591918945312,\n \"rps_doc_books_importance_length_correction\": -853.8591918945312,\n \"rps_doc_openwebtext_importance\": -464.8740234375,\n \"rps_doc_openwebtext_importance_length_correction\": -464.8740234375,\n \"rps_doc_wikipedia_importance\": -344.0247802734375,\n \"rps_doc_wikipedia_importance_length_correction\": -344.0247802734375\n },\n \"fasttext\": {\n \"dclm\": 0.0014128700131550431,\n \"english\": 0.9234475493431091,\n \"fineweb_edu_approx\": 0.9359179735183716,\n \"eai_general_math\": 0.004240159876644611,\n \"eai_open_web_math\": 0.1337827444076538,\n \"eai_web_code\": 0.00045347001287154853\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.334\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"658.3\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"12\",\n \"label\": \"Listicle\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":273,"cells":{"id":{"kind":"number","value":-490277203711872100,"string":"-490,277,203,711,872,100"},"text":{"kind":"string","value":"Properties to rent\n\nProperties to rent View all properties to rent from Jenkins Best, Cardiff\nJenkins Best, Cardiffbranch details\n\nJenkins Best was established by Chartered Surveyor's Anthony Jenkins and Henry Best in March 2012 to offer a personable and professional service for property owners and occupiers. The company has a long term focus on building strong relationships and contributing towards taking the commercial property market forward in South Wales in terms of quality, efficiency and activity.\n\nWith a strong understanding of the South Wales commercial property markets and a total of over 35 years experience Jenkins Best is well equipped to provide sound commercial advice and considered analysis of property fundamentals.\n\nJenkins Best's Head Office is strategically located at Treforest Industrial Estate enabling us to service our instruction base extending across the whole South Wales area from Chepstow in the east to Pembroke in the west.\n\nLocal Map\n\nNote: The pin shows the centre of the branch's postcode, and does not pinpoint the exact address.\n\nContact details\n\n20 Centre Court Treforest Industrial Estate, CF37 5YR\n\nLetting: 02920 291776  Local call rate\n\nSee it? Scan it!\n\nQR code\n\nWe use cookies to optimise your experience on our website. If you continue we'll assume that you are happy to receive our cookies. However, if you would like to, you can change your cookie settings at any time.\n\nContinue"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.rightmove.co.uk/estate-agents/agent/Jenkins-Best/Cardiff-96533.html/svr/1713\",\n \"source_domain\": \"www.rightmove.co.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"45282\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2P74QD55AISW6YEDZXMFTL5CGQRTWZIW\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-25T08:12:31Z\",\n \"WARC-IP-Address\": \"80.64.55.7\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:IUV5GTIM44LVSTB2ROJFRPOAJ2BCB5PP\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.rightmove.co.uk/estate-agents/agent/Jenkins-Best/Cardiff-96533.html/svr/1713\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 19,\n 20,\n 94,\n 130,\n 131,\n 510,\n 511,\n 741,\n 742,\n 964,\n 965,\n 975,\n 976,\n 1074,\n 1075,\n 1091,\n 1092,\n 1146,\n 1147,\n 1186,\n 1187,\n 1204,\n 1205,\n 1213,\n 1214,\n 1425,\n 1426\n ],\n \"line_end_idx\": [\n 19,\n 20,\n 94,\n 130,\n 131,\n 510,\n 511,\n 741,\n 742,\n 964,\n 965,\n 975,\n 976,\n 1074,\n 1075,\n 1091,\n 1092,\n 1146,\n 1147,\n 1186,\n 1187,\n 1204,\n 1205,\n 1213,\n 1214,\n 1425,\n 1426,\n 1434\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1434,\n \"ccnet_original_nlines\": 27,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3320158123970032,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.011857709847390652,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.11067193746566772,\n \"rps_doc_frac_unique_words\": 0.6371681690216064,\n \"rps_doc_mean_word_length\": 5.185840606689453,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.7111124992370605,\n \"rps_doc_word_count\": 226,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03754265978932381,\n \"rps_doc_frac_chars_top_3gram\": 0.04095562919974327,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -122.77680969238281,\n \"rps_doc_books_importance_length_correction\": -120.45203399658203,\n \"rps_doc_openwebtext_importance\": -69.78996276855469,\n \"rps_doc_openwebtext_importance_length_correction\": -69.78996276855469,\n \"rps_doc_wikipedia_importance\": -48.602256774902344,\n \"rps_doc_wikipedia_importance_length_correction\": -41.55583190917969\n },\n \"fasttext\": {\n \"dclm\": 0.0006130299880169332,\n \"english\": 0.9352695941925049,\n \"fineweb_edu_approx\": 0.8518897891044617,\n \"eai_general_math\": 0.00028700000257231295,\n \"eai_open_web_math\": 0.008515600115060806,\n \"eai_web_code\": 0.000007269999969139462\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"338.0246\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n },\n \"secondary\": {\n \"code\": \"338.024\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":274,"cells":{"id":{"kind":"number","value":7558435334640041000,"string":"7,558,435,334,640,041,000"},"text":{"kind":"string","value":"Leaderboard\n\nDiscrepancy in scoring or point accumulation must be reported in writing no later than 30 days after the event posted date in question. If not, points will not count.\n\n\nTop Student Details\n\nResults for Malvina Pelleriti\n\nEvent Name Region Bonus Points Total Points Date Posted\nThe Falls Premier Ball 7 100.00 175.00 1/31/2013\nLa Classique Du Quebec 7 100.00 188.00 3/7/2013\nTulip Classic - Festival of Dance 7 0.00 78.00 5/28/2013\nTotal: 200 441  "},"metadata":{"kind":"string","value":"{\n \"url\": \"http://dancesportseries.com/top_students_detail.php?c=tt&fn=Malvina&ln=Pelleriti\",\n \"source_domain\": \"dancesportseries.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"5128\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:6P7ORXYO47M6XRB4KBB77Q7C5TQUAA3B\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-18T20:42:38Z\",\n \"WARC-IP-Address\": \"50.63.51.1\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:IHURMAMGTIVWOMAMSUWQM5TXJCNCTA5Y\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://dancesportseries.com/top_students_detail.php?c=tt&fn=Malvina&ln=Pelleriti\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 12,\n 13,\n 180,\n 181,\n 182,\n 202,\n 203,\n 233,\n 234,\n 290,\n 339,\n 387,\n 444\n ],\n \"line_end_idx\": [\n 12,\n 13,\n 180,\n 181,\n 182,\n 202,\n 203,\n 233,\n 234,\n 290,\n 339,\n 387,\n 444,\n 460\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 460,\n \"ccnet_original_nlines\": 13,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.1553398072719574,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.42718446254730225,\n \"rps_doc_frac_unique_words\": 0.8243243098258972,\n \"rps_doc_mean_word_length\": 4.891891956329346,\n \"rps_doc_num_sentences\": 9,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.039314270019531,\n \"rps_doc_word_count\": 74,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.033149171620607376,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -50.46521759033203,\n \"rps_doc_books_importance_length_correction\": -52.6847038269043,\n \"rps_doc_openwebtext_importance\": -30.29225730895996,\n \"rps_doc_openwebtext_importance_length_correction\": -32.511741638183594,\n \"rps_doc_wikipedia_importance\": -19.760011672973633,\n \"rps_doc_wikipedia_importance_length_correction\": -21.979496002197266\n },\n \"fasttext\": {\n \"dclm\": 6.000000212225132e-7,\n \"english\": 0.7455591559410095,\n \"fineweb_edu_approx\": 0.8634287714958191,\n \"eai_general_math\": 0.00023537999368272722,\n \"eai_open_web_math\": 0.17434245347976685,\n \"eai_web_code\": -0.000008940000043367036\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"793.01\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"793.011\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"20\",\n \"label\": \"Structured Data\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":275,"cells":{"id":{"kind":"number","value":-2266178586448608300,"string":"-2,266,178,586,448,608,300"},"text":{"kind":"string","value":"Login\n\nStrappy NFC reader brings interactive smartphone ads to Tokyo subway cars\n\nStrappy NFC\n\nFor the past few weeks, commuters on some Tokyo subway lines have been seeing a steady stream of interactive smartphone ads, thanks to a new product called Strappy. Created by Shunkosha, a Japanese printing company, Strappy is a rectangular plastic covering that attaches to the straps hanging from subway car ceilings. Within this covering is a reader that supports the FeliCA NFC standard — the same contactless system behind Pasmo, Tokyo's rechargeable subway cards. Users who place their smartphones over the blue boxes will have their browsers directed to a URL with ads, coupons, or other marketing materials.\n\nOf course, the entire system demands a strong underground data connection, but that's not as imposing a hurdle as it may seem, since NTT DoCoMo, Softbank, and KDDI are already building antennas within Tokyo's subway tunnels. Thus far, Strappy has been installed in cars along the Ginza and Marunouchi lines, as part of a trial run that's scheduled to conclude this month.\n\nThere are 5 Comments. Load 'Em Up. Show speed reading tips and settings\n\nShortcuts to mastering the comment thread. Use wisely.\n\nC - Next Comment\nX - Mark as Read\n\nR - Reply\nZ - Mark Read & Next\n\nShift + C - Previous\nShift + A - Mark All Read\n\nComment Settings\n\nLive comment alert: Hide it!\n\nComments for this post are closed.\n\nThe Verge"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://mobile.theverge.com/2012/6/4/3061047/strappy-nfc-tokyo-subway-smartphone-ads\",\n \"source_domain\": \"mobile.theverge.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"34712\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:QR2SE6EILH7TR5EKODNHOAIGMECOU73P\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-21T16:02:12Z\",\n \"WARC-IP-Address\": \"69.25.121.112\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:SAUZWTPJJAXAW7RRK3DYOU5ANUQWN3AD\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://mobile.theverge.com/2012/6/4/3061047/strappy-nfc-tokyo-subway-smartphone-ads\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 6,\n 7,\n 81,\n 82,\n 94,\n 95,\n 711,\n 712,\n 1084,\n 1085,\n 1157,\n 1158,\n 1213,\n 1214,\n 1231,\n 1248,\n 1249,\n 1259,\n 1280,\n 1281,\n 1302,\n 1328,\n 1329,\n 1346,\n 1347,\n 1376,\n 1377,\n 1412,\n 1413\n ],\n \"line_end_idx\": [\n 6,\n 7,\n 81,\n 82,\n 94,\n 95,\n 711,\n 712,\n 1084,\n 1085,\n 1157,\n 1158,\n 1213,\n 1214,\n 1231,\n 1248,\n 1249,\n 1259,\n 1280,\n 1281,\n 1302,\n 1328,\n 1329,\n 1346,\n 1347,\n 1376,\n 1377,\n 1412,\n 1413,\n 1422\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1422,\n \"ccnet_original_nlines\": 29,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3079710006713867,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.043478261679410934,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1557970941066742,\n \"rps_doc_frac_unique_words\": 0.6753246784210205,\n \"rps_doc_mean_word_length\": 4.88744592666626,\n \"rps_doc_num_sentences\": 13,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.840739727020264,\n \"rps_doc_word_count\": 231,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.017714789137244225,\n \"rps_doc_frac_chars_top_3gram\": 0.042515501379966736,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -116.3960952758789,\n \"rps_doc_books_importance_length_correction\": -115.30744171142578,\n \"rps_doc_openwebtext_importance\": -60.9196891784668,\n \"rps_doc_openwebtext_importance_length_correction\": -60.9196891784668,\n \"rps_doc_wikipedia_importance\": -62.94741439819336,\n \"rps_doc_wikipedia_importance_length_correction\": -57.096920013427734\n },\n \"fasttext\": {\n \"dclm\": 0.0002191700041294098,\n \"english\": 0.9383126497268677,\n \"fineweb_edu_approx\": 1.3735060691833496,\n \"eai_general_math\": 0.0030245198868215084,\n \"eai_open_web_math\": 0.1331457495689392,\n \"eai_web_code\": 0.00009775000216905028\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"004.689\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computers and Computer science\"\n }\n },\n \"secondary\": {\n \"code\": \"658.85\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":276,"cells":{"id":{"kind":"number","value":6080043492182552000,"string":"6,080,043,492,182,552,000"},"text":{"kind":"string","value":"Follow Us !\n\nVisit our Facebook Scribbleshop page Follow Scribbleshop on Twitter Visit our YouTube Scribbleshop channelVisit our Google Plus PageVisit us and Pin it at Scribbleshop on Pintrest\n\nShare this site:\n\nWHITE -LOW TACK ARTIST TAPE\n\nWHITE -LOW TACK ARTIST TAPE\n\n3M    SKU #426157\nLike\nLike this product!\n(0)\n\n3M-Scotch Low Tack Artist Tape. This tape is specially formulated to perform well in more demanding applications that artists encounter. The securely sticking tape is the way to achieve perfectly straight; hard lines with no bleeding and it removes easily and cleanly. This package contains one 10yd/9.1m roll of 3/4in/19mm wide white tape. Adhesive conforms to ASTM D4236. Made in USA.\n\n\nOur Price : $5.19\n\nScotch Low Tack Artist Tape-.75X10 Yards\n\nUPC: 051131936102\nWeight: 1.1 oz.\nProduct Dimentions: (in \"\") Height: 4.25 x Width: 3.90 x Depth: 1.15\nThis product is not Hazardous. You can choose any shipping method while ordering this product\nYou May Also Like"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.scribbleshop.com/content/white-low-tack-artist-tape?quicktabs_prodcuts_tabs=0\",\n \"source_domain\": \"www.scribbleshop.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"76836\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:B5APSKULRSBTJNYYY5MKNB5QAB3BUITW\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-25T08:47:20Z\",\n \"WARC-IP-Address\": \"8.19.32.152\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:7KET7GLELNUBBXGSAWTF4CHGSLLZ4PKY\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.scribbleshop.com/content/white-low-tack-artist-tape?quicktabs_prodcuts_tabs=0\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 12,\n 13,\n 193,\n 194,\n 211,\n 212,\n 240,\n 241,\n 269,\n 270,\n 288,\n 293,\n 312,\n 316,\n 317,\n 704,\n 705,\n 706,\n 724,\n 725,\n 766,\n 767,\n 785,\n 801,\n 870,\n 964\n ],\n \"line_end_idx\": [\n 12,\n 13,\n 193,\n 194,\n 211,\n 212,\n 240,\n 241,\n 269,\n 270,\n 288,\n 293,\n 312,\n 316,\n 317,\n 704,\n 705,\n 706,\n 724,\n 725,\n 766,\n 767,\n 785,\n 801,\n 870,\n 964,\n 981\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 981,\n \"ccnet_original_nlines\": 26,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.19704432785511017,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.08866994827985764,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2610837519168854,\n \"rps_doc_frac_unique_words\": 0.6883116960525513,\n \"rps_doc_mean_word_length\": 5.00649356842041,\n \"rps_doc_num_sentences\": 18,\n \"rps_doc_symbol_to_word_ratio\": 0.004926110152155161,\n \"rps_doc_unigram_entropy\": 4.480864524841309,\n \"rps_doc_word_count\": 154,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.05706873908638954,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03631646931171417,\n \"rps_doc_frac_chars_top_3gram\": 0.06744488328695297,\n \"rps_doc_frac_chars_top_4gram\": 0.06614785641431808,\n \"rps_doc_books_importance\": -90.49755859375,\n \"rps_doc_books_importance_length_correction\": -90.49755859375,\n \"rps_doc_openwebtext_importance\": -59.940093994140625,\n \"rps_doc_openwebtext_importance_length_correction\": -46.00758743286133,\n \"rps_doc_wikipedia_importance\": -42.001522064208984,\n \"rps_doc_wikipedia_importance_length_correction\": -42.001522064208984\n },\n \"fasttext\": {\n \"dclm\": -0.000004290000106266234,\n \"english\": 0.796509861946106,\n \"fineweb_edu_approx\": 0.8311376571655273,\n \"eai_general_math\": -0.000004649999937100802,\n \"eai_open_web_math\": 0.123665452003479,\n \"eai_web_code\": -0.00000965999970503617\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"745.5\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Drawing, Decoration and ornament, and Design\",\n \"level_3\": \"Decorative arts\"\n }\n },\n \"secondary\": {\n \"code\": \"663.7\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Chemistry, Technical and Chemical engineering\",\n \"level_3\": \"Beverages\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":277,"cells":{"id":{"kind":"number","value":8208206683955317000,"string":"8,208,206,683,955,317,000"},"text":{"kind":"string","value":"Top Sources\n\nBy Region\n\n\nClassifieds\n\nReviews in history\nReviews of significant work in all fields of historical interest. Sign up for email alerts\nhistory.ac.uk\nBBIH: a new bibliography\nSearch over 500,000 books and articles about British and Irish history in the new BBIH\nhistory.ac.uk\n\nLatest questions\n\nCoal Porters in England I noticed that from 1806, a salary was paid...\ndates What does the date 2d of Richard III mean and is...\n\nMaps > Ordnance Survey 1:10,560 - Epoch 1 > Scotland - Invernessshire & Skye > 017\n\nZoom\n\nMAX | HIGH | LOW | MIN    Satellite (new window)\n\nPublication date\n\n1876\n\nCitation\n\n'Scotland - Invernessshire & Skye: 017', Ordnance Survey 1:10,560 - Epoch 1 (1876). URL: http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4 Date accessed: 19 June 2013. Add to my bookshelf\n\nSupporting documents\n\nCentral coordinates\n\n57.4102, -4.7021\n\nMap data copyright\n\nCopyright (c) and database right Crown Copyright and Landmark Information Group Ltd (all rights reserved 2013)"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4\",\n \"source_domain\": \"www.british-history.ac.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"35788\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:TPDK7RH3TQ7QKWD2GPXGW2P247S546YX\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T04:22:49Z\",\n \"WARC-IP-Address\": \"193.39.212.226\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:5CBB6E6N35H4U5WF6DFAL75Q5DLP6GMY\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 12,\n 13,\n 23,\n 24,\n 25,\n 37,\n 38,\n 57,\n 148,\n 162,\n 187,\n 274,\n 288,\n 289,\n 306,\n 307,\n 378,\n 436,\n 437,\n 520,\n 521,\n 526,\n 527,\n 576,\n 577,\n 594,\n 595,\n 600,\n 601,\n 610,\n 611,\n 827,\n 828,\n 849,\n 850,\n 870,\n 871,\n 888,\n 889,\n 908,\n 909\n ],\n \"line_end_idx\": [\n 12,\n 13,\n 23,\n 24,\n 25,\n 37,\n 38,\n 57,\n 148,\n 162,\n 187,\n 274,\n 288,\n 289,\n 306,\n 307,\n 378,\n 436,\n 437,\n 520,\n 521,\n 526,\n 527,\n 576,\n 577,\n 594,\n 595,\n 600,\n 601,\n 610,\n 611,\n 827,\n 828,\n 849,\n 850,\n 870,\n 871,\n 888,\n 889,\n 908,\n 909,\n 1019\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1019,\n \"ccnet_original_nlines\": 41,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.15909090638160706,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.040909089148044586,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.0476190485060215,\n \"rps_doc_frac_no_alph_words\": 0.37272727489471436,\n \"rps_doc_frac_unique_words\": 0.7625899314880371,\n \"rps_doc_mean_word_length\": 5.633093357086182,\n \"rps_doc_num_sentences\": 17,\n \"rps_doc_symbol_to_word_ratio\": 0.009090909734368324,\n \"rps_doc_unigram_entropy\": 4.562322616577148,\n \"rps_doc_word_count\": 139,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.06641124188899994,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03575989976525307,\n \"rps_doc_frac_chars_top_3gram\": 0.051085568964481354,\n \"rps_doc_frac_chars_top_4gram\": 0.06385695934295654,\n \"rps_doc_books_importance\": -73.18817138671875,\n \"rps_doc_books_importance_length_correction\": -73.18817138671875,\n \"rps_doc_openwebtext_importance\": -44.81525421142578,\n \"rps_doc_openwebtext_importance_length_correction\": -31.02372169494629,\n \"rps_doc_wikipedia_importance\": -31.058624267578125,\n \"rps_doc_wikipedia_importance_length_correction\": -31.058624267578125\n },\n \"fasttext\": {\n \"dclm\": 0.00006472999666584656,\n \"english\": 0.7694305777549744,\n \"fineweb_edu_approx\": 1.7033897638320923,\n \"eai_general_math\": -0.000005129999863129342,\n \"eai_open_web_math\": 0.013260009698569775,\n \"eai_web_code\": -0.000009299999874201603\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"912.03\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Geography and Voyages and travels\",\n \"level_3\": \"Maps and Atlases\"\n }\n },\n \"secondary\": {\n \"code\": \"941\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Europe\",\n \"level_3\": \"Scotland and Ireland\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"20\",\n \"label\": \"Structured Data\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":278,"cells":{"id":{"kind":"number","value":-7053424230777341000,"string":"-7,053,424,230,777,341,000"},"text":{"kind":"string","value":"Memorial Day Blowout! Entire Store On Sale! 10% Off Orders Up To $100 | 15% Off Orders Over $100\nGood through 5/27/13, excludes Books, Wine, Nambe, Michael Aram, Sales Items, Sukkahs & Schach, Ketubot, Tefillin and Shipping Costs.\n\nJudaism.com\nJudaism.com\n1.800.JUDAISM\nNeed Help?\nSearch Judaism.com for Jewish gifts, Judaica and Jewish books.\n\nPaper Shoppe\n\nJudaism.com shopping basket\neMail Sign up\nGift Certificates\nGift Registry\n\nShare:  Email this page to someone. Share this page on del.icio.us Share this page on Facebook Share this page on MySpace Share this page on Reddit Share this page on Twitter Share this page on Pinterest\nReference & Quotations\nTop Stores\nJewish Wedding\nKosher Wine\nJewish Books\nMezuzahs\nPaper Shoppe\nBar/Bat Mitzvah\nSterling Silver\nTop Categories\nKetubahs\nWedding Glass Judaica\nTallis\nGary Rosenthal\nKiddush Cups\nTzedakah Boxes\n\n\nJewish Holidays\nTisha B'Av Mon. Eve Jul 15\nRosh Hashanah Wed. Eve Sep 4\nYom Kippur Fri. Eve Sep 13\n\n\nItems 1 - 10  of  10 | View All\nChicken Soup to Warm the Neshama\nFrom Krakow to Krypton\nGreat Jewish Quotations\nRevised\nChicken Soup to Warm the Neshama\n101 Short Stories, Insights & Sayings Containing Life-Long Lessons\nPesach Burston, et al.\n5.25\"x7\"\nJDC#29920\nList Price:\n$9.99\n\n\nFrom Krakow to Krypton\nJews and Comic Books\nArie Kaplan\n8.4\"X10.9\"\nJDC#50005\nList Price:\n$25.00\n\nSale Price:\n$21.25\n\n\nGreat Jewish Quotations\nBy Jews and About Jews\n7.75\"x10.25\"\nJDC#40105\nList Price:\n$29.95\n\nOutwitting History\nThe All New Jewish Quiz Book\nThe Jerusalem Book of Quotations\n\nOutwitting History\nThe amazing adventures of a man who rescued a million Yiddish books.\nAaron Lansky\n\nThe All New Jewish Quiz Book\nBarbara Spector\nJDC#50531\nList Price:\n$9.95\n\n\nThe Jerusalem Book of Quotations\nA 3,000 Year Perspective\nJack Friedman\nJDC#40124\nList Price:\n$24.95\n\nThe Jewish Graphic Novel\nThe Judaic Tradition\nTradition!\n\nThe Jewish Graphic Novel\nCritical Approaches\n\nThe Judaic Tradition\nA Sourcebook of Jewish literature.\nJDC#10654\nList Price:\n$24.95\n\n\nTradition!\nJewish Wisdom for Eveyday Life\nSuzanne S. Zenkel\nJDC#40118\nList Price:\n$7.99\n\nWhere There's Smoke, There's Salmon\n\nWhere There's Smoke, There's Salmon\nJewish Wisdom from Moses to Woody Allen\nMichael Levin\nJDC#43508\nList Price:\n$10.95\n\n\n\n\nJewish Resources\nRed String Video\nInstructional Media\nBeyond The Book\nJudaism.com Info\nContact Judaism.com\nAbout Judaism.com\nShipping Policy\nReturn Policy\nPrograms & Extras\nAffiliate/Referral Program\nGift Registry\nGift Certificates\nJewish Resources\nOrder By Phone:\n1-800-JUDAISM\n(1-800-583-2476)\n\nQuestions Or Comments:\ninfo@judaism.com\n\nTechnical Problems:\nwebmaster@judaism.com\n\nCategory Listing\nComplete Product Listing\n\nCopyright © 1995 - 2013 U.S. Judaica, Inc\n\nTo find out about Shipping & Handling charges please view our shipping policy.\n\n\nJudaism.com is the longest established Jewish book, Judaica and Jewish gift store on the Internet. Our catalog is the single most comprehensive catalog of Judaica, Jewish books, CDs, video, software, religious articles and Jewish gifts available.\n\nJewish Books |  Judaica & Jewish Gifts |  Jewish Wedding |  Bar Mitzvah & Bat Mitzvah |  Jewish Children's Store |  Shabbat & Jewish Holidays |  Jewish Jewelry |  Jewish Art |  Kosher Wine |  Jewish Artists & Judaica Designers |  Paper Goods & Disposable Dishes"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.judaism.com/search.asp?sctn=401\",\n \"source_domain\": \"www.judaism.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"181071\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:NX5I3JJ7PCVSG3RVLZBMYYYL7IOLJOCJ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-27T02:56:33Z\",\n \"WARC-IP-Address\": \"216.18.20.147\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:TEUBKFFUCA2T35VL62T3JVPQCQGFR5WA\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.judaism.com/search.asp?sctn=401\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 97,\n 231,\n 232,\n 244,\n 256,\n 270,\n 281,\n 344,\n 345,\n 358,\n 359,\n 387,\n 401,\n 419,\n 433,\n 434,\n 638,\n 661,\n 672,\n 687,\n 699,\n 712,\n 721,\n 734,\n 750,\n 766,\n 781,\n 790,\n 812,\n 819,\n 834,\n 847,\n 862,\n 863,\n 864,\n 880,\n 907,\n 936,\n 963,\n 964,\n 965,\n 997,\n 1030,\n 1053,\n 1077,\n 1085,\n 1118,\n 1185,\n 1208,\n 1217,\n 1227,\n 1239,\n 1245,\n 1246,\n 1247,\n 1270,\n 1291,\n 1303,\n 1314,\n 1324,\n 1336,\n 1343,\n 1344,\n 1356,\n 1363,\n 1364,\n 1365,\n 1389,\n 1412,\n 1425,\n 1435,\n 1447,\n 1454,\n 1455,\n 1474,\n 1503,\n 1536,\n 1537,\n 1556,\n 1625,\n 1638,\n 1639,\n 1668,\n 1684,\n 1694,\n 1706,\n 1712,\n 1713,\n 1714,\n 1747,\n 1772,\n 1786,\n 1796,\n 1808,\n 1815,\n 1816,\n 1841,\n 1862,\n 1873,\n 1874,\n 1899,\n 1919,\n 1920,\n 1941,\n 1976,\n 1986,\n 1998,\n 2005,\n 2006,\n 2007,\n 2018,\n 2049,\n 2067,\n 2077,\n 2089,\n 2095,\n 2096,\n 2132,\n 2133,\n 2169,\n 2209,\n 2223,\n 2233,\n 2245,\n 2252,\n 2253,\n 2254,\n 2255,\n 2256,\n 2273,\n 2290,\n 2310,\n 2326,\n 2343,\n 2363,\n 2381,\n 2397,\n 2411,\n 2429,\n 2456,\n 2470,\n 2488,\n 2505,\n 2521,\n 2535,\n 2552,\n 2553,\n 2576,\n 2593,\n 2594,\n 2614,\n 2636,\n 2637,\n 2654,\n 2679,\n 2680,\n 2722,\n 2723,\n 2802,\n 2803,\n 2804,\n 3051,\n 3052\n ],\n \"line_end_idx\": [\n 97,\n 231,\n 232,\n 244,\n 256,\n 270,\n 281,\n 344,\n 345,\n 358,\n 359,\n 387,\n 401,\n 419,\n 433,\n 434,\n 638,\n 661,\n 672,\n 687,\n 699,\n 712,\n 721,\n 734,\n 750,\n 766,\n 781,\n 790,\n 812,\n 819,\n 834,\n 847,\n 862,\n 863,\n 864,\n 880,\n 907,\n 936,\n 963,\n 964,\n 965,\n 997,\n 1030,\n 1053,\n 1077,\n 1085,\n 1118,\n 1185,\n 1208,\n 1217,\n 1227,\n 1239,\n 1245,\n 1246,\n 1247,\n 1270,\n 1291,\n 1303,\n 1314,\n 1324,\n 1336,\n 1343,\n 1344,\n 1356,\n 1363,\n 1364,\n 1365,\n 1389,\n 1412,\n 1425,\n 1435,\n 1447,\n 1454,\n 1455,\n 1474,\n 1503,\n 1536,\n 1537,\n 1556,\n 1625,\n 1638,\n 1639,\n 1668,\n 1684,\n 1694,\n 1706,\n 1712,\n 1713,\n 1714,\n 1747,\n 1772,\n 1786,\n 1796,\n 1808,\n 1815,\n 1816,\n 1841,\n 1862,\n 1873,\n 1874,\n 1899,\n 1919,\n 1920,\n 1941,\n 1976,\n 1986,\n 1998,\n 2005,\n 2006,\n 2007,\n 2018,\n 2049,\n 2067,\n 2077,\n 2089,\n 2095,\n 2096,\n 2132,\n 2133,\n 2169,\n 2209,\n 2223,\n 2233,\n 2245,\n 2252,\n 2253,\n 2254,\n 2255,\n 2256,\n 2273,\n 2290,\n 2310,\n 2326,\n 2343,\n 2363,\n 2381,\n 2397,\n 2411,\n 2429,\n 2456,\n 2470,\n 2488,\n 2505,\n 2521,\n 2535,\n 2552,\n 2553,\n 2576,\n 2593,\n 2594,\n 2614,\n 2636,\n 2637,\n 2654,\n 2679,\n 2680,\n 2722,\n 2723,\n 2802,\n 2803,\n 2804,\n 3051,\n 3052,\n 3313\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3313,\n \"ccnet_original_nlines\": 163,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.10349854081869125,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.02478134073317051,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3119533360004425,\n \"rps_doc_frac_unique_words\": 0.5485231876373291,\n \"rps_doc_mean_word_length\": 5.51265811920166,\n \"rps_doc_num_sentences\": 49,\n \"rps_doc_symbol_to_word_ratio\": 0.011661809869110584,\n \"rps_doc_unigram_entropy\": 5.179163932800293,\n \"rps_doc_word_count\": 474,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.08113279938697815,\n \"rps_doc_frac_chars_dupe_6grams\": 0.038270190358161926,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02755453996360302,\n \"rps_doc_frac_chars_top_3gram\": 0.029850749298930168,\n \"rps_doc_frac_chars_top_4gram\": 0.034443169832229614,\n \"rps_doc_books_importance\": -310.75665283203125,\n \"rps_doc_books_importance_length_correction\": -310.75665283203125,\n \"rps_doc_openwebtext_importance\": -174.18704223632812,\n \"rps_doc_openwebtext_importance_length_correction\": -174.18704223632812,\n \"rps_doc_wikipedia_importance\": -128.95001220703125,\n \"rps_doc_wikipedia_importance_length_correction\": -128.95001220703125\n },\n \"fasttext\": {\n \"dclm\": -0.000009059999683813658,\n \"english\": 0.6849554181098938,\n \"fineweb_edu_approx\": 1.55125093460083,\n \"eai_general_math\": -0.000007029999778751517,\n \"eai_open_web_math\": 0.026422860100865364,\n \"eai_web_code\": -0.000009890000001178123\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"296.0\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Religions\",\n \"level_3\": \"Judaism\"\n }\n },\n \"secondary\": {\n \"code\": \"658.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":279,"cells":{"id":{"kind":"number","value":-666648848829156900,"string":"-666,648,848,829,156,900"},"text":{"kind":"string","value":"SUBSCRIBE NOW WELCOME BACK. Do you want to continue reading where you left off? New Republic subscribers can pick up where they left off no matter which device they were previously using. SUBSCRIBE NOW\n\nGo Home Beyond Hypocrisy\n\nTHE PLANK APRIL 30, 2007\n\nBeyond Hypocrisy\n\nTimothy Noah points out that former USAID director Randall Tobias is a hypocrite for cavorting with call girls, seeing as how he oversaw USAID's policy of refusing AIDS funding to any group that didn't sign an anti-prostitution loyalty oath. That's an amusing bit of irony, but now seems like a good time to note that the policy really isn't very funny at all.\n\nWhen Congress first told USAID to make all its recipients sign the pledge, in 2003, lawyers at the Justice Department argued that the policy violated the First Amendment and should be ignored. But the Christian right blew a gasket, DoJ quickly reversed itself, and, under Tobias, USAID started requiring the pledge. The fallout was severe: Brazil lost $40 million in funding for a successful program that persuaded sex workers to use condoms. Over 200 NGOs wrote the White House complaining that the pledge would interfere with their work. In two separate court cases last year, federal judges ordered USAID to stop the policy (those decisions are still being appealed).\n\nOf course, since Tobias didn't come up with the pledge, presumably the White House will just find someone with a cleaner personal life to keep things quietly going, but it's still appalling. And here's another question. When Tobias was first hired to head up Bush's AIDS initiative in 2003, a number of people suggested that the former Eli Lilly CEO had been brought aboard to ensure that the money would be spent on brand-name pharmaceuticals rather than cheaper generic drugs. Big Pharma plunders the aid budget, etc. But I haven't seen much follow-up reporting on this, and now seems like an opportune time to find out if Tobias really was horrible on this front or not.\n\n--Bradford Plumer\n\nSHARE YOUR THOUGHTS\n\nShow all 7 comments\n\nYou must be a subscriber to post comments. Subscribe today.\n\n7 comments\n\nNew Rasmussen Poll of Likely Dem Primary Voters... Obama: 32% HRC: 30% Obama now leads among voters under 40. Hillary has a 2-point edge among Democrats. Obama has a 19-point lead among independents. In the past 5 weeks: Obama's is up 7 points; Hillary is down 7 points; and John Edwards is stuck in neutral.\n\n- g.mcentire\n\nApril 30, 2007 at 8:26pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nAfter this and Tennant puking his guts out in public, how can any rational, morally upright person defend America. All we had to do to win the \"War on Terror\" was maintain the moral highground and we couldn't even do that. Pond Scumm.\n\n- Yminale\n\nApril 30, 2007 at 9:02pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nPerhaps Tobias will say he was able to buy his own condoms and therefore didn't need to take an anti-prostitution pledge.\n\n- epackard\n\nMay 1, 2007 at 9:31am\n\nYou must be a subscriber to post comments. Subscribe today.\n\nrevelations will be that Rick Santorum owns gay porn, Wolfowitz's maid is in Al Qaeda, and Dick Cheney refrained from kicking a puppy.\n\n- japepper\n\nMay 1, 2007 at 12:28pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nTNR's blogs are very sloppy. I know you guys probably aren't fact-checked, but maybe you could make some effort to be accurate. 1. Brazil didn't \"lose 40 million\" in AID, it refused to accept 40 million in AID in order to protest the Bush admin policy, which would have required officials to sign a statement \"condemning\" sex work. 2. Ultimately, the policy doesn't arise from crazy religious wackos in the Bush admin, it comes from two laws that require groups receiving federal funds have a policy \" prohibits funds from going to any group or organization that does not have a policy \"explicitly opposing prostitution and sex trafficking.\" I suppose Bush could have vetoed the laws, but given that one was an AIDS relief bill and one was a sex trafficing bill, it would have been difficult. 3. With that said, there is certainly some impropriety in Tobias patronising a prostitute, given that (1) it's illegal and (2) he's in charge of an organization that is tasked with carrying out Congress's instruction to discourage prostitution. 4. Still, isn't the real story that Tobias was committing a crime? I mean, if I find out that the Surgeon General eats a Big Mac from time to time, even while advocating for lower fat foods, that seems fairly petty hypocrisy, rather than \"beyond hypocrisy\" or whatever hyperventilation TNR can come up with. If I find out that Corzine supported seat belts, does that make him \"beyond a hypocrite?\"\n\n- Johnni\n\nMay 1, 2007 at 4:39pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nJohnni -- Yes, Brazilian officials decided to turn the money down because they believed that signing the pledge would harm their HIV efforts. I think saying they \"lost\" the money is fine, but I also included a link if you want to find out exactly what happened. And I noted in the post itself that the policy was put in place by Congress, at the behest of the religious right (who later, per the Boston Globe, pressured the Justice Department to reverse its stance on the constitutionality of the laws). Nothing you've said contradicts what I wrote, as far as I can tell.\n\n- Brad Plumer\n\nMay 1, 2007 at 4:59pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nplease let it be so (except for the kicking or nonkicking of puppies). I, for one, am dying to know what Pols are on that list. Please let Newts number be there somewhere.\n\n- blackton\n\nMay 2, 2007 at 3:18pm\n\nYou must be a subscriber to post comments. Subscribe today.\n\nSHARE HIGHLIGHT\n\n0 CHARACTERS SELECTED\n\nTWEET THIS\n\nPOST TO TUMBLR\n\nSHARE ON FACEBOOK\n\nClose"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.newrepublic.com/blog/the-plank/beyond-hypocrisy\",\n \"source_domain\": \"www.newrepublic.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"60540\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:ZLNJTMJX7RYIDZ5WGUMCYUXQJFL2XP6K\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T18:20:14Z\",\n \"WARC-IP-Address\": \"166.78.242.39\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:U7Q3QUXVEXSPESZL66QMTGAEBZ2EUFYI\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.newrepublic.com/blog/the-plank/beyond-hypocrisy\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 202,\n 203,\n 228,\n 229,\n 254,\n 255,\n 272,\n 273,\n 634,\n 635,\n 1306,\n 1307,\n 1981,\n 1982,\n 2000,\n 2001,\n 2021,\n 2022,\n 2042,\n 2043,\n 2103,\n 2104,\n 2115,\n 2116,\n 2425,\n 2426,\n 2439,\n 2440,\n 2465,\n 2466,\n 2526,\n 2527,\n 2762,\n 2763,\n 2773,\n 2774,\n 2799,\n 2800,\n 2860,\n 2861,\n 2983,\n 2984,\n 2995,\n 2996,\n 3018,\n 3019,\n 3079,\n 3080,\n 3215,\n 3216,\n 3227,\n 3228,\n 3251,\n 3252,\n 3312,\n 3313,\n 4749,\n 4750,\n 4759,\n 4760,\n 4782,\n 4783,\n 4843,\n 4844,\n 5416,\n 5417,\n 5431,\n 5432,\n 5454,\n 5455,\n 5515,\n 5516,\n 5688,\n 5689,\n 5700,\n 5701,\n 5723,\n 5724,\n 5784,\n 5785,\n 5801,\n 5802,\n 5824,\n 5825,\n 5836,\n 5837,\n 5852,\n 5853,\n 5871,\n 5872\n ],\n \"line_end_idx\": [\n 202,\n 203,\n 228,\n 229,\n 254,\n 255,\n 272,\n 273,\n 634,\n 635,\n 1306,\n 1307,\n 1981,\n 1982,\n 2000,\n 2001,\n 2021,\n 2022,\n 2042,\n 2043,\n 2103,\n 2104,\n 2115,\n 2116,\n 2425,\n 2426,\n 2439,\n 2440,\n 2465,\n 2466,\n 2526,\n 2527,\n 2762,\n 2763,\n 2773,\n 2774,\n 2799,\n 2800,\n 2860,\n 2861,\n 2983,\n 2984,\n 2995,\n 2996,\n 3018,\n 3019,\n 3079,\n 3080,\n 3215,\n 3216,\n 3227,\n 3228,\n 3251,\n 3252,\n 3312,\n 3313,\n 4749,\n 4750,\n 4759,\n 4760,\n 4782,\n 4783,\n 4843,\n 4844,\n 5416,\n 5417,\n 5431,\n 5432,\n 5454,\n 5455,\n 5515,\n 5516,\n 5688,\n 5689,\n 5700,\n 5701,\n 5723,\n 5724,\n 5784,\n 5785,\n 5801,\n 5802,\n 5824,\n 5825,\n 5836,\n 5837,\n 5852,\n 5853,\n 5871,\n 5872,\n 5877\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5877,\n \"ccnet_original_nlines\": 90,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 7,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.38530611991882324,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.041632648557424545,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1893877536058426,\n \"rps_doc_frac_unique_words\": 0.47804391384124756,\n \"rps_doc_mean_word_length\": 4.617764472961426,\n \"rps_doc_num_sentences\": 63,\n \"rps_doc_symbol_to_word_ratio\": 0.0008163300226442516,\n \"rps_doc_unigram_entropy\": 5.642598628997803,\n \"rps_doc_word_count\": 1002,\n \"rps_doc_frac_chars_dupe_10grams\": 0.08299113810062408,\n \"rps_doc_frac_chars_dupe_5grams\": 0.08904258161783218,\n \"rps_doc_frac_chars_dupe_6grams\": 0.08299113810062408,\n \"rps_doc_frac_chars_dupe_7grams\": 0.08299113810062408,\n \"rps_doc_frac_chars_dupe_8grams\": 0.08299113810062408,\n \"rps_doc_frac_chars_dupe_9grams\": 0.08299113810062408,\n \"rps_doc_frac_chars_top_2gram\": 0.012102870270609856,\n \"rps_doc_frac_chars_top_3gram\": 0.015560840256512165,\n \"rps_doc_frac_chars_top_4gram\": 0.017289819195866585,\n \"rps_doc_books_importance\": -556.2019653320312,\n \"rps_doc_books_importance_length_correction\": -556.2019653320312,\n \"rps_doc_openwebtext_importance\": -384.5471496582031,\n \"rps_doc_openwebtext_importance_length_correction\": -384.5471496582031,\n \"rps_doc_wikipedia_importance\": -320.0751953125,\n \"rps_doc_wikipedia_importance_length_correction\": -320.0751953125\n },\n \"fasttext\": {\n \"dclm\": 0.022696319967508316,\n \"english\": 0.9712174534797668,\n \"fineweb_edu_approx\": 1.0213291645050049,\n \"eai_general_math\": 0.033490780740976334,\n \"eai_open_web_math\": 0.20999598503112793,\n \"eai_web_code\": 0.0017121999990195036\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"362.1968\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Hospitals, Asylums, and Human services\"\n }\n },\n \"secondary\": {\n \"code\": \"320.973\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Comment Section\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Partially Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":280,"cells":{"id":{"kind":"number","value":315877408424771900,"string":"315,877,408,424,771,900"},"text":{"kind":"string","value":"Architects Journal - Olympic news http://www.architectsjournal.co.uk http://www.architectsjournal.co.uk http://www.architectsjournal.co.uk/magazine/graphics/logo.png Architects Journal http://www.architectsjournal.co.uk West Ham confirmed as tenant for Populous' Olympic Stadium http://www.architectsjournal.co.uk/news/daily-news/west-ham-confirmed-as-tenant-for-populous-olympic-stadium/8644623.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/west-ham-confirmed-as-tenant-for-populous-olympic-stadium/8644623.article West Ham will take on a 99-year concession at the Olympic Stadium, moving into the Populous-designed arena in time for the 2016-2017 season. Fri, 22 Mar 2013 15:07 GMT Ungagged Olympic architects named http://www.architectsjournal.co.uk/news/daily-news/ungagged-olympic-architects-named/8644424.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/ungagged-olympic-architects-named/8644424.article Olympic Stadium designer Populous features among 19 architects officially allowed to publicise their role in designing the London 2012 games merlin.fulcher@emap.com (Merlin Fulcher) Wed, 20 Mar 2013 08:49 GMT What do the Olympics do for host cities? We don’t know, says expert http://www.architectsjournal.co.uk/news/daily-news/what-do-the-olympics-do-for-host-cities-we-dont-know-says-expert/8644198.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/what-do-the-olympics-do-for-host-cities-we-dont-know-says-expert/8644198.article The impact of Games on their host cities must be tracked to access the true cost and legacy, says real estate guru Christine.Murray@emap.com (Christine Murray) Wed, 13 Mar 2013 18:17 GMT CABE pans first post-Olympic homes http://www.architectsjournal.co.uk/news/daily-news/cabe-pans-first-post-olympic-homes/8641579.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/cabe-pans-first-post-olympic-homes/8641579.article The first housing to emerge as part of London’s Olympic legacy has been described as a ‘poor precedent’ for future development merlin.fulcher@emap.com (Merlin Fulcher) Tue, 22 Jan 2013 14:49 GMT Zaha Hadid wins Japan national stadium contest http://www.architectsjournal.co.uk/news/daily-news/zaha-hadid-wins-japan-national-stadium-contest/8638748.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/zaha-hadid-wins-japan-national-stadium-contest/8638748.article Zaha Hadid Architects has seen off 10 global big hitters to win the contest to overhaul Japan’s national stadium merlin.fulcher@emap.com (Merlin Fulcher) Thu, 15 Nov 2012 11:50 GMT Delayed: Olympic Stadium not to re-open for up to four years http://www.architectsjournal.co.uk/news/daily-news/delayed-olympic-stadium-not-to-re-open-for-up-to-four-years/8638458.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/delayed-olympic-stadium-not-to-re-open-for-up-to-four-years/8638458.article Populous’ London 2012 Olympic stadium may have to wait another four years before re-opening to the public merlin.fulcher@emap.com (Merlin Fulcher) Mon, 12 Nov 2012 08:20 GMT In pictures: Olympic stars Zaha and Populous among finalists for Japan stadium http://www.architectsjournal.co.uk/news/daily-news/in-pictures-olympic-stars-zaha-and-populous-among-finalists-for-japan-stadium/8637869.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/in-pictures-olympic-stars-zaha-and-populous-among-finalists-for-japan-stadium/8637869.article Images of the 11-strong international shortlist of design teams competing to overhaul Japan’s national stadium have been revealed merlin.fulcher@emap.com (Merlin Fulcher) Tue, 30 Oct 2012 09:49 GMT Make’s Olympic Park south plaza scoops planning http://www.architectsjournal.co.uk/news/daily-news/makes-olympic-park-south-plaza-scoops-planning/8637686.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/makes-olympic-park-south-plaza-scoops-planning/8637686.article Make and James Corner Field Operations have won planning permission for a new post-games public realm on the Olympic Park in east London merlin.fulcher@emap.com (Merlin Fulcher) Wed, 24 Oct 2012 12:39 GMT ODA chair to lead Labour infrastructure commission http://www.architectsjournal.co.uk/news/daily-news/oda-chair-to-lead-labour-infrastructure-commission/8636636.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/oda-chair-to-lead-labour-infrastructure-commission/8636636.article Olympic Delivery Authority chairman John Armitt has agreed to lead a new independent commission looking at delivering priority infrastructure schemes through cross-party consensus Tue, 2 Oct 2012 08:13 GMT Foster sets up in Sao Paulo as Brits win Brazilian work http://www.architectsjournal.co.uk/news/daily-news/foster-sets-up-in-sao-paulo-as-brits-win-brazilian-work/8636497.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/foster-sets-up-in-sao-paulo-as-brits-win-brazilian-work/8636497.article British businesses have won £70 million of contracts for the 2014 World Cup and Rio 2016 Olympic and Paralympic games, the prime minister said today (28 September) Fri, 28 Sep 2012 16:41 GMT Olympic employment legacy in doubt, says report http://www.architectsjournal.co.uk/news/daily-news/olympic-employment-legacy-in-doubt-says-report/8636160.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/olympic-employment-legacy-in-doubt-says-report/8636160.article Research released today by a recruitment website has found that two-thirds in the built environment are sceptical about the long-term employment legacy of the Olympics Mon, 24 Sep 2012 17:19 GMT Olympic feel-good factor was a result of masterly design http://www.architectsjournal.co.uk/comment/olympic-feel-good-factor-was-a-result-of-masterly-design/8635820.article?referrer=RSS http://www.architectsjournal.co.uk/comment/olympic-feel-good-factor-was-a-result-of-masterly-design/8635820.article Games Maker Yasmin Shariff on how the Olympic Park was transformed by architects and the community of volunteers Mon, 17 Sep 2012 18:02 GMT Fallon confirmed as construction minister in BIS reshuffle http://www.architectsjournal.co.uk/news/daily-news/fallon-confirmed-as-construction-minister-in-bis-reshuffle/8635466.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/fallon-confirmed-as-construction-minister-in-bis-reshuffle/8635466.article New business minister Michael Fallon will take over from outgoing construction minister Mark Prisk’s brief within the Department for Business. Fri, 7 Sep 2012 10:47 GMT In Pictures: Olympic Shooting Range by Magma Architecture http://www.architectsjournal.co.uk/news/in-pictures-olympic-shooting-range-by-magma-architecture/8634308.article?referrer=RSS http://www.architectsjournal.co.uk/news/in-pictures-olympic-shooting-range-by-magma-architecture/8634308.article [FIRST LOOK + DRAWINGS] Magma’s temporary venue in Woolwich has been the venue for the 2012 Olympic shooting events tom.ravenscroft@emap.com (Tom Ravenscroft) Fri, 10 Aug 2012 17:03 GMT Doors close on another Newham pop-up http://www.architectsjournal.co.uk/news/daily-news/doors-close-on-another-newham-pop-up/8634227.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/doors-close-on-another-newham-pop-up/8634227.article Struggling regeneration scheme Industri[us] has been closed for the rest of August after a request for emergency funding was turned down by Newham Council Fri, 10 Aug 2012 08:03 GMT Velodrome leak caused by careless workman http://www.architectsjournal.co.uk/news/daily-news/velodrome-leak-caused-by-careless-workman/8634263.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/velodrome-leak-caused-by-careless-workman/8634263.article Leaking earlier this week at Hopkins’ Olympic velodrome has been blamed on damage caused by a workman Richard.Waite@emap.com (Richard Waite) Thu, 9 Aug 2012 15:15 GMT Khan, Ely, Deely, Burdett and others on Olympic legacy review panel http://www.architectsjournal.co.uk/news/daily-news/khan-ely-deely-burdett-and-others-on-olympic-legacy-review-panel/8634164.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/khan-ely-deely-burdett-and-others-on-olympic-legacy-review-panel/8634164.article The London Legacy Development Corporation has named the design review panel which will oversee the development of the post-Games Queen Elizabeth Olympic Park Richard.Waite@emap.com (Richard Waite) Tue, 7 Aug 2012 17:38 GMT Lego Games - the Olympic park in mini-bricks http://www.architectsjournal.co.uk/news/daily-news/lego-games-the-olympic-park-in-mini-bricks/8634151.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/lego-games-the-olympic-park-in-mini-bricks/8634151.article Artist Warren Elsmore has recreated the Olympic Park in LEGO bricks to celebrate the London Games tom.ravenscroft@emap.com (Tom Ravenscroft) Tue, 7 Aug 2012 16:51 GMT Olympic special: Subscribe to AJ today and receive a free Velodrome monograph http://www.architectsjournal.co.uk/olympic-special-subscribe-to-aj-today-and-receive-a-free-velodrome-monograph/8634050.article?referrer=RSS http://www.architectsjournal.co.uk/olympic-special-subscribe-to-aj-today-and-receive-a-free-velodrome-monograph/8634050.article Claim your 110-page detailed monograph on Hopkins Architects’ Stirling Prize-nominated Velodrome with contributions from Sir Chris Hoy, Mike Taylor, Chris Wise, Richard Arnold, Ron Webb, Paul Finch, Peter Blundell Jones and Sarah Storey, plus foreword by Sir Nichols Serota Fri, 3 Aug 2012 16:13 GMT DC CABE and Moylan join RIBA in battle against Olympic marketing ban http://www.architectsjournal.co.uk/news/daily-news/dc-cabe-and-moylan-join-riba-in-battle-against-olympic-marketing-ban/8634021.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/dc-cabe-and-moylan-join-riba-in-battle-against-olympic-marketing-ban/8634021.article Design Council Cabe and London Legacy Development Corporation chair Daniel Moylan have thrown their weight behind the RIBA’s ‘Drop the ban’ campaign Fri, 3 Aug 2012 09:43 GMT Getting shirty: Murray sidesteps the Olympic marketing ban http://www.architectsjournal.co.uk/news/daily-news/getting-shirty-murray-sidesteps-the-olympic-marketing-ban/8634020.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/getting-shirty-murray-sidesteps-the-olympic-marketing-ban/8634020.article New London Architecture chairman Peter Murray has taken his seemingly one-man campaign against the draconian Olympic anti-marketing protocol onto a new battlefield armed with a hard-hitting new weapon Fri, 3 Aug 2012 09:38 GMT Triumphant Heatherwick sets Games alight: plans, models and reaction http://www.architectsjournal.co.uk/news/daily-news/triumphant-heatherwick-sets-games-alight-plans-models-and-reaction/8633938.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/triumphant-heatherwick-sets-games-alight-plans-models-and-reaction/8633938.article The AJ can revealed the first drawings and models of Thomas Heatherwick’s show-stopping London 2012 Olympic cauldron, which was kept firmly under wraps until last Friday’s spectacular opening ceremony Richard.Waite@emap.com (Richard Waite) Thu, 2 Aug 2012 16:30 GMT Chris Brown: Olympics 'not best way to regenerate' http://www.architectsjournal.co.uk/news/daily-news/chris-brown-olympics-not-best-way-to-regenerate/8633982.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/chris-brown-olympics-not-best-way-to-regenerate/8633982.article A regeneration expert has warned that London did not have time to maximise the benefits of hosting the Olympic Games Thu, 2 Aug 2012 16:21 GMT Revealed: first images of PRP and Make's Olympic legacy housing http://www.architectsjournal.co.uk/news/daily-news/revealed-first-images-of-prp-and-makes-olympic-legacy-housing/8628448.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/revealed-first-images-of-prp-and-makes-olympic-legacy-housing/8628448.article The AJ can reveal pictures of Make Architects, PRP Architects, Muf, Karakusevic Carson and NORD’s competition-winning scheme for the first phase of the Olympic Park’s redevelopment in London merlin.fulcher@emap.com (Merlin Fulcher) Thu, 2 Aug 2012 09:06 GMT Olympics boost client enquiries despite gag order http://www.architectsjournal.co.uk/olympics-boost-client-enquiries-despite-gag-order/8633936.article?referrer=RSS http://www.architectsjournal.co.uk/olympics-boost-client-enquiries-despite-gag-order/8633936.article Practices involved in the Olympic and Paralympic Games have reported an upsurge in work as a direct result of their involvement, despite LOCOG’s punitive marketing ban. Thu, 2 Aug 2012 08:30 GMT Gallery: Thomas Heatherwick's showstopping Olympic 2012 cauldron http://www.architectsjournal.co.uk/news/daily-news/gallery-thomas-heatherwicks-showstopping-olympic-2012-cauldron/8633793.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/gallery-thomas-heatherwicks-showstopping-olympic-2012-cauldron/8633793.article Thomas Heatherwick’s London 2012 Olympic cauldron, which was kept firmly under wraps until last Friday night, has been hailed almost universally as a design triumph Richard.Waite@emap.com (Richard Waite) Tue, 31 Jul 2012 17:07 GMT Animated pixel display lights up Olympic opening ceremony http://www.architectsjournal.co.uk/news/daily-news/-animated-pixel-display-lights-up-olympic-opening-ceremony/8633897.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/-animated-pixel-display-lights-up-olympic-opening-ceremony/8633897.article Pixel tablets turn audience into giant video screen. Team of 50 designers delivered the project in just 14 weeks Sun, 29 Jul 2012 17:47 GMT Ticketing mishap restricts views in Zaha’s £268m Aquatics Centre http://www.architectsjournal.co.uk/news/daily-news/ticketing-mishap-restricts-views-in-zahas-268m-aquatics-centre/8633704.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/ticketing-mishap-restricts-views-in-zahas-268m-aquatics-centre/8633704.article Around 600 spectators have been sold tickets for Zaha Hadid’s showstopper London 2012 Aquatics Centre unaware they will not be able to see the top of the diving board merlin.fulcher@emap.com (Merlin Fulcher) Thu, 26 Jul 2012 14:01 GMT Video exclusive: Olympic Park from the air http://www.architectsjournal.co.uk/news/daily-news/video-exclusive-olympic-park-from-the-air/8633518.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/video-exclusive-olympic-park-from-the-air/8633518.article A dusk flight over the Olympic Park shows a mini replica of the Thames inside Populous’ Olympic Stadium simon.hogg@emap.com (Simon Hogg) Wed, 25 Jul 2012 11:15 GMT Jason Bruges flicks switch on Coca Cola Olympic pavilion light show http://www.architectsjournal.co.uk/news/daily-news/jason-bruges-flicks-switch-on-coca-cola-olympic-pavilion-light-show/8633570.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/jason-bruges-flicks-switch-on-coca-cola-olympic-pavilion-light-show/8633570.article Lighting designer Jason Bruges has completed a light installation within Pernilla and Asif’s Coca-Cola Beatbox pavilion on the Olympic Park Tue, 24 Jul 2012 17:42 GMT"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.architectsjournal.co.uk/XmlServers/navsectionRSS.aspx?navsectioncode=5408\",\n \"source_domain\": \"www.architectsjournal.co.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"24910\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:NY2HWTATXOQMCSQRKB5DIJG5CLSJ6ZAW\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-21T12:05:37Z\",\n \"WARC-IP-Address\": \"130.185.67.109\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:GZPKFBX2H3YLE4DAAXZMPCFZO7WEZBZ2\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.architectsjournal.co.uk/XmlServers/navsectionRSS.aspx?navsectioncode=5408\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0\n ],\n \"line_end_idx\": [\n 15390\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 15390,\n \"ccnet_original_nlines\": 0,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.14095883071422577,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.020844189450144768,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.40828555822372437,\n \"rps_doc_frac_unique_words\": 0.5052802562713623,\n \"rps_doc_mean_word_length\": 10.30869197845459,\n \"rps_doc_num_sentences\": 321,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.846522331237793,\n \"rps_doc_word_count\": 1231,\n \"rps_doc_frac_chars_dupe_10grams\": 0.009771469980478287,\n \"rps_doc_frac_chars_dupe_5grams\": 0.014814809896051884,\n \"rps_doc_frac_chars_dupe_6grams\": 0.009771469980478287,\n \"rps_doc_frac_chars_dupe_7grams\": 0.009771469980478287,\n \"rps_doc_frac_chars_dupe_8grams\": 0.009771469980478287,\n \"rps_doc_frac_chars_dupe_9grams\": 0.009771469980478287,\n \"rps_doc_frac_chars_top_2gram\": 0.006619390100240707,\n \"rps_doc_frac_chars_top_3gram\": 0.020803779363632202,\n \"rps_doc_frac_chars_top_4gram\": 0.0034672999754548073,\n \"rps_doc_books_importance\": -1447.25048828125,\n \"rps_doc_books_importance_length_correction\": -1447.25048828125,\n \"rps_doc_openwebtext_importance\": -615.8236083984375,\n \"rps_doc_openwebtext_importance_length_correction\": -615.8236083984375,\n \"rps_doc_wikipedia_importance\": -392.4491271972656,\n \"rps_doc_wikipedia_importance_length_correction\": -392.4491271972656\n },\n \"fasttext\": {\n \"dclm\": 0.000023599999622092582,\n \"english\": 0.7319208383560181,\n \"fineweb_edu_approx\": 1.0745981931686401,\n \"eai_general_math\": 0.00009346000297227874,\n \"eai_open_web_math\": 0.031628791242837906,\n \"eai_web_code\": 0.00001990999953704886\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"720.0\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Architecture\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"796.5\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":281,"cells":{"id":{"kind":"number","value":6051228391510727000,"string":"6,051,228,391,510,727,000"},"text":{"kind":"string","value":"Guidetti looking for loan move\n\nManchester City striker John Guidetti is looking to join an English club on loan, according to the player's Italian agent.\n\nLast Updated: 11/01/13 at 21:09 Post Comment\n\nJohn Guidetti: Manchester City striker is looking to join a club on loan\n\nJohn Guidetti: Manchester City striker is looking to join a club on loan\n\nGuidetti has yet to play for City this season after being sidelined by injury, but was rewarded with a new three-year contract in October.\n\nHe impressed on loan at Feyenoord last season and his Italian representative Roberto De Fanti says Guidetti subsequently rejected a loan move to Siena last summer.\n\nA January switch to Serie A has also been ruled out by De Fanti as Guidetti hopes to head out on loan this month in order to play first-team football.\n\n\"In the summer, the deal for Guidetti's transfer on loan to Siena was already done, then he talked with David Platt and decided to remain at City,\" De Fanti told Radio Blu.\n\n\"Now he is back after injury and he's looking for a team, but I think his most likely destination will be in England.\n\n\"A move to Italy could be possible for next season.\"\n\nFootball365 Facebook Fan Page\n\nThe Football365 fan page is a great place to meet like minded people, have football related discussions and make new friends.\n\nRelated News\n\nSky Bet\n\n • Retrieving latest Sky Bet odds\n\nMost Commented\n\nReaders' Comments\n\nS\n\nwap deal with ITV. Can't wait to see Stuart Pearce and Roy Keane giving each other the evils.\n\nrambo\nSouthgate tipped for U-21 job\n\nJ\n\noe has signed John Scales instead.\n\nrambo\nNewcastle pull Douglas deal\n\nD\n\noes the medical involve some sort of dressage event?\n\nshabtastic\nCarroll set for Hammers medical\n\nFooter 365\n\nLuis Suarez should not be blinded by Liverpool loyalty, says Jamie Carragher\n\nJamie Carragher says Luis Suarez should not be blinded by loyalty to Liverpool if Real Madrid make a big-money offer.\n\nConfederations Cup: Brazil on verge of semi-finals after 2-0 win over Mexico\n\nNeymar all but fired Brazil to the semi-finals of the Confederations Cup as they defeated Mexico 2-0.\n\nTransfer news: Feyenoord say Lex Immers will stay following links to Cardiff City\n\nFeyenoord have moved to dismiss reports that midfielder Lex Immers could be on his way to Cardiff City.\n\nMail Box\n\n'Bye Sunderland' & More Fixtures Reaction\n\nThe afternoon mailbox has plenty more views on the fixture list. Plus, a sublime piece of skill from Emile Heskey, more cool 'ballers and dull football matches...\n\nOne Guy's Genuinely Irked About Fixtures\n\nA Gooner in the Mailbox seems to genuinely think that the world/fixture computer is against his team. Sigh. That, plus more cool footballers & Mike Ashley: Supervillain...\n\n© 2013 British Sky Broadcasting Ltd. All Rights Reserved"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.football365.com/news/21554/8391421/Manchester-City-striker-John-Guidetti-looking-for-loan-move-but-not-to-Italy\",\n \"source_domain\": \"www.football365.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"67287\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:V3YOIH6AZHYDHSTWW5OTDM47WYKHGBXH\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-20T03:28:39Z\",\n \"WARC-IP-Address\": \"8.26.202.126\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:XPLE4E6YQASZKS3RPP6S7HUQQNKF5ECE\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.football365.com/news/21554/8391421/Manchester-City-striker-John-Guidetti-looking-for-loan-move-but-not-to-Italy\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 31,\n 32,\n 155,\n 156,\n 201,\n 202,\n 275,\n 276,\n 349,\n 350,\n 489,\n 490,\n 654,\n 655,\n 806,\n 807,\n 980,\n 981,\n 1099,\n 1100,\n 1153,\n 1154,\n 1184,\n 1185,\n 1311,\n 1312,\n 1325,\n 1326,\n 1334,\n 1335,\n 1372,\n 1373,\n 1388,\n 1389,\n 1407,\n 1408,\n 1410,\n 1411,\n 1505,\n 1506,\n 1512,\n 1542,\n 1543,\n 1545,\n 1546,\n 1581,\n 1582,\n 1588,\n 1616,\n 1617,\n 1619,\n 1620,\n 1673,\n 1674,\n 1685,\n 1717,\n 1718,\n 1729,\n 1730,\n 1807,\n 1808,\n 1926,\n 1927,\n 2004,\n 2005,\n 2107,\n 2108,\n 2190,\n 2191,\n 2295,\n 2296,\n 2305,\n 2306,\n 2348,\n 2349,\n 2512,\n 2513,\n 2554,\n 2555,\n 2727,\n 2728\n ],\n \"line_end_idx\": [\n 31,\n 32,\n 155,\n 156,\n 201,\n 202,\n 275,\n 276,\n 349,\n 350,\n 489,\n 490,\n 654,\n 655,\n 806,\n 807,\n 980,\n 981,\n 1099,\n 1100,\n 1153,\n 1154,\n 1184,\n 1185,\n 1311,\n 1312,\n 1325,\n 1326,\n 1334,\n 1335,\n 1372,\n 1373,\n 1388,\n 1389,\n 1407,\n 1408,\n 1410,\n 1411,\n 1505,\n 1506,\n 1512,\n 1542,\n 1543,\n 1545,\n 1546,\n 1581,\n 1582,\n 1588,\n 1616,\n 1617,\n 1619,\n 1620,\n 1673,\n 1674,\n 1685,\n 1717,\n 1718,\n 1729,\n 1730,\n 1807,\n 1808,\n 1926,\n 1927,\n 2004,\n 2005,\n 2107,\n 2108,\n 2190,\n 2191,\n 2295,\n 2296,\n 2305,\n 2306,\n 2348,\n 2349,\n 2512,\n 2513,\n 2554,\n 2555,\n 2727,\n 2728,\n 2784\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2784,\n \"ccnet_original_nlines\": 81,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3302752375602722,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.01834861934185028,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.024390239268541336,\n \"rps_doc_frac_no_alph_words\": 0.14311927556991577,\n \"rps_doc_frac_unique_words\": 0.5603448152542114,\n \"rps_doc_mean_word_length\": 4.754310131072998,\n \"rps_doc_num_sentences\": 22,\n \"rps_doc_symbol_to_word_ratio\": 0.003669719910249114,\n \"rps_doc_unigram_entropy\": 5.254168510437012,\n \"rps_doc_word_count\": 464,\n \"rps_doc_frac_chars_dupe_10grams\": 0.05349047854542732,\n \"rps_doc_frac_chars_dupe_5grams\": 0.08068902790546417,\n \"rps_doc_frac_chars_dupe_6grams\": 0.08068902790546417,\n \"rps_doc_frac_chars_dupe_7grams\": 0.08068902790546417,\n \"rps_doc_frac_chars_dupe_8grams\": 0.05349047854542732,\n \"rps_doc_frac_chars_dupe_9grams\": 0.05349047854542732,\n \"rps_doc_frac_chars_top_2gram\": 0.01631912961602211,\n \"rps_doc_frac_chars_top_3gram\": 0.028558479622006416,\n \"rps_doc_frac_chars_top_4gram\": 0.020398909226059914,\n \"rps_doc_books_importance\": -189.85198974609375,\n \"rps_doc_books_importance_length_correction\": -189.85198974609375,\n \"rps_doc_openwebtext_importance\": -93.89529418945312,\n \"rps_doc_openwebtext_importance_length_correction\": -93.89529418945312,\n \"rps_doc_wikipedia_importance\": -92.2839584350586,\n \"rps_doc_wikipedia_importance_length_correction\": -92.2839584350586\n },\n \"fasttext\": {\n \"dclm\": 0.00016301999858114868,\n \"english\": 0.9563114643096924,\n \"fineweb_edu_approx\": 0.8456671833992004,\n \"eai_general_math\": 0.000029680000807275064,\n \"eai_open_web_math\": 0.024632040411233902,\n \"eai_web_code\": -0.000009059999683813658\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.334092\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"796.334\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":282,"cells":{"id":{"kind":"number","value":-4247515332250148400,"string":"-4,247,515,332,250,148,400"},"text":{"kind":"string","value":"Online Now 348\n\nPrevot Still Showing Interest\n\nTorrodney Prevot\n\nPrevot intends to visit A&M, OU, Cal and USC officially this fall.\n\nAlief Taylor (TX) defensive end Torrodney Prevot chose USC over Texas A&M in late August but that hasn’t stopped the Aggie’s pursuit of the 4-star defender.\n\nTaylor Hamm\n\nAlready have an account? Sign In\n\nAdd a comment\nWant to be involved in the discussion? 30-Day Free Trial"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://tamu.247sports.com/Article/Despite-his-commitment-to-USC-Torrodney-Prevot-visits-Texas-AM-89942\",\n \"source_domain\": \"tamu.247sports.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"30544\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:TXJXB2NLXN3IYANS4QHIVO4EZQRARMTZ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-20T12:08:31Z\",\n \"WARC-IP-Address\": \"68.71.98.20\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:G22R5MWSH7QEZMPHVZZGSPJ3AQGNFHXW\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://tamu.247sports.com/Article/Despite-his-commitment-to-USC-Torrodney-Prevot-visits-Texas-AM-89942\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 15,\n 16,\n 46,\n 47,\n 64,\n 65,\n 132,\n 133,\n 290,\n 291,\n 303,\n 304,\n 337,\n 338,\n 352\n ],\n \"line_end_idx\": [\n 15,\n 16,\n 46,\n 47,\n 64,\n 65,\n 132,\n 133,\n 290,\n 291,\n 303,\n 304,\n 337,\n 338,\n 352,\n 408\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 408,\n \"ccnet_original_nlines\": 15,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.21590909361839294,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.09090909361839294,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1931818127632141,\n \"rps_doc_frac_unique_words\": 0.8235294222831726,\n \"rps_doc_mean_word_length\": 4.735294342041016,\n \"rps_doc_num_sentences\": 5,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.939091205596924,\n \"rps_doc_word_count\": 68,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.09316769987344742,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -49.24726486206055,\n \"rps_doc_books_importance_length_correction\": -49.24726867675781,\n \"rps_doc_openwebtext_importance\": -27.0842227935791,\n \"rps_doc_openwebtext_importance_length_correction\": -27.084226608276367,\n \"rps_doc_wikipedia_importance\": -20.847318649291992,\n \"rps_doc_wikipedia_importance_length_correction\": -20.847322463989258\n },\n \"fasttext\": {\n \"dclm\": 0.0000015499999790336005,\n \"english\": 0.8492381572723389,\n \"fineweb_edu_approx\": 0.47183945775032043,\n \"eai_general_math\": 0.00018566999642644078,\n \"eai_open_web_math\": 0.22711575031280518,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.334\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"373.122\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Education\",\n \"level_3\": \"Education, Secondary and High schools\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":283,"cells":{"id":{"kind":"number","value":-4524654493658088000,"string":"-4,524,654,493,658,088,000"},"text":{"kind":"string","value":"New York\n\nWhat’s your chocolate chip cookie preference?\n\n6eb285388fe84a6fd62551436b364be9\n\nWhen on the verge of a second global financial crisis, or maybe a deepening of The Great Second Depression that shall not be spoken of in such terms, all I want to think about are cookies, or as Tom Haverford from “Parks and Recreation” would call them, tiny-ass cakes.\n\nBut there’s so much to love about chocolate chip cookies specifically and so many different ways those tiny-ass cakes can be made. This came to light when Tate’s Baked Goods sent me some whole wheat chocolate chip cookies. A thin, dark brown disc with large chocolate chunks in it, the cookies Tate’s sent by appearances, seemed like the dried out over-cooked homemade cookies I’d try to make as a teenager. But eating them is a very different experience from gnawing on those charred pucks I used to make. Tate’s cookies are crispy and crumbly in an incredibly palatable way.\n\nLet’s do a rundown of our favorite grocery store chocolate chip cookies and see which come out on top:\n\nChips Ahoy: These, our gossip columnist Dorothy Robinson says, “seem to be made with chimney ash.” But many would assert that they boast a strong dunkability due to that firmness. Plus, as our art director Benn Storey says, they’re not too sweet.\n\nSoft Batch: Soft Batch cookies were super trendy in the 80s when they first came on the scene. Everyone loved microwaving them and pretending they came right out of the oven. However, that seems to have gotten old, because no one I asked listed them as a current favorite. Also, now we have refridgerated cookie dough, which if you can manage to get it on the cookie sheet without eating it raw, does a better job at being freshly baked.\n\nEntenmann’s: These little discs were roundly the favorite of our office, with both Music Editor Pat Healy and Health Editor Meredith Engel naming them as a fave. Meredith says, “they are really soft, and they’re also small, so I don’t feel too bad about having a couple or a few.”\n\nHonorable mentions go to Famous Amos and Peggy Lawton’s cookies. But which ones are your favorites?\n\n\nNews\nEntertainment\nSports\nLifestyle\nInternational\n\nTurkish riot police storm Istanbul park to end…\n\nTurkish riot police stormed a central Istanbul park on Saturday firing tear gas and water cannon to evict hundreds of anti-government protesters, hours after an ultimatum from Prime Minister Tayyip…\n\nInternational\n\nHospital siege, blasts new Pakistan government's first security…\n\nMilitants in a volatile region of western Pakistan bombed a bus carrying women students on Saturday and then seized part of the hospital where survivors were taken, in the first…\n\nInternational\n\nPakistan militants blast bus, attack hospital; at least…\n\nMilitants in western Pakistan bombed a bus carrying women university students on Saturday and then seized part of the hospital where survivors of the attack were taken, killing at least…\n\nInternational\n\nModerate cleric takes lead in Iran presidential election\n\nModerate cleric Hassan Rohani took a solid lead over conservative rivals on Saturday in preliminary vote counting in Iran's presidential election in what could be the makings of a surprise…\n\nEntertainment\n\nThe Word: Kanye does not want to hear…\n\nIf you spotted Jesus Effing Christ strolling down Madison Ave in a hoodie, just minding his own business, rolling with his boys the Apostles, would you try to talk to…\n\nMovies\n\nTerrence Stamp, the original General Zod, talks 'Man…\n\nThe original General Zod tells Metro why he doesn't think the new Superman film can measure up to Richard Donner's.\n\nArts\n\nMia Grace Montross, a true avenger\n\n“Between ‘The Super Hero Squad Show’ and the comics I read her, she’s just a comic freak,” says the father of 4-year-old Mia Grace Montross.\n\nThe Word\n\nThe Word: Is Amanda Bynes faking her meltdown?\n\nIs Amanda Bynes acting crazy - or crazy like a fox?\n\nNFL\n\nJets officially sign Kellen Winslow Jr. to contract\n\nIn a move that surprised no one, the Jets announced Friday afternoon tight end Kellen Winslow Jr. signed a deal with the team.\n\nNBA\n\nJason Kidd introduced as new Nets head coach\n\nJason Kidd approached his meeting with Nets general manager Billy King like many job seekers.\n\nNFL\n\nGiants wrap up minicamp with words of warning…\n\nThe Giants wrapped up their minicamp portion of the offseason on Thursday with the next stop being the commencement of training camp on July 26.\n\nNFL\n\nJets' Idzik dealing with early failures in offseason\n\nWhen Jets general manager John Idzik took the job in January, he stood at the podium and spoke about a new direction. Turns out, it's easier said than done.\n\nNational\n\nCelebrate World Blood Donor Day... with Soleil Moon…\n\nNeedles aren’t usually people’s favorite part of their doctor visits, but who could resist donating blood if Punky Brewster asked you to? June 14 marks…\n\nLifestyle\n\nWant a perfect night's Sleep? Check out these…\n\nIn our loud, technology-filled world getting the perfect nights sleep can nearly impossible. However, according to a recent Huffington Post article, there are 13 ways…\n\nEducation\n\nTen years of encouraging Hispanic students to stay…\n\nTelemundo hopes to convince students to pursue education.\n\nEducation\n\nPencils down, the ACT is going digital\n\nTaking tests on paper might soon be a thing of the past."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.metro.us/newyork/lifestyle/food/2011/08/07/whats-your-chocolate-chip-cookie-preference/\",\n \"source_domain\": \"www.metro.us\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"53691\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:XKHIFVUETIWTKYJMQNCDCT6D357EBD67\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T03:00:23Z\",\n \"WARC-IP-Address\": \"74.201.235.253\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:DQVTYEPA3M2O2OECKDMHHIHV4QR5N2FG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.metro.us/newyork/lifestyle/food/2011/08/07/whats-your-chocolate-chip-cookie-preference/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 9,\n 10,\n 56,\n 57,\n 90,\n 91,\n 361,\n 362,\n 939,\n 940,\n 1043,\n 1044,\n 1291,\n 1292,\n 1730,\n 1731,\n 2012,\n 2013,\n 2113,\n 2114,\n 2115,\n 2120,\n 2134,\n 2141,\n 2151,\n 2165,\n 2166,\n 2214,\n 2215,\n 2414,\n 2415,\n 2429,\n 2430,\n 2495,\n 2496,\n 2675,\n 2676,\n 2690,\n 2691,\n 2748,\n 2749,\n 2936,\n 2937,\n 2951,\n 2952,\n 3009,\n 3010,\n 3200,\n 3201,\n 3215,\n 3216,\n 3255,\n 3256,\n 3424,\n 3425,\n 3432,\n 3433,\n 3487,\n 3488,\n 3604,\n 3605,\n 3610,\n 3611,\n 3646,\n 3647,\n 3788,\n 3789,\n 3798,\n 3799,\n 3846,\n 3847,\n 3899,\n 3900,\n 3904,\n 3905,\n 3957,\n 3958,\n 4085,\n 4086,\n 4090,\n 4091,\n 4136,\n 4137,\n 4231,\n 4232,\n 4236,\n 4237,\n 4284,\n 4285,\n 4430,\n 4431,\n 4435,\n 4436,\n 4489,\n 4490,\n 4647,\n 4648,\n 4657,\n 4658,\n 4711,\n 4712,\n 4865,\n 4866,\n 4876,\n 4877,\n 4924,\n 4925,\n 5093,\n 5094,\n 5104,\n 5105,\n 5157,\n 5158,\n 5216,\n 5217,\n 5227,\n 5228,\n 5267,\n 5268\n ],\n \"line_end_idx\": [\n 9,\n 10,\n 56,\n 57,\n 90,\n 91,\n 361,\n 362,\n 939,\n 940,\n 1043,\n 1044,\n 1291,\n 1292,\n 1730,\n 1731,\n 2012,\n 2013,\n 2113,\n 2114,\n 2115,\n 2120,\n 2134,\n 2141,\n 2151,\n 2165,\n 2166,\n 2214,\n 2215,\n 2414,\n 2415,\n 2429,\n 2430,\n 2495,\n 2496,\n 2675,\n 2676,\n 2690,\n 2691,\n 2748,\n 2749,\n 2936,\n 2937,\n 2951,\n 2952,\n 3009,\n 3010,\n 3200,\n 3201,\n 3215,\n 3216,\n 3255,\n 3256,\n 3424,\n 3425,\n 3432,\n 3433,\n 3487,\n 3488,\n 3604,\n 3605,\n 3610,\n 3611,\n 3646,\n 3647,\n 3788,\n 3789,\n 3798,\n 3799,\n 3846,\n 3847,\n 3899,\n 3900,\n 3904,\n 3905,\n 3957,\n 3958,\n 4085,\n 4086,\n 4090,\n 4091,\n 4136,\n 4137,\n 4231,\n 4232,\n 4236,\n 4237,\n 4284,\n 4285,\n 4430,\n 4431,\n 4435,\n 4436,\n 4489,\n 4490,\n 4647,\n 4648,\n 4657,\n 4658,\n 4711,\n 4712,\n 4865,\n 4866,\n 4876,\n 4877,\n 4924,\n 4925,\n 5093,\n 5094,\n 5104,\n 5105,\n 5157,\n 5158,\n 5216,\n 5217,\n 5227,\n 5228,\n 5267,\n 5268,\n 5324\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5324,\n \"ccnet_original_nlines\": 119,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3771592974662781,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.011516310274600983,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.13333332538604736,\n \"rps_doc_frac_no_alph_words\": 0.13531669974327087,\n \"rps_doc_frac_unique_words\": 0.5621436834335327,\n \"rps_doc_mean_word_length\": 4.889395713806152,\n \"rps_doc_num_sentences\": 35,\n \"rps_doc_symbol_to_word_ratio\": 0.016314780339598656,\n \"rps_doc_unigram_entropy\": 5.78450345993042,\n \"rps_doc_word_count\": 877,\n \"rps_doc_frac_chars_dupe_10grams\": 0.028917910531163216,\n \"rps_doc_frac_chars_dupe_5grams\": 0.04664178937673569,\n \"rps_doc_frac_chars_dupe_6grams\": 0.04664178937673569,\n \"rps_doc_frac_chars_dupe_7grams\": 0.04664178937673569,\n \"rps_doc_frac_chars_dupe_8grams\": 0.028917910531163216,\n \"rps_doc_frac_chars_dupe_9grams\": 0.028917910531163216,\n \"rps_doc_frac_chars_top_2gram\": 0.008162310346961021,\n \"rps_doc_frac_chars_top_3gram\": 0.01399253960698843,\n \"rps_doc_frac_chars_top_4gram\": 0.010261190123856068,\n \"rps_doc_books_importance\": -419.4769287109375,\n \"rps_doc_books_importance_length_correction\": -419.4769287109375,\n \"rps_doc_openwebtext_importance\": -244.98829650878906,\n \"rps_doc_openwebtext_importance_length_correction\": -244.98829650878906,\n \"rps_doc_wikipedia_importance\": -195.35089111328125,\n \"rps_doc_wikipedia_importance_length_correction\": -195.35089111328125\n },\n \"fasttext\": {\n \"dclm\": 0.007905480451881886,\n \"english\": 0.9463629126548767,\n \"fineweb_edu_approx\": 1.4928960800170898,\n \"eai_general_math\": 0.005212550051510334,\n \"eai_open_web_math\": 0.09725344181060791,\n \"eai_web_code\": 0.0003503600019030273\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"641.863\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Cooking and Gastronomy\"\n }\n },\n \"secondary\": {\n \"code\": \"306.482\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Culture\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"12\",\n \"label\": \"Listicle\"\n },\n \"secondary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":284,"cells":{"id":{"kind":"number","value":9130299131197208000,"string":"9,130,299,131,197,208,000"},"text":{"kind":"string","value":"Welcome to my humble blog!\n\nHello everyone.\n\nI wish to welcome you and thank you for visiting my blog.\n\nI hope you enjoy your visit and that you get a chance to respond to any of the posts.\n\nI hope you have a wonderful day. God bless you.\n\n\nWednesday, February 16, 2011\n\nA Statement from HH Pope Shenouda III\n\n2 comments:\n\n 1. Could someone please translate this into English? Thank you.\n\n ReplyDelete\n 2. IT LOOKS LIKE IT IS A REVOLUTION FOR THE MAJORITY OF MUSLIMS AND FOR THEIR HUMAN RIGHTS.THE 15 MILLION CHRISTIANS WILL RECEIVE THEIR CRUMBS IF ANY.\n\n ReplyDelete"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://bishopsuriel.blogspot.com/2011/02/statement-from-hh-pope-shenouda-iii.html\",\n \"source_domain\": \"bishopsuriel.blogspot.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"82294\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2KBUN5I7WEAVITHWT37GPQZCUM6ZHWG4\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T07:21:04Z\",\n \"WARC-IP-Address\": \"74.125.228.12\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:XYZ6HHHZADJWIP2OP6QJBVT7IQOOGJXX\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://bishopsuriel.blogspot.com/2011/02/statement-from-hh-pope-shenouda-iii.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 27,\n 28,\n 44,\n 45,\n 103,\n 104,\n 190,\n 191,\n 239,\n 240,\n 241,\n 270,\n 271,\n 309,\n 310,\n 322,\n 323,\n 389,\n 390,\n 406,\n 559,\n 560\n ],\n \"line_end_idx\": [\n 27,\n 28,\n 44,\n 45,\n 103,\n 104,\n 190,\n 191,\n 239,\n 240,\n 241,\n 270,\n 271,\n 309,\n 310,\n 322,\n 323,\n 389,\n 390,\n 406,\n 559,\n 560,\n 575\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 575,\n \"ccnet_original_nlines\": 22,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2931034564971924,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.27586206793785095,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.18103447556495667,\n \"rps_doc_frac_unique_words\": 0.699999988079071,\n \"rps_doc_mean_word_length\": 4.380000114440918,\n \"rps_doc_num_sentences\": 13,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.092822551727295,\n \"rps_doc_word_count\": 100,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03652967885136604,\n \"rps_doc_frac_chars_top_3gram\": 0.03652967885136604,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -57.751399993896484,\n \"rps_doc_books_importance_length_correction\": -72.0758056640625,\n \"rps_doc_openwebtext_importance\": -36.71505355834961,\n \"rps_doc_openwebtext_importance_length_correction\": -51.03945541381836,\n \"rps_doc_wikipedia_importance\": -34.82536697387695,\n \"rps_doc_wikipedia_importance_length_correction\": -49.1497688293457\n },\n \"fasttext\": {\n \"dclm\": 0.0002502799907233566,\n \"english\": 0.907475471496582,\n \"fineweb_edu_approx\": 0.402255117893219,\n \"eai_general_math\": 0.00012230999709572643,\n \"eai_open_web_math\": 0.06772022694349289,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"282.09\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Christian sects\",\n \"level_3\": \"Catholic Church\"\n }\n },\n \"secondary\": {\n \"code\": \"297.09\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Religions\",\n \"level_3\": \"Islam and Bahai Faith\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Metacognitive\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Comment Section\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Partially Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":285,"cells":{"id":{"kind":"number","value":7259307005373441000,"string":"7,259,307,005,373,441,000"},"text":{"kind":"string","value":"[TriLUG] Anybody using DD-WRT?\n\nJohn Wheeler jwheeler at etherealfringe.com\nThu Jul 31 16:10:38 EDT 2008\n\n\nI run dd-wrt on quite a few routers, from buffalo's to wrt54g's and \nmost recently, a WRT 310n (great 4-port gigabit N router for $99 @ \nbest buy - as long as you don't need external antennae).\nAs far as i know there is no auto update feature for the firmware. It \nhas to be done manually. No service i can think of should allow \nconnections from set ips at all times.\nI mean the firmware can do many things, from kaid xbox networks, to \nvpn solutions running on the router, to dynamic ip -> hostname \nupdating services like dyndns.\n\nBut in all cases the connections should be initiated from the router \nitself. This is puzzling, i am looking into it.\nYou might consider posting to the forums or ask in #dd-wrt on \nfreenode. I will say this much, the community around dd-wrt is \ncomprised of fairly knowledgeable folks. It's hard to imagine anything \ndevious here.\nStill, it is puzzling.\n\nWhat services do you have turned on for this setup? Have you modified \nthe default options much?\n\nJohn Wheeler\nWeb Applications Developer\njcw.dev at gmail.com\n336-255-8004\n\nOn Jul 31, 2008, at 1:56 PM, Joseph Mack NA3T wrote:\n\n> On Thu, 31 Jul 2008, Brian Daniels wrote:\n>\n>> Um, hello? Why are there two 'accept all' rules from sites in \n>> Germany?\n>\n> you can download packages and update the machine on the fly.\n> Possibly these are the download sites. The hostnames and IPs\n> don't match with www.dd-wrt.com though.\n>\n> Joe\n>\n> -- \n> Joseph Mack NA3T EME(B,D), FM05lw North Carolina\n> jmack (at) wm7d (dot) net - azimuthal equidistant map\n> generator at http://www.wm7d.net/azproj.shtml\n> Homepage http://www.austintek.com/ It's GNU/Linux!\n> -- \n> TriLUG mailing list : http://www.trilug.org/mailman/listinfo/trilug\n> TriLUG FAQ : http://www.trilug.org/wiki/Frequently_Asked_Questions\n\n\n\nMore information about the TriLUG mailing list"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.trilug.org/pipermail/trilug/Week-of-Mon-20080728/055546.html\",\n \"source_domain\": \"www.trilug.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"4675\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:LQUR3JAGMGNY7C56AYSTJOE3EWHP6QRF\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-22T09:34:55Z\",\n \"WARC-IP-Address\": \"64.244.27.136\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:KMQM7EBH4RMQNDW6HWVEMO645I7FTD44\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.trilug.org/pipermail/trilug/Week-of-Mon-20080728/055546.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 31,\n 32,\n 76,\n 105,\n 106,\n 107,\n 177,\n 246,\n 303,\n 375,\n 441,\n 480,\n 550,\n 615,\n 646,\n 647,\n 718,\n 766,\n 830,\n 895,\n 968,\n 982,\n 1005,\n 1006,\n 1078,\n 1104,\n 1105,\n 1118,\n 1145,\n 1166,\n 1179,\n 1180,\n 1233,\n 1234,\n 1278,\n 1280,\n 1348,\n 1360,\n 1362,\n 1425,\n 1488,\n 1530,\n 1532,\n 1538,\n 1540,\n 1546,\n 1597,\n 1653,\n 1701,\n 1754,\n 1760,\n 1837,\n 1907,\n 1908,\n 1909,\n 1910\n ],\n \"line_end_idx\": [\n 31,\n 32,\n 76,\n 105,\n 106,\n 107,\n 177,\n 246,\n 303,\n 375,\n 441,\n 480,\n 550,\n 615,\n 646,\n 647,\n 718,\n 766,\n 830,\n 895,\n 968,\n 982,\n 1005,\n 1006,\n 1078,\n 1104,\n 1105,\n 1118,\n 1145,\n 1166,\n 1179,\n 1180,\n 1233,\n 1234,\n 1278,\n 1280,\n 1348,\n 1360,\n 1362,\n 1425,\n 1488,\n 1530,\n 1532,\n 1538,\n 1540,\n 1546,\n 1597,\n 1653,\n 1701,\n 1754,\n 1760,\n 1837,\n 1907,\n 1908,\n 1909,\n 1910,\n 1956\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1956,\n \"ccnet_original_nlines\": 56,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2822757065296173,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.035010941326618195,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.29759299755096436,\n \"rps_doc_frac_unique_words\": 0.6450511813163757,\n \"rps_doc_mean_word_length\": 4.962457180023193,\n \"rps_doc_num_sentences\": 35,\n \"rps_doc_symbol_to_word_ratio\": 0.0021881801076233387,\n \"rps_doc_unigram_entropy\": 5.018229961395264,\n \"rps_doc_word_count\": 293,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.015130669809877872,\n \"rps_doc_frac_chars_top_3gram\": 0.01925721950829029,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -210.35025024414062,\n \"rps_doc_books_importance_length_correction\": -210.35025024414062,\n \"rps_doc_openwebtext_importance\": -119.1802749633789,\n \"rps_doc_openwebtext_importance_length_correction\": -119.1802749633789,\n \"rps_doc_wikipedia_importance\": -86.46836853027344,\n \"rps_doc_wikipedia_importance_length_correction\": -86.46836853027344\n },\n \"fasttext\": {\n \"dclm\": -0.000003580000111469417,\n \"english\": 0.8990638256072998,\n \"fineweb_edu_approx\": 1.1440154314041138,\n \"eai_general_math\": 0.049093540757894516,\n \"eai_open_web_math\": 0.14879244565963745,\n \"eai_web_code\": 0.0006282899994403124\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"004.6\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computers and Computer science\"\n }\n },\n \"secondary\": {\n \"code\": \"005.1\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":286,"cells":{"id":{"kind":"number","value":-5486865933799964000,"string":"-5,486,865,933,799,964,000"},"text":{"kind":"string","value":"Canucksdrum: Ryan Kesler & the injured shoulder trickle down effects\n\nRyan Kesler\n\nNWSB Insider and Vancouver Canucks blogger The Flying V – Kevin Vanstone weighs in on the Ryan Kesler shoulder injury, will he or won’t he start the season? The trickle down effects and questions. If Maxim Lapierre is moved up to the second line, Chicago Wolves’ center Jordan Schroeder depth chart, what kind of minutes will Manny Malhotra get? In the meantime, it is up to Gillis to decide if his hockey team can afford to learn on the fly.\n\nThe Canucks Roberto Luongo tells CFOX … “It’s time to move on!”\n\nroberto luongo\n\nNWSB Rookie Insider and Vancouver Canucks blogger Mitch Dyck weighs in today on the latest Canucks news coming out. An interview by Robert Luongo was given today on CFOX radio in Vancouver. Did we learn some juicy details about Luongo or what? His biggest line, At the end of the day I think it’s time to move on, and I’m ok with that. Mitch says Lu will be damn hard to replace.\n\n@Strombone1: Where Canucks goalie controversy and twitter controversy collide\n\nRoberto Luongo?\n\nNWSB Insider and Vancouver Canucks writer The Flying V has returned to weigh in on the Roberto Luongo twitter controversy. Guess what the Canucks have officially lost to the eventual Stanley Cup Champions. Again. So, whether Luongo himself runs the infamous account, or another Canuck has jokingly taken up his online persona, one NHL team seems destined to become distracted by the infamous Strombone.\n\nVancouver Canucks 2012 NHL Draft plan of attack\n\nmike gillis\n\nRichard Hodges has taken multiple breaths since the season ended just to make sure he can soundly type something that makes sense and trust me, he waited long enough. Rich delivers a gem that suggest three areas the Vancouver Canucks need to focus on at the upcoming NHL Entry Draft. I’m thinking this is where we solve that goalie dilemma of ours. Dalton Thrower should be a name to watch for.\n\n*My* Top Canucks and Vancouver fanbase pet peeves\n\ncanucks fake jerseys\n\nJosh Hall is back with his top five Vancouver Canucks related Pet Peeves and he’s kinda peeved so to speak at the fanbase that wreaks havoc here in VanCity. It’s brutal to sit at home watching a Canucks game and notice the lack of atmosphere there is at Rogers Arena. You know Roberto Luongo will be involved somewhere but is it because everything’s his fault? Read on to find out."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.nwsportsbeat.com/tag/strombone1/\",\n \"source_domain\": \"www.nwsportsbeat.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"98155\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:OQLOWSTKBNLVR7KYWSO6D76ONRPO6RPR\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T03:02:15Z\",\n \"WARC-IP-Address\": \"98.129.229.222\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:KUCO7RBALR6JMZJADUG2PYAAVIIOZKQG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.nwsportsbeat.com/tag/strombone1/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 69,\n 70,\n 82,\n 83,\n 526,\n 527,\n 591,\n 592,\n 607,\n 608,\n 988,\n 989,\n 1067,\n 1068,\n 1084,\n 1085,\n 1488,\n 1489,\n 1537,\n 1538,\n 1550,\n 1551,\n 1946,\n 1947,\n 1997,\n 1998,\n 2019,\n 2020\n ],\n \"line_end_idx\": [\n 69,\n 70,\n 82,\n 83,\n 526,\n 527,\n 591,\n 592,\n 607,\n 608,\n 988,\n 989,\n 1067,\n 1068,\n 1084,\n 1085,\n 1488,\n 1489,\n 1537,\n 1538,\n 1550,\n 1551,\n 1946,\n 1947,\n 1997,\n 1998,\n 2019,\n 2020,\n 2401\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2401,\n \"ccnet_original_nlines\": 28,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.37154990434646606,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.02760085090994835,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1104034036397934,\n \"rps_doc_frac_unique_words\": 0.5724637508392334,\n \"rps_doc_mean_word_length\": 4.671497344970703,\n \"rps_doc_num_sentences\": 23,\n \"rps_doc_symbol_to_word_ratio\": 0.0021231400314718485,\n \"rps_doc_unigram_entropy\": 5.089123725891113,\n \"rps_doc_word_count\": 414,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.051706310361623764,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.0496380589902401,\n \"rps_doc_frac_chars_top_3gram\": 0.029472600668668747,\n \"rps_doc_frac_chars_top_4gram\": 0.040330920368433,\n \"rps_doc_books_importance\": -193.55538940429688,\n \"rps_doc_books_importance_length_correction\": -193.55538940429688,\n \"rps_doc_openwebtext_importance\": -122.65890502929688,\n \"rps_doc_openwebtext_importance_length_correction\": -122.65890502929688,\n \"rps_doc_wikipedia_importance\": -95.78009033203125,\n \"rps_doc_wikipedia_importance_length_correction\": -95.78009033203125\n },\n \"fasttext\": {\n \"dclm\": 0.0011363000376150012,\n \"english\": 0.9256591200828552,\n \"fineweb_edu_approx\": 0.9020647406578064,\n \"eai_general_math\": 0.0069200401194393635,\n \"eai_open_web_math\": 0.06804096698760986,\n \"eai_web_code\": 0.00152211997192353\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.9601\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"796.9602\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n },\n \"secondary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":287,"cells":{"id":{"kind":"number","value":-5948567963107148000,"string":"-5,948,567,963,107,148,000"},"text":{"kind":"string","value":"Dionysius of Alexandria; Dionysius the Great\n\n(born c.190) Bishop of Alexandria. He studied under Origen, and eventually became the head of the catechetical school. In 250 there was a severe persecution under Decius in Alexandria, which Dionysius attempted to flee, but was taken into custody. He was rescued by Christians and remained in hiding in the Libyan desert until the persecution ceased, 251. At this juncture the Novatian schism occurred in which Dionysius supported Cornelius, the rightful pope, and it was largely through his influence that the whole East was unified. During the persecution of Valerian, he was banished, 257, to the desert of Mareotis, returning to Alexandria when toleration was decreed, 260, by Gallienus. Dionysius dealt leniently with the Christians who had lapsed during the persecutions and refused forgiveness to none at the hour of death. He wrote a work on the Apocalypse, which ranks high as biblical criticism.\n\nNew Catholic Dictionary\n\nNCD Index SQPN Contact Author"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://saints.sqpn.com/ncd02726.htm\",\n \"source_domain\": \"saints.sqpn.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"4641\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:WYWRFONPPL2EWDE7NZQSHS32TYQMHNUN\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T20:00:34Z\",\n \"WARC-IP-Address\": \"50.23.131.74\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:FB66RDXHZVV46RKKJXZDDLRYFIK2OPRO\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://saints.sqpn.com/ncd02726.htm\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 45,\n 46,\n 952,\n 953,\n 977,\n 978\n ],\n \"line_end_idx\": [\n 45,\n 46,\n 952,\n 953,\n 977,\n 978,\n 1007\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1007,\n \"ccnet_original_nlines\": 6,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.385869562625885,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.010869570076465607,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.16304348409175873,\n \"rps_doc_frac_unique_words\": 0.6518987417221069,\n \"rps_doc_mean_word_length\": 5.202531814575195,\n \"rps_doc_num_sentences\": 10,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.3291168212890625,\n \"rps_doc_word_count\": 158,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.029197080060839653,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -79.14746856689453,\n \"rps_doc_books_importance_length_correction\": -79.14746856689453,\n \"rps_doc_openwebtext_importance\": -42.22019577026367,\n \"rps_doc_openwebtext_importance_length_correction\": -28.22857666015625,\n \"rps_doc_wikipedia_importance\": -33.483741760253906,\n \"rps_doc_wikipedia_importance_length_correction\": -33.483741760253906\n },\n \"fasttext\": {\n \"dclm\": 0.1316242814064026,\n \"english\": 0.9861411452293396,\n \"fineweb_edu_approx\": 2.8748843669891357,\n \"eai_general_math\": 0.21049469709396362,\n \"eai_open_web_math\": 0.5632882118225098,\n \"eai_web_code\": 0.013253389857709408\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"270.092\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Church history\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"282.092\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Christian sects\",\n \"level_3\": \"Catholic Church\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":288,"cells":{"id":{"kind":"number","value":1809609861876470500,"string":"1,809,609,861,876,470,500"},"text":{"kind":"string","value":"Why is a Bogus Financial Planner so Difficult to Identify?\n\nYou need to know there are real financial planners and there are bogus financial planners. The fake planners use the title to reduce sales resistance when they sell investment and insurance products. For example, a  plan may recommend a substantial purchase of insurance products. You are more likely to buy if it is recommended by the plan and not by the financial planner. What is the difference? There is no difference when the plan represents the financial interests of the planner.\n\nIndustry Regulations\n\nThere are no industry regulations that limit who can call themselves financial planners. A brand new sales rep may adopt the title to facilitate the sales of financial products. There are no tests to make this claim more valid and there are no licenses for financial planners. If you are asking why, it is because Wall Street firms also benefit from this deceptive sales tactic. The firms make more money when they make it easy for their reps to sell investment products and services. And make no mistake.  Wall Street has tremendous influence over the regulations that govern the industry.  Continue reading\n\nSeven Layers of Investment Fees\n\nSeven Layers of Investment FeesWould you believe there are seven layers of investment fees that can be deducted from your investment accounts? It would be rare to pay all seven, but four or five are fairly common. The more you know about investment fees the less likely excessive expenses will impact you.\n\nEvery dollar of investment fees is one less dollar you have for reinvestment and your future use. Long-term goals, like secure retirements, can be severely impacted by excessive expenses.  Continue reading\n\nAre Investors Paying too Much for Investment Services?\n\nInvestment expenses are complex and advisors are reluctant to discuss them. They don’t want you to know what you pay in total fees because you may not buy what they are selling. And, they know you may be particularly sensitive about the fees they earn in down markets when you are incurring big losses.\n\nIf you want to know more about the expenses you pay, you will have to ask the right questions and you better obtain your advisor’s responses in writing. Documentation is a lot better than verbal information that is subject to recall and is easy to deny later. Continue reading\n\nVAR: Valueless at Risk\n\nJPMorgan Chase CEO Jamie Dimon said the firm suffered a $2 billion trading loss blaming an “egregious” failure in the firm’s risk management. JP Morgan’s $2 billion dollar blunder has its roots in something called Value at Risk (VAR) which is a measure of how much a company estimates it could lose on a portfolio of securities on 95 percent of days. It’s a model that supposedly measures the boundaries of risk in a bank, a portfolio, or a hedge fund under “normal” market conditions. Its main selling point is that it can simply express risk as a single number or dollar figure and ignore the greater complexities of financial markets. Continue reading\n\nMore CPAs are Providing Financial Planning Services\n\nThe AICPA announced more CPAs are beginning to offer financial planning services to their clients. This is an excellent fit due to the number of tax considerations in a financial plan.\n\nCPAs have two major competitive advantages. First, their clients already trust them. And, trust gives them instant credibility. Second, CPA is a designation that is recognized by just about everybody. Very few people recognize the CFP® designation.\n\nSome CPAs will look at planning as nothing more than an additional source of revenue from current client relationships. Notwithstanding its lack of recognition, other more serious CPAs will add a CFP® designation to their credentials. It’s excellent training and the designation will distinguish them from CPAs and CPA/PFS’."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.investorwatchdog.com/blog/tag/financial-planning/\",\n \"source_domain\": \"www.investorwatchdog.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"45841\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:W56ZVEWMUNKGX5SVQGDZNMDETRJBWS5P\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-18T18:32:59Z\",\n \"WARC-IP-Address\": \"108.171.163.111\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:OUOLQVEOYD53BB3V726QXK22YMAD4JFJ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.investorwatchdog.com/blog/tag/financial-planning/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 59,\n 60,\n 547,\n 548,\n 569,\n 570,\n 1179,\n 1180,\n 1212,\n 1213,\n 1519,\n 1520,\n 1726,\n 1727,\n 1782,\n 1783,\n 2086,\n 2087,\n 2364,\n 2365,\n 2388,\n 2389,\n 3044,\n 3045,\n 3097,\n 3098,\n 3283,\n 3284,\n 3533,\n 3534\n ],\n \"line_end_idx\": [\n 59,\n 60,\n 547,\n 548,\n 569,\n 570,\n 1179,\n 1180,\n 1212,\n 1213,\n 1519,\n 1520,\n 1726,\n 1727,\n 1782,\n 1783,\n 2086,\n 2087,\n 2364,\n 2365,\n 2388,\n 2389,\n 3044,\n 3045,\n 3097,\n 3098,\n 3283,\n 3284,\n 3533,\n 3534,\n 3858\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3858,\n \"ccnet_original_nlines\": 30,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.43417367339134216,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.015406159684062004,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.10364145785570145,\n \"rps_doc_frac_unique_words\": 0.4566929042339325,\n \"rps_doc_mean_word_length\": 4.954330921173096,\n \"rps_doc_num_sentences\": 39,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.1830267906188965,\n \"rps_doc_word_count\": 635,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.017164649441838264,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.015257470309734344,\n \"rps_doc_frac_chars_top_3gram\": 0.00953591987490654,\n \"rps_doc_frac_chars_top_4gram\": 0.021932609379291534,\n \"rps_doc_books_importance\": -304.63262939453125,\n \"rps_doc_books_importance_length_correction\": -304.63262939453125,\n \"rps_doc_openwebtext_importance\": -184.23162841796875,\n \"rps_doc_openwebtext_importance_length_correction\": -184.23162841796875,\n \"rps_doc_wikipedia_importance\": -165.30528259277344,\n \"rps_doc_wikipedia_importance_length_correction\": -165.30528259277344\n },\n \"fasttext\": {\n \"dclm\": 0.013133109547197819,\n \"english\": 0.9596918821334839,\n \"fineweb_edu_approx\": 1.4552578926086426,\n \"eai_general_math\": 0.01626623049378395,\n \"eai_open_web_math\": 0.03227663040161133,\n \"eai_web_code\": 0.0009508099756203592\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"332.0246\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Finance\"\n }\n },\n \"secondary\": {\n \"code\": \"332.6\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Finance\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":289,"cells":{"id":{"kind":"number","value":8459642450972972000,"string":"8,459,642,450,972,972,000"},"text":{"kind":"string","value":"Chalkboard Left\n\nAdventures of the Bailey School Kids\n\n#9 Pirates Don't Wear Pink Sunglasses\n\nLesson Plan:\nCostume Party!\nReward your class for working hard: Have a dress-up day for your favorite Bailey School Kids Character. Be a pirate with pink sunglasses, an angel who knows karate, or choose from over 48 other characters. And the costumes don’t have to be monsters or teachers only. Don’t forget Eddie and the gang!\nAye, Pirates!\nPirates really existed. They looted unarmed ships from sea to sea. Look up pirates in the library or on the Web. Find two interesting things to tell your class about pirates.\n\nOriginal Cover\nOriginal Cover\n\nBack to Adventures of the Bailey School Kids\n\nBack to Previous Page\nDebbie Dadey Logo"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.debbiedadey.com/Teachers/index.php?gid=93\",\n \"source_domain\": \"www.debbiedadey.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"20358\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:BURACICGMWMPF6QMFFAX76UMUEBZZNR7\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-22T04:32:34Z\",\n \"WARC-IP-Address\": \"198.1.77.74\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:7A4TLAIGAVIYQCT77PCSMBC57EY6OFUG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.debbiedadey.com/Teachers/index.php?gid=93\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 16,\n 17,\n 54,\n 55,\n 93,\n 94,\n 107,\n 122,\n 422,\n 436,\n 611,\n 612,\n 627,\n 642,\n 643,\n 688,\n 689,\n 711\n ],\n \"line_end_idx\": [\n 16,\n 17,\n 54,\n 55,\n 93,\n 94,\n 107,\n 122,\n 422,\n 436,\n 611,\n 612,\n 627,\n 642,\n 643,\n 688,\n 689,\n 711,\n 728\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 728,\n \"ccnet_original_nlines\": 18,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.31506848335266113,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1506849229335785,\n \"rps_doc_frac_unique_words\": 0.6803278923034668,\n \"rps_doc_mean_word_length\": 4.778688430786133,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0.006849320139735937,\n \"rps_doc_unigram_entropy\": 4.267096042633057,\n \"rps_doc_word_count\": 122,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.1063464805483818,\n \"rps_doc_frac_chars_dupe_6grams\": 0.1063464805483818,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.061749570071697235,\n \"rps_doc_frac_chars_top_3gram\": 0.08233276009559631,\n \"rps_doc_frac_chars_top_4gram\": 0.07204116880893707,\n \"rps_doc_books_importance\": -75.38762664794922,\n \"rps_doc_books_importance_length_correction\": -75.39781951904297,\n \"rps_doc_openwebtext_importance\": -43.04889678955078,\n \"rps_doc_openwebtext_importance_length_correction\": -43.05908966064453,\n \"rps_doc_wikipedia_importance\": -38.48136520385742,\n \"rps_doc_wikipedia_importance_length_correction\": -38.491554260253906\n },\n \"fasttext\": {\n \"dclm\": -0.0000071499998739454895,\n \"english\": 0.8601041436195374,\n \"fineweb_edu_approx\": 1.1353620290756226,\n \"eai_general_math\": 0.00015068000357132405,\n \"eai_open_web_math\": 0.13941144943237305,\n \"eai_web_code\": -0.000008940000043367036\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"372.6\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Education\",\n \"level_3\": \"Education, Elementary and Kindergarten\"\n }\n },\n \"secondary\": {\n \"code\": \"796.43\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":290,"cells":{"id":{"kind":"number","value":-1311284212402229800,"string":"-1,311,284,212,402,229,800"},"text":{"kind":"string","value":"Game Soundtracks CDJapan\n\nToHeart2 – Kusugawa Sasara 1/6 PVC figure by FREEing\n\nTags: , , , ,\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nFREEing is going to release the Kusugawa Sasara (久寿川 ささら) 1/6 PVC figure from the eroge/OVA “ToHeart2″ published by Leaf/AQUAPLUS. Will be released in February April 2012. Around 210mm tall, 9,334 yen.\n\nYou can order her here ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nIs it just me or the head of this Sasara figure is too small compares to her body? (-____-.?\n\n——Description from Manufacturer——\n\nThe talented student council vice-president, wearing a sexy bikini!\n\nFrom the popular adventure dating sim game, ‘ToHeart2″ comes a 1/6th scale figure of Sasara Kusugawa – the talented vice-president of the student council who manages to get through all the council’s duties on her own!\n\nShe is well known for her cold personality, and may be feared by most students at her school – but they’d definitely warm up to her if they got a good look at her wonderful proportions! She is wearing a lovely white bikini posed on her knees while holding onto her bikini strings – definitely a pose that fans won’t be able to get enough of!\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing\n\nToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.nekomagic.com/?p=27898\",\n \"source_domain\": \"www.nekomagic.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"55831\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2ELB7LLEXJAGPXC563IZ5XB3WSP4CNMK\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-22T19:11:46Z\",\n \"WARC-IP-Address\": \"74.208.82.167\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:FXYL6X3OXMTNGSXKUJ2NW22CIR6DSQIA\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.nekomagic.com/?p=27898\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 25,\n 26,\n 79,\n 80,\n 94,\n 95,\n 148,\n 149,\n 351,\n 352,\n 428,\n 429,\n 522,\n 523,\n 557,\n 558,\n 626,\n 627,\n 845,\n 846,\n 1188,\n 1189,\n 1242,\n 1243,\n 1296,\n 1297,\n 1350,\n 1351,\n 1404,\n 1405,\n 1458,\n 1459,\n 1512,\n 1513,\n 1566,\n 1567,\n 1620,\n 1621,\n 1674,\n 1675,\n 1728,\n 1729\n ],\n \"line_end_idx\": [\n 25,\n 26,\n 79,\n 80,\n 94,\n 95,\n 148,\n 149,\n 351,\n 352,\n 428,\n 429,\n 522,\n 523,\n 557,\n 558,\n 626,\n 627,\n 845,\n 846,\n 1188,\n 1189,\n 1242,\n 1243,\n 1296,\n 1297,\n 1350,\n 1351,\n 1404,\n 1405,\n 1458,\n 1459,\n 1512,\n 1513,\n 1566,\n 1567,\n 1620,\n 1621,\n 1674,\n 1675,\n 1728,\n 1729,\n 1781\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1781,\n \"ccnet_original_nlines\": 42,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 1,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2734806537628174,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.046961329877376556,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2541436553001404,\n \"rps_doc_frac_unique_words\": 0.4160839319229126,\n \"rps_doc_mean_word_length\": 4.877622604370117,\n \"rps_doc_num_sentences\": 10,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.115291118621826,\n \"rps_doc_word_count\": 286,\n \"rps_doc_frac_chars_dupe_10grams\": 0.3311828076839447,\n \"rps_doc_frac_chars_dupe_5grams\": 0.41577062010765076,\n \"rps_doc_frac_chars_dupe_6grams\": 0.41577062010765076,\n \"rps_doc_frac_chars_dupe_7grams\": 0.41577062010765076,\n \"rps_doc_frac_chars_dupe_8grams\": 0.3913978636264801,\n \"rps_doc_frac_chars_dupe_9grams\": 0.3311828076839447,\n \"rps_doc_frac_chars_top_2gram\": 0.1505376249551773,\n \"rps_doc_frac_chars_top_3gram\": 0.11827956885099411,\n \"rps_doc_frac_chars_top_4gram\": 0.19068099558353424,\n \"rps_doc_books_importance\": -200.28602600097656,\n \"rps_doc_books_importance_length_correction\": -193.8228302001953,\n \"rps_doc_openwebtext_importance\": -122.96259307861328,\n \"rps_doc_openwebtext_importance_length_correction\": -122.96259307861328,\n \"rps_doc_wikipedia_importance\": -91.88529205322266,\n \"rps_doc_wikipedia_importance_length_correction\": -90.35399627685547\n },\n \"fasttext\": {\n \"dclm\": 0.0002738799958024174,\n \"english\": 0.9350153803825378,\n \"fineweb_edu_approx\": 1.1900725364685059,\n \"eai_general_math\": 0.004893119912594557,\n \"eai_open_web_math\": 0.1566077470779419,\n \"eai_web_code\": 0.00016790999507065862\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"741.2\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Drawing, Decoration and ornament, and Design\",\n \"level_3\": \"Drawing — Technique and Caricatures and cartoons\"\n }\n },\n \"secondary\": {\n \"code\": \"794.8\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":291,"cells":{"id":{"kind":"number","value":1762075668166741200,"string":"1,762,075,668,166,741,200"},"text":{"kind":"string","value":"Long Island Business News » market economy http://libn.com The premier source of Long Island news and data on business, economic trends and the region’s robust entrepreneurial sector. Wed, 22 May 2013 19:36:31 +0000 en hourly 1 http://wordpress.org/?v=3.3.1 Keating: What Occupy Wall Street is all about http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/ http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/#comments Wed, 30 Nov 2011 11:51:44 +0000 Raymond Keating http://libn.com/?p=66978 http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/feed/ 3 Keating: Setting the facts straight on trade http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/ http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/#comments Wed, 22 Jun 2011 18:42:49 +0000 Raymond Keating http://libn.com/?p=58790 http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/feed/ 1"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://libn.com/tag/market-economy/feed/\",\n \"source_domain\": \"libn.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"4299\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:7WDFGRJ2LD774M4QFAPUTOMNKNSJZSVB\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T08:49:03Z\",\n \"WARC-IP-Address\": \"64.244.52.200\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:GKP5N3VNNEBBOBBWFSR42WENZAYOWNQK\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://libn.com/tag/market-economy/feed/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0\n ],\n \"line_end_idx\": [\n 961\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 961,\n \"ccnet_original_nlines\": 0,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.1385135054588318,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.5439189076423645,\n \"rps_doc_frac_unique_words\": 0.7564102411270142,\n \"rps_doc_mean_word_length\": 9.538461685180664,\n \"rps_doc_num_sentences\": 17,\n \"rps_doc_symbol_to_word_ratio\": 0.0067567601799964905,\n \"rps_doc_unigram_entropy\": 3.981123924255371,\n \"rps_doc_word_count\": 78,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02688172087073326,\n \"rps_doc_frac_chars_top_3gram\": 0.04838709905743599,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -140.31729125976562,\n \"rps_doc_books_importance_length_correction\": -140.31729125976562,\n \"rps_doc_openwebtext_importance\": -108.89221954345703,\n \"rps_doc_openwebtext_importance_length_correction\": -95.47293853759766,\n \"rps_doc_wikipedia_importance\": -70.8907241821289,\n \"rps_doc_wikipedia_importance_length_correction\": -70.8907241821289\n },\n \"fasttext\": {\n \"dclm\": -0.000007749999895168003,\n \"english\": 0.6543139219284058,\n \"fineweb_edu_approx\": 1.058804988861084,\n \"eai_general_math\": -0.000009059999683813658,\n \"eai_open_web_math\": 0.00038534001214429736,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"330.0\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"338.0\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":292,"cells":{"id":{"kind":"number","value":-521469403078653250,"string":"-521,469,403,078,653,250"},"text":{"kind":"string","value":"\nStream it now Hellboy II: The Golden Army\n\nIMDb rating: 7.1 (136,499 votes)\nIMDb ID: 0411477\nDuration: 120 min\nRelease Date: July 11, 2008\nSolar rating:\nBe first to rate!\nPlease wait..\n\nThe mythical world starts a rebellion against humanity in order to rule the Earth, so Hellboy and his team must save the world from the rebellious creatures.\n\n\nAction, Adventure, Fantasy produced in 2008 [USA, Germany]\n\n \n \nVoting\nQuality\nAge\n \nVoting\nQuality\nAge\n\nMovie trailer\n\nСomments\n\n8/2 - Gangs of New York (Martin Scorsese, 2002, Rental): 8\n\n8/7 - Away from Her (Sarah Polley, 2007, Rental): 9\n\n8/9 - Tell No One (Guillaume Canet, 2008, Download): 8\n\n8/16 - Hellboy 2: The Golden Army (Guillermo del Toro, 2008, Download): 8\n\n8/20 - Kung Fu Panda (Mark Osborne & John Stevenson, 2008, Download): 6.5\nreply\njust saw a sneak last night. never saw the first one. i thought it was easily the best movie i've seen all year. if only every superhero, fantasy, summer action flick was this good. humor, special effects, emotion...i was floored!\nreply\nThis seems very awkward.Never seen hellboy and got no idea until i saw this trailer and i though. \"Wow this might not be bad\" well when it comes i will know. Is it good or is bad...is it AWESOME or is TERRIBLE.We will wait......its STRANGE i am talking about HELLBOY...Yeah THE STRANGERS(2008) WAS HORRIBLE I AINT SEEING IT UNLESS I GET 50$ OR MORE.....yeah lets end by saying READ THIS DAMN REVIEW...I mean preview lol :D\nreply\nI must admit I wasn't a great fan of Hell Boy 1, and in fact never heard of the Hell Boy comic before the movie but, being a sci-fi fantasy buff I found it very watchable and was very much looking forward to del Toro's vision for this next chapter. He did not let me down. His creatures and CGI were incredibly beautiful and his casting of Luke Goss (Nomak from Blade2) as prince Nuada was right on. Incredable action and acrobatic fight scenes left me wanting more when the movie was done. A must see movie!\nreply\n:fresh:\n\nHellboy II is another guillermo master piece!!!!\n\nIt will keep you at the edge of your seet!\nreply\nI guess since i'm on(but totally drained ) I'll give my non-spoiler review.This movie will knock your socks off.it's totally different from what you expect.Different from the first film ,but totally in a good way.the plot's out there, so i won't go into that.\nMignola and del Toro spin a tale that covers the world and the otherworldly.you will be immersed into a world of familiar old friends and enthalled by some new ones.\nvisually ,two words comes to mind spectacular and breathtaking...\"eye protein\" as del toro calls it...INDEED!!!to see the concepts in the \"Art Of...\" book come to life are a wonder in itself.(kudos to all involved).\nThe performances...are stellar.Perlman gives his talent of comedic timing a work out.and kicks monster butt like no other\"Hellboy SMASH!\"\n__________________\nreply\nThe only this would suck if Uwe Boll directed it.\nreply\nI've been on a movie-watching tear lately...eventually I'll get around to posting my thoughts on all of them, but I'll just cut to the chase and tell you what two HUGE summer movies I saw last weekend...\n\n\n\n\n\n\nBut Hellboy II's failures outweigh its triumphs. Those triumphs, by the way, include del Toro's infinite sense of whimsy, the Pan's Labyrinth-esque creatures that inhabit his world, and a cast that does surprisingly well with the storylines they're given, especially considering that Grandpa Bluth (Jeffrey Tambor) plays the boss, a former Brit boy-bander plays the villain (Luke Goss), and Doug Jones plays three different parts, all under prosthetics. (Jones also gets to voice Abe Sapien for the first time on-screen, having had practice in the animated series and video game. In the first Hellboy, David Hyde Pierce provided vocals.)\n\nThe problem is, Hellboy is given precious little to do. He starts out an immature slob, and he ends up, basically, the same immature slob but with a vaguely renewed sense of responsibility. He's destined to destroy mankind, but has chosen to defend it; why, then, give him a mid-story ethical crisis that never quite plays out?\n\nLike Batman in The Dark Knight, Hellboy's story has little to do with Hellboy himself. In fact, there's really nothing unique tying him to the story and villain; it could be any fantasy-action hero saving the world here. What del Toro does nail here is in replicating the tone of the first film, providing laughs throughout and moving things along at a nice click. Those two hours (or however long it is) fly by, and though much of what's on paper won't make much sense or bear any real meaning, there's lots of eye candy to take in. All of which means that while Hellboy II is fine (hovering on the low end of Fresh for me), it's also forgettable - which means bad news for a superhero movie battling Iron Man, the Hulk, WALL-E and Batman this summer season.\n\n\nSo ends my double-stuffed superhero weekend. Weigh in with your thoughts...\nreply\nI haven't seen this movie yet, but my boyfriend said it's going to be awesome!\nreply\nhate it hate hate it\nreply"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.solarmovie.so/watch-hellboy-ii-the-golden-army-2008.html\",\n \"source_domain\": \"www.solarmovie.so\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"67289\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:ELIZXHVF2ONWFTRECDKEANLTCEL2HQ4Q\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-21T13:15:35Z\",\n \"WARC-IP-Address\": \"205.204.80.87\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:QSKIIWMMDJ2V4JPEMOGZAFFZYJKH362P\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.solarmovie.so/watch-hellboy-ii-the-golden-army-2008.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 1,\n 43,\n 44,\n 77,\n 94,\n 112,\n 140,\n 154,\n 172,\n 186,\n 187,\n 345,\n 346,\n 347,\n 406,\n 407,\n 409,\n 411,\n 418,\n 426,\n 430,\n 432,\n 439,\n 447,\n 451,\n 452,\n 466,\n 467,\n 476,\n 477,\n 536,\n 537,\n 589,\n 590,\n 645,\n 646,\n 720,\n 721,\n 795,\n 801,\n 1032,\n 1038,\n 1461,\n 1467,\n 1976,\n 1982,\n 1990,\n 1991,\n 2040,\n 2041,\n 2084,\n 2090,\n 2350,\n 2516,\n 2732,\n 2870,\n 2889,\n 2895,\n 2945,\n 2951,\n 3155,\n 3156,\n 3157,\n 3158,\n 3159,\n 3160,\n 3161,\n 3799,\n 3800,\n 4128,\n 4129,\n 4889,\n 4890,\n 4891,\n 4967,\n 4973,\n 5052,\n 5058,\n 5079\n ],\n \"line_end_idx\": [\n 1,\n 43,\n 44,\n 77,\n 94,\n 112,\n 140,\n 154,\n 172,\n 186,\n 187,\n 345,\n 346,\n 347,\n 406,\n 407,\n 409,\n 411,\n 418,\n 426,\n 430,\n 432,\n 439,\n 447,\n 451,\n 452,\n 466,\n 467,\n 476,\n 477,\n 536,\n 537,\n 589,\n 590,\n 645,\n 646,\n 720,\n 721,\n 795,\n 801,\n 1032,\n 1038,\n 1461,\n 1467,\n 1976,\n 1982,\n 1990,\n 1991,\n 2040,\n 2041,\n 2084,\n 2090,\n 2350,\n 2516,\n 2732,\n 2870,\n 2889,\n 2895,\n 2945,\n 2951,\n 3155,\n 3156,\n 3157,\n 3158,\n 3159,\n 3160,\n 3161,\n 3799,\n 3800,\n 4128,\n 4129,\n 4889,\n 4890,\n 4891,\n 4967,\n 4973,\n 5052,\n 5058,\n 5079,\n 5084\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5084,\n \"ccnet_original_nlines\": 79,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 2,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3713783919811249,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.040386300534009933,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.02500000037252903,\n \"rps_doc_frac_no_alph_words\": 0.21071115136146545,\n \"rps_doc_frac_unique_words\": 0.5490196347236633,\n \"rps_doc_mean_word_length\": 4.504036903381348,\n \"rps_doc_num_sentences\": 63,\n \"rps_doc_symbol_to_word_ratio\": 0.012291479855775833,\n \"rps_doc_unigram_entropy\": 5.715441703796387,\n \"rps_doc_word_count\": 867,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.010243279859423637,\n \"rps_doc_frac_chars_top_3gram\": 0.0066581298597157,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -512.3365478515625,\n \"rps_doc_books_importance_length_correction\": -512.3365478515625,\n \"rps_doc_openwebtext_importance\": -300.6758117675781,\n \"rps_doc_openwebtext_importance_length_correction\": -300.6758117675781,\n \"rps_doc_wikipedia_importance\": -209.57061767578125,\n \"rps_doc_wikipedia_importance_length_correction\": -209.57061767578125\n },\n \"fasttext\": {\n \"dclm\": 0.01781320944428444,\n \"english\": 0.9500300884246826,\n \"fineweb_edu_approx\": 1.019533634185791,\n \"eai_general_math\": 0.008878950029611588,\n \"eai_open_web_math\": 0.2606501579284668,\n \"eai_web_code\": 0.0013214299688115716\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.43724\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"791.43725\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"Reviews/Critiques\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"24\",\n \"label\": \"User Review\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Comment Section\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":293,"cells":{"id":{"kind":"number","value":7822763110146193000,"string":"7,822,763,110,146,193,000"},"text":{"kind":"string","value":"Science News\n\n... from universities, journals, and other research organizations\n\nWith a Little Training, Signs of Schizophrenia Are Averted\n\nAug. 22, 2012 — Animals that literally have holes in their brains can go on to behave as normal adults if they've had the benefit of a little cognitive training in adolescence. That's according to new work in the August 23 Neuron, a Cell Press publication, featuring an animal model of schizophrenia, where rats with particular neonatal brain injuries develop schizophrenia-like symptoms.\n\n\nShare This:\n\n\"The brain can be loaded with all sorts of problems,\" said André Fenton of New York University. \"What this work shows is that experience can overcome those disabilities.\"\n\nFenton's team made the discovery completely by accident. His team was interested in what Fenton considers a core problem in schizophrenia: the inability to sift through confusing or conflicting information and focus on what's relevant.\n\n\"As you walk through the world, you might be focused on a phone conversation, but there are also kids in the park and cars and other distractions,\" he explained. \"These information streams are all competing for our brain to process them. That's a really challenging situation for someone with schizophrenia.\"\n\nFenton and his colleagues developed a laboratory test of cognitive control needed for that kind of focus. In the test, rats had to learn to avoid a foot shock while they were presented with conflicting information. Normal rats can manage that task quickly. Rats with brain lesions can also manage this task, but only up until they become young adults -- the equivalent of an 18- or 20-year-old person -- when signs of schizophrenia typically set in.\n\nWhile that was good to see, Fenton says, it wasn't really all that surprising. But then some unexpected circumstances in the lab led them to test animals with adolescent experience in the cognitive control test again, once they had grown into adults.\n\nThese rats should have shown cognitive control deficits, similar to those that had not received prior cognitive training, or so the researchers thought. Instead, they were just fine. Their schizophrenic symptoms had somehow been averted.\n\nFenton believes their early training for focus forged some critical neural connections, allowing the animals to compensate for the injury still present in their brains in adulthood. Not only were the animals' behaviors normalized with training, but the patterns of activity in their brains were also.\n\nThe finding is consistent with the notion that mental disorders are the consequence of problems in brain development that might have gotten started years before. They raise the optimistic hope that the right kinds of experiences at the right time could change the future by enabling people to better manage their diseases and better function in society. Adolescence, when the brain undergoes significant change and maturation, might be a prime time for such training.\n\n\"You may have a damaged brain, but the consequences of that damage might be overcome without changing the damage itself,\" Fenton says. \"You could target schizophrenia, but other disorders aren't very different,\" take autism or depression, for example.\n\nAnd really, in this world of infinite distraction, couldn't we all use a little more cognitive control?\n\nShare this story on Facebook, Twitter, and Google:\n\nOther social bookmarking and sharing tools:\n\n|\n\nStory Source:\n\nThe above story is reprinted from materials provided by Cell Press, via EurekAlert!, a service of AAAS.\n\nNote: Materials may be edited for content and length. For further information, please contact the source cited above.\n\n\nJournal Reference:\n\n 1. Heekyung Lee, Dino Dvorak, Hsin-Yi Kao, Áine M. Duffy, Helen E. Scharfman, André A. Fenton. Early Cognitive Experience Prevents Adult Deficits in a Neurodevelopmental Schizophrenia Model. Neuron, 2012; 75 (4): 714 DOI: 10.1016/j.neuron.2012.06.016\nAPA\n\nMLA\n\nNote: If no author is given, the source is cited instead.\n\nSearch ScienceDaily\n\nNumber of stories in archives: 138,557\n\nFind with keyword(s):\n \nEnter a keyword or phrase to search ScienceDaily's archives for related news topics,\nthe latest news stories, reference articles, science videos, images, and books.\n\nRecommend ScienceDaily on Facebook, Twitter, and Google:\n\nOther social bookmarking and sharing services:\n\n|\n\n \nInterested in ad-free access? If you'd like to read ScienceDaily without ads, let us know!\n  more breaking science news\n\nSocial Networks\n\n\nFollow ScienceDaily on Facebook, Twitter,\nand Google:\n\nRecommend ScienceDaily on Facebook, Twitter, and Google +1:\n\nOther social bookmarking and sharing tools:\n\n|\n\nBreaking News\n\n... from NewsDaily.com\n\n • more science news\n\nIn Other News ...\n\n • more top news\n\nScience Video News\n\n\nLearn To Read Through Sound\n\nCognitive neuroscientists monitoring brain activity with fMRI found that children with dyslexia are often unable to process the fast-changing sounds. ...  > full story\n\nStrange Science News\n\n \n\nFree Subscriptions\n\n... from ScienceDaily\n\nGet the latest science news with our free email newsletters, updated daily and weekly. Or view hourly updated newsfeeds in your RSS reader:\n\nFeedback\n\n... we want to hear from you!\n\nTell us what you think of ScienceDaily -- we welcome both positive and negative comments. Have any problems using the site? Questions?\n\nPost this page to your favorite social bookmarking site:\nInclude this item in your blog or web site:\nCite this article in your essay, paper, or report:\nEmail this page's link to a friend or colleague:"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.sciencedaily.com/releases/2012/08/120822125026.htm\",\n \"source_domain\": \"www.sciencedaily.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"63751\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:SWUNXAQK6DNBH3TUDLOHXTYWGS6Z4MKO\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T05:41:21Z\",\n \"WARC-IP-Address\": \"75.101.140.165\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:M7JCHQXMSCQFIQWLILDU4E37HT6WXP5I\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.sciencedaily.com/releases/2012/08/120822125026.htm\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 13,\n 14,\n 80,\n 81,\n 140,\n 141,\n 530,\n 531,\n 532,\n 544,\n 545,\n 716,\n 717,\n 953,\n 954,\n 1263,\n 1264,\n 1714,\n 1715,\n 1966,\n 1967,\n 2205,\n 2206,\n 2507,\n 2508,\n 2976,\n 2977,\n 3229,\n 3230,\n 3334,\n 3335,\n 3386,\n 3387,\n 3431,\n 3432,\n 3434,\n 3435,\n 3449,\n 3450,\n 3554,\n 3555,\n 3673,\n 3674,\n 3675,\n 3694,\n 3695,\n 3948,\n 3952,\n 3953,\n 3957,\n 3958,\n 4016,\n 4017,\n 4037,\n 4038,\n 4077,\n 4078,\n 4100,\n 4102,\n 4187,\n 4267,\n 4268,\n 4325,\n 4326,\n 4373,\n 4374,\n 4376,\n 4377,\n 4379,\n 4470,\n 4499,\n 4500,\n 4516,\n 4517,\n 4518,\n 4560,\n 4572,\n 4573,\n 4633,\n 4634,\n 4678,\n 4679,\n 4681,\n 4682,\n 4696,\n 4697,\n 4720,\n 4721,\n 4743,\n 4744,\n 4762,\n 4763,\n 4781,\n 4782,\n 4801,\n 4802,\n 4803,\n 4831,\n 4832,\n 5000,\n 5001,\n 5022,\n 5023,\n 5025,\n 5026,\n 5045,\n 5046,\n 5068,\n 5069,\n 5209,\n 5210,\n 5219,\n 5220,\n 5250,\n 5251,\n 5386,\n 5387,\n 5444,\n 5488,\n 5539\n ],\n \"line_end_idx\": [\n 13,\n 14,\n 80,\n 81,\n 140,\n 141,\n 530,\n 531,\n 532,\n 544,\n 545,\n 716,\n 717,\n 953,\n 954,\n 1263,\n 1264,\n 1714,\n 1715,\n 1966,\n 1967,\n 2205,\n 2206,\n 2507,\n 2508,\n 2976,\n 2977,\n 3229,\n 3230,\n 3334,\n 3335,\n 3386,\n 3387,\n 3431,\n 3432,\n 3434,\n 3435,\n 3449,\n 3450,\n 3554,\n 3555,\n 3673,\n 3674,\n 3675,\n 3694,\n 3695,\n 3948,\n 3952,\n 3953,\n 3957,\n 3958,\n 4016,\n 4017,\n 4037,\n 4038,\n 4077,\n 4078,\n 4100,\n 4102,\n 4187,\n 4267,\n 4268,\n 4325,\n 4326,\n 4373,\n 4374,\n 4376,\n 4377,\n 4379,\n 4470,\n 4499,\n 4500,\n 4516,\n 4517,\n 4518,\n 4560,\n 4572,\n 4573,\n 4633,\n 4634,\n 4678,\n 4679,\n 4681,\n 4682,\n 4696,\n 4697,\n 4720,\n 4721,\n 4743,\n 4744,\n 4762,\n 4763,\n 4781,\n 4782,\n 4801,\n 4802,\n 4803,\n 4831,\n 4832,\n 5000,\n 5001,\n 5022,\n 5023,\n 5025,\n 5026,\n 5045,\n 5046,\n 5068,\n 5069,\n 5209,\n 5210,\n 5219,\n 5220,\n 5250,\n 5251,\n 5386,\n 5387,\n 5444,\n 5488,\n 5539,\n 5587\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5587,\n \"ccnet_original_nlines\": 120,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3526616096496582,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.007604559883475304,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.008264459669589996,\n \"rps_doc_frac_no_alph_words\": 0.18631179630756378,\n \"rps_doc_frac_unique_words\": 0.49118682742118835,\n \"rps_doc_mean_word_length\": 5.23619270324707,\n \"rps_doc_num_sentences\": 59,\n \"rps_doc_symbol_to_word_ratio\": 0.005703419912606478,\n \"rps_doc_unigram_entropy\": 5.562036514282227,\n \"rps_doc_word_count\": 851,\n \"rps_doc_frac_chars_dupe_10grams\": 0.02603231929242611,\n \"rps_doc_frac_chars_dupe_5grams\": 0.05924595892429352,\n \"rps_doc_frac_chars_dupe_6grams\": 0.05924595892429352,\n \"rps_doc_frac_chars_dupe_7grams\": 0.041292641311883926,\n \"rps_doc_frac_chars_dupe_8grams\": 0.02603231929242611,\n \"rps_doc_frac_chars_dupe_9grams\": 0.02603231929242611,\n \"rps_doc_frac_chars_top_2gram\": 0.012342910282313824,\n \"rps_doc_frac_chars_top_3gram\": 0.015260320156812668,\n \"rps_doc_frac_chars_top_4gram\": 0.01795331947505474,\n \"rps_doc_books_importance\": -498.51513671875,\n \"rps_doc_books_importance_length_correction\": -498.51513671875,\n \"rps_doc_openwebtext_importance\": -285.8059997558594,\n \"rps_doc_openwebtext_importance_length_correction\": -285.8059997558594,\n \"rps_doc_wikipedia_importance\": -253.4227752685547,\n \"rps_doc_wikipedia_importance_length_correction\": -253.4227752685547\n },\n \"fasttext\": {\n \"dclm\": 0.0067609502002596855,\n \"english\": 0.9337850213050842,\n \"fineweb_edu_approx\": 2.487541437149048,\n \"eai_general_math\": 0.0031611300073564053,\n \"eai_open_web_math\": 0.09717308729887009,\n \"eai_web_code\": 0.0013130300212651491\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"616.8914\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"Pathology and Diseases\"\n }\n },\n \"secondary\": {\n \"code\": \"612.82\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"Physiology\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":294,"cells":{"id":{"kind":"number","value":-6417939930872531000,"string":"-6,417,939,930,872,531,000"},"text":{"kind":"string","value":"schrutebag.jpgSay what you will about ESPN executive editor John Walsh, but he definitely made a fascinating choice hiring Le Anne Schreiber as the Leader's new ombudsman. Schreiber weighed in on the whole Schrutebag-Big Lead issue over the weekend, and she pulled no punches.\n\nSome of the politer terms my correspondents used to describe [Schrutebag]'s behavior were immature, irresponsible, arrogant, malicious, destructive and dumb. I agree. The official response from ESPN's communication department was: \"Our airwaves should not be used for this purpose. We apologize.\" It is the kind of bland public statement that does little to assuage the anger and distrust of ESPN's audience over an episode like this.\n\nSchreiber then got ESPN Radio's senior VP to say, \"Such attacks are off limits. Zero tolerance. I can't say it any stronger.\" So she's not messing around; we have a little bit of a crush. (For now.)\n\nSo that's the good news. The bad news? Because ESPN Radio had no official policy about this, Schrutebag will not be disciplined ... though if he does it again, there will be trouble! Meanwhile, The Big Lead is finally back online and looking for a new site host. No word on how they'll make up any revenue they lost during the attack; as much as she might be trying, Schreiber can't give this tale a happy ending.\n\nRadio Hosts Attack Was Off Limits [ESPN]\nDo It Again And The Kitten Dies [The Big Lead]\nThe Big Lead, Still Down. Thanks, Schrutebag. [Deadspin]\n\n(UPDATE: The Big Lead discusses the matter further.)"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://deadspin.com/250654/the-big-lead-schrutebag-and-the-feisty-new-ombudsman?tag=Schrutebag\",\n \"source_domain\": \"deadspin.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"44970\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:U3QVFTMZ42K6RKSWRFQYNIDF2K45LFDX\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-23T12:30:35Z\",\n \"WARC-IP-Address\": \"199.27.72.129\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:Q3ZGHTYLLNZCVCUJ74C36OXTSCZFDOZL\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://deadspin.com/250654/the-big-lead-schrutebag-and-the-feisty-new-ombudsman?tag=Schrutebag\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 277,\n 278,\n 713,\n 714,\n 913,\n 914,\n 1328,\n 1329,\n 1370,\n 1417,\n 1474,\n 1475\n ],\n \"line_end_idx\": [\n 277,\n 278,\n 713,\n 714,\n 913,\n 914,\n 1328,\n 1329,\n 1370,\n 1417,\n 1474,\n 1475,\n 1527\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1527,\n \"ccnet_original_nlines\": 12,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.37195122241973877,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.030487800016999245,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.18597561120986938,\n \"rps_doc_frac_unique_words\": 0.6627451181411743,\n \"rps_doc_mean_word_length\": 4.701960563659668,\n \"rps_doc_num_sentences\": 22,\n \"rps_doc_symbol_to_word_ratio\": 0.003048779908567667,\n \"rps_doc_unigram_entropy\": 4.9015069007873535,\n \"rps_doc_word_count\": 255,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.020016679540276527,\n \"rps_doc_frac_chars_top_3gram\": 0.033361129462718964,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -142.58900451660156,\n \"rps_doc_books_importance_length_correction\": -131.74517822265625,\n \"rps_doc_openwebtext_importance\": -99.08250427246094,\n \"rps_doc_openwebtext_importance_length_correction\": -99.08250427246094,\n \"rps_doc_wikipedia_importance\": -36.43091583251953,\n \"rps_doc_wikipedia_importance_length_correction\": -23.442903518676758\n },\n \"fasttext\": {\n \"dclm\": 0.006283219903707504,\n \"english\": 0.9294552803039551,\n \"fineweb_edu_approx\": 0.8730477094650269,\n \"eai_general_math\": 0.012223959900438786,\n \"eai_open_web_math\": 0.10890465974807739,\n \"eai_web_code\": 0.01436937041580677\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.01\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"070.4\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Journalism and Newspapers\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":295,"cells":{"id":{"kind":"number","value":-1848716104550985700,"string":"-1,848,716,104,550,985,700"},"text":{"kind":"string","value":"FileHeap - Freeware, Shareware, Demo, Game Files Download\n\nIe Picture Downloader downloads\n\nGo to 1 Next >> page \nSoftware 1-20\nShow: All software | Only freeware\nIE Picture Framer\nIE Picture Framer 1.2 download by imageelements.com Put your photos in a virtual picture frame for print or web use. Take any picture and instantly wrap a frame around it. No need for high priced photo tools, just load your photo, select your frame and save it! Shadows can be added as well, this works out really nice to pop your photos off the page. The included frames, as well as the CD frame pack add-on look like frames you would find in a professional frame shop. Beautiful results in a ...\nType: Freeware;    Released: 02/17/2009;    Filesize: 3.4 MB;    Price: USD $0.00;\nPlatforms: Windows\nDownload\nPicture Saver\nPicture Saver 2.0.0.1 download by Help Software Corporation picture Saver is a useful tool to save WEB pictures.When you want to save picture in the ie window, you usually right click it and select \"Save picture As...\", choose the folder, input the file name, then select \"OK\". The picture Saver can do it quickly by click a \"Save picture\" button. It save your time to save your favorite pictures. When you move you mouse upon the picture, a \"Save picture\" button will automatically show. All you need to do is ...\nType: Shareware;    Released: 12/06/2009;    Filesize: 992.9 KB;    Price: USD $30.00;\nPlatforms: Windows 98, Windows 2000, Windows XP, Windows 2003, Windows Vista\nTags: Picture Save, Download Picture, Web Pictures Download\nPicture Dropper\nPicture Dropper 1.3.2.15 download by David ALexander Services Ltd picture dropper is an image capture utility for ie. The program also has the ability to encrypt the saved files so they can only be viewed with the built in viewer. Drag images from ie or explorer onto the target and it automatically saves them. Can save them to a directory of your choice, autorename upon duplication, saves as a file sequence and optionally encrypt them. Can accept multiple file dragging, i.e. select 50 images and drag them ...\nType: Shareware;    Released: 10/01/2004;    Filesize: 691.3 KB;    Price: USD $7.50;\nPlatforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003\nTags: Internet, Explorer, Right, Click, Image, Jpg, Jpeg, Bmp, Gif, Save Download\nViVL Web Picture Saver 2.0.2 download by vivl.com ViVL Web picture Saver is an efficient plug-in for Internet Explorer (ie). With buttons in ie toolbar and right click menu, you can easily save all images and rename these images simultaneously. This tool can help download all viewed images, including images referred from other websites(What you see is what you get). You can specify minimum height, width and type of images to save. Image viewing program with shortcuts, thumbnail and slideshow is included.\nType: Shareware;    Released: 02/17/2009;    Filesize: 2.4 MB;    Price: USD $25.00;\nPlatforms: Windows\nDownload\nPicture Address Book for Mac\nPicture Address Book for Mac 6.0.5 download by Apimac picture Address Book is a telephone and address program fully integrated with Mac OS X that allows you to quickly and easily manage addresses, phone numbers, URLs and Email addresses. picture Address Book is a practical telephone and address application with extended printing capacities that allows users to manage addresses, phone numbers (via modem or by playing touch-tones to the phone), URLs, and email addresses, quickly and easily.\nType: Shareware;    Released: 06/02/2005;    Filesize: 5.0 MB;    Price: USD $19.95;\nPlatforms: Macintosh, Mac OS X\nTags: Picture Address Book, Address Book, Contacts, Mac Download\nPicture Directory\nPicture Directory 2.1 download by Picture Directory Plus The picture Directory software lets you easily import your own photos, and make a picture directories instantly! You simply click, import a photo, set the layout and voila! You're done! Some of the features include the following: (a) You can add personal information, such as names, addresses, phone numbers and more to associate with the directory! (b) You can easily customize the layout. You simply select the number of columns, and the number ...\nType: Freeware;    Released: 05/05/2007;    Filesize: 1.9 MB;    Price: USD $0.00;\nPlatforms: Windows, Windows 3.x, Windows 95, Windows 98, Windows Me, Windows 2000, Windows 2003\nTags: Picture Directory, Image Directory, Photo Directory Software, Picture Directory Software Download\nPicture Reporter\nPicture Reporter 1.4.0 download by Webfoot.Net picture Reporter allows anyone to easily print a set of pictures with customizable comments and captions as a photo album or report. Share projects with Viewer. If you're tired of pasting pictures in an album or report or trying to get an office program to layout and print the pictures, you need picture Reporter! picture Reporter allows anyone to print a set of pictures with customizable comments and ...\nType: Shareware;    Released: 04/07/2006;    Filesize: 7.6 MB;    Price: USD $39.95;\nPlatforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP\nTags: Pictures, Reports, Picture Printing, Photography, Album Download\nGOGO Picture Viewer ActiveX Control\nGOGO Picture Viewer ActiveX Control 3.2 download by Gogowishs Software GOGO picture Viewer ActiveX OCX help you to view and save images of different formats include Bmp,Gif,Jpg,Jpeg,Png,Tif,Tiff,multipaged Tiff.You can rotate,flip,zoom,resize,draw text,print,convert color to grayscaled or black-white to the image. GOGO picture Viewer ActiveX OCX is a powerful ActiveX control, which is intended for work with image data.You can view and save images of different formats include Bmp,Gif,Jpeg,Jpg,Png, Tif,Tiff and multipaged Tiff images.Save Jpeg image files with user-defined ...\nType: Shareware;    Released: 05/30/2006;    Filesize: 1.6 MB;    Price: USD $49.90;\nPlatforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP\nTags: Photo, Graphic, Image, Images, Picture Viewer, Activex, Ocx, View, Save Image, Bmp Download\nnewObjects IE ScriptBar\nnewObjects IE ScriptBar 1.1 download by newObjects With ie ScriptBar anyone with average script programming skills can create professional tool bands (toolbars) for Microsoft Internet Explorer. The rich run-time library and setup utility give you everything you need to complete an end-product. It is also possible to use VB or C++ (but in very simple manner) instead of scripting. Windows XP SP2 compatible, packed with SQL database engine, installer, networking components and wide range of other ...\nType: Demo;    Released: 07/26/2005;    Filesize: 679.7 KB;    Price: USD $99.00;\nPlatforms: Windows, Windows 95, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003\nTags: Toolbar, Toolband, Tool Band, Ie Toolbar, Ie Tool Band, Scripting Download\nSWF Picture Extractor\nSWF Picture Extractor 1.6 download by Dcomsoft With SWF picture Extractor, you can easily: * look through all the images in the SWF files; * save one or all of them. You can view the images that are saved in a SWF file and save one or all of them (BMP, JPEG, PNG formats) using SWF picture Extractor. SWF Pictutre Extractor can work with the packed SWF-files. The program is simple in utilization, all the actions ...\nType: Freeware;    Released: 08/09/2006;    Filesize: 1.3 MB;    Price: USD $0.00;\nPlatforms: Windows, Windows 2000, Windows XP, Windows 2003\nTags: Swf, Flash, Picture, Image, Extractor, Extract Download\nAD Picture Viewer Lite\nAD Picture Viewer Lite 2.1 download by Abroad Design AD picture Viewer Lite is a compact, easy-to-use image viewer. It's support all popular image file formats and have many useful features such as opening images in folder with or without subfolders, viewing them in slide-show mode, a flexible and powerful image printing tool and so on. AD picture Viewer Lite has many powerful features: a easy-to-use and intuitively user interface, complete image formats support, and more ways view all your images.\nType: Shareware;    Released: 09/24/2012;    Filesize: 1.7 MB;    Price: USD $19.95;\nPlatforms: Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003, Windows Vista\nTags: Image, Picture, Graphic, View, Viewer, Bmp, Gif, Jpeg, Jpg, Png Download\nAuction Picture FX\nAuction Picture FX 1.9.1 download by Direct Logic Systems With Auction picture FX, you can use a trick to create pictures with a highlighted border so that it will appear more prominently without having to pay any extra fees. With Auction picture FX, you can now create pictures with a highlighted border so that it will appear more prominently without having to pay any extra fees. You can also insert a copyright notice or any text label right into your pictures so that other ...\nType: Shareware;    Released: 09/08/2005;    Filesize: 2.2 MB;    Price: USD $19.99;\nPlatforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP\nTags: Auction, Ebay, Picture, Edit, Graphics, Effects, Image, Photo Download\nBatch Picture Resizer\nBatch Picture Resizer 4.0.4 download by SoftOrbits Resize images with a batch picture resizer quickly and easily. Batch picture Resizer works with any number of photos, resizing them while preserving as much quality as possible. This is perfect for making images more Internet friendly. A batch picture resizer is software that anyone who works with digital photos will find very useful. Many people use complicated and expensive picture editing software just to resize pictures and resolve other simple tasks because it has not occurred ...\nType: Shareware;    Released: 01/26/2013;    Filesize: 2.4 MB;    Price: USD $29.95;\nPlatforms: Windows 2000, Windows XP, Windows 2003, Windows Vista\nTags: Picture Resizer, Picture Resize, Photo Resizer, Batch Image Resizer, Batch Picture Resizer Download\nCool Paint Materials Pro Picture Gallery 1.0.0.0 download by Coolsoft (Sweden) AB. Cool Paint Materials contains a vast picture gallery which is designed exclusively for Cool Paint, a painting software for drawing and image editing. It provides users with more resources and pleasure during painting or editing pictures. It contains: 1) 3 picture categories: Background, Role, and Animation. 2) Nearly 1000 pictures in various styles and sizes. 3) Pictures can be inserted into canvas easily and can be conveniently ...\nType: Shareware;    Released: 12/01/2006;    Filesize: 67.3 MB;    Price: USD $29.95;\nPlatforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003\nTags: Coolsoft, Cool Paint, Paint, Picture, Photo, Gif, Jpg, Jpeg, Pcx, Png Download\nPicture watermarker\nPicture watermarker 1 download by PAMO Software PAMO picture Watermarker easily add a text, a date or a logo on your pictures. The pic you took with your digital camera will then be protected ...\nType: Shareware;    Released: 02/18/2007;    Filesize: 1.6 MB;    Price: USD $14.95;\nPlatforms: Windows, Windows 2000, Windows XP\nTags: Image, Watermark, Picture, Logo Download\nMagic Picture Converter\nMagic Picture Converter 1.2 download by Magic Project Magic picture Converter converts digital photos and images in BMP, GIF and JPG formats to most popular web formats. The process is done in batch mode, which means that you can convert all the images in a folder just with one click. The original files are not overwritten for future ...\nType: Shareware;    Released: 03/18/2007;    Filesize: 345.8 KB;    Price: USD $10.00;\nPlatforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003\nTags: Image, Convert, Picture, Photo, Digital, Camera, Web, Internet, Html, Resize Download\nPicTul - Picture Resizing Made Easy\nPicTul - Picture Resizing Made Easy 1.3.2 download by I-Tul Design & Software, Inc. Resize any shape picture without distortion in three easy steps! Choose the picture you would like to resize, enter a width and height then choose the best looking preview and save. PicTul automatically adjust the canvas size and the picture size to your dimensions. picture resizing has never been so ...\nType: Shareware;    Released: 05/19/2006;    Filesize: 793.0 KB;    Price: USD $19.95;\nPlatforms: Windows, Windows 2000, Windows XP, Windows 2003\nTags: Image Resizer, Resizing Photos, Resizing Pictures, Picture Resizing, Photo Resizing, Picture Resizer, Photo Resizer Download\nPicture Converter\nPicture Converter 1.0 download by Digitope picture Converter is a tool to resize and convert photos. The resizer supports four different resize modes. Included templates help make pictures for email, the web, eBay and more. Convert pictures between JPG, BMP, GIF, PNG, PSD and more. picture Converter is an indispensible tool for anyone who works with photos. With only a few clicks, an entire folder of pictures can be changed between formats and sizes. Included presets for common tasks, such as email, web and DV make previously difficult ...\nReleased: 11/22/2006;    Filesize: 1.5 MB;    Price: USD $29.95;\nPlatforms: Windows, Windows XP\nTags: Picture, Image, Photo, Converter, Editor, Resizer Download\nPicture Library\nPicture Library 1.4.085 download by WenSoftware picture Library is a picture database program that can help you manage and organize your picture collections. Unlike other image cataloging programs, picture Library lets you catalog images on removable disks. It provides many useful database fields such as category, album, series, photographer, place, time, rating, description etc. It supports all popular image file formats. The user-friendly explorer-like interface lets you categorize, group and ...\nType: Shareware;    Released: 11/10/2005;    Filesize: 5.4 MB;    Price: USD $35.00;\nPlatforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP\nTags: Picture, Image, Photo, Graphic, Album, Multimedia, Viewer, Catalog, Database, File Download\nPicture Merge Genius\nPicture Merge Genius 2.7 download by Easytools,Inc picture Merge Genius is a simple and easy-to-use program for merging your photos,images and pictures. The software can combine several pictures into one in different ways,In the new picture you can also set the size and position of the source files. picture Merge Genius is useful for computer painters,ebay seller, designers,photographer and family entertainment. picture Merge Genius support more than 40 picture file format(JPEG, BMP, ...\nType: Shareware;    Released: 05/17/2007;    Filesize: 1.6 MB;    Price: USD $29.95;\nPlatforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003\nTags: Merge Pictures, Combine Pictures, Merging Pictures, Merge Photo, Combine Picture, Merge Jpg, Combine Jpg, Picture Merge, Merge Jpeg, Combine Jpeg Download"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.fileheap.com/software/ie_picture_downloader.html\",\n \"source_domain\": \"www.fileheap.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"99758\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:CGNBL5UB734ZSO37SVBHUXIK2B5WUO6I\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-24T14:23:22Z\",\n \"WARC-IP-Address\": \"67.202.79.96\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:CWDXUR44K6X2BXNCIDVNKPK4TGMGK57T\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.fileheap.com/software/ie_picture_downloader.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 58,\n 59,\n 91,\n 92,\n 114,\n 128,\n 163,\n 181,\n 679,\n 762,\n 781,\n 790,\n 804,\n 1319,\n 1406,\n 1483,\n 1543,\n 1559,\n 2074,\n 2160,\n 2267,\n 2349,\n 2859,\n 2944,\n 2963,\n 2972,\n 3001,\n 3495,\n 3580,\n 3611,\n 3676,\n 3694,\n 4202,\n 4285,\n 4381,\n 4485,\n 4502,\n 4957,\n 5042,\n 5111,\n 5182,\n 5218,\n 5800,\n 5885,\n 5954,\n 6052,\n 6076,\n 6579,\n 6661,\n 6756,\n 6837,\n 6859,\n 7277,\n 7360,\n 7419,\n 7481,\n 7504,\n 8008,\n 8093,\n 8206,\n 8285,\n 8304,\n 8787,\n 8872,\n 8965,\n 9042,\n 9064,\n 9606,\n 9691,\n 9756,\n 9862,\n 10382,\n 10468,\n 10551,\n 10636,\n 10656,\n 10852,\n 10937,\n 10982,\n 11029,\n 11053,\n 11393,\n 11480,\n 11587,\n 11679,\n 11715,\n 12105,\n 12192,\n 12251,\n 12382,\n 12400,\n 12946,\n 13011,\n 13042,\n 13107,\n 13123,\n 13627,\n 13712,\n 13805,\n 13903,\n 13924,\n 14417,\n 14502,\n 14585\n ],\n \"line_end_idx\": [\n 58,\n 59,\n 91,\n 92,\n 114,\n 128,\n 163,\n 181,\n 679,\n 762,\n 781,\n 790,\n 804,\n 1319,\n 1406,\n 1483,\n 1543,\n 1559,\n 2074,\n 2160,\n 2267,\n 2349,\n 2859,\n 2944,\n 2963,\n 2972,\n 3001,\n 3495,\n 3580,\n 3611,\n 3676,\n 3694,\n 4202,\n 4285,\n 4381,\n 4485,\n 4502,\n 4957,\n 5042,\n 5111,\n 5182,\n 5218,\n 5800,\n 5885,\n 5954,\n 6052,\n 6076,\n 6579,\n 6661,\n 6756,\n 6837,\n 6859,\n 7277,\n 7360,\n 7419,\n 7481,\n 7504,\n 8008,\n 8093,\n 8206,\n 8285,\n 8304,\n 8787,\n 8872,\n 8965,\n 9042,\n 9064,\n 9606,\n 9691,\n 9756,\n 9862,\n 10382,\n 10468,\n 10551,\n 10636,\n 10656,\n 10852,\n 10937,\n 10982,\n 11029,\n 11053,\n 11393,\n 11480,\n 11587,\n 11679,\n 11715,\n 12105,\n 12192,\n 12251,\n 12382,\n 12400,\n 12946,\n 13011,\n 13042,\n 13107,\n 13123,\n 13627,\n 13712,\n 13805,\n 13903,\n 13924,\n 14417,\n 14502,\n 14585,\n 14745\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 14745,\n \"ccnet_original_nlines\": 104,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.19828951358795166,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.037377260625362396,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.16190476715564728,\n \"rps_doc_frac_no_alph_words\": 0.32562559843063354,\n \"rps_doc_frac_unique_words\": 0.2800905108451843,\n \"rps_doc_mean_word_length\": 5.207239627838135,\n \"rps_doc_num_sentences\": 170,\n \"rps_doc_symbol_to_word_ratio\": 0.005701620131731033,\n \"rps_doc_unigram_entropy\": 5.540482044219971,\n \"rps_doc_word_count\": 2210,\n \"rps_doc_frac_chars_dupe_10grams\": 0.0898505374789238,\n \"rps_doc_frac_chars_dupe_5grams\": 0.19343066215515137,\n \"rps_doc_frac_chars_dupe_6grams\": 0.1485922783613205,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1298227310180664,\n \"rps_doc_frac_chars_dupe_8grams\": 0.12234967201948166,\n \"rps_doc_frac_chars_dupe_9grams\": 0.11418143659830093,\n \"rps_doc_frac_chars_top_2gram\": 0.017379209399223328,\n \"rps_doc_frac_chars_top_3gram\": 0.025026069954037666,\n \"rps_doc_frac_chars_top_4gram\": 0.02606881968677044,\n \"rps_doc_books_importance\": -1268.3216552734375,\n \"rps_doc_books_importance_length_correction\": -1268.3216552734375,\n \"rps_doc_openwebtext_importance\": -752.0948486328125,\n \"rps_doc_openwebtext_importance_length_correction\": -752.0948486328125,\n \"rps_doc_wikipedia_importance\": -591.3551635742188,\n \"rps_doc_wikipedia_importance_length_correction\": -591.3551635742188\n },\n \"fasttext\": {\n \"dclm\": 0.00043636999907903373,\n \"english\": 0.8031932711601257,\n \"fineweb_edu_approx\": 1.7010561227798462,\n \"eai_general_math\": 0.00165200000628829,\n \"eai_open_web_math\": 0.07581018656492233,\n \"eai_web_code\": 0.00037985999369993806\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"005.4\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n },\n \"secondary\": {\n \"code\": \"770\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Photography\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":296,"cells":{"id":{"kind":"number","value":-1878534458378730200,"string":"-1,878,534,458,378,730,200"},"text":{"kind":"string","value":"Tuesday\nMay 21, 2013\n\nHomework Help: world history\n\nPosted by Sara on Friday, July 18, 2008 at 3:54am.\n\nCan you tell me more about the Korean War? Like the causes and consequences?\n\nAnswer this Question\n\nFirst Name:\nSchool Subject:\nAnswer:\n\nRelated Questions\n\nWorld history - Causes and consequences of world war 2\nsocial studies - True or False? \"Containment\" was the underlying cause...\nGlobal History - Turning point of world war 2 and the causes of world war 2.\nU.S. History - what were the major consequences and results of ww11? in the U.S...\nEssay help :) - Here is my essay: All About The Greek Wars War is a devastating ...\nModern World History - World War One Can someone tell me the final chain of ...\nHISTORY - How well did the Treaty of Versailles address the causes of World War ...\nflvs - By now, you should be familiar with the causes and alliances of World War...\nContemporary History - i have to write two papers, one about the causes and the ...\nHistory - Which of the following statements is true regarding the Korean War? A...\n\nFor Further Reading\n\nSearch\nMembers\nCommunity"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.jiskha.com/display.cgi?id=1216367694\",\n \"source_domain\": \"www.jiskha.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"8913\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:XALADYZZSLTFILO6PX42TZDBKQ7IZXMO\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-21T19:28:37Z\",\n \"WARC-IP-Address\": \"69.16.226.94\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:CTJYKRFHWDHE2CDGVD25N2UIVBHNDPAZ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.jiskha.com/display.cgi?id=1216367694\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 8,\n 21,\n 22,\n 51,\n 52,\n 103,\n 104,\n 181,\n 182,\n 203,\n 204,\n 216,\n 232,\n 240,\n 241,\n 259,\n 260,\n 315,\n 389,\n 466,\n 549,\n 633,\n 713,\n 797,\n 881,\n 965,\n 1048,\n 1049,\n 1069,\n 1070,\n 1077,\n 1085\n ],\n \"line_end_idx\": [\n 8,\n 21,\n 22,\n 51,\n 52,\n 103,\n 104,\n 181,\n 182,\n 203,\n 204,\n 216,\n 232,\n 240,\n 241,\n 259,\n 260,\n 315,\n 389,\n 466,\n 549,\n 633,\n 713,\n 797,\n 881,\n 965,\n 1048,\n 1049,\n 1069,\n 1070,\n 1077,\n 1085,\n 1094\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1094,\n \"ccnet_original_nlines\": 32,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.32300883531570435,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.02654867060482502,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.24242423474788666,\n \"rps_doc_frac_no_alph_words\": 0.22123894095420837,\n \"rps_doc_frac_unique_words\": 0.580110490322113,\n \"rps_doc_mean_word_length\": 4.591160297393799,\n \"rps_doc_num_sentences\": 19,\n \"rps_doc_symbol_to_word_ratio\": 0.03539822995662689,\n \"rps_doc_unigram_entropy\": 4.2632060050964355,\n \"rps_doc_word_count\": 181,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.045728038996458054,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.05776172876358032,\n \"rps_doc_frac_chars_top_3gram\": 0.060168471187353134,\n \"rps_doc_frac_chars_top_4gram\": 0.03971118852496147,\n \"rps_doc_books_importance\": -70.05615234375,\n \"rps_doc_books_importance_length_correction\": -70.05615234375,\n \"rps_doc_openwebtext_importance\": -43.02771759033203,\n \"rps_doc_openwebtext_importance_length_correction\": -33.623226165771484,\n \"rps_doc_wikipedia_importance\": -36.64375305175781,\n \"rps_doc_wikipedia_importance_length_correction\": -36.64375305175781\n },\n \"fasttext\": {\n \"dclm\": 0.0028542301151901484,\n \"english\": 0.9019317030906677,\n \"fineweb_edu_approx\": 3.314751625061035,\n \"eai_general_math\": 0.00010060999920824543,\n \"eai_open_web_math\": 0.17478376626968384,\n \"eai_web_code\": -0.000009890000001178123\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"940.54\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Europe\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"951.904\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Asia\",\n \"level_3\": \"China and Korea\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":297,"cells":{"id":{"kind":"number","value":3478292821162123000,"string":"3,478,292,821,162,123,000"},"text":{"kind":"string","value":" \nadvanced search\n\nCategories\n\nPrintable islamic colouring pages software: Islamicsaver-Free Islamic Miracle screensaver, Free Islamic Calligraphy screensaver, Islam means to be surrender and abide by and more.\n\n\nIslamicsaver - Islamic Miracle screensav 1.0\n\nIslamicsaver - Islamic Miracle screensav\nRating:\n(not rated)\nPlatforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com\nType: Freeware Releases: Aug 30, 2008\nCost: $0.00US Developer: Islamicsaver\nEvery day observed in the world new and new various miracles. One country tests his power of a-bomb. On the other hand, another country through the rocket. This type of Miracle observed by man. Islamic miracle observed by man's creator. Islamic Miracle picture is wonderful and learnable for everybody. You can see some picture of Islamic Miracle by downloading and installing Islamic Miracle screensaver.\nfile size: 1278k Download Islamicsaver - Islamic Miracle screensav Keywords: screensavers, makkah screensaver, screensaver, islamic calligraphy screensaver, wallpaper\n\n\nMore on printable islamic colouring pages\n\nD letters for children 10\n\nD letters for children\nRating:\n(not rated)\nPlatforms: Win 3.1x Win95 Win98 WinME WinXP WinNT 3.x WinNT 4.x Windows2000 Windows2003 Mac Homepage: http://www.fun4child.com/alphabet/\nType: Freeware Releases: Oct 10, 2006\nCost: $0.00US Developer: Magic reading Alphabet\nAlphabet Coloring Pages. Printable alphabet coloring pages accompany the game Alphabet Action. Alphabet Printable Worksheets, Coloring Pages and Flash Cards Alphabet printable activity worksheets, coloring pages, color posters, flash cards and mini books suitable for toddlers, preschool, and early elementary.\nABC Activities Offers free printable activity pages including letter and number worksheets and flashcards, coloring pages, and beginning\nfile size: 29k Download D letters for children Keywords: language, d\n\nTuning colouring book 1\n\nGames    Kids\nTuning colouring book\nRating:\n(not rated)\nPlatforms: WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Homepage: http://www.uaf.cz\nType: Demo Releases: Aug 23, 2006\nCost: $12.50US Developer: PEDISOFT\nTuning colouring book is the game for all boys from 3 to 99 years old. Is the game for cultivation children's creativity. Is the game that educate child in working with computer.\nfile size: 1483k Download Tuning colouring book Keywords: Colouring book, colouringbook, coloring book, coloringbook\n\nIslamicsaver - Islamic Calligraphy scree 1.0\n\nIslamicsaver - Islamic Calligraphy scree\nRating:\n(not rated)\nPlatforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com\nType: Freeware Releases: Aug 30, 2008\nCost: $0.00US Developer: Islamicsaver\nIslamic Calligraphy is nice and beautiful Calligraphy in the world. This is completely different from other calligraphy in the world. Screensaver of Islamic Calligraphy is wonderful too. This is can be beautiful your computer desktop. So Enjoy your life with Islamic calligraphy screensaver. Just download our site and install your computer.\nfile size: 1121k Download Islamicsaver - Islamic Calligraphy scree Keywords: download screensaver, free islamic screensaver, free screensaver, madina screensaver, screensaver\n\nKids Virtual Colouring Book 2006 2.5.4.0\n\nKids Virtual Colouring Book 2006\nRating:\n(not rated)\nPlatforms: Win95 Win98 WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Windows2003 Homepage: visit\nType: Shareware Releases: Oct 23, 2005\nCost: $17.95US Developer: www.Day-You-Were-Born.co.uk\nKids Colouring Book will allow your children to colour pictures using virtual crayons and buckets on their computer, GUARANTEED FUN for all ages!\nfile size: 11510k Download Kids Virtual Colouring Book 2006 Keywords: Kids, manager, Colouring, game, 2006\n\nColouring4kids 1.0\n\nColouring4kids\nRating:\n4/5 (3 votes)\nPlatforms: Win98 WinME Windows2000 WinXP Homepage: http://www.colouring4kids.co.uk\nType: Shareware Releases: Feb 25, 2005\nCost: $10.00US Developer: Colouring4Kids\nChildren will have hours of fun with this electronic colouring book. Large buttons for colour selection make it easy to use even for young children. No more broken or lost crayons with this computer version and the pages can be coloured over and over again with the dozens of available colours. The trial version comes complete with approx 20 preloaded images sorted into categories\nfile size: 6760k Download Colouring4kids Keywords: Coloring book, color, colouring pictures, children, barney\n\nPrintable Puzzles Tool Bar 1.0\n\nPrintable Puzzles Tool Bar\nRating:\n(not rated)\nPlatforms: Win95 Win98 WinXP Windows Vista Starter Windows Vista Home Basic x64 Homepage: http://www.suriacaiberry.com\nType: Freeware Releases: Dec 13, 2008\nCost: $0.00US Developer: Printable Puzzles\nPrintable Puzzles Tool Bar Find Your Puzzle! We have all kinds for Puzzles. You will get thousands of puzzles of various types. Fan of the age old crossword puzzles that people have been familiar with almost centuries you can get hundreds of these here and all you will have to do is simply choose the crossword puzzle that you like and right click in order to print. You can fill in the puzzle whenever you want to.\nfile size: 1276k Download Printable Puzzles Tool Bar Keywords: puzzle, Printable coloring pages, children, tool bar, IE\n\nIslamic Screensaver 2.02\n\nIslamic Screensaver\nRating:\n(not rated)\nPlatforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.screensaverfine.com\nType: Shareware Releases: May 02, 2007\nCost: $10.50US Developer: Screensaverfine\nIslam means to be surrender and abide by command of God. Who is created us. God select this religion for all mankind. Islam is a completed code of life. Islam is a best religion. All things of Islam beauty no different Islamic screensaver from there. Islamic screensaver is not only a screensaver like general screensaver. This screensaver help us to know about our creator.\nfile size: 1186k Download Islamic Screensaver Keywords: 3D screensaver, Free Popular Screen Savers, 3d screensavers, birds screensaver, Screen saver\n\nFree Printable Easter Coloring Book 1\n\nFree Printable Easter Coloring Book\nRating:\n(not rated)\nPlatforms: Win 3.1x Win95 Win98 WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Windows2003 Windows Vista Starter Windows Vista Home Basic Windows Vista Home Premium Windows Vista Business Windows Vista Enterprise Windows Vista Ultimate Windows Vista Home Basic x64 Wind Homepage: http://www.fun-with-pictures.com\nType: Freeware Releases: Apr 08, 2009\nCost: $0.00US Developer: fun-with-pictures.com\nA Printable Easter Gift for Kids from fun-with-pictures.com. This Easter coloring book in PDF format has twenty five coloring book activity pages. Print out and have fun with these coloring sheets of Easter eggs, Cute and funny Easter Bunnies and printable Easter cards. Fun-with-pictures.com is a fun site for kids with lots of Free Printable Coloring Pages, Printable Puzzles, Fun Pictures, Games, Activities, and lots of fun content for kids.\nfile size: 2112k Download Free Printable Easter Coloring Book Keywords: kids, easter activities, easter, easter eggs pics, images\n\nIslamicsaver - Jannatul Baqi screensaver 1.0\n\nIslamicsaver - Jannatul Baqi screensaver\nRating:\n(not rated)\nPlatforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com\nType: Freeware Releases: Aug 30, 2008\nCost: $0.00US Developer: Islamicsaver\nJannatul Baqi is a popular tomb in the world. This is looking so nice. You can see picture of Jannatul Baqi without visiting place of Jannatul Baqi by downloading and installing \"Jannatul Baqi screensaver\" easily and free. So download and enjoy your best from today with fantastic slideshow.\nfile size: 1528k Download Islamicsaver - Jannatul Baqi screensaver Keywords: free screensaver, islamic screensaver, screensaver, makkah screensaver, free screensaver\nFor searches similar to printable islamic colouring pages see \"Related searches\" under the category listing.\n\nLastest Review\n\nBreaktru Percent\n\nA small utility to instantly calculate percentages.\n\nApr 19, 2013\n50,000 software products\n\nRelated Searches"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://freedownloadmanager.org/download/printable-islamic-colouring-pages-5043995.html\",\n \"source_domain\": \"freedownloadmanager.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"42043\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:IGQMMIVVBRL4SOSZIV65LM3U57JTOGYL\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-21T12:24:20Z\",\n \"WARC-IP-Address\": \"67.228.17.115\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:UWZBPT7GRAMUFAKSCKTLMXSH63AFGE3O\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://freedownloadmanager.org/download/printable-islamic-colouring-pages-5043995.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 2,\n 18,\n 19,\n 30,\n 31,\n 211,\n 212,\n 213,\n 258,\n 259,\n 300,\n 308,\n 320,\n 405,\n 443,\n 481,\n 887,\n 1054,\n 1055,\n 1056,\n 1098,\n 1099,\n 1125,\n 1126,\n 1149,\n 1157,\n 1169,\n 1306,\n 1344,\n 1392,\n 1703,\n 1840,\n 1909,\n 1910,\n 1934,\n 1935,\n 1949,\n 1971,\n 1979,\n 1991,\n 2074,\n 2108,\n 2143,\n 2322,\n 2439,\n 2440,\n 2485,\n 2486,\n 2527,\n 2535,\n 2547,\n 2632,\n 2670,\n 2708,\n 3050,\n 3225,\n 3226,\n 3267,\n 3268,\n 3301,\n 3309,\n 3321,\n 3416,\n 3455,\n 3509,\n 3655,\n 3762,\n 3763,\n 3782,\n 3783,\n 3798,\n 3806,\n 3820,\n 3903,\n 3942,\n 3983,\n 4366,\n 4476,\n 4477,\n 4508,\n 4509,\n 4536,\n 4544,\n 4556,\n 4675,\n 4713,\n 4756,\n 5173,\n 5293,\n 5294,\n 5319,\n 5320,\n 5340,\n 5348,\n 5360,\n 5448,\n 5487,\n 5529,\n 5904,\n 6053,\n 6054,\n 6092,\n 6093,\n 6129,\n 6137,\n 6149,\n 6459,\n 6497,\n 6544,\n 6990,\n 7120,\n 7121,\n 7166,\n 7167,\n 7208,\n 7216,\n 7228,\n 7313,\n 7351,\n 7389,\n 7681,\n 7847,\n 7956,\n 7957,\n 7972,\n 7973,\n 7990,\n 7991,\n 8043,\n 8044,\n 8057,\n 8082,\n 8083\n ],\n \"line_end_idx\": [\n 2,\n 18,\n 19,\n 30,\n 31,\n 211,\n 212,\n 213,\n 258,\n 259,\n 300,\n 308,\n 320,\n 405,\n 443,\n 481,\n 887,\n 1054,\n 1055,\n 1056,\n 1098,\n 1099,\n 1125,\n 1126,\n 1149,\n 1157,\n 1169,\n 1306,\n 1344,\n 1392,\n 1703,\n 1840,\n 1909,\n 1910,\n 1934,\n 1935,\n 1949,\n 1971,\n 1979,\n 1991,\n 2074,\n 2108,\n 2143,\n 2322,\n 2439,\n 2440,\n 2485,\n 2486,\n 2527,\n 2535,\n 2547,\n 2632,\n 2670,\n 2708,\n 3050,\n 3225,\n 3226,\n 3267,\n 3268,\n 3301,\n 3309,\n 3321,\n 3416,\n 3455,\n 3509,\n 3655,\n 3762,\n 3763,\n 3782,\n 3783,\n 3798,\n 3806,\n 3820,\n 3903,\n 3942,\n 3983,\n 4366,\n 4476,\n 4477,\n 4508,\n 4509,\n 4536,\n 4544,\n 4556,\n 4675,\n 4713,\n 4756,\n 5173,\n 5293,\n 5294,\n 5319,\n 5320,\n 5340,\n 5348,\n 5360,\n 5448,\n 5487,\n 5529,\n 5904,\n 6053,\n 6054,\n 6092,\n 6093,\n 6129,\n 6137,\n 6149,\n 6459,\n 6497,\n 6544,\n 6990,\n 7120,\n 7121,\n 7166,\n 7167,\n 7208,\n 7216,\n 7228,\n 7313,\n 7351,\n 7389,\n 7681,\n 7847,\n 7956,\n 7957,\n 7972,\n 7973,\n 7990,\n 7991,\n 8043,\n 8044,\n 8057,\n 8082,\n 8083,\n 8099\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 8099,\n \"ccnet_original_nlines\": 133,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.18187743425369263,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.014341589994728565,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.26140809059143066,\n \"rps_doc_frac_unique_words\": 0.3342222273349762,\n \"rps_doc_mean_word_length\": 5.853333473205566,\n \"rps_doc_num_sentences\": 102,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.366672515869141,\n \"rps_doc_word_count\": 1125,\n \"rps_doc_frac_chars_dupe_10grams\": 0.09552011638879776,\n \"rps_doc_frac_chars_dupe_5grams\": 0.186332568526268,\n \"rps_doc_frac_chars_dupe_6grams\": 0.14259681105613708,\n \"rps_doc_frac_chars_dupe_7grams\": 0.13409262895584106,\n \"rps_doc_frac_chars_dupe_8grams\": 0.11662869900465012,\n \"rps_doc_frac_chars_dupe_9grams\": 0.10660591721534729,\n \"rps_doc_frac_chars_top_2gram\": 0.012148819863796234,\n \"rps_doc_frac_chars_top_3gram\": 0.0191344004124403,\n \"rps_doc_frac_chars_top_4gram\": 0.031435079872608185,\n \"rps_doc_books_importance\": -613.2401123046875,\n \"rps_doc_books_importance_length_correction\": -613.2401123046875,\n \"rps_doc_openwebtext_importance\": -371.1816101074219,\n \"rps_doc_openwebtext_importance_length_correction\": -371.1816101074219,\n \"rps_doc_wikipedia_importance\": -263.72418212890625,\n \"rps_doc_wikipedia_importance_length_correction\": -263.72418212890625\n },\n \"fasttext\": {\n \"dclm\": 0.000019670000256155618,\n \"english\": 0.8110958337783813,\n \"fineweb_edu_approx\": 2.0706450939178467,\n \"eai_general_math\": 0.0005582000012509525,\n \"eai_open_web_math\": 0.039993349462747574,\n \"eai_web_code\": 0.000022169999283505604\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"297.092\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Religions\",\n \"level_3\": \"Islam and Bahai Faith\"\n }\n },\n \"secondary\": {\n \"code\": \"741.5\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Drawing, Decoration and ornament, and Design\",\n \"level_3\": \"Drawing — Technique and Caricatures and cartoons\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":298,"cells":{"id":{"kind":"number","value":2305768962154996000,"string":"2,305,768,962,154,996,000"},"text":{"kind":"string","value":"Sign in\n\nSign in to nj.com\n\nClose\nCustomize Your Weather\n\nClose\nCongratulations!\nYour weather is set to . You can change the location at any time.\nClose\n Customize Your Weather\n Congratulations!\n Your weather is set to . You can change the location at any time.\n AccuWeather.com Quick Look\n\n\n Become a Reporter\n We want school logos\n Help spruce up\n your school's page\n with the school logo\n Upload! Here's how\n\n Bergen Tech\n\n (10-16-0)\n 62\n\n 1/5/2013\n\n Passaic Valley\n\n (6-14-0)\n 54\n\n  \n\n Bergen Tech (62) at Passaic Valley (54) - Girls Basketball\n\n , January 05, 2013 6:31 p.m.\n\n Njaire McKoy scored a game-high 26 points and grabbed 11 rebounds when Bergen Tech defeated Passaic Valley, 62-54, at Passaic Valley High School in Little Falls.\n\n Caroline Koboska tallied a team high 13 points for Passaic Valley. Breeland Fife scored 14 points and grabbed 11 rebounds for Bergen Tech in the victory.\n\n  "},"metadata":{"kind":"string","value":"{\n \"url\": \"http://highschoolsports.nj.com/news/article/1171337084975331287/bergen-tech-62-at-passaic-valley-54-girls-basketball/\",\n \"source_domain\": \"highschoolsports.nj.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"88504\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:ZV62AZFB47EJGUPACHK6KMDQYHPNE224\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-06-19T08:13:55Z\",\n \"WARC-IP-Address\": \"184.51.126.74\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:XRBQVLIVJUP3GQEMHO7K3ZQMSYPJOPGT\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://highschoolsports.nj.com/news/article/1171337084975331287/bergen-tech-62-at-passaic-valley-54-girls-basketball/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 8,\n 9,\n 27,\n 28,\n 34,\n 57,\n 58,\n 64,\n 81,\n 147,\n 153,\n 184,\n 209,\n 283,\n 318,\n 319,\n 320,\n 346,\n 375,\n 398,\n 425,\n 454,\n 481,\n 482,\n 502,\n 503,\n 521,\n 532,\n 533,\n 550,\n 551,\n 574,\n 575,\n 592,\n 603,\n 604,\n 614,\n 615,\n 682,\n 683,\n 720,\n 721,\n 891,\n 892,\n 1054,\n 1055\n ],\n \"line_end_idx\": [\n 8,\n 9,\n 27,\n 28,\n 34,\n 57,\n 58,\n 64,\n 81,\n 147,\n 153,\n 184,\n 209,\n 283,\n 318,\n 319,\n 320,\n 346,\n 375,\n 398,\n 425,\n 454,\n 481,\n 482,\n 502,\n 503,\n 521,\n 532,\n 533,\n 550,\n 551,\n 574,\n 575,\n 592,\n 603,\n 604,\n 614,\n 615,\n 682,\n 683,\n 720,\n 721,\n 891,\n 892,\n 1054,\n 1055,\n 1064\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1064,\n \"ccnet_original_nlines\": 46,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.20725388824939728,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3212435245513916,\n \"rps_doc_frac_unique_words\": 0.5744680762290955,\n \"rps_doc_mean_word_length\": 4.808510780334473,\n \"rps_doc_num_sentences\": 14,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.228066921234131,\n \"rps_doc_word_count\": 141,\n \"rps_doc_frac_chars_dupe_10grams\": 0.19174040853977203,\n \"rps_doc_frac_chars_dupe_5grams\": 0.26843658089637756,\n \"rps_doc_frac_chars_dupe_6grams\": 0.19174040853977203,\n \"rps_doc_frac_chars_dupe_7grams\": 0.19174040853977203,\n \"rps_doc_frac_chars_dupe_8grams\": 0.19174040853977203,\n \"rps_doc_frac_chars_dupe_9grams\": 0.19174040853977203,\n \"rps_doc_frac_chars_top_2gram\": 0.09587021172046661,\n \"rps_doc_frac_chars_top_3gram\": 0.05309734866023064,\n \"rps_doc_frac_chars_top_4gram\": 0.07374630868434906,\n \"rps_doc_books_importance\": -84.55360412597656,\n \"rps_doc_books_importance_length_correction\": -84.55360412597656,\n \"rps_doc_openwebtext_importance\": -39.75495147705078,\n \"rps_doc_openwebtext_importance_length_correction\": -27.958457946777344,\n \"rps_doc_wikipedia_importance\": -31.99781608581543,\n \"rps_doc_wikipedia_importance_length_correction\": -31.99781608581543\n },\n \"fasttext\": {\n \"dclm\": 0.00003122999987681396,\n \"english\": 0.8832426071166992,\n \"fineweb_edu_approx\": 0.9107999205589294,\n \"eai_general_math\": -0.000004529999841906829,\n \"eai_open_web_math\": 0.2339460849761963,\n \"eai_web_code\": -0.00000965999970503617\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.33\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"373.12\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Education\",\n \"level_3\": \"Education, Secondary and High schools\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}},{"rowIdx":299,"cells":{"id":{"kind":"number","value":-697602846319220500,"string":"-697,602,846,319,220,500"},"text":{"kind":"string","value":"East Valley Tribune\n\nMay 20, 2013 | 05:01 am\nEast Valley Tribune Facebook East Valley Tribune Twitter East Valley Tribune Mobile Version East Valley Tribune Facebook\nBest of East Valley 2013\n\nEast Valley briefs\n\nPrint\nFont Size:\nDefault font size\nLarger font size\n\nPosted: Wednesday, September 27, 2006 12:00 am | Updated: 2:15 pm, Fri Oct 7, 2011.\n\nParadise Valley Community College sophomore goalkeeper Dani Guest, a Scottsdale Horizon High product, was named the national goalkeeper of the week Wednesday by the National Junior College Athletic Association.\n\nLast week Guest had three saves in a win over Chandler-Gilbert Community College and 13 saves, including a key penalty kick stopper, in a 1-0 shutout over nationally ranked No. 2 Mesa Community College.\n\nVOLLEYBALL\n\n-- Scottsdale Community College (14-5) defeated host Arizona Western in an Arizona Community College Athletic Conference matchup, 31-29, 30-19, 30-23.\n\nHOCKEY\n\n-- The Phoenix RoadRunners said veteran forward Joe Dusbabek and defenseman Paul Ballantyne have each agreed to terms on a contract to return to the ECHL team for the 2006-07 season.\n\n • Discuss\n\nWelcome to the discussion.\n\n Rules of Conduct\n\n Welcome!\n |\n Not you?||\n LogoutMy Dashboard\n\n Happening Now...\n\n  "},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.eastvalleytribune.com/sports/article_b0774d9f-1932-5e02-b3c7-6210b139d276.html\",\n \"source_domain\": \"www.eastvalleytribune.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2013-20\",\n \"warc_metadata\": {\n \"Content-Length\": \"148452\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:HOJPZSEY4YTU7XPG2XRUWDTLL57JNN44\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2013-05-20T12:01:01Z\",\n \"WARC-IP-Address\": \"192.104.182.109\",\n \"WARC-Identified-Payload-Type\": null,\n \"WARC-Payload-Digest\": \"sha1:QPZRCK6TDZIHXOPEU7CUEHZDCMFZJLQS\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.eastvalleytribune.com/sports/article_b0774d9f-1932-5e02-b3c7-6210b139d276.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"robots: classic\\r\\nhostname: ip-10-60-113-184.ec2.internal\\r\\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\\r\\nisPartOf: CC-MAIN-2013-20\\r\\noperator: CommonCrawl Admin\\r\\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\\r\\npublisher: CommonCrawl\\r\\nformat: WARC File Format 1.0\\r\\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 20,\n 21,\n 45,\n 166,\n 191,\n 192,\n 211,\n 212,\n 218,\n 229,\n 247,\n 264,\n 265,\n 349,\n 350,\n 561,\n 562,\n 765,\n 766,\n 777,\n 778,\n 929,\n 930,\n 937,\n 938,\n 1121,\n 1122,\n 1134,\n 1135,\n 1162,\n 1163,\n 1184,\n 1185,\n 1198,\n 1204,\n 1219,\n 1242,\n 1243,\n 1264,\n 1265\n ],\n \"line_end_idx\": [\n 20,\n 21,\n 45,\n 166,\n 191,\n 192,\n 211,\n 212,\n 218,\n 229,\n 247,\n 264,\n 265,\n 349,\n 350,\n 561,\n 562,\n 765,\n 766,\n 777,\n 778,\n 929,\n 930,\n 937,\n 938,\n 1121,\n 1122,\n 1134,\n 1135,\n 1162,\n 1163,\n 1184,\n 1185,\n 1198,\n 1204,\n 1219,\n 1242,\n 1243,\n 1264,\n 1265,\n 1270\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1270,\n \"ccnet_original_nlines\": 40,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.1596638709306717,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.012605040334165096,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.024390239268541336,\n \"rps_doc_frac_no_alph_words\": 0.29411765933036804,\n \"rps_doc_frac_unique_words\": 0.6666666865348816,\n \"rps_doc_mean_word_length\": 5.290322780609131,\n \"rps_doc_num_sentences\": 10,\n \"rps_doc_symbol_to_word_ratio\": 0.004201679956167936,\n \"rps_doc_unigram_entropy\": 4.589760780334473,\n \"rps_doc_word_count\": 186,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.07113821059465408,\n \"rps_doc_frac_chars_top_3gram\": 0.08638211339712143,\n \"rps_doc_frac_chars_top_4gram\": 0.050813011825084686,\n \"rps_doc_books_importance\": -69.82620239257812,\n \"rps_doc_books_importance_length_correction\": -69.82620239257812,\n \"rps_doc_openwebtext_importance\": -42.85646438598633,\n \"rps_doc_openwebtext_importance_length_correction\": -42.85646438598633,\n \"rps_doc_wikipedia_importance\": -34.90195083618164,\n \"rps_doc_wikipedia_importance_length_correction\": -34.90195083618164\n },\n \"fasttext\": {\n \"dclm\": -0.000008940000043367036,\n \"english\": 0.878049910068512,\n \"fineweb_edu_approx\": 0.9631287455558777,\n \"eai_general_math\": -0.000003929999820684316,\n \"eai_open_web_math\": 0.23841100931167603,\n \"eai_web_code\": -0.000009890000001178123\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.33\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"796.83\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"c78d4cf040abe984322cbd60a93ed16f"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":2,"numItemsPerPage":100,"numTotalItems":1974605,"offset":200,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjE2MjkzNCwic3ViIjoiL2RhdGFzZXRzL3RleHRjbGVhbmxtL3RleHRjbGVhbi0yQi1yYXciLCJleHAiOjE3NTYxNjY1MzQsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.JQ0G3GT5fyZHYQj7CSqppXZ0WukmYgGAJzulL7caagsrg160nK9JM-c9sLnBmGoRB9sy1gadFInLl-JDLCw0Cw","displayUrls":true},"discussionsStats":{"closed":0,"open":0,"total":0},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
id
int64
-9,223,347,927,115,424,000
9,223,367,241B
text
stringlengths
169
1.05M
metadata
dict
line_start_n_end_idx
dict
quality_signals
dict
eai_taxonomy
dict
pid
stringclasses
24 values
1,325,472,236,475,563,000
Sketchbook Glimpse- Intention by Alissa Marquess on May 23, 2011 Last week I decided to set an intention each time before sketching.  For each sketch I drew, I wrote what my intention was.  In case you’re curious here are my intentions and a note about each image: Banana- Draw Shading- I did this drawing after everyone was asleep one night.  It was fun to work a while on looking at the shadows and light. Campfire: Capture scene-  This is the first time I’ve tried drawing something so large in front of me.  The intention was Capture Scene and I was glad to have set an intention.  It helped me not get overwhelemd and try to include everything; still I had a hard time editing down and felt really at a loss when it came to the fire in particular. Azalea asleep with the cat: Capture scene- This was a moment when I thought, “I should grab the camera!” and then it was so neat to replace that and think, “Oh, wait! I could sketch this!” Cat: Draw shapes of the cat- I looked at her and tried to find each over lapping shape.  I very gently drew in these circles and ovals, then went back over and darkened lines to give her more…cat-ish-ness. I’ve been doing all my drawing with a number two pencil and I’m starting to feel the need to branch out a bit.  It tried some of my kids crayons earlier this week (we were all drawing together) and I do own an actual set of drawing pencils I ought to get out.  Do you have a favorite thing to draw with?  Does it depend what you’re drawing?  Do you have something you reach for most often? If you enjoyed this post, the best way to follow is to subscribe to the newsletter. Get updates and simple ways to make parenting enjoyable in your inbox! { 3 comments… read them below or add one } Ginny May 23, 2011 at 6:06 pm I am taking drawing lessons now.  For the time being I am going to use my number 2 pencil as instructed but I have a great set of pencils.  I also have worked with watercolor pencils which are really fun.  I love your idea of setting an intention.  I think I will have to try doing that.  Reply Julie Jordan Scott May 23, 2011 at 6:17 pm I love these. I have wanted to take a drawing class but alas, never seem to get to it!!  Reply Lissybug May 23, 2011 at 6:49 pm Julie, just start drawing with me! I’ve been sketching ten minutes a day, and telling myself it’s fine if it’s horrible. I do exercises like drawing with my non-dominant hand or not taking the pencil off the paper so I can loosen up and not worry so much about the result. I mostly post my favorite drawings from the week- I could critique all of them to pieces, but that’s not what it’s about. Right now I’m just exploring drawing. I would love if others felt like giving it a try! Reply Leave a Comment Previous post: Next post:
{ "url": "http://creativewithkids.com/sketchbook-glimpse-intention/", "source_domain": "creativewithkids.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "56394", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:65IEZ23FJJHX7VRH5FRCYJE56VHGQN3X", "WARC-Concurrent-To": "<urn:uuid:afb125e3-ba52-4f0c-a969-a587ffe5fadc>", "WARC-Date": "2013-05-18T22:35:46Z", "WARC-IP-Address": "108.167.144.202", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:KDWOFVZMXOU3CL666UTGLRA6YIRO2D63", "WARC-Record-ID": "<urn:uuid:55e9b06c-2af3-4f6a-9da8-cde60909b181>", "WARC-Target-URI": "http://creativewithkids.com/sketchbook-glimpse-intention/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c4268732-c5c3-45c6-8e8b-056ba02c66b9>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 30, 31, 66, 67, 267, 268, 411, 412, 757, 758, 947, 948, 1154, 1155, 1545, 1546, 1701, 1702, 1745, 1746, 1776, 1777, 2066, 2067, 2073, 2074, 2117, 2118, 2207, 2208, 2214, 2215, 2248, 2249, 2323, 2398, 2472, 2548, 2623, 2698, 2732, 2733, 2739, 2740, 2756, 2757, 2772, 2773 ], "line_end_idx": [ 30, 31, 66, 67, 267, 268, 411, 412, 757, 758, 947, 948, 1154, 1155, 1545, 1546, 1701, 1702, 1745, 1746, 1776, 1777, 2066, 2067, 2073, 2074, 2117, 2118, 2207, 2208, 2214, 2215, 2248, 2249, 2323, 2398, 2472, 2548, 2623, 2698, 2732, 2733, 2739, 2740, 2756, 2757, 2772, 2773, 2783 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2783, "ccnet_original_nlines": 48, "rps_doc_curly_bracket": 0.0007186500006355345, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.44515103101730347, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05087440088391304, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1605723351240158, "rps_doc_frac_unique_words": 0.49239543080329895, "rps_doc_mean_word_length": 4.081748962402344, "rps_doc_num_sentences": 33, "rps_doc_symbol_to_word_ratio": 0.003179650055244565, "rps_doc_unigram_entropy": 5.116347312927246, "rps_doc_word_count": 526, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.009315320290625095, "rps_doc_frac_chars_top_3gram": 0.016767580062150955, "rps_doc_frac_chars_top_4gram": 0.015370279550552368, "rps_doc_books_importance": -271.10162353515625, "rps_doc_books_importance_length_correction": -271.10162353515625, "rps_doc_openwebtext_importance": -185.6580047607422, "rps_doc_openwebtext_importance_length_correction": -185.6580047607422, "rps_doc_wikipedia_importance": -139.38998413085938, "rps_doc_wikipedia_importance_length_correction": -139.38998413085938 }, "fasttext": { "dclm": 0.00011264999920967966, "english": 0.9612337350845337, "fineweb_edu_approx": 1.2146968841552734, "eai_general_math": 0.0463067889213562, "eai_open_web_math": 0.28002631664276123, "eai_web_code": 0.00014961000124458224 } }
{ "free_decimal_correspondence": { "primary": { "code": "741.2", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } }, "secondary": { "code": "741.202", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
9,196,143,149,286,868,000
NKE » Topics » IMPORTANT NOTICE Regarding the Availability of Proxy Materials This excerpt taken from the NKE DEFA14A filed Jul 27, 2009. IMPORTANT NOTICE Regarding the Availability of Proxy Materials           NIKE, INC.             Meeting Information             Meeting Type:    Annual Meeting of Shareholders           For holders as of:    July 24, 2009           Date:    September 21, 2009    Time:  10:00 A.M. PDT           Location:    Tiger Woods Conference Center One Bowerman Drive Beaverton, OR 97005-6453                    LOGO NIKE, INC. ONE BOWERMAN DRIVE BEAVERTON, OR 97005-6453 ATTN: JOHN F. COBURN III   You are receiving this communication because you hold shares in NIKE, Inc.   This is not a ballot. You cannot use this notice to vote these shares. This communication presents only an overview of the more complete proxy materials that are available to you on the Internet. You may view the proxy materials online at www.proxyvote.com or easily request a paper copy (see reverse side).   LOGO       We encourage you to access and review all of the important information contained in the proxy materials before voting.         See the reverse side of this notice to obtain proxy materials and voting instructions.   Wikinvest © 2006, 2007, 2008, 2009, 2010, 2011, 2012. Use of this site is subject to express Terms of Service, Privacy Policy, and Disclaimer. By continuing past this page, you agree to abide by these terms. Any information provided by Wikinvest, including but not limited to company data, competitors, business analysis, market share, sales revenues and other operating metrics, earnings call analysis, conference call transcripts, industry information, or price targets should not be construed as research, trading tips or recommendations, or investment advice and is provided with no warrants as to its accuracy. Stock market data, including US and International equity symbols, stock quotes, share prices, earnings ratios, and other fundamental data is provided by data partners. Stock market quotes delayed at least 15 minutes for NASDAQ, 20 mins for NYSE and AMEX. Market data by Xignite. See data providers for more details. Company names, products, services and branding cited herein may be trademarks or registered trademarks of their respective owners. The use of trademarks or service marks of another is not a representation that the other is affiliated with, sponsors, is sponsored by, endorses, or is endorsed by Wikinvest. Powered by MediaWiki
{ "url": "http://www.wikinvest.com/stock/Nike_(NKE)/Important_Notice_Regarding_Availability_Proxy_Materials", "source_domain": "www.wikinvest.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "42800", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RSYII3MS4XE5NFM4DEEOULBI73EZ5CRY", "WARC-Concurrent-To": "<urn:uuid:f5d7b7a3-d417-4993-9484-862d31050803>", "WARC-Date": "2013-05-21T22:11:13Z", "WARC-IP-Address": "66.81.238.4", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:5RD77UDBRYRT5DSNF5JWSPJL425AAZXG", "WARC-Record-ID": "<urn:uuid:a856a1ed-98c8-4b27-b3e1-bda86628681a>", "WARC-Target-URI": "http://www.wikinvest.com/stock/Nike_(NKE)/Important_Notice_Regarding_Availability_Proxy_Materials", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cace7708-bebe-428a-88ba-b9162eadd125>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 78, 79, 139, 140, 203, 204, 206, 207, 213, 214, 216, 217, 228, 229, 233, 239, 240, 242, 243, 263, 264, 268, 274, 275, 277, 278, 326, 327, 331, 377, 440, 459, 460, 490, 491, 510, 511, 536, 537, 539, 540, 544, 555, 557, 558, 563, 564, 575, 576, 595, 596, 621, 622, 647, 648, 650, 651, 726, 727, 729, 730, 1038, 1039, 1041, 1050, 1051, 1053, 1054, 1173, 1174, 1176, 1271, 1272, 1273, 2511 ], "line_end_idx": [ 78, 79, 139, 140, 203, 204, 206, 207, 213, 214, 216, 217, 228, 229, 233, 239, 240, 242, 243, 263, 264, 268, 274, 275, 277, 278, 326, 327, 331, 377, 440, 459, 460, 490, 491, 510, 511, 536, 537, 539, 540, 544, 555, 557, 558, 563, 564, 575, 576, 595, 596, 621, 622, 647, 648, 650, 651, 726, 727, 729, 730, 1038, 1039, 1041, 1050, 1051, 1053, 1054, 1173, 1174, 1176, 1271, 1272, 1273, 2511, 2531 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2531, "ccnet_original_nlines": 75, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2781457006931305, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.07064017653465271, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.21854305267333984, "rps_doc_frac_unique_words": 0.5591397881507874, "rps_doc_mean_word_length": 5.188171863555908, "rps_doc_num_sentences": 26, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.02800178527832, "rps_doc_word_count": 372, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.0943005234003067, "rps_doc_frac_chars_dupe_6grams": 0.0943005234003067, "rps_doc_frac_chars_dupe_7grams": 0.05699481815099716, "rps_doc_frac_chars_dupe_8grams": 0.05699481815099716, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04352331906557083, "rps_doc_frac_chars_top_3gram": 0.02487047016620636, "rps_doc_frac_chars_top_4gram": 0.02797926962375641, "rps_doc_books_importance": -224.13626098632812, "rps_doc_books_importance_length_correction": -224.13626098632812, "rps_doc_openwebtext_importance": -106.34949493408203, "rps_doc_openwebtext_importance_length_correction": -106.34949493408203, "rps_doc_wikipedia_importance": -93.6079330444336, "rps_doc_wikipedia_importance_length_correction": -93.6079330444336 }, "fasttext": { "dclm": 0.00005233000047155656, "english": 0.8385928273200989, "fineweb_edu_approx": 1.0704607963562012, "eai_general_math": 0.00011742000060621649, "eai_open_web_math": 0.08390194177627563, "eai_web_code": 0.181532084941864 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.15", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "658.14", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "11", "label": "Legal/Regulatory" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "11", "label": "Legal Notices" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,744,975,157,857,391,600
Substance Use Disorders Addictions to, dependence on, and abuse of alcohol and drugs—from marijuana and methamphetamine to cocaine and heroin—place emotional and economic burdens on individuals, families, and communities. RAND research provides a firm, empirical foundation for policymakers and helps community leaders and public officials worldwide to deal effectively with substance use disorders and associated issues. Research conducted by: RAND Drug Policy Research Center; RAND Health; RAND Justice, Infrastructure, and Environment; RAND Europe All Items (684) Journal Article Prescription Sharing, Alcohol Use, and Street Drug Use to Manage Pain Among Veterans — May 1, 2011 About one-third of veterans report using alcohol, street drugs, or medication prescribed for others to manage pain. Journal Article Does the Response to Alcohol Taxes Differ Across Racial/ethnic Groups? Some Evidence from 1984-2009 Behavioral Risk Factor Surveillance System — Apr 1, 2011 This study examines how the effect of alcohol excise taxes on the demand for alcohol varies across different racial and ethnic groups. Report Preliminary assessment of economic impacts of alcohol pricing policy options in the UK — Mar 21, 2011 This study provides evidence on potential economic impact of policies designed to increase the price of alcoholic drinks on consumers, producers and retailers in the UK. Policy-makers used recommendations to implement a new pricing policy. Journal Article Increased Substance Use and Risky Sexual Behavior Among Migratory Homeless Youth: Exploring the Role of Social Network Composition — Mar 12, 2011 Young homeless "travelers" engage in higher risk behavior than non-traveler homeless and may have different service needs and require different service approaches. Report Assessing the impacts of Revising the Tobacco Products Directive: Study to support a DG SANCO Impact Assessment — Mar 8, 2011 In order to inform the European Commission's formal Impact Assessment for a revision to the Tobacco Products Directive, this study provides an overview of evidence for tobacco product regulation and an analysis of health and economic implications. Journal Article The Premises Is the Premise: Understanding Off- and On-Premises Alcohol Sales Outlets to Improve Environmental Alcohol Prevention Strategies — Mar 4, 2011 Outlets that sell alcohol on the premises (e.g., bars or restaurants) do more to prevent alcohol sales to minors than outlets such as convenience or liquor stores. Journal Article Addiction Research Centres and the Nurturing of Creativity: RAND's Drug Policy Research Center — Feb 7, 2011 This paper provides a look back at the creation, evolution and growth of the RAND Drug Policy Research Center (DPRC). Journal Article Economic Impact of Mexico City's Smoke-Free Law — Feb 3, 2011 There is no statistically significant evidence that the Mexico City smoke-free law had a negative impact on restaurants' income, employees' wages and levels of employment. Journal Article Heterogeneity in the Composition of Marijuana Seized in California — Feb 1, 2011 The chemical compounds found in marijuana deserve more attention as efforts to regulate marijuana for medical and recreational use go forward. Journal Article A Unified Framework for Smoking Assessment: The PROMIS Smoking Initiative — Jan 17, 2011 The PROMIS Smoking Initiative has the goal of developing, evaluating, and making widely available a set of items for assessing smoking behavior and the biopsychosocial constructs that can be used to predict smoking outcomes. Journal Article The Impact of Buprenorphine on Treatment of Opioid Dependence in a Medicaid Population: Recent Service Utilization Trends in the Use of Buprenorphine and Methadone — Jan 1, 2011 Buprenorphine use has increased in recent years, with the greatest use in rural communities and in office based settings. Journal Article The Effectiveness of Community-Based Delivery of an Evidence-Based Treatment for Adolescent Substance Use — Jan 1, 2011 This study evaluates the effectiveness of motivational enhancement therapy/cognitive behavioral therapy–5 (MET/CBT-5) when delivered in community practice settings relative to standard community-based adolescent treatment. Journal Article Prescription Medication Abuse and Illegitimate Internet-Based Pharmacies — Jan 1, 2011 Abuse of prescription drugs represents a growing problem. This article discusses the challenge to federal and private efforts to combat the problem and outlines strategies for physicians to recognize and minimize the effects of the availability of these medications on the Internet. Journal Article Bringing Perspective to Illicit Markets: Estimating the Size of the U.S. Marijuana Market — Jan 1, 2011 The authors review two general approaches to drug market estimation--supply-side and demand-side--before turning to a more specific analysis of studies that measure the size of the U.S. marijuana market. Journal Article Trends and Inequalities in Late-Life Health and Functioning in England — Jan 1, 2011 Recently, late-life disability rates have declined in several countries of the Organisation for Economic Co-operation, but no national-level trend analysis for England has been available. Journal Article Judging Nudging: Can Nudging Improve Popuation Health? — Jan 1, 2011 Nudging has captured the imagination of the public, researchers, and policy makers as a way of changing human behaviour, with both the UK and US governments embracing it. Theresa Marteau and colleagues ask whether the concept stands up to scientific scrutiny. Journal Article Neighborhood Archetypes for Population Health Research: Is There No Place Like Home? — Jan 1, 2011 Latent class analysis. A new approach to studying the role of place in population health, can be used in both research and practice. Journal Article The Role of the Self in Smoking Initiation and Smoking Cessation: A Review and Blueprint for Research at the Intersection of Social-Cognition and Health — Jan 1, 2011 This paper discusses a contemporary social cognitive framework that can be used to understand the role of the self-concept in smoking. My RAND ? Saved Items Recommended
{ "url": "http://www.rand.org/topics/substance-use-disorders.6.html", "source_domain": "www.rand.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "57763", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:PPVROBNBQJYYODRM5JTH3HNQ5IQPGIH2", "WARC-Concurrent-To": "<urn:uuid:a614af46-22f2-4ae3-b7a1-da1f255b876b>", "WARC-Date": "2013-05-26T07:32:10Z", "WARC-IP-Address": "130.154.3.8", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:W5LPOTK2FTXFY3ARFO5PCNVL3C62ULJ3", "WARC-Record-ID": "<urn:uuid:98fbccd7-44fc-4185-8681-2b372f44de5a>", "WARC-Target-URI": "http://www.rand.org/topics/substance-use-disorders.6.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:08cdaa65-f440-4fb0-8e2f-bc07fa219b4d>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 24, 25, 423, 424, 553, 554, 570, 571, 587, 588, 687, 688, 804, 805, 821, 822, 979, 980, 1115, 1116, 1123, 1124, 1226, 1227, 1467, 1468, 1484, 1485, 1631, 1632, 1796, 1797, 1804, 1805, 1931, 1932, 2180, 2181, 2197, 2198, 2353, 2354, 2518, 2519, 2535, 2536, 2645, 2646, 2764, 2765, 2781, 2782, 2844, 2845, 3017, 3018, 3034, 3035, 3116, 3117, 3260, 3261, 3277, 3278, 3367, 3368, 3593, 3594, 3610, 3611, 3789, 3790, 3912, 3913, 3929, 3930, 4050, 4051, 4274, 4275, 4291, 4292, 4379, 4380, 4663, 4664, 4680, 4681, 4785, 4786, 4990, 4991, 5007, 5008, 5093, 5094, 5282, 5283, 5299, 5300, 5369, 5370, 5630, 5631, 5647, 5648, 5747, 5748, 5881, 5882, 5898, 5899, 6066, 6067, 6202, 6203, 6213, 6214, 6226, 6227 ], "line_end_idx": [ 24, 25, 423, 424, 553, 554, 570, 571, 587, 588, 687, 688, 804, 805, 821, 822, 979, 980, 1115, 1116, 1123, 1124, 1226, 1227, 1467, 1468, 1484, 1485, 1631, 1632, 1796, 1797, 1804, 1805, 1931, 1932, 2180, 2181, 2197, 2198, 2353, 2354, 2518, 2519, 2535, 2536, 2645, 2646, 2764, 2765, 2781, 2782, 2844, 2845, 3017, 3018, 3034, 3035, 3116, 3117, 3260, 3261, 3277, 3278, 3367, 3368, 3593, 3594, 3610, 3611, 3789, 3790, 3912, 3913, 3929, 3930, 4050, 4051, 4274, 4275, 4291, 4292, 4379, 4380, 4663, 4664, 4680, 4681, 4785, 4786, 4990, 4991, 5007, 5008, 5093, 5094, 5282, 5283, 5299, 5300, 5369, 5370, 5630, 5631, 5647, 5648, 5747, 5748, 5881, 5882, 5898, 5899, 6066, 6067, 6202, 6203, 6213, 6214, 6226, 6227, 6238 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6238, "ccnet_original_nlines": 120, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2737327218055725, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02396312914788723, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17695853114128113, "rps_doc_frac_unique_words": 0.4368191659450531, "rps_doc_mean_word_length": 5.583878040313721, "rps_doc_num_sentences": 35, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.307631492614746, "rps_doc_word_count": 918, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.03726102039217949, "rps_doc_frac_chars_dupe_6grams": 0.011314869858324528, "rps_doc_frac_chars_dupe_7grams": 0.011314869858324528, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04369879141449928, "rps_doc_frac_chars_top_3gram": 0.007803360000252724, "rps_doc_frac_chars_top_4gram": 0.01404604036360979, "rps_doc_books_importance": -465.521240234375, "rps_doc_books_importance_length_correction": -465.521240234375, "rps_doc_openwebtext_importance": -237.52838134765625, "rps_doc_openwebtext_importance_length_correction": -237.52838134765625, "rps_doc_wikipedia_importance": -174.8894500732422, "rps_doc_wikipedia_importance_length_correction": -174.8894500732422 }, "fasttext": { "dclm": 0.00005340999996406026, "english": 0.8610822558403015, "fineweb_edu_approx": 2.654494285583496, "eai_general_math": 0.019550859928131104, "eai_open_web_math": 0.1665482521057129, "eai_web_code": 0.00010895999730564654 } }
{ "free_decimal_correspondence": { "primary": { "code": "362.292", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } }, "secondary": { "code": "338.4", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "2", "label": "Academic/Research" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "4", "label": "Graduate/Expert Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,536,955,354,238,930,400
Pokedex. credz to pokememes. | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pokedex credz to pokememes +32 Views: 776 Favorited: 0 Submitted: 03/03/2012 Add to favorites Subscribe to admshenanigans Edit Image E-mail to friend Share on facebook Share on StumbleUpon Share on Tumblr Share on Pinterest Share on Google Plus E-mail to friend Show:   Top Rated Newest Per page: Order: Show All Replies #1 - middagsmo (03/03/2012) [+] (2 replies) **middagsmo rolls 10**  Friends (0)
{ "url": "http://www.funnyjunk.com/funny_pictures/3405500/Pokedex/", "source_domain": "www.funnyjunk.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "99469", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:BU3QZ3KTNU322QDBPCLKYEXN7TJO6WQO", "WARC-Concurrent-To": "<urn:uuid:b4991174-32fa-49bc-b2d0-b856426fecae>", "WARC-Date": "2013-05-18T10:35:41Z", "WARC-IP-Address": "85.17.31.5", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:B2ANACOAWZGACBK4LIVEOCAPTWRRX4BG", "WARC-Record-ID": "<urn:uuid:e45f7f0d-c3e5-44b8-9f26-dcd917fbf329>", "WARC-Target-URI": "http://www.funnyjunk.com/funny_pictures/3405500/Pokedex/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9ca06aa1-9aab-4595-b2e5-f3425197e7cc>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 29, 89, 90, 98, 99, 118, 119, 123, 134, 147, 169, 242, 354, 389, 396, 413, 457, 480 ], "line_end_idx": [ 29, 89, 90, 98, 99, 118, 119, 123, 134, 147, 169, 242, 354, 389, 396, 413, 457, 480, 492 ] }
{ "red_pajama_v2": { "ccnet_original_length": 492, "ccnet_original_nlines": 18, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.08661416918039322, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.015748029574751854, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.5433070659637451, "rps_doc_frac_unique_words": 0.6461538672447205, "rps_doc_mean_word_length": 5.07692289352417, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0.007874020375311375, "rps_doc_unigram_entropy": 3.548112154006958, "rps_doc_word_count": 65, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.10606060922145844, "rps_doc_frac_chars_top_3gram": 0.08484847843647003, "rps_doc_frac_chars_top_4gram": 0.13939394056797028, "rps_doc_books_importance": -72.59184265136719, "rps_doc_books_importance_length_correction": -80.70922088623047, "rps_doc_openwebtext_importance": -55.97795867919922, "rps_doc_openwebtext_importance_length_correction": -64.0953369140625, "rps_doc_wikipedia_importance": -30.130062103271484, "rps_doc_wikipedia_importance_length_correction": -38.247440338134766 }, "fasttext": { "dclm": 1.0000100135803223, "english": 0.6665266156196594, "fineweb_edu_approx": 0.4573555290699005, "eai_general_math": -0.000009780000254977494, "eai_open_web_math": 0.036341190338134766, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "794.8", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "791.457", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "7", "label": "Creative Writing" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-2,282,022,407,740,685,800
    Simply Pet Supplies   Barn & Stable Supplies Bird Supplies Cat Supplies Dog Supplies Equine Supplies Fish Supplies Pond Supplies Reptile Supplies Small Pet Supplies Veterinary Supplies Wild Bird Supplies     8 in 1 Excel Joint Ensure Advanced 60 Count   Bully Nuggets - 3.9 oz Bag Bully Nuggets - 3.9 oz Bag ON SALE $2.81 Add To Cart Super Ick Cure Powder Packets Super Ick Cure Powder Packets ON SALE $4.53 Add To Cart Spot Plush Skinneez Squirrel Dog Toy Spot Plush Skinneez Squirrel Dog Toy ON SALE $5.03 Add To Cart Four Paws Trolley Exerciser Medium Weight 50 Ft. Four Paws Trolley Exerciser Medium Weight 50 Ft. ON SALE $22.48 Add To Cart Official Coupons! A+ Rated Business Your Shopping Cart Name Price/QTY QTY Price There are currently no items in your shopping cart. Please click on the 'Go Shopping' button below to continue. Sales Tax If Applicable: Florida Sales Tax SHIPPING CALCULATOR Enter your shipping details  ZIP:      Discount Coupon If you have a discount coupon or gift certificate you want to apply to your order, please enter your discount coupon code or gift certificate code below and click on the 'Apply Discount' button. Coupon/Certificate Code: You have 0 item(s). Total: $0.00 100% Safe Shopping Customer Testimonials Privacy Policy Ordering Information Return Policy Shipping Policy Coupons     Discount Online Pet Supplies   All rights reserved. Copyright Simply Pet Supplies 2013 Sitemap  
{ "url": "http://www.simplypetsupplies.com/show_cart.cfm?PID=356&CartID=5CBD4A09-F8B6-AE21-B316DC5CF3A4C4B6", "source_domain": "www.simplypetsupplies.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "29792", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TPAZYPXC57URWS5MJS6DG2WZNYNTXRVO", "WARC-Concurrent-To": "<urn:uuid:b2541539-d6a2-4a5c-88b9-62f631a08192>", "WARC-Date": "2013-06-19T14:00:15Z", "WARC-IP-Address": "50.23.136.94", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:SZ63VRCWHUXWOQUDBJ2G6INC3LWCULEY", "WARC-Record-ID": "<urn:uuid:cd515904-cd5e-47f6-9340-1ccb538e3bb0>", "WARC-Target-URI": "http://www.simplypetsupplies.com/show_cart.cfm?PID=356&CartID=5CBD4A09-F8B6-AE21-B316DC5CF3A4C4B6", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8d9fd52c-55ec-4841-9a09-7da97e1ea3b0>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 2, 4, 5, 25, 26, 51, 65, 78, 91, 107, 121, 135, 152, 171, 191, 210, 212, 258, 260, 314, 322, 328, 329, 341, 401, 409, 415, 416, 428, 502, 510, 516, 517, 529, 627, 635, 642, 643, 655, 656, 657, 675, 693, 694, 713, 714, 715, 740, 852, 853, 854, 855, 856, 881, 899, 900, 920, 948, 959, 960, 976, 977, 1172, 1173, 1198, 1199, 1219, 1232, 1233, 1234, 1253, 1275, 1290, 1311, 1325, 1341, 1349, 1351, 1353, 1382, 1384, 1440, 1448 ], "line_end_idx": [ 2, 4, 5, 25, 26, 51, 65, 78, 91, 107, 121, 135, 152, 171, 191, 210, 212, 258, 260, 314, 322, 328, 329, 341, 401, 409, 415, 416, 428, 502, 510, 516, 517, 529, 627, 635, 642, 643, 655, 656, 657, 675, 693, 694, 713, 714, 715, 740, 852, 853, 854, 855, 856, 881, 899, 900, 920, 948, 959, 960, 976, 977, 1172, 1173, 1198, 1199, 1219, 1232, 1233, 1234, 1253, 1275, 1290, 1311, 1325, 1341, 1349, 1351, 1353, 1382, 1384, 1440, 1448, 1449 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1449, "ccnet_original_nlines": 83, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10661765187978745, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05147058889269829, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.21691176295280457, "rps_doc_frac_unique_words": 0.5377777814865112, "rps_doc_mean_word_length": 5.048888683319092, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.572855472564697, "rps_doc_word_count": 225, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.20246478915214539, "rps_doc_frac_chars_dupe_6grams": 0.125, "rps_doc_frac_chars_dupe_7grams": 0.07042253762483597, "rps_doc_frac_chars_dupe_8grams": 0.07042253762483597, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.038732390850782394, "rps_doc_frac_chars_top_3gram": 0.03169013932347298, "rps_doc_frac_chars_top_4gram": 0.02816900983452797, "rps_doc_books_importance": -118.72626495361328, "rps_doc_books_importance_length_correction": -114.69790649414062, "rps_doc_openwebtext_importance": -65.87137603759766, "rps_doc_openwebtext_importance_length_correction": -65.87137603759766, "rps_doc_wikipedia_importance": -46.054744720458984, "rps_doc_wikipedia_importance_length_correction": -37.65260696411133 }, "fasttext": { "dclm": -0.00000810999972600257, "english": 0.7346155643463135, "fineweb_edu_approx": 0.44851285219192505, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.0004899500054307282, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "636.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Domestic animals and Pets" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,788,030,693,773,448,000
Content Section NEW WAVE Against Me! Singer Transgender Mark Humphrey / AP Photo Against Me! Singer Transgender Against Me! singer Tom Gabel has come out as transgender, and told Rolling Stone that he will begin living his life as a woman. The first major rock star to come out as transgender, Gabel has dealt with gender dysphoria for years. Gabel will soon begin hormone treatments and undergo electrolysis treatments and will eventually take the name Laura Jane Grace. Gabel will remain married, and said that while his wife has been “super-amazing,” Gabel admitted there would will be some “embarrassing moments ahead.” May 9, 2012 7:16 AM You Might Also Like
{ "url": "http://www.thedailybeast.com/cheats/2012/05/09/against-me-singer-transgender.html", "source_domain": "www.thedailybeast.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "36198", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:EHORI7MA2FNODME6BB7VHJMOTLRT4Q4C", "WARC-Concurrent-To": "<urn:uuid:10791f4a-5cce-4812-8f58-9f0feed3b3bb>", "WARC-Date": "2013-05-23T16:40:28Z", "WARC-IP-Address": "50.17.200.27", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:BZ6BQAO2FOSJZQGY5FBKRJYOT3CMH7YO", "WARC-Record-ID": "<urn:uuid:62f5b12a-dee6-47a9-80d5-f4fb60308dbb>", "WARC-Target-URI": "http://www.thedailybeast.com/cheats/2012/05/09/against-me-singer-transgender.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:47a18187-0f7e-4383-a1ab-877105ad0cac>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 81, 82, 113, 114, 626, 627, 647, 648, 649 ], "line_end_idx": [ 16, 81, 82, 113, 114, 626, 627, 647, 648, 649, 668 ] }
{ "red_pajama_v2": { "ccnet_original_length": 668, "ccnet_original_nlines": 10, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3125, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03125, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1640625, "rps_doc_frac_unique_words": 0.7155963182449341, "rps_doc_mean_word_length": 4.944953918457031, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.201733589172363, "rps_doc_word_count": 109, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05009276047348976, "rps_doc_frac_chars_top_3gram": 0.08348794281482697, "rps_doc_frac_chars_top_4gram": 0.09647495299577713, "rps_doc_books_importance": -65.84326171875, "rps_doc_books_importance_length_correction": -72.93006896972656, "rps_doc_openwebtext_importance": -40.42388153076172, "rps_doc_openwebtext_importance_length_correction": -47.51068878173828, "rps_doc_wikipedia_importance": -37.07352066040039, "rps_doc_wikipedia_importance_length_correction": -44.16032791137695 }, "fasttext": { "dclm": 0.00007629000174347311, "english": 0.9641778469085693, "fineweb_edu_approx": 0.945871889591217, "eai_general_math": 0.0003822399885393679, "eai_open_web_math": 0.10510879755020142, "eai_web_code": -0.000008820000402920414 } }
{ "free_decimal_correspondence": { "primary": { "code": "306.76", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } }, "secondary": { "code": "782.4216", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
1,564,612,154,695,824,000
• The Heritage Network • Resize: • A • A • A • Donate • U.S.-Australia free trade agreement Celebrating the U.S.–Australia Alliance’s 60th Birthday Sixty years ago today, in San Francisco, the foreign ministers of Australia and New Zealand met with Dean Acheson, President Harry Truman’s Secretary of State, to sign a tripartite mutual defense treaty—the Australia, New Zealand, United States Security Treaty, or ANZUS, which solidified America’s longstanding friendship with its two Pacific … More
{ "url": "http://blog.heritage.org/tag/u-s-australia-free-trade-agreement/", "source_domain": "blog.heritage.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "30005", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:QRB3WFKBG6BCL6XZWPDQVRZGJDPNXNV3", "WARC-Concurrent-To": "<urn:uuid:b5403207-8a53-4c7c-9a90-039f8f2f26bd>", "WARC-Date": "2013-05-25T21:33:23Z", "WARC-IP-Address": "72.21.81.253", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:X2H4YFN3E73EO7QKOJMVYHN7FEC7ESO7", "WARC-Record-ID": "<urn:uuid:0b5f38db-6502-49ae-be4a-f2d4f5461446>", "WARC-Target-URI": "http://blog.heritage.org/tag/u-s-australia-free-trade-agreement/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4fa5bd88-b444-49da-9023-6ae886fcb173>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 25, 39, 47, 55, 63, 74, 114, 115, 175, 176 ], "line_end_idx": [ 25, 39, 47, 55, 63, 74, 114, 115, 175, 176, 530 ] }
{ "red_pajama_v2": { "ccnet_original_length": 530, "ccnet_original_nlines": 10, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1764705926179886, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.07843136787414551, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2450980395078659, "rps_doc_frac_unique_words": 0.7922077775001526, "rps_doc_mean_word_length": 5.298701286315918, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0.009803920052945614, "rps_doc_unigram_entropy": 3.962067127227783, "rps_doc_word_count": 77, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.01715685985982418, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.014705879613757133, "rps_doc_frac_chars_top_3gram": 0.022058820351958275, "rps_doc_frac_chars_top_4gram": 0.019607840105891228, "rps_doc_books_importance": -42.473907470703125, "rps_doc_books_importance_length_correction": -55.03915023803711, "rps_doc_openwebtext_importance": -17.131263732910156, "rps_doc_openwebtext_importance_length_correction": -29.69650650024414, "rps_doc_wikipedia_importance": 1.1184601783752441, "rps_doc_wikipedia_importance_length_correction": -11.446783065795898 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.8218772411346436, "fineweb_edu_approx": 1.753499150276184, "eai_general_math": 0.0003060100134462118, "eai_open_web_math": 0.44140803813934326, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "337.75", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "International economic relations" } }, "secondary": { "code": "327.694", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "International relations and World politics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,979,714,727,046,487,600
Login | Register The Engineer's Place for News and Discussion® Appliance Technology The Appliance Technology Blog is the place for conversation and discussion about Consumer Electronics; Medical Products; Home & Office Equipment; and Power Tools, Lawn and Garden. Here, you'll find everything from application ideas, to news and industry trends, to hot topics and cutting edge innovations. Previous in Blog: Are Extended Warranties Worth the Cost?   Next in Blog: What Kind of Switches for Appliances? Close Comments Format: Close Subscribe to Discussion: CR4 allows you to "subscribe" to a discussion so that you can be notified of new comments to the discussion via email. Close Rating Vote: 10 comments Would You Opt for Virtual Supermarket Shopping? Posted August 01, 2011 8:36 AM While you're waiting for a subway train, rapid transit, or a bus while commuting to or from work, you can now do your grocery shopping virtually, at least in South Korea. Using your smartphone, you click images of items, then pay, hopefully receiving them right after you get home. Would you opt for such a system if available in your area? The preceding article is a "sneak peek" from Appliance Technology, a newsletter from GlobalSpec. To stay up-to-date and informed on industry trends, products, and technologies, subscribe to Appliance Technology today. Reply Interested in this topic? By joining CR4 you can "subscribe" to this discussion and receive notification when new comments are added. Comments rated to be Good Answers: These comments received enough positive ratings to make them "good answers". Comments rated to be "almost" Good Answers: Check out these comments that don't yet have enough votes to be "official" good answers and, if you agree with them, rate them! Guru United States - Member - USA! Hobbies - Musician - Sound Man Engineering Fields - Mechanical Engineering - More than a Hobby Technical Fields - Technical Writing - New Member Join Date: Oct 2008 Location: City of Roses. Posts: 2078 Good Answers: 98 #1 Re: Would You Opt for Virtual Supermarket Shopping? 08/01/2011 1:10 PM So how do you pick the ripe melon from the bunch without thumping, smelling and caressing your produce? __________________ Don't believe everything you read on the Internet! Reply 2 Guru Join Date: Oct 2008 Location: I'm outa here Posts: 1934 Good Answers: 196 #2 In reply to #1 Re: Would You Opt for Virtual Supermarket Shopping? 08/01/2011 11:43 PM I'm the cook in my house and do all the food shopping. I am in good health and can at age 72 drive a car in virtually any conditions. Melon is a good example of what I probably wouldn't buy remotely. Pretty much the case for all produce, butcher department meats, most bakery stuff and some dairy. Packaged foods of familiar brands are a different story; but I'm going to want to see the expiration date on some items. Also I'm not one who adheres rigidly to a prepared shopping list. Also I tend to price shop where I might buy any one of several brands. The ability to rapidly scan the offerings in the real market is a big advantage over what can be done remotely by a communication device. Another issue is the cost of shipping versus the cost of going to the store. This depends a lot on getting economies of scale. There's a set of costs associated with shopping the traditional way. They can be spread out by including several stops on a single trip. By the same token the cost of shipping/delivery of the food purchase spreads out further the larger the shopping list. Then there is the factor of buying several items for a specific recipe. If one is not available the rest are not needed. But I don't learn that till sometime later. In the market the unavailable item is immediately obvious and substitutions can be made right there. But suppose I place an internet order for the recipe ingredients and one ends up "back-ordered"? And I don't know this until the delivery is made. Bottom line here is that the internet supermarket is going to have to convince me that their incidence of such failures is low and that I won't have to pay the cost of a process full of redundant checks by shipping clerks. Bottom line here is that at least half of my food shopping trips are going to require a trip to the market and direct contact with some items before purchase. But, and this is an important issue, any reduction in my above mentioned travel capabilities will sway decisions over how to shop. Another issue is that certain non-perishable food items not available in the local area might be easier to get through a well organized internet seller. The problem with this idea taking off in the USA is that the added cost of the service makes it a non-starter for most of us. I know there are frequent experiments here in the USA and there is a definite niche market being currently served. But the costs of the service will keep it a niche market unless someone comes up with a really clever new business model that fits the way we live here. Ed Weldon Reply Good Answer (Score 2) Associate Join Date: Feb 2011 Location: Philadelphia, PA Posts: 37 Good Answers: 3 #3 Re: Would You Opt for Virtual Supermarket Shopping? 08/02/2011 9:44 AM This is quite similar to the Fresh Direct and Pea Pod services already offered in urban areas in the Northeast. When I lived in NYC I used Fresh Direct a number of times. It was reliably direct, but often a little too fresh. Produce was hit or miss, and often came under ripe (although to me this was preferable to over ripe). But, for other items like bread, cereal, and other grocery items, it was great. Delivery beer is also one of the greatest inventions imaginable. Surprisingly, prices were actually better, even including the delivery fee, than the local markets, I assume because the delivery services didn't need a brick and mortar facility within the city limits, and didn't need to pay retail staff. Also grocery prices in New York are absurdly high, making it easier for these delivery services to compete. However, I don't see this being such a good option outside of urban areas. Delivery distances grow large quickly as population density drops off, and grocery prices in rural areas are much more reasonable. Also, I doubt that a delivery service would have access to locally grown produce, which I believe is a big draw for many shoppers. Reply Power-User Join Date: Dec 2010 Posts: 325 Good Answers: 2 #4 Re: Would You Opt for Virtual Supermarket Shopping? 08/02/2011 11:45 AM No way, even when I have tried shopping for food online the results have been terrible! Spencer. Reply Guru Technical Fields - Technical Writing - New Member Engineering Fields - Marine Engineering - New Member Join Date: Sep 2008 Location: Vancleave, Ms about 30 miles inland from Biloxi and the coast Posts: 2376 Good Answers: 82 #5 Re: Would You Opt for Virtual Supermarket Shopping? 08/02/2011 1:38 PM Absolutely not! Modern technology is taking away our humanity, making us slaves to technology. Human tasks like shopping, cooking, raising children are being made less important in a busy world. Who is so busy that they can't do human things? __________________ Almost as smart as the average bear Reply Score 1 for Good Answer Guru Join Date: Oct 2008 Location: I'm outa here Posts: 1934 Good Answers: 196 #6 In reply to #5 Re: Would You Opt for Virtual Supermarket Shopping? 08/03/2011 12:30 AM Ronseto - I hate to have to say this but the next gereration's "human things" are different from yours and mine. And I'm pretty sure that 100 years ago our counterparts were saying much the same thing. And a hundred years from now? Who knows? Perhaps our great, great grandchildren will be reminiscing about a time when people could go to the store and buy almost any food in any quantity they wanted. Ed Weldon Reply Guru Join Date: Jun 2010 Location: srilanka Posts: 1805 Good Answers: 6 #7 Re: Would You Opt for Virtual Supermarket Shopping? 09/07/2011 12:19 AM It is a welcome move for elders,the sick and those who have no time to waste in Malls and in travelling through traffic jams and adverse climatic conditions. Fresh vegetables and fruits should be replaced by the Malls if customer don't like the state. Also if shipping or transport is free more customers will be attracted with increased sales. in one trip the Mall driver can deliver items to many customers which will save money and time. __________________ pnaban Reply Guru Join Date: Jun 2010 Location: srilanka Posts: 1805 Good Answers: 6 #8 In reply to #7 Re: Would You Opt for Virtual Supermarket Shopping? 09/07/2011 12:25 AM Still a better idea is to use mobile market(on wheels) to go from street to street and door to door so that housewives and elders can inspect items and buy without wasting time in travelling to the Mall. __________________ pnaban Reply Guru Join Date: Oct 2008 Location: I'm outa here Posts: 1934 Good Answers: 196 #9 In reply to #8 Re: Would You Opt for Virtual Supermarket Shopping? 09/07/2011 2:19 AM I grew up (to age 11) living in an Eastern US city in the 1940's. Our house was in a moderately upscale neighborhood. A small grocery store was a 3 minute walk and a meat market were a 4-5 minutes further. Dad worked in a nearby city and commuted by train. We owned a 2nd hand 1939 sedan which only got used on weekends for trips and outings. Mom didn't work and usually shopped for food and house stuff by walking to the market. Major shopping trips to the city center were by electric trolley car which ran on the same Main street as the stores. We had a daily delivery from a milkman and also a large production bakery. They used light standup delivery trucks common for the time. The bakery truck was battery powered. The milk man delivered a quart of milk every day around dawn and picked up the empty glass bottles. Any extra order was written by Mom on an order slip and put in the top of an empty milk bottle. The bakery truck would come at a later time every day. The driver would bring a tray of fresh loaves of bread and other baked stuff to our door and ring the bell. Mom would look at the tray and select anything special or give special orders. I think both the milk and the bakery companies sold on credit with us paying a periodic bill. I was too young to pay attention to those details. That system worked very nicely all the years we lived there. Enough families on the street bought from those folks so there was economy of scale in the delivery process. I do not remember if there were competitors working in our neighborhood. The key to the bakery model was that someone had to be home to meet the delivery. It was practical for the milkman to leave dairy goods in a closeable box on the doorstep early in the day while the air was still cool. In freezing weather if Mom or I didn't get the milk in soon enough we would be greeted by a bottle with this little column of frozen milk pushing out of the bottle with the cardboard cap on top. A delivery box system for baked goods didn't work at our house because there were too many critters around that would get into the food and no good place to put a box. Besides some days Mom would just wave off the delivery guy. Other days she would get several things. So this is an example of what worked before we started driving our cars to the supermarkets of today. To me the key to a modern version this system would be a refrigerated delivery lockbox facing outside to accept deliveries. (the internet ordering part is easy) At 5 degrees Celsius a delivery box would keep frozen food cold enough for several hours except for a few things like ice cream. There's lots of creative thinking could go into coming up with the right delivery boxes for various customer situations. Ed Weldon Reply Score 1 for Good Answer Guru Join Date: Jun 2010 Location: srilanka Posts: 1805 Good Answers: 6 #10 In reply to #9 Re: Would You Opt for Virtual Supermarket Shopping? 09/07/2011 3:01 AM If organised properly even today it will work. For instance delivery vans or converted buses should give a time table for each condo as well as for each street for the consumers to come to the doorstep and buy by paying either cash or have an account to be settled weekly or monthly on pay days. __________________ pnaban Reply Reply to Blog Entry 10 comments Interested in this topic? By joining CR4 you can "subscribe" to this discussion and receive notification when new comments are added. Comments rated to be Good Answers: These comments received enough positive ratings to make them "good answers". Comments rated to be "almost" Good Answers: Check out these comments that don't yet have enough votes to be "official" good answers and, if you agree with them, rate them! Copy to Clipboard Users who posted comments: Ed Weldon (3); pnaban (3); ronseto (1); RVZ717 (1); Tritium17.6 (1); xanasax (1) Previous in Blog: Are Extended Warranties Worth the Cost?   Next in Blog: What Kind of Switches for Appliances?
{ "url": "http://cr4.globalspec.com/blogentry/17464/Would-You-Opt-for-Virtual-Supermarket-Shopping", "source_domain": "cr4.globalspec.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "75774", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:FSP7EZZOVMTYXNO27SIYC3S5HN64NV3S", "WARC-Concurrent-To": "<urn:uuid:95defed0-1683-4e5b-b78e-3bb28dcfdc1c>", "WARC-Date": "2013-05-23T06:13:08Z", "WARC-IP-Address": "72.46.236.188", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:D3RGG6UICDZJOF6RYHBW6455EB6PIRR6", "WARC-Record-ID": "<urn:uuid:6342d110-220c-4c71-b268-2924a7ec57e2>", "WARC-Target-URI": "http://cr4.globalspec.com/blogentry/17464/Would-You-Opt-for-Virtual-Supermarket-Shopping", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:42e56e43-148c-4997-81c9-7bfddf22cc15>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 17, 63, 64, 65, 86, 87, 393, 394, 506, 512, 513, 530, 531, 532, 533, 534, 535, 536, 542, 543, 568, 569, 615, 662, 688, 689, 695, 696, 709, 710, 711, 712, 713, 714, 715, 716, 728, 729, 777, 778, 809, 810, 1151, 1152, 1370, 1371, 1377, 1378, 1442, 1512, 1513, 1548, 1549, 1626, 1627, 1671, 1672, 1800, 1805, 1980, 1981, 2001, 2026, 2038, 2055, 2058, 2059, 2111, 2112, 2131, 2132, 2236, 2237, 2256, 2307, 2313, 2315, 2320, 2321, 2341, 2365, 2377, 2395, 2398, 2413, 2414, 2466, 2467, 2487, 2488, 2622, 2623, 2908, 2909, 3184, 3185, 3568, 3569, 3835, 3836, 4206, 4207, 4366, 4367, 4498, 4499, 4652, 4653, 5047, 5048, 5058, 5059, 5087, 5097, 5098, 5118, 5145, 5155, 5171, 5174, 5175, 5227, 5228, 5247, 5248, 6068, 6069, 6406, 6407, 6413, 6424, 6425, 6445, 6456, 6472, 6475, 6476, 6528, 6529, 6549, 6550, 6638, 6639, 6648, 6649, 6655, 6660, 6763, 6764, 6784, 6856, 6868, 6885, 6888, 6889, 6941, 6942, 6961, 6962, 7205, 7206, 7225, 7261, 7291, 7296, 7297, 7317, 7341, 7353, 7371, 7374, 7389, 7390, 7442, 7443, 7463, 7464, 7666, 7667, 7867, 7868, 7878, 7879, 7885, 7890, 7891, 7911, 7930, 7942, 7958, 7961, 7962, 8014, 8015, 8035, 8036, 8477, 8478, 8497, 8504, 8510, 8515, 8516, 8536, 8555, 8567, 8583, 8586, 8601, 8602, 8654, 8655, 8675, 8676, 8880, 8881, 8900, 8907, 8913, 8918, 8919, 8939, 8963, 8975, 8993, 8996, 9011, 9012, 9064, 9065, 9084, 9085, 9633, 9634, 10391, 10392, 11048, 11049, 11420, 11421, 11832, 11833, 11843, 11844, 11874, 11879, 11880, 11900, 11919, 11931, 11947, 11951, 11966, 11967, 12019, 12020, 12039, 12040, 12336, 12337, 12356, 12363, 12369, 12401, 12465, 12535, 12536, 12571, 12572, 12649, 12650, 12694, 12695, 12823, 12841, 12842, 12869, 12870, 12951, 12952 ], "line_end_idx": [ 17, 63, 64, 65, 86, 87, 393, 394, 506, 512, 513, 530, 531, 532, 533, 534, 535, 536, 542, 543, 568, 569, 615, 662, 688, 689, 695, 696, 709, 710, 711, 712, 713, 714, 715, 716, 728, 729, 777, 778, 809, 810, 1151, 1152, 1370, 1371, 1377, 1378, 1442, 1512, 1513, 1548, 1549, 1626, 1627, 1671, 1672, 1800, 1805, 1980, 1981, 2001, 2026, 2038, 2055, 2058, 2059, 2111, 2112, 2131, 2132, 2236, 2237, 2256, 2307, 2313, 2315, 2320, 2321, 2341, 2365, 2377, 2395, 2398, 2413, 2414, 2466, 2467, 2487, 2488, 2622, 2623, 2908, 2909, 3184, 3185, 3568, 3569, 3835, 3836, 4206, 4207, 4366, 4367, 4498, 4499, 4652, 4653, 5047, 5048, 5058, 5059, 5087, 5097, 5098, 5118, 5145, 5155, 5171, 5174, 5175, 5227, 5228, 5247, 5248, 6068, 6069, 6406, 6407, 6413, 6424, 6425, 6445, 6456, 6472, 6475, 6476, 6528, 6529, 6549, 6550, 6638, 6639, 6648, 6649, 6655, 6660, 6763, 6764, 6784, 6856, 6868, 6885, 6888, 6889, 6941, 6942, 6961, 6962, 7205, 7206, 7225, 7261, 7291, 7296, 7297, 7317, 7341, 7353, 7371, 7374, 7389, 7390, 7442, 7443, 7463, 7464, 7666, 7667, 7867, 7868, 7878, 7879, 7885, 7890, 7891, 7911, 7930, 7942, 7958, 7961, 7962, 8014, 8015, 8035, 8036, 8477, 8478, 8497, 8504, 8510, 8515, 8516, 8536, 8555, 8567, 8583, 8586, 8601, 8602, 8654, 8655, 8675, 8676, 8880, 8881, 8900, 8907, 8913, 8918, 8919, 8939, 8963, 8975, 8993, 8996, 9011, 9012, 9064, 9065, 9084, 9085, 9633, 9634, 10391, 10392, 11048, 11049, 11420, 11421, 11832, 11833, 11843, 11844, 11874, 11879, 11880, 11900, 11919, 11931, 11947, 11951, 11966, 11967, 12019, 12020, 12039, 12040, 12336, 12337, 12356, 12363, 12369, 12401, 12465, 12535, 12536, 12571, 12572, 12649, 12650, 12694, 12695, 12823, 12841, 12842, 12869, 12870, 12951, 12952, 13063 ] }
{ "red_pajama_v2": { "ccnet_original_length": 13063, "ccnet_original_nlines": 280, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.362661749124527, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019223660230636597, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.18595193326473236, "rps_doc_frac_unique_words": 0.3537505567073822, "rps_doc_mean_word_length": 4.529516220092773, "rps_doc_num_sentences": 121, "rps_doc_symbol_to_word_ratio": 0.005545290187001228, "rps_doc_unigram_entropy": 5.899476528167725, "rps_doc_word_count": 2253, "rps_doc_frac_chars_dupe_10grams": 0.13757961988449097, "rps_doc_frac_chars_dupe_5grams": 0.19069084525108337, "rps_doc_frac_chars_dupe_6grams": 0.18285153806209564, "rps_doc_frac_chars_dupe_7grams": 0.1750122457742691, "rps_doc_frac_chars_dupe_8grams": 0.17109259963035583, "rps_doc_frac_chars_dupe_9grams": 0.17109259963035583, "rps_doc_frac_chars_top_2gram": 0.01940225064754486, "rps_doc_frac_chars_top_3gram": 0.01293484028428793, "rps_doc_frac_chars_top_4gram": 0.016462519764900208, "rps_doc_books_importance": -1226.5601806640625, "rps_doc_books_importance_length_correction": -1226.5601806640625, "rps_doc_openwebtext_importance": -719.8427124023438, "rps_doc_openwebtext_importance_length_correction": -719.8427124023438, "rps_doc_wikipedia_importance": -480.57574462890625, "rps_doc_wikipedia_importance_length_correction": -480.57574462890625 }, "fasttext": { "dclm": 0.0012294099433347583, "english": 0.9618852138519287, "fineweb_edu_approx": 1.4324382543563843, "eai_general_math": 0.006094989832490683, "eai_open_web_math": 0.0757821798324585, "eai_web_code": 0.00004958999852533452 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "004.6", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
1,424,237,163,424,660,500
Subscribe Family Filter Search Results   Pictures about "table jump" Filter By Sort By • Relevance • Newest • Views • Rating • Comments Search Channels • All Channels • Movie Trailers • Game Trailers • TV Shows • Cute Girls Related Videos Genres   AXE table Video AXE table I built this table for myself but dedicated to my fraternity 5 years ago 68 00   Don't fight a table saw Video Don't fight a table saw my dad got in an arguement with a table saw and lost. But you should see the table saw! 5 years ago 451 00   BP Table Video BP Table Folding bp table complete with 2 blacklights, blacklight cups, and blacklight balls. Took $90 + 6 hours. =) 6 years ago 435 00   Beer pong table Video Beer pong table My roomate and I built this beer pong table. 6 years ago 655 00   Beer Pong Table Video Beer Pong Table THe table isn't complete yet, but it still is the hit of our parties 6 years ago 158 00   Table Top Video Table Top Insert Thought Here 1 year ago 07 00
{ "url": "http://www.break.com/findpix/table-jump/relevance/4/", "source_domain": "www.break.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "56283", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:L7R5OADC5F3A6G3Y5W644J6O4Z5AOAXG", "WARC-Concurrent-To": "<urn:uuid:437bbb25-aeb0-4d25-abd1-f08c07284790>", "WARC-Date": "2013-05-21T17:02:19Z", "WARC-IP-Address": "216.69.227.70", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:WZBKENI6GA7CX7RQIKGSOXPCYMLFWACG", "WARC-Record-ID": "<urn:uuid:fac3004e-2c34-4198-bd3a-6e0c1f3c3aaf>", "WARC-Target-URI": "http://www.break.com/findpix/table-jump/relevance/4/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ecfcd44a-d3cc-44eb-b808-14f4133f12c1>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 24, 25, 40, 41, 43, 44, 72, 73, 83, 84, 92, 93, 107, 118, 128, 139, 152, 153, 169, 170, 187, 206, 224, 237, 252, 253, 275, 276, 298, 299, 313, 314, 379, 380, 402, 438, 439, 467, 468, 560, 561, 584, 605, 606, 619, 620, 732, 733, 756, 784, 785, 805, 806, 855, 856, 879, 907, 908, 928, 929, 1002, 1003, 1026, 1048, 1049, 1063, 1064, 1088, 1089 ], "line_end_idx": [ 24, 25, 40, 41, 43, 44, 72, 73, 83, 84, 92, 93, 107, 118, 128, 139, 152, 153, 169, 170, 187, 206, 224, 237, 252, 253, 275, 276, 298, 299, 313, 314, 379, 380, 402, 438, 439, 467, 468, 560, 561, 584, 605, 606, 619, 620, 732, 733, 756, 784, 785, 805, 806, 855, 856, 879, 907, 908, 928, 929, 1002, 1003, 1026, 1048, 1049, 1063, 1064, 1088, 1089, 1109 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1109, "ccnet_original_nlines": 69, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19117647409439087, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03431373089551926, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.23039215803146362, "rps_doc_frac_unique_words": 0.5243242979049683, "rps_doc_mean_word_length": 4.043243408203125, "rps_doc_num_sentences": 6, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.201926231384277, "rps_doc_word_count": 185, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.13636364042758942, "rps_doc_frac_chars_dupe_6grams": 0.0882352888584137, "rps_doc_frac_chars_dupe_7grams": 0.0882352888584137, "rps_doc_frac_chars_dupe_8grams": 0.0882352888584137, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.053475938737392426, "rps_doc_frac_chars_top_3gram": 0.08689840137958527, "rps_doc_frac_chars_top_4gram": 0.04010694846510887, "rps_doc_books_importance": -74.81930541992188, "rps_doc_books_importance_length_correction": -74.81930541992188, "rps_doc_openwebtext_importance": -41.520626068115234, "rps_doc_openwebtext_importance_length_correction": -33.621681213378906, "rps_doc_wikipedia_importance": -40.394161224365234, "rps_doc_wikipedia_importance_length_correction": -40.394161224365234 }, "fasttext": { "dclm": -0.000007269999969139462, "english": 0.7581536769866943, "fineweb_edu_approx": 0.8543020486831665, "eai_general_math": -0.000007870000445109326, "eai_open_web_math": 0.3446815013885498, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "683.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Firearms and Locksmithing" } }, "secondary": { "code": "796.01", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
236,241,050,479,362,530
Grade I Winner Nine Keys Dead Date Posted: 4/2/2008 1:55:27 PM Last Updated: 4/3/2008 11:13:31 AM Nine Keys, one of the top racemares of 1994, was euthanized March 22 because of foaling complications. The  day before her death, she produced a City Zip   filly. The filly was bred by the Hancock family’s Claiborne Farm and the late Martha F. Gerry and was placed on a nurse mare at Claiborne. Nine Keys, who also was bred by Claiborne and Gerry, was from the first crop by Claiborne stallion Forty Niner and produced from the Key to the Mint mare Clef d’Argent, who was a grade II winner for Gerry’s Lazy F Ranch. Nine Keys’ third dam was the Lazy F blue hen mare Marche Lorraine. Trained by Angel Penna Jr., Nine Keys won or placed in all 11 races. Her big win came at 4 in the 1994 Apple Blossom Handicap (gr. I) at Oaklawn Park. That year, she also won that year’s Rampart Handicap (gr. II), plus the Monmouth Park Breeders’ Cup Handicap (gr. III) in her final start. At 3, she captured the Honey Bee Handicap (gr. III). Nine Keys retired with seven wins and earnings of $637,320. She produced six named foals, two of which were winners. Copyright © 2013 The Blood-Horse, Inc. All Rights Reserved. SUBSCRIBE to The Blood-Horse magazine TODAY!
{ "url": "http://www.bloodhorse.com/horse-racing/articles/44373/grade-i-winner-nine-keys-dead/print", "source_domain": "www.bloodhorse.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "7362", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:V27XY3HIC767IHDKQIAQ3ZU2U5O7DWNR", "WARC-Concurrent-To": "<urn:uuid:4ce342e8-3a88-4aa5-ade3-e2f1ff41f5b5>", "WARC-Date": "2013-05-24T04:35:37Z", "WARC-IP-Address": "216.7.139.147", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:CRQDNOMXZIOCIVERWP7ZSTCPYFZFANJ6", "WARC-Record-ID": "<urn:uuid:3dcbcfd5-f20a-4a5b-9b79-722ac3f875a0>", "WARC-Target-URI": "http://www.bloodhorse.com/horse-racing/articles/44373/grade-i-winner-nine-keys-dead/print", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e6a2f253-09e1-4874-87e6-4081193e9f5b>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 1, 31, 64, 99, 100, 395, 396, 684, 685, 1028, 1029, 1146, 1147, 1148, 1149, 1209, 1210 ], "line_end_idx": [ 1, 31, 64, 99, 100, 395, 396, 684, 685, 1028, 1029, 1146, 1147, 1148, 1149, 1209, 1210, 1254 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1254, "ccnet_original_nlines": 17, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.26013514399528503, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0439189188182354, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2668918967247009, "rps_doc_frac_unique_words": 0.6160714030265808, "rps_doc_mean_word_length": 4.308035850524902, "rps_doc_num_sentences": 20, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.669537544250488, "rps_doc_word_count": 224, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.041450779885053635, "rps_doc_frac_chars_top_3gram": 0.01865285076200962, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -105.33366394042969, "rps_doc_books_importance_length_correction": -105.33366394042969, "rps_doc_openwebtext_importance": -67.16551208496094, "rps_doc_openwebtext_importance_length_correction": -67.16551208496094, "rps_doc_wikipedia_importance": -37.42981719970703, "rps_doc_wikipedia_importance_length_correction": -37.42981719970703 }, "fasttext": { "dclm": 0.00016803000471554697, "english": 0.9584243893623352, "fineweb_edu_approx": 1.2740873098373413, "eai_general_math": 0.0029113299679011106, "eai_open_web_math": 0.23259812593460083, "eai_web_code": 0.000005129999863129342 } }
{ "free_decimal_correspondence": { "primary": { "code": "799.2", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Hunting, Fishing, and Shooting" } }, "secondary": { "code": "636.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Domestic animals and Pets" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
5,475,678,472,079,109,000
Surfside Sports  Orders Over $49 Ship Free In USA Free 3 Day Shipping Free 3-day shipping On Orders Over $49 (USA Only) Cart is empty. Visit us at Facebook! Visit us at Twitter! Visit us at YouTube.com! Surfside Sports Blog CALL 1(866)SK8-SURF  We ship worldwide!  details >>> All Products > Womens > GNU SNOWBOARDS B-NICE 151 BTX   Change Colors: GNU SNOWBOARDS B-NICE 151 BTX SKU: 212165 Price: $399.95 On Sale For Sale: $239.97    You Save: $159.98 (40%)   Size ChartView Size Chart quantity    No Sales Tax (excl. CA) The B-Nice simply makes riding easier. It’s Banana at it’s best for entry level rippers.It floats in powder like a dream, carves the hardpack and ice and is loose for freestyle fun in the park and all over the mountain. Each of these graphics are visual expressions of the feeling you get when you have the run of your life. Fun, flowing, effortless, and explosive! A perfect combo of banana and Magne-Traction with a friendly flex makes everyone feel Nice. Ridden by true Gnu friends Meg Pugh and Kelly Underwood.     International Ordering We accept PayPal and major credit cards McAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams Online Payments SSL
{ "url": "http://www.surfsidesports.com/ls-d-womens-p-3/p-109815-gnu-snowboards-b-nice-151-btx.aspx", "source_domain": "www.surfsidesports.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "46618", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SLO6QO4TJTVLYGZETZWYSYA6MLRA7FFT", "WARC-Concurrent-To": "<urn:uuid:ffcd25f9-8186-4c0c-ac1d-6489fbd48ea9>", "WARC-Date": "2013-05-22T01:25:21Z", "WARC-IP-Address": "174.136.93.154", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:UJAMJPQ6OBE5YDXM6RW6XXJ564FACIRY", "WARC-Record-ID": "<urn:uuid:998e8d7d-a1ba-4784-8f8a-8444a16c900e>", "WARC-Target-URI": "http://www.surfsidesports.com/ls-d-womens-p-3/p-109815-gnu-snowboards-b-nice-151-btx.aspx", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d561a5b3-6c87-4055-893f-e57f21fa2927>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 71, 72, 92, 122, 137, 159, 180, 205, 226, 279, 333, 335, 350, 380, 392, 407, 419, 433, 461, 488, 497, 500, 513, 524, 1039, 1041, 1043, 1066, 1106, 1225, 1241 ], "line_end_idx": [ 16, 17, 71, 72, 92, 122, 137, 159, 180, 205, 226, 279, 333, 335, 350, 380, 392, 407, 419, 433, 461, 488, 497, 500, 513, 524, 1039, 1041, 1043, 1066, 1106, 1225, 1241, 1244 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1244, "ccnet_original_nlines": 33, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.20072993636131287, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.07299269735813141, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2554744482040405, "rps_doc_frac_unique_words": 0.70243901014328, "rps_doc_mean_word_length": 4.697560787200928, "rps_doc_num_sentences": 18, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.814802169799805, "rps_doc_word_count": 205, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.04984423890709877, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.021806849166750908, "rps_doc_frac_chars_top_3gram": 0.028037380427122116, "rps_doc_frac_chars_top_4gram": 0.04361370950937271, "rps_doc_books_importance": -117.90980529785156, "rps_doc_books_importance_length_correction": -117.90980529785156, "rps_doc_openwebtext_importance": -62.104942321777344, "rps_doc_openwebtext_importance_length_correction": -62.104942321777344, "rps_doc_wikipedia_importance": -37.514583587646484, "rps_doc_wikipedia_importance_length_correction": -37.514583587646484 }, "fasttext": { "dclm": 0.000009059999683813658, "english": 0.795006275177002, "fineweb_edu_approx": 0.7093160152435303, "eai_general_math": 0.00000965999970503617, "eai_open_web_math": 0.020147260278463364, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.97", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
5,127,405,728,248,598,000
Posts tagged with John Taylor... Part 2… check out part 3 over at http://www.revolvermag.com/news/exclusive-young-guns-share-video-blog-part-3.html if anyone missed the video blogs from our last tour, here’s part 1 Spent most of the day in Munich waiting for our washing to dry. Snow! John at Niagara Falls. John at Niagara Falls. got a limo to dinner because got a limo to dinner because Sorry for the bombardment - Some more NYC japes. I’m almost in a photo for once. Made a little watermark too cuz everyone keeps taking my photos, re-editing them to some seriously wacky colours and putting their own watermarks on. This way it’ll take them approximately 30 more seconds to edit mine out.  inside the kaleidoscope  a few more… just got the fisheye so i’m rinsing it a bit at the mo Gonna stick all my photos from the US on our Facebook every couple of days. Here’s a few from our first day in NYC More from Japan!
{ "url": "http://frasersbogusjourney.tumblr.com/tagged/John-Taylor", "source_domain": "frasersbogusjourney.tumblr.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "33889", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:DQMZYWWZIL5DXFRQL33ONSL6WFO4A2SH", "WARC-Concurrent-To": "<urn:uuid:54788399-d3ff-48de-8a21-93afe9be2124>", "WARC-Date": "2013-05-23T05:35:17Z", "WARC-IP-Address": "66.6.40.39", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:PGLUO2WFNGJOWC7NNGZ4GE65KIXBXK7W", "WARC-Record-ID": "<urn:uuid:47fe138f-de7c-4f61-aced-0d70f5f2a143>", "WARC-Target-URI": "http://frasersbogusjourney.tumblr.com/tagged/John-Taylor", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:90c57853-89e6-419a-94c3-3634dd1556c7>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 33, 34, 42, 43, 150, 151, 218, 219, 289, 290, 313, 314, 337, 338, 367, 368, 397, 398, 703, 704, 729, 730, 797, 798, 913, 914 ], "line_end_idx": [ 33, 34, 42, 43, 150, 151, 218, 219, 289, 290, 313, 314, 337, 338, 367, 368, 397, 398, 703, 704, 729, 730, 797, 798, 913, 914, 930 ] }
{ "red_pajama_v2": { "ccnet_original_length": 930, "ccnet_original_nlines": 26, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4272300601005554, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.018779339268803596, "rps_doc_frac_lines_end_with_ellipsis": 0.07407406717538834, "rps_doc_frac_no_alph_words": 0.18779343366622925, "rps_doc_frac_unique_words": 0.6603773832321167, "rps_doc_mean_word_length": 4.553459167480469, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0.014084509573876858, "rps_doc_unigram_entropy": 4.469737529754639, "rps_doc_word_count": 159, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.0635359063744545, "rps_doc_frac_chars_dupe_6grams": 0.0635359063744545, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.019337020814418793, "rps_doc_frac_chars_top_3gram": 0.03591160103678703, "rps_doc_frac_chars_top_4gram": 0.04972375929355621, "rps_doc_books_importance": -103.89136505126953, "rps_doc_books_importance_length_correction": -103.89136505126953, "rps_doc_openwebtext_importance": -46.91801452636719, "rps_doc_openwebtext_importance_length_correction": -35.11963653564453, "rps_doc_wikipedia_importance": -32.70857620239258, "rps_doc_wikipedia_importance_length_correction": -32.70857620239258 }, "fasttext": { "dclm": 0.0002208399964729324, "english": 0.8921104073524475, "fineweb_edu_approx": 0.7445120811462402, "eai_general_math": 0.0053631700575351715, "eai_open_web_math": 0.16522902250289917, "eai_web_code": 0.00001478000012866687 } }
{ "free_decimal_correspondence": { "primary": { "code": "770.0", "labels": { "level_1": "Arts", "level_2": "Photography", "level_3": "" } }, "secondary": { "code": "910.0", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
3,200,370,051,744,041,500
Container Top Wednesday, May 22, 2013   Cleveland Cavaliers Tuesday's thoughts By Jason Lloyd Published: February 14, 2011 Just filed my story for tomorrow's paper. With the Cavs off today and little left over material, I went the route that I've been thinking about for a couple of weeks now: Who is worth keeping on this roster when the Cavs put it back together again? And by put it back together, I mean legitimately contend for a championship. I don't see anyway they do that in under five years, so who off this roster is worth keeping for at least the next five years? I came up with four names: J.J. Hickson, Daniel Gibson, Ramon Sessions and Christian Eyenga. And that's it. Without going into detail (you can read the column yourself tomorrow), Gibson and Sessions would make nice complementary (bench) pieces to any title team. Hickson has proved over the last month he can be a legitimate starter on a contender and Eyenga could go either way, we simply haven't seen enough of him yet. Agree or disagree? Anyone on this team you think is a blatant omission and needs to be added? Any of those four you can't stand? Tell me about it in the comments below and see how much we agree/disagree.
{ "url": "http://www.ohio.com/blogs/cleveland-cavaliers/cleveland-cavaliers-1.275356/tuesday-s-thoughts-1.276635", "source_domain": "www.ohio.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "141625", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MDUHGIMTXG2NHSQ7EWZ2HVB3UYXGDMED", "WARC-Concurrent-To": "<urn:uuid:955a4583-d2ac-4a38-9d08-9c3c6a898c22>", "WARC-Date": "2013-05-22T19:42:59Z", "WARC-IP-Address": "205.149.129.204", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:HDCYU5BJRPXVPMWGUHK22CCDRJPQY75Q", "WARC-Record-ID": "<urn:uuid:54df3bf0-bee6-48a7-a95f-5acb410b2427>", "WARC-Target-URI": "http://www.ohio.com/blogs/cleveland-cavaliers/cleveland-cavaliers-1.275356/tuesday-s-thoughts-1.276635", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b0dc33bf-a2e8-4b8d-9498-7a849aedbb46>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 14, 38, 40, 60, 61, 80, 81, 125, 126, 375, 376, 580, 581, 689, 690, 1004, 1005 ], "line_end_idx": [ 14, 38, 40, 60, 61, 80, 81, 125, 126, 375, 376, 580, 581, 689, 690, 1004, 1005, 1208 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1208, "ccnet_original_nlines": 17, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4597701132297516, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.026819920167326927, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.16091954708099365, "rps_doc_frac_unique_words": 0.6962617039680481, "rps_doc_mean_word_length": 4.425233840942383, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.844380855560303, "rps_doc_word_count": 214, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.014783529564738274, "rps_doc_frac_chars_top_3gram": 0.0295670498162508, "rps_doc_frac_chars_top_4gram": 0.035902850329875946, "rps_doc_books_importance": -115.33158874511719, "rps_doc_books_importance_length_correction": -115.33158874511719, "rps_doc_openwebtext_importance": -54.738521575927734, "rps_doc_openwebtext_importance_length_correction": -54.737613677978516, "rps_doc_wikipedia_importance": -41.992366790771484, "rps_doc_wikipedia_importance_length_correction": -41.992366790771484 }, "fasttext": { "dclm": 0.0011138300178572536, "english": 0.9682948589324951, "fineweb_edu_approx": 0.8232158422470093, "eai_general_math": 0.008274969644844532, "eai_open_web_math": 0.1593037247657776, "eai_web_code": 0.00007688999903621152 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.33401", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "14", "label": "News Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-4,885,663,808,683,336,000
• Customer Reviews This product has not been reviewed. Be the first to write a review. Ros Hommerson Women's Flavor Mary Jane Shoes Item #: 81554 $115.95 • 6 • 6.5 • 7 • 7.5 • 8 • 8.5 • 9 • 9.5 • 10 • 11 • 12 • 13 • N/2A (Narrow) • M/B (Medium) • W/C-D (Wide) • WW/E-2E (Wide Wide) Add To Cart • Expedited shipping not available • Item cannot be shipped to a P.O. Box. Share with friends Ros Hommerson Women’s Flavor Mary Jane Shoes infuse a classic style with cushioned comfort This casual Mary Jane will satisfy your craving for comfort! The latex foam cushioned footbed works with the impact-resistant outsole to absorb shock and soften your steps. Plus, the foam is antifungal and antibacterial, promoting a fresh, odor-free foot environment. The premium leather upper is detailed with swirly stitching and a decorative button on the instep strap, which features easy hook-and-loop adjustability for a customized fit. Features & Benefits of Ros Hommerson Women’s Flavor Mary Jane Shoes: • Premium leather upper provides breathable comfort. • Antifungal, antibacterial latex foam footbed cushions from heel to toe, while helping keep feet fresh. • Combination last (shape) “hugs” the heel and gives toes room to move. • Durable, hi-flex rubber outsole offers flexibility and sure-footed traction. Other Important Information About Ros Hommerson Women’s Flavor Mary Jane Shoes: • Material Content: leather upper, fabric upper lining and sockliner, latex foam footbed, fiber board midsole, steel shank, rubber outsole. • Care: Buff with a leather cleaner or polish. Wipe off with a dry cloth. • Imported.
{ "url": "http://www.footsmart.com/P-Ros-Hommerson-Womens-Flavor-Mary-Jane-Shoes-81554.aspx", "source_domain": "www.footsmart.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "128589", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MFG7SNXLBRWSMJTOODCCVHHWYXBS6OYY", "WARC-Concurrent-To": "<urn:uuid:22c7b01d-e82e-4a08-98cd-5e4a0013546f>", "WARC-Date": "2013-05-24T01:17:29Z", "WARC-IP-Address": "23.0.49.34", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:AFR5VLX6AYZVU7H6XVSGU27TLXQYGTIU", "WARC-Record-ID": "<urn:uuid:c5e6f49c-3412-4760-bbcc-064a06e2f17f>", "WARC-Target-URI": "http://www.footsmart.com/P-Ros-Hommerson-Womens-Flavor-Mary-Jane-Shoes-81554.aspx", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:02276b18-b5b4-4f39-81de-4d2c88859f91>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 21, 57, 89, 90, 135, 136, 150, 158, 164, 172, 178, 186, 192, 200, 206, 214, 221, 228, 235, 242, 260, 277, 294, 318, 319, 331, 368, 410, 429, 520, 963, 964, 1033, 1034, 1089, 1196, 1270, 1351, 1352, 1432, 1433, 1575, 1651 ], "line_end_idx": [ 21, 57, 89, 90, 135, 136, 150, 158, 164, 172, 178, 186, 192, 200, 206, 214, 221, 228, 235, 242, 260, 277, 294, 318, 319, 331, 368, 410, 429, 520, 963, 964, 1033, 1034, 1089, 1196, 1270, 1351, 1352, 1432, 1433, 1575, 1651, 1664 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1664, "ccnet_original_nlines": 43, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1759776473045349, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.033519551157951355, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.31843575835227966, "rps_doc_frac_unique_words": 0.5917602777481079, "rps_doc_mean_word_length": 4.764044761657715, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0.0027932999655604362, "rps_doc_unigram_entropy": 4.678263187408447, "rps_doc_word_count": 267, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.09119497239589691, "rps_doc_frac_chars_dupe_6grams": 0.09119497239589691, "rps_doc_frac_chars_dupe_7grams": 0.09119497239589691, "rps_doc_frac_chars_dupe_8grams": 0.061320748180150986, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.031446538865566254, "rps_doc_frac_chars_top_3gram": 0.04402516037225723, "rps_doc_frac_chars_top_4gram": 0.05974842980504036, "rps_doc_books_importance": -135.9197998046875, "rps_doc_books_importance_length_correction": -122.60051727294922, "rps_doc_openwebtext_importance": -72.28490447998047, "rps_doc_openwebtext_importance_length_correction": -72.28490447998047, "rps_doc_wikipedia_importance": -36.48302459716797, "rps_doc_wikipedia_importance_length_correction": -24.966760635375977 }, "fasttext": { "dclm": -0.000008580000212532468, "english": 0.8077398538589478, "fineweb_edu_approx": 0.9242420196533203, "eai_general_math": 0.0001056199980666861, "eai_open_web_math": 0.1560712456703186, "eai_web_code": -0.000009540000064589549 } }
{ "free_decimal_correspondence": { "primary": { "code": "646.722", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Clothing and dress, Fashion, and Beauty, Personal" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-3,443,652,676,167,860,000
LogoArt Toronto Maple Leafs Crystal 2.5" Opening Bangle Bracelet - ESPN Shop Alternate Views You may also like... • Reebok Toronto Maple Leafs Dion Phaneuf Women's T-shirt - ESPN Shop Reebok Toronto Maple Leafs Dion Phaneuf Women's T-shirt Price: $24.99 • Calhoun Toronto Maple Leafs Women's Lounge Shorts - ESPN Shop Calhoun Toronto Maple Leafs Women's Lounge Shorts Our Price: $23.99 List Price: $24.99* LogoArt Toronto Maple Leafs Crystal 2.5" Opening Bangle Bracelet Item no: 3901909 Price: $34.99 Add to cart form Color : Toronto Maple Leafs add-to-cart add-to-wishlist email-a-friend Bill me later AVAILABILITY: In stock, leaves warehouse in 2 - 3 full bus. days. - (Details) Standard Ground Service Available (normally $5.99) - (Details) Note: Shipping restrictions may apply. Remember, no sales tax except in FL, IL, KY, NY, OH, PA and TX. Product Information An armful of style is instantly yours with the NHL® crystal bangle bracelets from LogoArt®. Each silver-plated brass bangle bracelet is accented with a team charm. The alloy team logo charm is spin casted and hand polished, while a beautiful Preciosa crystal adds a splash of team spirit. Product Features Features • Set of 3 silver-plated brass bangle bracelets with E-coating • 3 charms: team-colored Preciosa crystal, alloy team name, and alloy team logo • Graphic charms are constructed using metal molds and injected plastic patterns for intricate detail • Officially licensed • Made in USA Customer reviews Already own it? Write a Review (Powered by PowerReviews.com) recently viewed
{ "url": "http://www.espnshop.com/product/index.jsp?productId=3901909", "source_domain": "www.espnshop.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "112127", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UH6BR5CQHXS35L6HJWDCXVKAV4434NIP", "WARC-Concurrent-To": "<urn:uuid:b72391c5-53ae-4c5f-b425-10071499d25b>", "WARC-Date": "2013-05-25T22:13:50Z", "WARC-IP-Address": "206.16.220.40", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:GGSKTHTYKZZM2EBAEY53MJA5AS5VDSOZ", "WARC-Record-ID": "<urn:uuid:dac388fb-6b36-4f96-aedd-149e89774480>", "WARC-Target-URI": "http://www.espnshop.com/product/index.jsp?productId=3901909", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:663a30ab-2a56-448c-83d0-7dde69e561a1>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 77, 78, 94, 95, 116, 117, 259, 393, 417, 418, 483, 484, 515, 516, 533, 561, 604, 618, 696, 697, 698, 761, 762, 801, 802, 803, 867, 868, 888, 889, 1178, 1179, 1196, 1197, 1206, 1207, 1272, 1354, 1458, 1482, 1498, 1499, 1516, 1517, 1578, 1579 ], "line_end_idx": [ 77, 78, 94, 95, 116, 117, 259, 393, 417, 418, 483, 484, 515, 516, 533, 561, 604, 618, 696, 697, 698, 761, 762, 801, 802, 803, 867, 868, 888, 889, 1178, 1179, 1196, 1197, 1206, 1207, 1272, 1354, 1458, 1482, 1498, 1499, 1516, 1517, 1578, 1579, 1594 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1594, "ccnet_original_nlines": 46, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1483679562807083, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04747774079442024, "rps_doc_frac_lines_end_with_ellipsis": 0.021276600658893585, "rps_doc_frac_no_alph_words": 0.2997032701969147, "rps_doc_frac_unique_words": 0.6176470518112183, "rps_doc_mean_word_length": 5.197478771209717, "rps_doc_num_sentences": 18, "rps_doc_symbol_to_word_ratio": 0.0029673599638044834, "rps_doc_unigram_entropy": 4.7748308181762695, "rps_doc_word_count": 238, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.22958770394325256, "rps_doc_frac_chars_dupe_6grams": 0.22958770394325256, "rps_doc_frac_chars_dupe_7grams": 0.22958770394325256, "rps_doc_frac_chars_dupe_8grams": 0.16168148815631866, "rps_doc_frac_chars_dupe_9grams": 0.08730799704790115, "rps_doc_frac_chars_top_2gram": 0.0679062232375145, "rps_doc_frac_chars_top_3gram": 0.09620048850774765, "rps_doc_frac_chars_top_4gram": 0.03880355879664421, "rps_doc_books_importance": -168.85069274902344, "rps_doc_books_importance_length_correction": -155.32603454589844, "rps_doc_openwebtext_importance": -91.8153305053711, "rps_doc_openwebtext_importance_length_correction": -91.8153305053711, "rps_doc_wikipedia_importance": -69.51435089111328, "rps_doc_wikipedia_importance_length_correction": -55.7758903503418 }, "fasttext": { "dclm": 0.000015139999959501438, "english": 0.812410831451416, "fineweb_edu_approx": 0.4558473825454712, "eai_general_math": 0.00005794000026071444, "eai_open_web_math": 0.03674739971756935, "eai_web_code": -0.0000040499999158782884 } }
{ "free_decimal_correspondence": { "primary": { "code": "745.5914", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Decorative arts" } }, "secondary": { "code": "796.960971", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
853,202,678,758,013,800
Science advice to MPs faces cuts In a letter organised by CaSE today, leading figures from the science and engineering policy community have warned that potential budget cuts to the Parliamentary Office for Science and Technology (POST) threaten the quality of scientific advice in Westminster. Most parliamentarians do not have a scientific or technological background, and yet science and technology issues are increasingly integral to policy, across a wide range of subject areas.  POST helps parliamentarians to examine such issues effectively by writing briefings, organising events and helping politicians engage with the scientific community. However, as part of a savings programme being introduced across the House of Commons,  the office is facing a 17% cut in its budget, or £98,000, by 2014/15. Taken alongside a recent voluntary reduction of 7%, it means that POST could potentially lose almost a quarter of its budget in a relatively short period of time. Such large cuts threaten to undermine the quality, scope and independence of the scientific and technological advice on offer. Commenting on the letter, CaSE Director Imran Khan said: “POST provides a crucial service in ensuring our Parliamentarians make informed decisions on policy and are fully engaged with the scientific community. Disproportionate cuts like those being considered could have far-reaching implications on policy making and, ultimately, the future health and prosperity of the the UK.” “CaSE calls upon the House of Commons to sustain and support POST by making clear that it has a valued and adequately-funded future inside Parliament.” CaSE’s letter has been sent to the House of Commons Commission – the body responsible for the administration and services of the House – and its Chair, Speaker John Bercow MP. It has also been copied to the leaders of all three main political parties and their science spokespersons. You can read the full letter here. This entry was posted in Highlights and tagged , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL. One Comment 1. Posted 08/11/2012 at 19:11 | Permalink Putting forth a petition is very welcome, in that it asks the public to express its support; however in order for the public to be appreciative of science it has to be made aware first and this can only be achieved if the public is engaged in a two-way conversation with the scientific community. My recipe for tackling this problem at its roots is in a paper I titled “Who cares about physics today? A marketing strategy for the survival of fundamental science and the benefit of society”: it is available at http://arxiv.org/abs/1210.0082, I hope you will find it interesting. For a more condensed treatment of how to prevent budget cuts to affect science, in Europe as well as in the US, you may want to take a look at this entry on my blog http://drcinnamon.blogspot.com/2012/10/sequestration-cuts-in-europe-this.html. Best, Umberto Cannella, PhD Postdoctoral Research Assistant Maryland Center for Fundamental Physics Rm. 4109, J. S. Toll Physics Bldg University of Maryland College Park, Maryland 20742 One Trackback Post a Comment Your email is never published nor shared. Required fields are marked * * * You may use these HTML tags and attributes <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> • Sign Up Read our blog Join CaSE Read our blog • RSS Latest CaSE Tweets • Archives • Meta
{ "url": "http://sciencecampaign.org.uk/?p=11501", "source_domain": "sciencecampaign.org.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "35827", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2IUZGWC3LRK2XAVYSW327LKDGSIZRJM3", "WARC-Concurrent-To": "<urn:uuid:b17399a6-4127-4128-a00c-29aa385fa186>", "WARC-Date": "2013-06-19T18:23:39Z", "WARC-IP-Address": "89.145.89.80", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:LK4AOAXMQTT6GTBWMY4CQZLV4W74GFYO", "WARC-Record-ID": "<urn:uuid:c335acc8-f128-4c6b-b336-58c98be167cb>", "WARC-Target-URI": "http://sciencecampaign.org.uk/?p=11501", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ec259abf-8d78-41cc-8689-2135f598d65c>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 33, 34, 296, 297, 652, 653, 1100, 1101, 1158, 1159, 1482, 1483, 1635, 1636, 1955, 1956, 2083, 2084, 2096, 2097, 2141, 2142, 2725, 2973, 2974, 2984, 2985, 3011, 3047, 3091, 3129, 3156, 3189, 3190, 3204, 3205, 3220, 3221, 3292, 3293, 3295, 3297, 3298, 3493, 3494, 3495, 3507, 3508, 3509, 3527, 3528, 3556, 3557, 3584, 3585, 3598, 3599 ], "line_end_idx": [ 33, 34, 296, 297, 652, 653, 1100, 1101, 1158, 1159, 1482, 1483, 1635, 1636, 1955, 1956, 2083, 2084, 2096, 2097, 2141, 2142, 2725, 2973, 2974, 2984, 2985, 3011, 3047, 3091, 3129, 3156, 3189, 3190, 3204, 3205, 3220, 3221, 3292, 3293, 3295, 3297, 3298, 3493, 3494, 3495, 3507, 3508, 3509, 3527, 3528, 3556, 3557, 3584, 3585, 3598, 3599, 3607 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3607, "ccnet_original_nlines": 57, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3452722132205963, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.022922640666365623, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19770774245262146, "rps_doc_frac_unique_words": 0.5420393347740173, "rps_doc_mean_word_length": 5.057245254516602, "rps_doc_num_sentences": 30, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.248739242553711, "rps_doc_word_count": 559, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.004244780167937279, "rps_doc_frac_chars_top_3gram": 0.018040329217910767, "rps_doc_frac_chars_top_4gram": 0.02759109064936638, "rps_doc_books_importance": -359.2205810546875, "rps_doc_books_importance_length_correction": -359.2205810546875, "rps_doc_openwebtext_importance": -210.36936950683594, "rps_doc_openwebtext_importance_length_correction": -210.36936950683594, "rps_doc_wikipedia_importance": -161.86819458007812, "rps_doc_wikipedia_importance_length_correction": -161.86819458007812 }, "fasttext": { "dclm": 0.000558910018298775, "english": 0.9227856397628784, "fineweb_edu_approx": 2.10097599029541, "eai_general_math": 0.002882059896364808, "eai_open_web_math": 0.06530653685331345, "eai_web_code": 0.000010609999662847258 } }
{ "free_decimal_correspondence": { "primary": { "code": "328.5", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "Legislative bodies" } }, "secondary": { "code": "501", "labels": { "level_1": "Science and Natural history", "level_2": "", "level_3": "Science — Philosophy" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
4,959,513,078,613,394,000
Maureen and Mike Mansfield Library Digital Collections You've searched: All Collections • All fields: Namens (6 results) Display: 20 • 1983-09-15 Char-Koosta News • 1983-09-15 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Tribal Constitution up for revision, but few seem to care; Two cases uphold Tribal taxation authority; Stevensville pilgrimage...; Council puts the skids to nepotism; The budget: Fiscal year 1984; SKC registration is October 3 and 4; Tribal members... • 1982-11-15 Char-Koosta News • 1982-11-15 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Nine-year-old case is over: Tribal sovereignty vindicated; No dividend next month; McDonald gets 43% of the votes; Small-scale hydropower activity picks up; Head lice make lousy pets; In the days of our grandfathers: Sophie: career woman, Tobacco... • 1982-08-15 Char-Koosta News • 1982-08-15 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Lake County votes to support Namen's case; Water ordinance is law -- maybe; Federal agency delegates permit power; Councilman disputes local news stories; Notice to all Tribal employees with Connecticut General Insurance: you're not supposed to... • 1979-11-01 Char-Koosta News • 1979-11-01 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Recreation permits and I.D. cards; Dixon J.O.M. dispute; Third annual War Dance Championships; Brief outline of court cases; HEW awards grants; Wilderness Areas to be on Ballot; Mitchell found guilty; Tribal Reorganization -- Constituion, II; Leo... • 1979-10-01 Char-Koosta News • 1979-10-01 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Federal Court rules on Flathead cases; NCAI to meet in October; Vallee named H.I.P. manager; Anniversary celebration a success; Housing Authority, Ronan reach agreement; South Dakota firm announces A/V training; Para-legal services expand; Tribe... • 1973-09-15 Char-Koosta News • 1973-09-15 Char-Koosta News • Salish Indians --Newspapers.; Kutenai Indians --Newspapers.; Pablo (Montana) --Newspapers.; Kootenai Indians • Logging Truck Flattens Home of Lucy Parker; Pollmann Innocent But Permit Law Is Upheld; Tribe Sues For Lake Bottom; BIA Looking For New Commissioner; JOM Committees Slate Indian Class Programs; Reservation-wide JOM dinner; Forest Open But Still... Coming soon This content is not yet available. Please check back.   QuickView Display a larger image and more item information when the pointer pauses over a thumbnail on off   Layout options: Thumbnail with title Grid with smaller thumbnails and more detail Select the collections to add or remove from your search A B C D E F G H I J K L M N O P Q R S T U V W X Y Z   OK
{ "url": "http://content.lib.umt.edu/cdm/search/searchterm/Namens/mode/all/order/subjec", "source_domain": "content.lib.umt.edu", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "88503", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IDTXYXNZ2GYDLTEPISOV6HTZ3LIFQAKH", "WARC-Concurrent-To": "<urn:uuid:e7f609d0-fa6b-434c-931f-83f22e944166>", "WARC-Date": "2013-05-24T07:42:20Z", "WARC-IP-Address": "150.131.193.84", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:IEETJOLW2BKAGA65HJVJQDBQ52B4DMKN", "WARC-Record-ID": "<urn:uuid:2f7b3c63-5fa3-4033-b003-a560965062f5>", "WARC-Target-URI": "http://content.lib.umt.edu/cdm/search/searchterm/Namens/mode/all/order/subjec", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c8221f47-3f46-4213-aadf-ff3ed62bc4ae>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 55, 56, 73, 74, 90, 113, 125, 126, 127, 128, 140, 141, 175, 176, 210, 211, 326, 327, 585, 619, 620, 654, 655, 770, 771, 1027, 1061, 1062, 1096, 1097, 1212, 1213, 1467, 1501, 1502, 1536, 1537, 1652, 1653, 1909, 1943, 1944, 1978, 1979, 2094, 2095, 2350, 2384, 2385, 2419, 2420, 2535, 2536, 2790, 2802, 2803, 2857, 2858, 2860, 2861, 2871, 2872, 2962, 2969, 2971, 2972, 2988, 2989, 3010, 3055, 3112, 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, 3130, 3132, 3134, 3136, 3138, 3140, 3142, 3144, 3146, 3148, 3150, 3152, 3154, 3156, 3158, 3160, 3162, 3164, 3166 ], "line_end_idx": [ 55, 56, 73, 74, 90, 113, 125, 126, 127, 128, 140, 141, 175, 176, 210, 211, 326, 327, 585, 619, 620, 654, 655, 770, 771, 1027, 1061, 1062, 1096, 1097, 1212, 1213, 1467, 1501, 1502, 1536, 1537, 1652, 1653, 1909, 1943, 1944, 1978, 1979, 2094, 2095, 2350, 2384, 2385, 2419, 2420, 2535, 2536, 2790, 2802, 2803, 2857, 2858, 2860, 2861, 2871, 2872, 2962, 2969, 2971, 2972, 2988, 2989, 3010, 3055, 3112, 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, 3130, 3132, 3134, 3136, 3138, 3140, 3142, 3144, 3146, 3148, 3150, 3152, 3154, 3156, 3158, 3160, 3162, 3164, 3166, 3168 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3168, "ccnet_original_nlines": 98, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10122699290513992, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.06748466193675995, "rps_doc_frac_lines_end_with_ellipsis": 0.060606058686971664, "rps_doc_frac_no_alph_words": 0.3527607321739197, "rps_doc_frac_unique_words": 0.5968109369277954, "rps_doc_mean_word_length": 5.416856288909912, "rps_doc_num_sentences": 36, "rps_doc_symbol_to_word_ratio": 0.010736200027167797, "rps_doc_unigram_entropy": 5.1132001876831055, "rps_doc_word_count": 439, "rps_doc_frac_chars_dupe_10grams": 0.25231286883354187, "rps_doc_frac_chars_dupe_5grams": 0.33305299282073975, "rps_doc_frac_chars_dupe_6grams": 0.25231286883354187, "rps_doc_frac_chars_dupe_7grams": 0.25231286883354187, "rps_doc_frac_chars_dupe_8grams": 0.25231286883354187, "rps_doc_frac_chars_dupe_9grams": 0.25231286883354187, "rps_doc_frac_chars_top_2gram": 0.07064759731292725, "rps_doc_frac_chars_top_3gram": 0.07569386065006256, "rps_doc_frac_chars_top_4gram": 0.05298570170998573, "rps_doc_books_importance": -272.2897033691406, "rps_doc_books_importance_length_correction": -272.2897033691406, "rps_doc_openwebtext_importance": -150.8663787841797, "rps_doc_openwebtext_importance_length_correction": -150.8663787841797, "rps_doc_wikipedia_importance": -124.02176666259766, "rps_doc_wikipedia_importance_length_correction": -124.02176666259766 }, "fasttext": { "dclm": 0.000002739999899858958, "english": 0.6886823773384094, "fineweb_edu_approx": 1.4910892248153687, "eai_general_math": 0.000002499999936844688, "eai_open_web_math": 0.1335763931274414, "eai_web_code": -0.00000810999972600257 } }
{ "free_decimal_correspondence": { "primary": { "code": "978.00497", "labels": { "level_1": "History and Geography", "level_2": "America and North America", "level_3": "" } }, "secondary": { "code": "342.73089", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Constitutional law and Comparative government" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,073,856,002,701,084,000
HOME > TRAIL GUIDES > ILLINOIS > DOUBLE TRACK Double Track Location: Wasco, Illinois Ride Type: Out and Back Trail Type: not specified Distance: 1.50 miles (2.41 KM) Duration: not specified. Elevation Gain: 30 Feet (9 Meters) Climbing: Rolling Terrain Skill Level: Weekend Warriors User Density: not specified. Trail Description: Well this trail is the best I could find around the Wasco/ west stc area its not that long but it can be an escape from the "great western trail" which it runs next to and is its entrance and exit, there is one creek crossing, and i would suggest being in a low gear while doing it because the entrance/exit of the creek can be steep, and when you cross the creek the trail goes on for a short short while and then you end up in a field, basically if you head north you might hit empire rd. but i believe it is private property you ride on, so i usually turn around, if you have gotten this far you will probably have realized there are some BMX jumps that you ride through. Some of the jumps can be fun but some i wouldn't recommend to local mountain bikers, unless you have some freestyle experience, or you are a bmx rider, although the burms are fun. Ok, there are two ways out of this place, you can go back the way you came, and remember to take the same route, or you can continue back to where you came in from the east, the second way is when you get to the "jumps" to take a right, and follow any path that heads south, the most direct path is the one closest to the west, you will know you are on this trail when you merge with another trail that runs east to west and has major errosion. During this merge you want to keep left and then at the next trail you will meet, that runs north south, you go right down the hill and to the great western trail, to get out (coming from the east) you must make a left (coming from the west) you make a right. How to get there: Coming from the east you can go two ways, but you must first be on route 64, you can either take a right at Burlington road, follow that turn onto Lafox rd and then go straight, do not turn left and you will be on brown road drive up the hill and past the turn there is a bike path and a small gravel place to park on your left, you are going to go on the path heading west (opposite if the direction your car is) for about 1/8 to 1/4 of a mile until you get to an entrance that you might not see unless you are on the watch, the entrance is on your right. The second way to get here is to continue on 64 without turning on Burlington road, past the town of Wasco to brown road, slightly before the "silverado" resturaunt you are going to make a right turn on this road, and go until you see a bike path, if you have gone through a sharp turn you have gone to far, there is a small gravel parking area on your right, and you will want to go to the west on the bike path, away from Wasco, and where you parked. The alternative way to get here is from the west, you are goin to want to be on route 64, and find hansen road which is after a gas station and some homes, go until you see a bike path, and there should be a gravel parking lot on your right, park there and head east, for about 3-4 miles, where on your left will be a small trail that goes up and if you continue for another .5 of a mile you will be at brown road and you can follow the same directions above. Additional Notes: Some local paintballers come here from time to time, and usually litter, no harm done.
{ "url": "http://www.dirtworld.com/trails/printerfriendly.asp?id=13714", "source_domain": "www.dirtworld.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "7560", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:4765IDI4AUL56WQAYOFYV7IIKF3LMRVM", "WARC-Concurrent-To": "<urn:uuid:7b8452dc-1e61-4efe-961d-9290836575d6>", "WARC-Date": "2013-05-18T17:18:06Z", "WARC-IP-Address": "216.211.129.9", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:WLL5WIYHZYYYIUSATBYBQDOSLTALJGNY", "WARC-Record-ID": "<urn:uuid:b196b365-f4e2-4b65-8de6-6bf7c0381083>", "WARC-Target-URI": "http://www.dirtworld.com/trails/printerfriendly.asp?id=13714", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d970acff-1126-4cb9-9079-bba52eea67ba>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 1, 2, 48, 49, 62, 63, 89, 113, 139, 170, 195, 230, 256, 286, 315, 316, 335, 1190, 1191, 1896, 1897, 1915, 3268, 3269, 3386, 3387, 3405 ], "line_end_idx": [ 1, 2, 48, 49, 62, 63, 89, 113, 139, 170, 195, 230, 256, 286, 315, 316, 335, 1190, 1191, 1896, 1897, 1915, 3268, 3269, 3386, 3387, 3405, 3491 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3491, "ccnet_original_nlines": 27, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.5507614016532898, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.011421320028603077, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14086294174194336, "rps_doc_frac_unique_words": 0.35131195187568665, "rps_doc_mean_word_length": 3.9344022274017334, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.880653381347656, "rps_doc_word_count": 686, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.04149685055017471, "rps_doc_frac_chars_dupe_6grams": 0.016302330419421196, "rps_doc_frac_chars_dupe_7grams": 0.016302330419421196, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.015561319887638092, "rps_doc_frac_chars_top_3gram": 0.012226750142872334, "rps_doc_frac_chars_top_4gram": 0.014820300042629242, "rps_doc_books_importance": -353.64166259765625, "rps_doc_books_importance_length_correction": -353.64166259765625, "rps_doc_openwebtext_importance": -225.95909118652344, "rps_doc_openwebtext_importance_length_correction": -225.95909118652344, "rps_doc_wikipedia_importance": -141.75173950195312, "rps_doc_wikipedia_importance_length_correction": -141.75173950195312 }, "fasttext": { "dclm": 0.10281909257173538, "english": 0.9565643072128296, "fineweb_edu_approx": 1.459647536277771, "eai_general_math": 0.20878684520721436, "eai_open_web_math": 0.23245549201965332, "eai_web_code": 0.05760436877608299 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.23", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "977.3", "labels": { "level_1": "History and Geography", "level_2": "America and North America", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-2,633,426,978,589,454,300
Altoona WI Moving Companies Company Name transp Licenses Greatland Transportation Altoona WI movers, Established in 1990, Greatland of St. Croix Falls, Wisconsin has expanded its customer base and increased its sales yearly. This accomplish... US DOT: 494757 DOT: MNDOT 118289, LC 61550 ICC: 233567 Greatland Transportation Cardinal Moving Systems Guardian Cargo Logistics is an international moving and shipping company specializing in both residential and commercial relocations. US DOT: 1580667 ICC: 585270 Cardinal Moving Systems Gouffon Moving & Storage Times and equipment may have changed, but Gouffon's tradition of quality moving and storage services has remained steady for 119 years. Kno... US DOT: 553340 ICC: 273542 Gouffon Moving & Storage Movers Choice USA We have been in business for many years and takes pride in serving the surrounding area. All of our employees carry with them a wealth of e... US DOT: 139982 DOT: 529897 Movers Choice USA Guardian Cargo Logistics Altoona relocation quotes, ALOHA!!! Are you ready to make a move to the beautiful Hawaiian Islands or just relocating over to the mainland? If the answer is y... Guardian Cargo Logistics Eden Relocation We are a full service moving company. We understand the stress involved in relocating to a new residence. We would like to make this transi... US DOT: 932259 ICC: 401787 Eden Relocation Hercules Moving Systems Moving companies Altoona Wisconsin, Hercules Van Lines is a well established Los Angeles mover providing nationwide relocation services across the country. US DOT: 1685249 DOT: 190477 ICC: 619135 Hercules Moving Systems Sasha Transport Sasha Transport Inc. is a moving company providing moving and storage services to consumers all around the MIDWEST. We are committed to ea... US DOT: 1308599 Sasha Transport Premier Van Lines International Inc Premier Van Lines is a Mayflower Transit agent in Salt Lake City. Since 1927, Mayflower has been moving families around the country and acr... US DOT: 1930177 ICC: 690093 Premier Van Lines International Inc Booska Worldwide Movers Booska Movers is a family owned and operated company, celebrating 60 years of providing stress free moves. We're a full service independent... US DOT: 786533 ICC: 437707 Booska Worldwide Movers Mango Moving Mango Moving is a licensed and insured nationwide moving company and a leading provider of affordable moving services and moving storage so... US DOT: 2117018 ICC: 737913 Mango Moving Altoona Wisconsin Moving Companies - Find Moving Services From Top Movers HomeMoving ServicesWisconsinEau Claire CountyAltoona Footer
{ "url": "http://www.relocation.com/moving_services/wisconsin/eau_claire/altoona.html", "source_domain": "www.relocation.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "20051", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HW7NGVUB4ZKGIKX4WLN5HXJW74IVPLPE", "WARC-Concurrent-To": "<urn:uuid:c79f1d8a-933a-46cc-9a37-f3e9d0e0f057>", "WARC-Date": "2013-05-21T18:27:56Z", "WARC-IP-Address": "206.131.181.39", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:IY4DO3MEBBABXF3J7453PUPIBTX4HQX3", "WARC-Record-ID": "<urn:uuid:9d9b6d1d-2e17-422c-bf1e-967bdcb6c9a3>", "WARC-Target-URI": "http://www.relocation.com/moving_services/wisconsin/eau_claire/altoona.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:39d5e7be-7809-40b2-b235-3d1f16df7422>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 28, 29, 42, 49, 58, 83, 245, 246, 261, 262, 290, 291, 303, 304, 329, 353, 487, 488, 504, 505, 517, 518, 542, 567, 710, 711, 726, 727, 739, 740, 765, 783, 926, 927, 942, 943, 955, 956, 974, 999, 1161, 1162, 1187, 1203, 1346, 1347, 1362, 1363, 1375, 1376, 1392, 1416, 1572, 1573, 1589, 1590, 1602, 1603, 1615, 1616, 1640, 1656, 1798, 1799, 1815, 1816, 1832, 1868, 2011, 2012, 2028, 2029, 2041, 2042, 2078, 2102, 2245, 2246, 2261, 2262, 2274, 2275, 2299, 2312, 2455, 2456, 2472, 2473, 2485, 2486, 2499, 2500, 2574, 2575, 2628 ], "line_end_idx": [ 28, 29, 42, 49, 58, 83, 245, 246, 261, 262, 290, 291, 303, 304, 329, 353, 487, 488, 504, 505, 517, 518, 542, 567, 710, 711, 726, 727, 739, 740, 765, 783, 926, 927, 942, 943, 955, 956, 974, 999, 1161, 1162, 1187, 1203, 1346, 1347, 1362, 1363, 1375, 1376, 1392, 1416, 1572, 1573, 1589, 1590, 1602, 1603, 1615, 1616, 1640, 1656, 1798, 1799, 1815, 1816, 1832, 1868, 2011, 2012, 2028, 2029, 2041, 2042, 2078, 2102, 2245, 2246, 2261, 2262, 2274, 2275, 2299, 2312, 2455, 2456, 2472, 2473, 2485, 2486, 2499, 2500, 2574, 2575, 2628, 2634 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2634, "ccnet_original_nlines": 95, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.21098901331424713, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.08571428805589676, "rps_doc_frac_lines_end_with_ellipsis": 0.09375, "rps_doc_frac_no_alph_words": 0.1846153736114502, "rps_doc_frac_unique_words": 0.49873417615890503, "rps_doc_mean_word_length": 5.377215385437012, "rps_doc_num_sentences": 24, "rps_doc_symbol_to_word_ratio": 0.019780220463871956, "rps_doc_unigram_entropy": 4.8803510665893555, "rps_doc_word_count": 395, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.02919021062552929, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.023540489375591278, "rps_doc_frac_chars_top_3gram": 0.031073449179530144, "rps_doc_frac_chars_top_4gram": 0.02259887009859085, "rps_doc_books_importance": -156.2879180908203, "rps_doc_books_importance_length_correction": -156.2879180908203, "rps_doc_openwebtext_importance": -98.38524627685547, "rps_doc_openwebtext_importance_length_correction": -98.38524627685547, "rps_doc_wikipedia_importance": -50.71092224121094, "rps_doc_wikipedia_importance_length_correction": -50.71092224121094 }, "fasttext": { "dclm": 0.007093970198184252, "english": 0.8640947937965393, "fineweb_edu_approx": 0.703346848487854, "eai_general_math": 0.0003576299932319671, "eai_open_web_math": 0.008627180010080338, "eai_web_code": 0.000032899999496294186 } }
{ "free_decimal_correspondence": { "primary": { "code": "388.062", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Local transit" } }, "secondary": { "code": "388.06", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Local transit" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-7,759,725,959,369,735,000
Archive Archive for March, 2009 Commentary on Luther’s Catechisms: Volume One is Available March 14th, 2009 6 comments 155091 The German edition of Commentary on Luther's Catechisms has long been the gold standard of research on the catechetical texts of the great reformer. This translation makes the wealth of research available in English for both the researcher and the catechist. Separate volumes will address the Ten Commandments, the Creed, the Lord's Prayer, the Sacraments, and Confession, with the Table of Duties, Prayers, and the Marriage and Baptismal Booklets. The first volume is now available: on the Ten Commandments. Here is a nice sample from the book including the Table of Contents and some of the introductory material: Download Catchismsampler Here is what Luther scholars are saying about Peters' work: "One of the most insightful interpreters of Luther and the theological tradition of the Lutheran Church in the latter half of the twentieth century, Peters places Luther's texts before readers in the context of the reformer's own time and of the catechetical tradition that he inherited, put to use, and transformed. Accessible to a broad audience, this volume will significantly enrich the teaching of all who use it to deepen their understanding of two of the most precious gems from Luther's pen: the Small and Large Catechism." Robert Kolb Missions Professor of Systematic Theology and Director of the Institute for Mission Studies Concordia Seminary, St. Louis Missouri "This definitive and comprehensive study of Luther's catechetical writings places Luther's Catechisms in the full context of his broader theology and writings, as well as within the history of Christian catechesis and theology. It is an essential handbook for students of Luther and the Reformation and a valuable resource for those entrusted today with the ministry of catechesis according to these most durable products of Luther's pastoral heart and pen." Christopher Boyd Brown Assistant professor of Church History Boston University Since the time they were written, Luther's Catechisms have played an essential role in teaching the Holy Scriptures and offering to all those using them a wonderful summary of the "essentials" of Christianity. To this day, the Small Catechism remains the most widely used resource for teaching the Christian faith, both to young people and adults. The stories I continue to hear from pastors and laypeople, from Lutherans and non-Lutherans alike continue to affirm what the Book of Concord said about Luther's Catechisms nearly 450 years ago: They have been unanimously approved and recieved by all churches holding to the Augsburg Confession and have been publicly used in churches, schools, and in homes. The Christian doctrine from God's Word is put together in them in the most correct and simple way. (Formula of Concord; Solid Declaration; Rule and Norm, par. 8; Concordia, p. 509). Categories: CPH Resources Book Lovers True Confessions MEME March 12th, 2009 3 comments I found this today on Pastor Asburry's blog site. I don't think I've ever done one of these, but I can't resist this one. And, if you are reading this right now, YOU are tagged. Bibliophiles unite! Enjoy. Book Confessions Meme 1. To mark your page you: use a bookmark, bend the page corner, leave the book open face down? Depends on the book. I'll bend a page corner on fiction. Non-fiction? Bookmark only! Usually a business card. God created business cards to be the perfect bookmark. 2. Do you lend your books? Yes, but I'm always very nervous about it. 3. You find an interesting passage: you write in your book or NO WRITING IN BOOKS! I write all over books, using every method: highlighting, underlining, marginal notes, running notes on end pages, or inside cover four. 4. Dust jackets – leave it on or take it off. I very, very stupidly used to throw away dust jackets. Then after seeing what happens to a book left in any degree of sunlight for several years, I now never throw away a dustjacket. 5. Hard cover, paperback, skip it and get the audio book? Hard cover, always, of course, unless only paperback is available. I have also slowly upgraded all my paper cover theological books to hardback, whenever possible. 6. Do you shelve your books by subject, author, or size and color of the book spines? Subjects/topics, until I run out of shelf space and then they go wherever there is room. My theological library is far more organized than my library at home. 7. Buy it or borrow it from the library later? Buy. Buy. Buy. Amazon's one-click buying option has been a great source of conversation between my wife and me. 8. Do you put your name on your books – scribble your name in the cover, fancy bookplate, or stamp? I have a book stamp I like to use, when I remember to use it, one of those "embosser" type things. I always write my name and the date I acquired the book, and the price, on the first page or so of the book. 9. Most of the books you own are rare and out of print books or recent publications? Many have gone out of print! 10. Page edges – deckled or straight? Deckled irritates me. Somebody was too lazy to trim the page edge! 11. How many books do you read at one time? With the "Kindle" the number of books being read "at the same time" has soared to absurd proportions. I probably have ten going at once at any given time. 12. Be honest, ever tear a page from a book? What? Never. Ever. Not even my cheapo paperbacks. Categories: Uncategorized Free Stem Cell Discussion Guide March 10th, 2009 Comments off As a service to the Church, CPH is now offering a free downloadable study on embryonic stem cell research issues. This has become, again, a very hot topic in light of President Obama’s reversal of the previous administration’s ban on using our tax dollars to help fund embryonic stem cell research. Categories: CPH Resources Update on The Lutheran Study Bible March 7th, 2009 2 comments Many thanks for your enthusiastic support for The Lutheran Study Bible. It is encouraging to hear from so many folks who are fired-up over this forthcoming Bible. Here is an update of where we are on the Bible and its promotion. Please spread the word to your friends. Bible production is humming along. Some finishing touches, final checks, adding all cross-reference page numbers, final proofing, etc. and we will be sending it off to the printer in a few months for printing. All is on schedule and on track for an October 31 release date. What a wonderful way to celebrate Reformation Day this year! I finished reviewing the "sampler" coming out in a couple months at work last week. Many of you have asked if we are going to have something that can be downloaded and shared. The answer is "yes, indeed." The sampler contains the story and background of The Lutheran Study Bible, a great comparison chart, that we've tweaked some more to make it look great in black/white, then a nice selection of samples from Genesis, from the Psalms, from John and from Romans. So, folks will see the creation account, Psalm 23 and a few others, the beginning of John, up to and including John 3:16, and pages from the intro to Romans, and the first chapter of Romans, etc. We will be sending the sampler out in a kit to all Lutheran congregations in North America, and will have copies available at LCMS District Conventions in June. We are also formatting it for the purpose of folks downloading it and printing it out, in black/white. That PDF file will go up as soon as we finish work on the sampler. I'll let you know when it is available. Then we have all the contributors in the back, more information about where to order the Bible, and news about a companion every book and chapter Bible study we are releasing to go along with the Bible. We are also working on a series of short videos on "getting to know" and "how to use" your new Lutheran Study Bible, which are going to be great. More podcasts are coming, interviews with editors and contributors, etc. etc. etc. So, stay tuned and would you do me a favor? Would you continue to share all this news with your friends on Facebook and elsewhere on the Internet? Be sure to put up a TLSB widget on your blog/Facebook page/home page. Grab one over at the new CPH widget page. And, if you are not already on the TLSB Facbook page, please consider joining it. You can do that at the widget page.  Categories: CPH Resources Kindle 2 Review March 7th, 2009 4 comments I've had the new Kindle2 for a couple weeks now and wanted to try it out before saying anything. OK, so, I've tried it out. Here is my short reaction: everything I could not stand [hated] about Kindle 1 has been addressed and fixed in Kindle 2. Kindle 1 was a design disaster. Kindle 2 gets it right. Kindle 2 gets it so right you say to yourself, "What was Amazon thinking when they did Kindle 1?" And for those smugly thinking to themselves, "Glad I waited and did not buy Kindle 1." Yup, you were right! Here is a picture of Kindle 1: Kindle 1 Here is a picture of Kindle 2: 504x_kindle2liveblog_154 Kindle 1 buttons were terrible. They were huge, they "clicked" because they were engaged to "click" by pressing the outside edge, down. The Kindle 2 uses much smaller buttons and you can only click them if you mean to, by clicking down on the inside edge. Thanks to Ryan Markel for explaining why it is that I like the new Kindle 2 buttons so much! Has something to do with toggle/pivot direction. Kindle 1 felt like a cheap piece of junk. Kindle 2 feels like you have yourself a substantial device in your hands. I know this is entirely a perception thing, but …it is a huge satisfying difference. Kindle 1 was like holding a weird block-like/brick-like thing in your hands, and you could never find a comfortable position to hold it without fear that you would press a button and either advance a page, go back a page, or worse yet, kick yourself out of what you were reading. Kindle 2 is easy to hold and use without fear of pressing a button. Kindle 1 was thick and bulky. Kindle 2 is sleek and trim. Kindle 1's keyboard was just plain weirdly spaced out. Kindle 1 designers obviously thought, "Let's make all the buttons on this thing as large as possible." Kindle 2 designers said, "Wow, that was a mistake. Let's make the buttons smaller so readers can use them more easily." Kindle 1 used a goofy track wheel kind of thing and a weird "silver" progress bar system on the side. So, you had to scroll and click. Kindle 2 completely changed the interface to a little "joystick" which I did not think I'd like at first, but it is a breeze to use and gives you more functionality, more quickly. Big improvement, and no more goofy silvery stuff on the progress bar. No progress bar. Kindle 1 did not come with a USB cable, but did come with an external charger thing. Kindle 2 comes with a USB cable and charger put together in a nice combination. You pop the electrical plug off and, voila, you have the Kindle-to-computer USB port, pop the electrical plug back on and you can power it up from any wall socket, and there is only cable. The other end of the USB cable is a small connection, so you can't use the more standard USB cables that you use with most other cameras, and digital device. Kindle 1's design was just plain weird. It was kind of a rectangle from the front but a kind of wedge from the side. It was Picasso-esque in design and feel. The Kindle 2 reminds me of something Apple computer would do, design, present, package, and document. 'nuff said. Kindle 1 had its on/off and wireless buttons on the back of the device. Which would be fine assuming you didn't use a cover. But since most people want to have something protecting their $400 device, this meant you would invariably manage to detach the cover from the Kindle 1, or literally the back cover of the Kindle 1 would come off. Horrible design flaws. Kindle 2 however has only one on/off button that you simply slide over for a few seconds, and power on. Slide over quickly to wake it up. Slide it over and hold it for four seconds to power down. Kindle 1's cover. Disaster. Total and complete, disaster. It hooked into a plastic cover on the back and the cover would fall out at the slightest bump. So your cover would never stay on or attached while you were reading it. Kindle 2 has a wonderful locking cover system where you attach the cover (optional) into a locking clip. The cover does not come off, period. Kindle 1's battery life was not the greatest. Wifi on Kindle 1 was find. Kindle 2 has better battery life, particularly after you a few good full charges, and it's wireless is much better, taking advantage of 3G speeds where available. Frankly, for me, the jury is still out a bit on whether I enjoy reading more with the Kindle than with traditional books, but I do know this: I'm reading more now then I have previously. Why? Because the Kindle makes it easy to have, literally at your fingertips, hundreds and hundreds of options. For instance, during my trip yesterday I had a two hour flight to where I went, and a two hour flight back. Four hours. Plus waiting time at the airport. A total of around seven hours. All spent reading. I read a manuscript an author-friend of mine sent me for an endorsement, I read from the New Yorker magazine, I read from the Bible, the Book of Concord, Treasure Island, and several other papers and such that I have on the Kindle. I give the Kindle 2 a 8.5 out of 10 stars. I'm reserving 1.5 stars for future improvement. I find the Kindle reading experience to be extremely comfortable. No eye strain. You are not looking at a back lit screen. It is very much like reading a book, and that's the nicest thing I can say about it. Oh, one more thing. I'm sorry PC-friends, but the differences between Kindle 1 and Kindle 2 can be best summarized by saying this. "Kindle 1 felt like it was designed by Microsoft. Kindle 2? Apple." 'nuff said. Categories: Web/Tech It’s a Star Trek thing, you wouldn’t understand March 6th, 2009 5 comments I'm sorry to bore out of their gourds folks who are not Trekkies, but for those of us who are…this is exciting stuff: trailer three is out, so far the best sneak-peek. Trek_top Categories: movies Care to fidget with a widget? The Lutheran Study Bible’s new widgets! March 3rd, 2009 3 comments Hey, when you get a chance, please feel free to start sharing these widgets, by putting them on your own blog sites, Internet pages, etc. etc. and sharing them with others so they can do the same. Let’s have some fun and see how fast we can see these widgets populate themselves around the Internet. When you do, would you drop me a line, or add a comment here? As always, you can contact me at [email protected] Here are three options for you and you can find another product widget at the new Concordia Publishing House widget page. Categories: CPH Resources How to Recognize, and What to Do, When the “Orthodoxy Bug” has Bitten March 2nd, 2009 20 comments Insect_mosquito_aedes_aegypti_biting_human_arm A friend of mine posted some remarks recently about the temptation some Lutherans feel to run off and join Eastern Orthodoxy. I won't reveal my friend's name since he may wish to say more, or something other, at some other time, elsewhere. But his remarks, posted below, are extremely wise and helpful. We were talking about the "EO Bug" and I told him I can spot those who have been bitten a mile away by now. I've watched over the years as men are bitten by the "Orthodoxy bug" and the symptoms begin, usually, with an unhealthy fascination with all things Eastern Orthodox, at the expense of neglecting their own Lutheran fathers and confessions. Incessant quotations from Early Church fathers, and usually Eastern fathers, and not uncommonly, the more obscure desert fathers, start filling their blog site posts. The only art you see them using is Eastern Orthodox iconography. You rarely see them quoting with praise and a positive attitude Luther or our Lutheran fathers. Suddenly Lutheranism is treated as merely a little "glitch" in church history. Next thing you know they are quoting, ad naseum, contemporary Orthodox theologians and gushing over the wonders of Eastern Orthodoxy. Then there develops a keen defensiveness when they are questioned about where they are headed. Passive-aggressiveness sets in and they even deny they are being tugged toward Orthodoxy, but they start blaming others and adopting a "I'm being picked on" mentality. At any rate, these symptoms are just that: symptoms of deeper problems to come. Here is how my friend put matters when asked what to do for folks who have been bitten by the "Orthodox bug." "First, once one is bitten by the bug it is very hard to find ANY inoculation. I know this from first hand experience. But if a person IS willing to consider facts, it might be of help for them to read through the Patristics for Lutherans section that Eric put up in the resource section some time ago – in numerous ways, the Fathers stand closer to Lutheranism than to modern Orthodoxy. Second, I'd encourage them to look exactly at what the Orthodox DO in the invocation of the saints. They will tell you what they have been indoctrinated in: we're only asking Mary to pray to God for us. But the Orthodox do more than this. I cite from the Antiochian Service Book, page 130: "O all-holy Lady Theotokos, light of my darkened soul, my hope, my shelter, my refuge, my consolation and my joy; I thank thee that thou hast permitted me, unworthy though I be, to partake of the immaculate body and precious blood of thy Son. O thou who didst bring forth the true Light, give the light of understanding to the eyes of my heart; O thou who didst bear the Fountain of Immortality, quicken me who am dead in sin. O compassionate Mother of the merciful God, have mercy upon me and grant me humility and contrition of heart, and humbleness of mind, and deliverance from bondage to evil thoughts. And permit me, unto my last breath, to receive, without condemnation, the sanctification of these Holy Mysteries, unto the healing of both body and soul. Grant me tears of repentance and of confession, that I may hymn thee and glorify thee all the days of my life. For blessed and glorified art thou unto all the ages. Amen. "That is an idolatrous prayer; there is no other word to describe it. I can't imagine that it would be pleasing to the Holy Virgin at all! "Third, invite them to run it through the John 3:16 test. What happens to John 3:16 under Orthodoxy? God so loved the world that He gave His only begotten Son, that whoever believes in Him (and is a member of the true Church!) shall not perish (probably, but we make no guarantees - that would be prideful) but have eternal life (provided that he has suitable works). "Finally, pray for them. This is in many ways a spiritual battle. And the sad thing is where will their final confidence be placed in the last battle – when they are facing death and Satan suddenly throws up to their memory so many sins and evils. A friend of mine who is now an Orthodox priest likes to tell the story of a priest begging for longer life so he can do more penance, because he didn't even know if he had begun to repent. Contrast this, please, with the comfort of God's Word which allowed the great saints to depart in peace – not because of their accomplishments in repentance, but in the certainty of Christ's forgiveness and His victory over death and the grave for them." Categories: Eastern Orthodoxy Tweets from the Treasury of Daily Prayer March 2nd, 2009 Comments off Receive a daily prayer and Psalm reading via Twitter, from The Treasury of Daily Prayer, receive it as a SMS message on your cell phone, etc. @ConcordiaPrayer is a new service that tweets a prayer at 8 am. and a portion of a Psalm at 5 pm. daily from Treasury for Daily Prayer. Please retweet. Picture 1 Categories: CPH Resources
{ "url": "http://cyberbrethren.com/2009/03/page/2/", "source_domain": "cyberbrethren.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "81323", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:O6XVPUW3OJLO73FCKYWRYE64YW7D62IJ", "WARC-Concurrent-To": "<urn:uuid:19c6ff79-6278-4354-848f-cc0807cf6f74>", "WARC-Date": "2013-05-22T07:19:45Z", "WARC-IP-Address": "69.195.110.196", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:OXUTOSGG33ETJBH4HET5QZFCAAYPKIET", "WARC-Record-ID": "<urn:uuid:a4cc3786-1fb2-4b67-a380-59e1eeaf1e9f>", "WARC-Target-URI": "http://cyberbrethren.com/2009/03/page/2/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cb581115-fd9b-4a37-ae10-3663f99b4484>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 8, 9, 33, 34, 93, 94, 122, 123, 130, 579, 580, 640, 641, 773, 774, 834, 835, 894, 965, 1035, 1104, 1174, 1246, 1316, 1367, 1368, 1380, 1402, 1472, 1511, 1512, 1578, 1649, 1715, 1784, 1855, 1925, 1971, 1972, 1995, 2051, 2052, 2595, 2596, 2942, 2943, 2969, 2970, 3004, 3005, 3033, 3034, 3239, 3240, 3262, 3263, 3358, 3523, 3524, 3551, 3594, 3595, 3678, 3815, 3816, 3862, 4045, 4046, 4104, 4268, 4269, 4355, 4514, 4515, 4562, 4674, 4675, 4775, 4983, 4984, 5069, 5098, 5099, 5137, 5204, 5205, 5249, 5404, 5405, 5450, 5500, 5501, 5527, 5528, 5560, 5561, 5591, 5592, 5595, 5666, 5737, 5802, 5871, 5891, 5892, 5918, 5919, 5954, 5955, 5982, 5983, 6017, 6089, 6252, 6253, 6588, 6589, 6591, 6662, 6730, 6794, 6795, 6799, 6870, 6941, 7010, 7054, 7055, 7074, 7146, 7217, 7251, 7252, 7275, 7344, 7416, 7483, 7555, 7623, 7624, 7629, 7700, 7770, 7827, 7828, 7835, 7906, 7974, 8042, 8057, 8058, 8108, 8178, 8245, 8275, 8276, 8437, 8438, 8464, 8465, 8481, 8482, 8509, 8510, 9017, 9018, 9049, 9050, 9059, 9060, 9091, 9092, 9117, 9118, 9516, 9517, 9718, 9719, 10067, 10068, 10126, 10127, 10405, 10406, 10808, 10809, 11321, 11322, 11594, 11595, 12152, 12153, 12521, 12522, 12758, 12759, 13493, 13494, 13793, 13794, 14005, 14006, 14027, 14028, 14076, 14077, 14104, 14105, 14273, 14274, 14283, 14284, 14303, 14304, 14374, 14375, 14402, 14403, 14816, 14938, 14939, 14940, 14941, 14942, 14943, 14969, 14970, 15040, 15041, 15069, 15070, 15117, 16761, 16762, 16828, 16900, 16972, 17042, 17112, 17180, 17250, 17318, 17389, 17440, 17441, 17508, 17578, 17648, 17717, 17788, 17860, 17931, 18002, 18072, 18141, 18212, 18284, 18354, 18374, 18375, 18447, 18514, 18515, 18586, 18656, 18728, 18798, 18866, 18883, 18884, 18954, 19022, 19092, 19163, 19234, 19304, 19375, 19442, 19512, 19576, 19577, 19607, 19608, 19649, 19650, 19679, 19680, 19974, 19975, 19985, 19986 ], "line_end_idx": [ 8, 9, 33, 34, 93, 94, 122, 123, 130, 579, 580, 640, 641, 773, 774, 834, 835, 894, 965, 1035, 1104, 1174, 1246, 1316, 1367, 1368, 1380, 1402, 1472, 1511, 1512, 1578, 1649, 1715, 1784, 1855, 1925, 1971, 1972, 1995, 2051, 2052, 2595, 2596, 2942, 2943, 2969, 2970, 3004, 3005, 3033, 3034, 3239, 3240, 3262, 3263, 3358, 3523, 3524, 3551, 3594, 3595, 3678, 3815, 3816, 3862, 4045, 4046, 4104, 4268, 4269, 4355, 4514, 4515, 4562, 4674, 4675, 4775, 4983, 4984, 5069, 5098, 5099, 5137, 5204, 5205, 5249, 5404, 5405, 5450, 5500, 5501, 5527, 5528, 5560, 5561, 5591, 5592, 5595, 5666, 5737, 5802, 5871, 5891, 5892, 5918, 5919, 5954, 5955, 5982, 5983, 6017, 6089, 6252, 6253, 6588, 6589, 6591, 6662, 6730, 6794, 6795, 6799, 6870, 6941, 7010, 7054, 7055, 7074, 7146, 7217, 7251, 7252, 7275, 7344, 7416, 7483, 7555, 7623, 7624, 7629, 7700, 7770, 7827, 7828, 7835, 7906, 7974, 8042, 8057, 8058, 8108, 8178, 8245, 8275, 8276, 8437, 8438, 8464, 8465, 8481, 8482, 8509, 8510, 9017, 9018, 9049, 9050, 9059, 9060, 9091, 9092, 9117, 9118, 9516, 9517, 9718, 9719, 10067, 10068, 10126, 10127, 10405, 10406, 10808, 10809, 11321, 11322, 11594, 11595, 12152, 12153, 12521, 12522, 12758, 12759, 13493, 13494, 13793, 13794, 14005, 14006, 14027, 14028, 14076, 14077, 14104, 14105, 14273, 14274, 14283, 14284, 14303, 14304, 14374, 14375, 14402, 14403, 14816, 14938, 14939, 14940, 14941, 14942, 14943, 14969, 14970, 15040, 15041, 15069, 15070, 15117, 16761, 16762, 16828, 16900, 16972, 17042, 17112, 17180, 17250, 17318, 17389, 17440, 17441, 17508, 17578, 17648, 17717, 17788, 17860, 17931, 18002, 18072, 18141, 18212, 18284, 18354, 18374, 18375, 18447, 18514, 18515, 18586, 18656, 18728, 18798, 18866, 18883, 18884, 18954, 19022, 19092, 19163, 19234, 19304, 19375, 19442, 19512, 19576, 19577, 19607, 19608, 19649, 19650, 19679, 19680, 19974, 19975, 19985, 19986, 20011 ] }
{ "red_pajama_v2": { "ccnet_original_length": 20011, "ccnet_original_nlines": 291, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4291115403175354, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.021975429728627205, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17036862671375275, "rps_doc_frac_unique_words": 0.3288876414299011, "rps_doc_mean_word_length": 4.471339225769043, "rps_doc_num_sentences": 237, "rps_doc_symbol_to_word_ratio": 0.0004725900071207434, "rps_doc_unigram_entropy": 6.04996919631958, "rps_doc_word_count": 3524, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.01040806993842125, "rps_doc_frac_chars_dupe_6grams": 0.00634639011695981, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.006981019861996174, "rps_doc_frac_chars_top_3gram": 0.006981019861996174, "rps_doc_frac_chars_top_4gram": 0.003998219966888428, "rps_doc_books_importance": -1610.8934326171875, "rps_doc_books_importance_length_correction": -1610.8934326171875, "rps_doc_openwebtext_importance": -950.7562255859375, "rps_doc_openwebtext_importance_length_correction": -950.7562255859375, "rps_doc_wikipedia_importance": -683.542724609375, "rps_doc_wikipedia_importance_length_correction": -683.542724609375 }, "fasttext": { "dclm": 0.008333919569849968, "english": 0.9580055475234985, "fineweb_edu_approx": 1.3075296878814697, "eai_general_math": 0.04238582029938698, "eai_open_web_math": 0.1857689619064331, "eai_web_code": 0.007435619831085205 } }
{ "free_decimal_correspondence": { "primary": { "code": "230.0", "labels": { "level_1": "Religion", "level_2": "Theology, Doctrinal", "level_3": "" } }, "secondary": { "code": "004.0", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "14", "label": "Reviews/Critiques" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,191,310,247,015,458,000
Lake Toxaway Course Spotlight loading local map... Golf Courses • Falls Country Club 9 holes | Private | Par: 30 | Length: 1751 yards Hwy 64 W Lake Toxaway, North Carolina 28747 Transylvania County Phone: (828) 966-9552 • Lake Toxaway Country Club LogoLake Toxaway Country Club 18 holes | Private | Par: 71 | Length: 6148 yards 353 W Club Blvd Lake Toxaway, North Carolina 28747 Transylvania County Phone: (828) 862-3789 Golf Itineraries Dates: April 1, 2013 - December 31, 2013 High Vista offers 18-holes of championship golf tucked in the heart of the Blue Ridge Mountains with views from every turn, tee, fairway and green! Sculpted to compliment the areas natural setting, High Vista emphasizes the elements that are unique only to a true mountain golf experience. With five levels of tee boxes, the course winds through matured pines, towering oaks, vibrant azaleas and tranquil ponds. Price range: $99
{ "url": "http://www.travelgolf.com/guide/usa/northcarolina/laketoxaway/", "source_domain": "www.travelgolf.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "25669", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:GHXSTT5PA7KW6XQNKEPKTF3MCXUDMTG5", "WARC-Concurrent-To": "<urn:uuid:6029ef1a-601a-46c2-96bf-f0523e975b57>", "WARC-Date": "2013-06-19T09:37:10Z", "WARC-IP-Address": "174.129.243.110", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:L65FGENJBH2VMR4C4T7CVOWUHOAZNN33", "WARC-Record-ID": "<urn:uuid:64054316-ae7a-4a02-ae61-68372335b5ac>", "WARC-Target-URI": "http://www.travelgolf.com/guide/usa/northcarolina/laketoxaway/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cbd49646-030a-4c32-940f-be1f80b9ad95>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 13, 14, 31, 52, 53, 66, 67, 90, 91, 144, 157, 196, 220, 246, 306, 307, 361, 381, 420, 444, 470, 471, 488, 529, 941 ], "line_end_idx": [ 13, 14, 31, 52, 53, 66, 67, 90, 91, 144, 157, 196, 220, 246, 306, 307, 361, 381, 420, 444, 470, 471, 488, 529, 941, 957 ] }
{ "red_pajama_v2": { "ccnet_original_length": 957, "ccnet_original_nlines": 25, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.12568305432796478, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010928959585726261, "rps_doc_frac_lines_end_with_ellipsis": 0.03846153989434242, "rps_doc_frac_no_alph_words": 0.3333333432674408, "rps_doc_frac_unique_words": 0.6993007063865662, "rps_doc_mean_word_length": 5.027972221374512, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0.005464479792863131, "rps_doc_unigram_entropy": 4.474592685699463, "rps_doc_word_count": 143, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.15299026668071747, "rps_doc_frac_chars_dupe_6grams": 0.15299026668071747, "rps_doc_frac_chars_dupe_7grams": 0.15299026668071747, "rps_doc_frac_chars_dupe_8grams": 0.15299026668071747, "rps_doc_frac_chars_dupe_9grams": 0.15299026668071747, "rps_doc_frac_chars_top_2gram": 0.061196111142635345, "rps_doc_frac_chars_top_3gram": 0.04172461852431297, "rps_doc_frac_chars_top_4gram": 0.066759392619133, "rps_doc_books_importance": -87.35828399658203, "rps_doc_books_importance_length_correction": -87.35828399658203, "rps_doc_openwebtext_importance": -48.58014678955078, "rps_doc_openwebtext_importance_length_correction": -35.31316375732422, "rps_doc_wikipedia_importance": -25.000471115112305, "rps_doc_wikipedia_importance_length_correction": -25.000471115112305 }, "fasttext": { "dclm": 0.000025749999622348696, "english": 0.8166953325271606, "fineweb_edu_approx": 0.9307661652565002, "eai_general_math": -0.000003580000111469417, "eai_open_web_math": 0.0479431189596653, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.357", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "917.55", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "America — Description and travel and North America — Description and travel" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-798,791,898,170,436,200
Review: Grave – Dominion VIII [2008] Veteran Swedish band Grave returns with another installment of sinewy death metal that blends high-speed velocity and doom-laden crunch on the nine-track Dominion VIII. This devastating affair demonstrates the band’s ability to go from slow crawl to rapid-fire pace in the blink of an eye (“Annihilated Christ”) in addition to displaying Grave’s unwavering attachment to the darker side of the spectrum on cuts like “Stained By Hate.” 20 years in and still as extreme as their early days, this truculent crew returns in fine fighting form, ready to go into metal combat with the vitriolic virtue and fortified firepower that has rendered them one of the Swedish elite death metal’s forces. www.regainrecords.com -Mike SOS Preview and buy Dominion VIII Related posts: 1. Review: Alghazanth – Wreath of Thevetat [2008] 2. Review: After Death – Retronomicon [2008] 3. Review: Suidakra – 13 Years of Celtic Wartunes [2008] 4. Review: Exodus – Let There Be Blood [2008] 5. Review: Machinery – The Passing [2008] This entry was posted in Grave, SOS Metal Update and tagged , , . Bookmark the permalink. Leave a Reply Your email address will not be published. Required fields are marked * You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
{ "url": "http://www.gearsofrock.com/2008/10/27/review-grave-dominion-viii-2008/", "source_domain": "www.gearsofrock.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "81165", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MR63OHEAZJ7TIJO2WRWZXIVVTA4HO544", "WARC-Concurrent-To": "<urn:uuid:28ef3911-2b12-4d0b-97ed-309a2f2eecdb>", "WARC-Date": "2013-05-23T11:06:45Z", "WARC-IP-Address": "69.89.31.115", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:RSQCIK4J4P65V6WSG372AWBS7DB77TXR", "WARC-Record-ID": "<urn:uuid:bccbb362-b038-4a64-a464-29fcad5744af>", "WARC-Target-URI": "http://www.gearsofrock.com/2008/10/27/review-grave-dominion-viii-2008/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:85cde1d2-62c6-4974-9113-401f058880fd>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 37, 38, 760, 761, 791, 792, 807, 808, 860, 907, 966, 1014, 1058, 1148, 1149, 1163, 1164, 1235, 1236 ], "line_end_idx": [ 37, 38, 760, 761, 791, 792, 807, 808, 860, 907, 966, 1014, 1058, 1148, 1149, 1163, 1164, 1235, 1236, 1431 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1431, "ccnet_original_nlines": 19, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2225806564092636, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019354840740561485, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3096774220466614, "rps_doc_frac_unique_words": 0.6964285969734192, "rps_doc_mean_word_length": 4.8839287757873535, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.825761795043945, "rps_doc_word_count": 224, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03290675953030586, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -113.48480987548828, "rps_doc_books_importance_length_correction": -111.49276733398438, "rps_doc_openwebtext_importance": -77.05982971191406, "rps_doc_openwebtext_importance_length_correction": -77.05982971191406, "rps_doc_wikipedia_importance": -45.75355529785156, "rps_doc_wikipedia_importance_length_correction": -38.99687957763672 }, "fasttext": { "dclm": 0.006163300015032291, "english": 0.8124932050704956, "fineweb_edu_approx": 1.1342029571533203, "eai_general_math": -0.00000965999970503617, "eai_open_web_math": 0.05330777168273926, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.01", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "781.65", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Music theory" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "14", "label": "Reviews/Critiques" }, "secondary": { "code": "1", "label": "News/Editorial" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "24", "label": "User Review" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
708,179,487,356,443,800
they didn’t know he was panoramic… alec Pixies – “Alec Eiffel” Details forthcoming… I am the ghost of Troubled Joe… thelandisours2 The Smiths – “A Rush and a Push and the Land Is Ours” Jeans:  EvuzaJeans_MALE_XXS_Black Boots:  Adjunct – Lace-Up Boot Socks:  TonkTastic – Sock Tops Hair:  booN JAI233 hair – Black Beard:  Unorthodox – Full beard Tattoo:  La Malvada Mujer -Priscilla Glasses:  -Entente- Gregoire Glasses road to valhalla valhalla Fever Ray – “If I Had A Heart” Inspired by “Vikings fascination… Pier3 The Cure – “Fascination Street” Tattoo:  La Malvada Mujer – Priscilla [4] Vest & T-shirt:    :SEY Gilet(plain)+T-shirt [SMALL/shirt] Makeup:  Nuuna’s makeup v3 7. Boots:  Adjunct – Casablancas Boot Hair:  booN JAI233 hair black Cigarette Arm Strap:  dl:: Cigarets Arm strap (resizer) Cigarette:  dl:: cigarret short scripted Jeans:  EvuzaJeans_MALE_XXS_Black Skin:  KOOQLA_Gray (05)_dark brow I’m not lazy… …I just don’t feel like expending the energy. So, a friend said to me the other day, “Hey, did you know you forgot to add the links to the stores on your last few blog posts?” My response, “I didn’t forget.  I just haven’t added them yet.” I need to add some more stuff here, but truth be told, my graphics card in my computer has been playing games with me lately and generally being a pain in the ass.  Hopefully I can get that issue resolved and then get some time to blog a few more pictures.  I have purchased a few new things for Dexter over the last few weeks (including my first skin upgrade in almost 2 years!), so that’s some news, right?  I’ll try to stay active on Evol[ve]…but lately, 140BPM is occupying my time. Anyway, the main point of this post:  I’m still around.  I still enjoy messing about with photography and fashion in SL.  I will update the links.  Soon. altogether… altogether Slowdive – “Altogether” Details coming… (I know…I’ve got a lot of details to add on the last few photos.  As soon as I get time.  They’re coming.  I swear.) new orleans. neworleans Concrete Blonde – “Bloodletting” Details coming…   Sugar & Spice a guide to the best places to shop in secondlife Monster Aesthetic:Brutal Beauty in a Synthetic World ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ an chailín álainn The Lovely Girl's Travels Through a Second Life the Citizens of Fashion ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Tableau Vivant Props, poses, design and costumes in Second Life Interstyle Fashion By Annan Adored {{ getUrban }} The Urban Fashion Blog of Static Ghost The.Dark.Side.Of.Fashion Where The Dark Wins On Fashion This Sideshow H e d o n i s m ...indeed How Neva Sees It Neva Imagery, Lived-In Contemporary M4M ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Galliano Boucher's Blog Second Life fashion and styling :.. hopeless idiot ..: ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ (ir)regular guy A Second Life clothing blog for the (ir)regular guy Free*Style ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ [JUST a BOY] ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Pretty Pictures Like You ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ La Mia Bauhaus A Unique Expression of Second Life Style Chance Raynier A SecondLife Splashed With Tabasco - Soulsearch - ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Strike by Night ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Creative Imagery Photography & Fashion ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Style Yakuza ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ That Guy's Blog ᎪᏒᏤ ᏙᏲᎠ ᎰᎺᏕᎻᎥᎾᏁ ᏐᏁ ᎦᎬᏨᎤᏲᏧ ᏞᎥᎰᎬ Follow Get every new post delivered to your Inbox. %d bloggers like this:
{ "url": "http://evolfeed.wordpress.com/", "source_domain": "evolfeed.wordpress.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "87487", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:EFK65GMKWRHNP4XHIWXXVMEWQMY5SN7D", "WARC-Concurrent-To": "<urn:uuid:957c2daa-483b-4417-a66a-f56dcd75cff8>", "WARC-Date": "2013-05-25T22:13:20Z", "WARC-IP-Address": "76.74.254.120", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7R22K7L6MTPCGYXG5IHDYOVSEKY7YGJH", "WARC-Record-ID": "<urn:uuid:9bd2277d-f58f-4bf5-ab30-addfa38b57b5>", "WARC-Target-URI": "http://evolfeed.wordpress.com/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:32cd68d7-02d7-42eb-8fa9-4bfa8799bc8f>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 35, 36, 41, 42, 65, 66, 87, 88, 120, 121, 136, 137, 191, 192, 226, 227, 258, 259, 290, 291, 323, 324, 356, 357, 394, 395, 432, 433, 450, 451, 460, 461, 492, 493, 514, 515, 528, 529, 535, 536, 568, 569, 611, 612, 671, 672, 702, 703, 738, 739, 769, 770, 826, 827, 868, 869, 903, 904, 938, 939, 953, 954, 1000, 1001, 1131, 1132, 1196, 1197, 1684, 1685, 1839, 1840, 1852, 1853, 1864, 1865, 1889, 1890, 1906, 1907, 2024, 2025, 2038, 2039, 2050, 2051, 2084, 2085, 2101, 2102, 2104, 2105, 2119, 2120, 2169, 2170, 2223, 2224, 2255, 2256, 2274, 2275, 2323, 2324, 2348, 2349, 2380, 2381, 2396, 2397, 2446, 2447, 2466, 2467, 2483, 2484, 2499, 2500, 2539, 2540, 2565, 2566, 2597, 2598, 2612, 2613, 2639, 2640, 2657, 2658, 2694, 2695, 2699, 2700, 2731, 2732, 2763, 2764, 2788, 2789, 2821, 2822, 2845, 2846, 2877, 2878, 2894, 2895, 2947, 2948, 2959, 2960, 2991, 2992, 3023, 3024, 3037, 3038, 3069, 3070, 3095, 3096, 3127, 3128, 3143, 3144, 3185, 3186, 3201, 3202, 3237, 3238, 3253, 3254, 3285, 3286, 3302, 3303, 3334, 3335, 3374, 3375, 3406, 3407, 3420, 3421, 3452, 3453, 3469, 3470, 3501, 3502, 3509, 3510, 3554, 3555 ], "line_end_idx": [ 35, 36, 41, 42, 65, 66, 87, 88, 120, 121, 136, 137, 191, 192, 226, 227, 258, 259, 290, 291, 323, 324, 356, 357, 394, 395, 432, 433, 450, 451, 460, 461, 492, 493, 514, 515, 528, 529, 535, 536, 568, 569, 611, 612, 671, 672, 702, 703, 738, 739, 769, 770, 826, 827, 868, 869, 903, 904, 938, 939, 953, 954, 1000, 1001, 1131, 1132, 1196, 1197, 1684, 1685, 1839, 1840, 1852, 1853, 1864, 1865, 1889, 1890, 1906, 1907, 2024, 2025, 2038, 2039, 2050, 2051, 2084, 2085, 2101, 2102, 2104, 2105, 2119, 2120, 2169, 2170, 2223, 2224, 2255, 2256, 2274, 2275, 2323, 2324, 2348, 2349, 2380, 2381, 2396, 2397, 2446, 2447, 2466, 2467, 2483, 2484, 2499, 2500, 2539, 2540, 2565, 2566, 2597, 2598, 2612, 2613, 2639, 2640, 2657, 2658, 2694, 2695, 2699, 2700, 2731, 2732, 2763, 2764, 2788, 2789, 2821, 2822, 2845, 2846, 2877, 2878, 2894, 2895, 2947, 2948, 2959, 2960, 2991, 2992, 3023, 3024, 3037, 3038, 3069, 3070, 3095, 3096, 3127, 3128, 3143, 3144, 3185, 3186, 3201, 3202, 3237, 3238, 3253, 3254, 3285, 3286, 3302, 3303, 3334, 3335, 3374, 3375, 3406, 3407, 3420, 3421, 3452, 3453, 3469, 3470, 3501, 3502, 3509, 3510, 3554, 3555, 3577 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3577, "ccnet_original_nlines": 196, "rps_doc_curly_bracket": 0.001118259970098734, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.22045153379440308, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.15670651197433472, "rps_doc_frac_lines_end_with_ellipsis": 0.04060913994908333, "rps_doc_frac_no_alph_words": 0.3147410452365875, "rps_doc_frac_unique_words": 0.5385934710502625, "rps_doc_mean_word_length": 4.692967414855957, "rps_doc_num_sentences": 28, "rps_doc_symbol_to_word_ratio": 0.015936249867081642, "rps_doc_unigram_entropy": 5.298867225646973, "rps_doc_word_count": 583, "rps_doc_frac_chars_dupe_10grams": 0.03654970973730087, "rps_doc_frac_chars_dupe_5grams": 0.13304093480110168, "rps_doc_frac_chars_dupe_6grams": 0.13304093480110168, "rps_doc_frac_chars_dupe_7grams": 0.05994151905179024, "rps_doc_frac_chars_dupe_8grams": 0.03654970973730087, "rps_doc_frac_chars_dupe_9grams": 0.03654970973730087, "rps_doc_frac_chars_top_2gram": 0.03070175088942051, "rps_doc_frac_chars_top_3gram": 0.06652046740055084, "rps_doc_frac_chars_top_4gram": 0.07675439119338989, "rps_doc_books_importance": -361.6144714355469, "rps_doc_books_importance_length_correction": -361.6144714355469, "rps_doc_openwebtext_importance": -195.52589416503906, "rps_doc_openwebtext_importance_length_correction": -195.52589416503906, "rps_doc_wikipedia_importance": -146.08251953125, "rps_doc_wikipedia_importance_length_correction": -146.08251953125 }, "fasttext": { "dclm": 0.00006974000280024484, "english": 0.7231274247169495, "fineweb_edu_approx": 0.8142037987709045, "eai_general_math": 0.0005295900045894086, "eai_open_web_math": 0.022610900923609734, "eai_web_code": 0.000055309999879682437 } }
{ "free_decimal_correspondence": { "primary": { "code": "746.9", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Needlework and Fancy work" } }, "secondary": { "code": "794.8", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-3,117,604,532,651,484,000
Categories weekly special - only $5 for selected Envirosax Reusable Shopping Bag Brands Soap nuts 250gm + wash net 100% natural soap nuts can be be used as a laundry detergent (good for 100-200 wash loads!), shower soap, shampoo, general purpose cleaner, car wash... The dried berry shells contain saponins, a natural surfactant. More details $ 16.95 GST incl. Add to my wishlist Loyalty program By buying this product you can collect up to 16 loyalty points. Your cart will total 16 points that can be converted into a voucher of $ 0.80. Soap nuts work better than ordinary chemical detergents and are gentle on your clothes. They have plenty of other uses aside from the laundry as well! Contains soapnuts for 100-200 wash loads, or four to eight months worth of laundry. Or will make approximately 4L of liquid soapnut concentrate. Full directions are included with your bag of soapnuts. The amount of washes from each bag varies depending on your washing machine, water quality and temperature and wash load size. Can be used in hot or cold water. Soapnuts can be also be used as a detergent, a personal cleanser and shampoo, a general purpose cleaner, car wash, pet wash, vegetable wash, carpet and upholstery cleaner... you are making a difference: • These soapnuts are grown wild in forests in the Himalayan foothills, and no chemicals are added at any stage. • By increasing the demand for soapnuts rather than the wood from the Sapindus mukorossi tree (which has lately been more profitable than soapnuts), you are making the living trees more profitable and thus helping to protect forests. • Can be used over and over, when they are completely sapped they can be composted. • Village-friendly practices are employed including fair pay and treatment for workers. features: • Comes with reusable mesh net to hold the nuts in the wash. • Soapnuts are completely hypoallergenic, as in, are not likely to agitate or irritate the skin. So gentle they can be used by sufferers of eczema, psoriasis and other skin conditions. Also gentle enough to be used for your baby laundry. • Soapnuts have a lot of soap in them!  They can be used over and over until they lose their efficiency or soapiness.  The dried berry shells contain saponins, a natural surfactant. • Soapnuts are not technically nuts, they are berries. Those with nut allergies have nothing to worry about. • Soapnuts contain NO optical brighteners, foaming agents, bleaches or chlorine. If necessary you can also add environmentally-friendly oxygen bleach. • Soapnuts have a light, natural scent, not left on clothing when used for washing. We recommend adding a couple drops of essential oils to the cotton bag (or sock) you put your soapnuts in, which will leave a delicate scent of your choice on your laundry. Our organic Eucalyptus essential oil and organic Tea Tree essential oil are both antibacterial and leave your laundry smelling fresh and clean. While Tinderbox Lavender essential oil can be used when washing bed linen to help you relax at night. Our Tinderbox Clove essential oil and Tinderbox Orange essential oil can repel moths and insects if you are washing linen or clothes to be put into storage. The options are only limited by your personal preferences and requirements. Please note that oils can have strong effects on the body, please check with your health professional on which oils are right for you. Some oils are irritating to the skin and unsuitable for sensitive skin and during pregnancy. Our full range of Wild Soapnuts. More Tinderbox essential oils. From Title Comment 04/27/2012 Biome team. As an allergy-prone Mum with sensitive kids I was more than happy to try the Soap-nuts as a washing powder option. I have been pleasantly surprised with the results they give. I especially like the fact that I can add my own essential oil blend for fragrance, deodorising and anti-bacterial/anti-fungal properties. (I love the Tinderbox laundry additive for this) I do still have to use the good old-fashioned soap and elbow grease for the kids' grubby 'outside' clothes, but the flannelette PJs have never been softer and they are EXCELLENT for my black work clothes. 08/19/2009 Rebekka P. These actually work! The only downside is the smell - they don't have a strong fragrance, but it's not what you want your clothes to smell of. I'd suggest adding some of the fabulous Tinderbox laundry additive, or else just a capful of lavender essential oil to the rinse. Only registered users can post a new comment. Win this month's giveaway
{ "url": "http://www.biome.com.au/natural-soaps-shower-gels/2683-wild-soapnuts-250g-wash-bag.html", "source_domain": "www.biome.com.au", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "204567", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:DV6J7WHCBAP7D5BYDMW6IAPI3YIOSCB2", "WARC-Concurrent-To": "<urn:uuid:c6c54292-f93c-45c7-9fdc-988a9ccddf45>", "WARC-Date": "2013-05-25T19:16:26Z", "WARC-IP-Address": "202.146.212.126", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ZX3ONEZPDMAKFDL2BPTQJK5D2INFELB6", "WARC-Record-ID": "<urn:uuid:b7ab2c9f-48de-4c7e-97f7-b3f6c576a3b2>", "WARC-Target-URI": "http://www.biome.com.au/natural-soaps-shower-gels/2683-wild-soapnuts-250g-wash-bag.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0df48781-9ca1-4088-a3e7-af6805fe04e2>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 11, 12, 82, 83, 90, 91, 118, 119, 334, 335, 348, 349, 367, 368, 387, 388, 547, 548, 549, 700, 701, 1063, 1064, 1238, 1239, 1268, 1269, 1383, 1619, 1705, 1795, 1796, 1806, 1807, 1870, 2110, 2294, 2405, 2558, 3524, 3525, 3589, 3590, 3609, 3996, 4201, 4496, 4497, 4543, 4544 ], "line_end_idx": [ 11, 12, 82, 83, 90, 91, 118, 119, 334, 335, 348, 349, 367, 368, 387, 388, 547, 548, 549, 700, 701, 1063, 1064, 1238, 1239, 1268, 1269, 1383, 1619, 1705, 1795, 1796, 1806, 1807, 1870, 2110, 2294, 2405, 2558, 3524, 3525, 3589, 3590, 3609, 3996, 4201, 4496, 4497, 4543, 4544, 4569 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4569, "ccnet_original_nlines": 50, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3743016719818115, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.013407819904386997, "rps_doc_frac_lines_end_with_ellipsis": 0.019607840105891228, "rps_doc_frac_no_alph_words": 0.16201117634773254, "rps_doc_frac_unique_words": 0.45910289883613586, "rps_doc_mean_word_length": 4.803430080413818, "rps_doc_num_sentences": 52, "rps_doc_symbol_to_word_ratio": 0.0022346400655806065, "rps_doc_unigram_entropy": 5.326157569885254, "rps_doc_word_count": 758, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.054929960519075394, "rps_doc_frac_chars_dupe_6grams": 0.039549570530653, "rps_doc_frac_chars_dupe_7grams": 0.02856357954442501, "rps_doc_frac_chars_dupe_8grams": 0.02856357954442501, "rps_doc_frac_chars_dupe_9grams": 0.02856357954442501, "rps_doc_frac_chars_top_2gram": 0.012359240092337132, "rps_doc_frac_chars_top_3gram": 0.012359240092337132, "rps_doc_frac_chars_top_4gram": 0.0049437000416219234, "rps_doc_books_importance": -282.3797302246094, "rps_doc_books_importance_length_correction": -282.3797302246094, "rps_doc_openwebtext_importance": -164.38124084472656, "rps_doc_openwebtext_importance_length_correction": -164.38124084472656, "rps_doc_wikipedia_importance": -151.03253173828125, "rps_doc_wikipedia_importance_length_correction": -151.03253173828125 }, "fasttext": { "dclm": 0.014505679719150066, "english": 0.9389145374298096, "fineweb_edu_approx": 1.176660180091858, "eai_general_math": 0.007242260035127401, "eai_open_web_math": 0.13983017206192017, "eai_web_code": 0.00039607001235708594 } }
{ "free_decimal_correspondence": { "primary": { "code": "645.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "House furnishings" } }, "secondary": { "code": "634.9", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Tree crops, Fruit, Nuts, Vineyards, Orchards, and Forests and forestry" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,361,267,008,245,031,000
The Way We Talk Haven't been this happy in a while, love reading, writing, music, rain, chocolate, bags, boys, BlackBerry, Chanel, The Beatles, McFly, England, Italy and everything that comes with a smile on my face :) 80steenmovies: Girls Just Want to Have Fun, 1985 (dir. Alan Metter) 80steenmovies: Girls Just Want to Have Fun, 1985 (dir. Alan Metter)
{ "url": "http://wesaidtoday.tumblr.com/page/3", "source_domain": "wesaidtoday.tumblr.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "38512", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:YMXA3BNGLHIXYIUBTOACC2EQJ6HD3QNC", "WARC-Concurrent-To": "<urn:uuid:40a457e6-ed43-4629-aadc-789c1f077937>", "WARC-Date": "2013-05-25T03:55:02Z", "WARC-IP-Address": "66.6.40.59", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:FCWLORWYKL22BHYZEHLZFAUE27J3OWNW", "WARC-Record-ID": "<urn:uuid:ecfd74a6-715d-4f36-a911-2ff7d80d0c99>", "WARC-Target-URI": "http://wesaidtoday.tumblr.com/page/3", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d3aee3b4-ea97-417e-af61-ec6b92ec2d7a>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 220, 235, 236, 289, 290, 305, 306 ], "line_end_idx": [ 16, 17, 220, 235, 236, 289, 290, 305, 306, 358 ] }
{ "red_pajama_v2": { "ccnet_original_length": 358, "ccnet_original_nlines": 9, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.190476194024086, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3214285671710968, "rps_doc_frac_unique_words": 0.7758620977401733, "rps_doc_mean_word_length": 4.655172348022461, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.7497217655181885, "rps_doc_word_count": 58, "rps_doc_frac_chars_dupe_10grams": 0.385185182094574, "rps_doc_frac_chars_dupe_5grams": 0.385185182094574, "rps_doc_frac_chars_dupe_6grams": 0.385185182094574, "rps_doc_frac_chars_dupe_7grams": 0.385185182094574, "rps_doc_frac_chars_dupe_8grams": 0.385185182094574, "rps_doc_frac_chars_dupe_9grams": 0.385185182094574, "rps_doc_frac_chars_top_2gram": 0.13333332538604736, "rps_doc_frac_chars_top_3gram": 0.16296295821666718, "rps_doc_frac_chars_top_4gram": 0.192592591047287, "rps_doc_books_importance": -33.20779037475586, "rps_doc_books_importance_length_correction": -33.20779037475586, "rps_doc_openwebtext_importance": -11.050869941711426, "rps_doc_openwebtext_importance_length_correction": -11.050869941711426, "rps_doc_wikipedia_importance": -18.795488357543945, "rps_doc_wikipedia_importance_length_correction": -18.795488357543945 }, "fasttext": { "dclm": -0.000009059999683813658, "english": 0.8202107548713684, "fineweb_edu_approx": 0.29089921712875366, "eai_general_math": 0.000023130000045057386, "eai_open_web_math": 0.009092629887163639, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "780.0", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "" } }, "secondary": { "code": "791.43", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "2", "label": "About (Personal)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-631,560,515,069,328,600
Nightmare continues for Philippine flood victims Report from IFRC Published on 02 Sep 2004 With an average of 19 typhoons, heavy monsoon rains and massive floods hitting the country every year, the Philippines is no doubt a disaster prone country and the 89 million Filipinos should therefore be used to natural catastrophes. But between 25 and 28 August, the situation became an unbearable nightmare. Eight provinces in Northern and Central Luzon, including the National Capital Region, were hit by two severe weather systems, carrying strong winds and heavy monsoon rains. Strong currents gushed through breached dikes, submerging villages under three metres of floodwater and trapping people on their rooftops. With 70 per cent of the affected provinces under water, the area was transformed into a virtual sea. More than 32 people died and nearly one million people were affected, many of them left homeless. "It was horrifying, the first time we had experienced such a huge flood. There was nowhere to go but to the roof of our house," a man called Boy told Red Cross relief worker Gallant Gatica of Tarlac Red Cross chapter. "I thought it was the end of the world for all of us." Boy, from Apulid, Paniqui, Tarlac had to drag his wife and three children to the roof when he saw that the floodwater that had entered their house was fast rising. "We were trapped in our rooftop for two days soaked by the rain with nothing to eat," Gatica quoted Boy as saying. "It was only when the flood subsided to waist-deep that I had the opportunity to go to the evacuation centre, where I got food assistance from the Red Cross." Gatica said most of the people he spoke to had similar stories. They were all panicking and screaming. Children were crying and even the animals were howling and running for their lives. "It was indeed a nightmare for those poor people," says Gatica. Another person told Gatica: "I was so scared. The floods reminded me of the end of the world in Genesis in the Bible, and I was praying hard for Noah's Ark to come from heaven." Gatica said the moment they heard about the widespread flooding in Paniqui, he and his disaster action team immediately hurried to the scene on board a four-wheel drive vehicle loaded with non-perishable food. But the floodwaters prevented them from reaching the isolated communities. "We, too, were helpless. We felt so sorry for the affected families as we monitored on radio the worsening situation and the people panicking," says Gatica. "The most frustrating thing for us was when we knew that there were people trapped by floods yet we could not help. Paniqui which is just a 30 minute drive from our chapter in Tarlac city has become a place that was so near yet so far." The army, police, air force and navy rescued people from the rooftops using helicopters and motorized boats. The Red Cross and other agencies assisted in comforting the rescued people and providing them with clothes and food. Paniqui was one of the areas worst hit by the floods, with almost 34,000 people in 27 villages severely affected. Also badly hit was the town of Moncada, also in Tarlac, where 1,000 families remained cut off for days. Other flooded areas were the provinces of Pampanga, Bulacan, Nueva Ecija, Pangasinan, Bataan, La Union, Nueva Viscaya and Metro Manila. Luciano Paras, Jr., regional officer-in-charge of the Luzon region, said this was the first time the town of Paniqui had experienced huge flash floods. This was also the reason why the people were caught unprepared. In addition he said people were warned rather late. Paras attributed the unprecedented floods in Paniqui and seven other towns in Tarlac to the monsoon rains induced by typhoons "Marce" (international name Aere) and "Chaba" which also triggered strong river currents that gushed out through the breached dike in the village of Colibangbang, also in Paniqui. The floods spread fast in other towns in the province as well as in some parts of the nearby province of Pampanga. Philippine National Red Cross chairman Richard J. Gordon, who inspected the flooded areas by helicopter says he was shocked by what he saw, especially by people who were trapped and could not receive relief goods because of high flood waters that prevented transportation to isolated places. Gordon said the flood spread rapidly after four days of rains when 750 meters of Paniqui dike were breached by floodwaters rushing from the western side of the Mt Pinatubo volcano, which had been covered by lahars from the eruption in 1991. The flood was aggravated by the release of waters from the San Roque Dam in Pangasinan, north of Tarlac, that flooded the towns in Moncada, Paniqui and Ramos in Tarlac. Forty-four of the forty-seven towns in Pangasinan were also inundated. The Red Cross has provided initial food and relief goods worth more than US$27,000 to more than 54,000 people in the affected provinces. Relief consists of rice, canned goods, noodles, biscuits, compact food and used clothing. With the extent of damage to crops, livestock and properties estimated at 479 million Philippines pesos (US$ 8.5 million / 10.75 million Swiss francs), the people of the disaster-stricken areas fear that with no means of livelihood left, their suffering will continue. "The worst that could happen is when their children cry for food and they have nothing to give. That indeed, will be the most unbearable nightmare for our people," says Gallant.
{ "url": "http://reliefweb.int/report/philippines/nightmare-continues-philippine-flood-victims", "source_domain": "reliefweb.int", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "29178", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:5J3XL3WQHPHX5ELBTSFXMNY4E426S63Z", "WARC-Concurrent-To": "<urn:uuid:39d61cee-ce55-4c3e-a113-3764d8a99a27>", "WARC-Date": "2013-05-19T21:14:27Z", "WARC-IP-Address": "74.121.193.90", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ZWYEZQCKIV4QLALXNIA26RWVCGVIXSL5", "WARC-Record-ID": "<urn:uuid:46bf50fe-aff1-4e98-99fa-304ae5251aec>", "WARC-Target-URI": "http://reliefweb.int/report/philippines/nightmare-continues-philippine-flood-victims", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1afc54e3-e3b6-4e80-90a0-b5ba4b468ff8>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 49, 50, 57, 67, 92, 327, 715, 716, 915, 916, 1189, 1190, 1354, 1355, 1629, 1630, 1817, 1818, 1882, 1883, 2061, 2062, 2347, 2348, 2742, 2743, 2969, 2970, 3188, 3189, 3325, 3326, 3594, 3595, 3901, 3902, 4017, 4018, 4310, 4311, 4552, 4553, 4793, 4794, 5021, 5022, 5291, 5292 ], "line_end_idx": [ 49, 50, 57, 67, 92, 327, 715, 716, 915, 916, 1189, 1190, 1354, 1355, 1629, 1630, 1817, 1818, 1882, 1883, 2061, 2062, 2347, 2348, 2742, 2743, 2969, 2970, 3188, 3189, 3325, 3326, 3594, 3595, 3901, 3902, 4017, 4018, 4310, 4311, 4552, 4553, 4793, 4794, 5021, 5022, 5291, 5292, 5469 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5469, "ccnet_original_nlines": 48, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4013157784938812, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.00845864973962307, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14661653339862823, "rps_doc_frac_unique_words": 0.4514721930027008, "rps_doc_mean_word_length": 4.7851691246032715, "rps_doc_num_sentences": 47, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.384986877441406, "rps_doc_word_count": 917, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.007292619906365871, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.012534179724752903, "rps_doc_frac_chars_top_3gram": 0.007520509883761406, "rps_doc_frac_chars_top_4gram": 0.005013669840991497, "rps_doc_books_importance": -408.2058410644531, "rps_doc_books_importance_length_correction": -408.2058410644531, "rps_doc_openwebtext_importance": -268.1714172363281, "rps_doc_openwebtext_importance_length_correction": -268.1714172363281, "rps_doc_wikipedia_importance": -237.40501403808594, "rps_doc_wikipedia_importance_length_correction": -237.40501403808594 }, "fasttext": { "dclm": 0.015411670319736004, "english": 0.9863943457603455, "fineweb_edu_approx": 2.2898006439208984, "eai_general_math": 0.020948590710759163, "eai_open_web_math": 0.27771109342575073, "eai_web_code": 0.0014290199615061283 } }
{ "free_decimal_correspondence": { "primary": { "code": "363.342", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } }, "secondary": { "code": "959.92", "labels": { "level_1": "History and Geography", "level_2": "Asia", "level_3": "Southeast Asia" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
5,862,761,103,013,630,000
Writing an Algebraic Expression by Cyndy (United States) Question If n is equal to the number of rides and 1 ride is 2.00 and 2 rides is 2.50, write an expression using n to show the cost. Answer Base on the information given, the expression that we are going to write is only valid for 1 and 2 rides. Let's list down the information: Number of Ride (n)Cost 12.00 22.50 Let the cost of the rides be C. Hence, when n = 1, we have: C = 2.00    ----- (1) When n = 2, the cost increase by 0.50. Hence: C = 2.00 + 0.50    ----- (2) To write an expression that caters for (1) and (2), note that in (2), we can multiply the term, 0.50, with (n-1) as shown: C= 2.00 + 0.50(n-1)    ----- (3) Why? This is because the (n-1) will help to remove the 0.50 term when n =1. This is shown below: C = 2.00 + 0.50(1-1)  = 2.00 + 0.50(0)  = 2.00                   And, when n = 2, the (n-1) will help to retain the 0.50. This is shown below: C = 2.00 + 0.50(2-1)  = 2.00 + 0.50(1) = 2.00 + 0.50     = 2.50                  Hence, the expression that we are looking for is: C = 2.00 + 0.50(n-1)        For n =1 and n =2 Click here to post comments. Return to Algebra Library. iPod Touch & iPhone iPad Graphs & Equations Algebra Exponents Symmetry Fractions Measurements Interest Angles Triangles Useful Resources
{ "url": "http://www.mathexpression.com/writing-an-algebraic-expression.html", "source_domain": "www.mathexpression.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "34658", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:QUTARYOHZ6ENRPF6LMEAKQLKSQW5QD55", "WARC-Concurrent-To": "<urn:uuid:7c52306f-f1d7-4688-95ee-eb1de5a62d1b>", "WARC-Date": "2013-05-19T21:13:06Z", "WARC-IP-Address": "66.43.58.100", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:3ZHONZLBZAX7YUJAR4Q3UVMWKMMDMDO2", "WARC-Record-ID": "<urn:uuid:3a2442ef-9faf-450b-b0ed-2bae29b02a0d>", "WARC-Target-URI": "http://www.mathexpression.com/writing-an-algebraic-expression.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0d6ebe84-cfba-4568-a326-6935ec5920e7>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 32, 33, 42, 58, 59, 60, 61, 62, 71, 194, 201, 307, 308, 341, 342, 365, 371, 377, 378, 379, 411, 412, 440, 462, 463, 509, 538, 539, 662, 695, 696, 793, 814, 833, 858, 859, 937, 958, 976, 994, 1018, 1019, 1069, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1150, 1151, 1178, 1179, 1180, 1181, 1182, 1202, 1207, 1226, 1234, 1244, 1253, 1263, 1276, 1285, 1292, 1302 ], "line_end_idx": [ 32, 33, 42, 58, 59, 60, 61, 62, 71, 194, 201, 307, 308, 341, 342, 365, 371, 377, 378, 379, 411, 412, 440, 462, 463, 509, 538, 539, 662, 695, 696, 793, 814, 833, 858, 859, 937, 958, 976, 994, 1018, 1019, 1069, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1150, 1151, 1178, 1179, 1180, 1181, 1182, 1202, 1207, 1226, 1234, 1244, 1253, 1263, 1276, 1285, 1292, 1302, 1318 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1318, "ccnet_original_nlines": 68, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.24226804077625275, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.01804124005138874, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.530927836894989, "rps_doc_frac_unique_words": 0.4570135772228241, "rps_doc_mean_word_length": 3.8416290283203125, "rps_doc_num_sentences": 37, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.233524799346924, "rps_doc_word_count": 221, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1342756152153015, "rps_doc_frac_chars_dupe_6grams": 0.04711424931883812, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02826854959130287, "rps_doc_frac_chars_top_3gram": 0.02120140939950943, "rps_doc_frac_chars_top_4gram": 0.04475853964686394, "rps_doc_books_importance": -141.92495727539062, "rps_doc_books_importance_length_correction": -141.92495727539062, "rps_doc_openwebtext_importance": -83.88674926757812, "rps_doc_openwebtext_importance_length_correction": -83.88674926757812, "rps_doc_wikipedia_importance": -72.39567565917969, "rps_doc_wikipedia_importance_length_correction": -72.3955307006836 }, "fasttext": { "dclm": 0.6135298609733582, "english": 0.7897992730140686, "fineweb_edu_approx": 2.2233903408050537, "eai_general_math": 0.9959432482719421, "eai_open_web_math": 0.45254212617874146, "eai_web_code": 0.3033145070075989 } }
{ "free_decimal_correspondence": { "primary": { "code": "512", "labels": { "level_1": "Science and Natural history", "level_2": "Mathematics", "level_3": "Algebra" } }, "secondary": { "code": "510", "labels": { "level_1": "Science and Natural history", "level_2": "Mathematics", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,969,305,649,521,207,800
Fiji Times Logo Fiji Time: 10:28 AM on Friday 24 May / Front page / News CDP helps in flood relief effort Salaseini Vosamana Tuesday, May 01, 2012 FLOOD relief supplies collected in Vanua Levu will be delivered to victims in the Western Division for free by a local courier company. CDP's northern branch has so far sent across 125 cartons of supplies to the west for free. Company manager northern Dewan Chand said 100 more cartons would be sent to the west today. "We are offering our services for free so the supplies collected can reach the victims in the west on time. "This is the least we can do for our friends, relatives and families who were affected by the recent floods. "We are not only helping the flood victims but we are also saving extra money for those who have offered to donate clothes, food and housing materials as they don't have to pay for the freight charges," he said. Mr Chand said the initiative was part of their commitment and service to the people. "We are thrilled to help because one-day we might also need the assistance from our brothers and sisters in the west," Mr Chand said.
{ "url": "http://www.fijitimes.com/story.aspx?id=199946", "source_domain": "www.fijitimes.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "10348", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ZCT56ZVCTT33EXW32MDGIH647RZJ742K", "WARC-Concurrent-To": "<urn:uuid:9c689ce6-5f68-4ec4-a38d-2ca85e10c7a5>", "WARC-Date": "2013-05-23T22:28:23Z", "WARC-IP-Address": "216.128.24.23", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:BJG3VCIZADHAEMLTTE2OAHNQTMFWNRTG", "WARC-Record-ID": "<urn:uuid:dc3718ef-7a80-4c57-adbf-df3f7e8afb8e>", "WARC-Target-URI": "http://www.fijitimes.com/story.aspx?id=199946", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6200b47e-9398-48db-903b-80748706c770>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 54, 55, 75, 76, 109, 110, 129, 151, 152, 288, 289, 472, 473, 581, 582, 691, 692, 904, 905 ], "line_end_idx": [ 16, 17, 54, 55, 75, 76, 109, 110, 129, 151, 152, 288, 289, 472, 473, 581, 582, 691, 692, 904, 905, 1123 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1123, "ccnet_original_nlines": 21, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.42794761061668396, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.017467249184846878, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13973799347877502, "rps_doc_frac_unique_words": 0.6200000047683716, "rps_doc_mean_word_length": 4.425000190734863, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.556258201599121, "rps_doc_word_count": 200, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03163842111825943, "rps_doc_frac_chars_top_3gram": 0.027118640020489693, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -108.86604309082031, "rps_doc_books_importance_length_correction": -108.86604309082031, "rps_doc_openwebtext_importance": -61.603084564208984, "rps_doc_openwebtext_importance_length_correction": -55.29117202758789, "rps_doc_wikipedia_importance": -50.204734802246094, "rps_doc_wikipedia_importance_length_correction": -50.204734802246094 }, "fasttext": { "dclm": 0.00020546000450849533, "english": 0.9823314547538757, "fineweb_edu_approx": 1.226503849029541, "eai_general_math": 0.0003964299976360053, "eai_open_web_math": 0.07135611772537231, "eai_web_code": -6.000000212225132e-7 } }
{ "free_decimal_correspondence": { "primary": { "code": "363.34", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
5,547,427,408,568,589,000
Back to forum image rss 85 weeks ago Where else can I get this shirt? I missed it when it was offered (on my birthday, no less) and it's the first design in many moons that I would've immediately pounced on. Any idea where I can get one? Size XL? I didn't see a website for the artist. 1Comments Back to Top
{ "url": "http://www.teefury.com/forum/7031/Game_Over_Man_/", "source_domain": "www.teefury.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "20427", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:N3TPLRJHVQCD7J4P22LPCMBUGBUNK77E", "WARC-Concurrent-To": "<urn:uuid:b0c28e87-f7c4-4fde-994b-2845aa651cf0>", "WARC-Date": "2013-06-19T05:50:14Z", "WARC-IP-Address": "190.93.240.144", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:VLPDNZCON2PF4URURP7IK66RYOCHH52Y", "WARC-Record-ID": "<urn:uuid:db5e2fa1-202b-4524-ab03-5453ce03d7cd>", "WARC-Target-URI": "http://www.teefury.com/forum/7031/Game_Over_Man_/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b8b43ff7-84a5-4ddc-96c0-d4736d20d687>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 14, 20, 37, 286, 296, 297, 298 ], "line_end_idx": [ 14, 20, 37, 286, 296, 297, 298, 309 ] }
{ "red_pajama_v2": { "ccnet_original_length": 309, "ccnet_original_nlines": 7, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.43421053886413574, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.07894737273454666, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.15789474546909332, "rps_doc_frac_unique_words": 0.8064516186714172, "rps_doc_mean_word_length": 3.7903225421905518, "rps_doc_num_sentences": 6, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.8184642791748047, "rps_doc_word_count": 62, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05106382817029953, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -38.506103515625, "rps_doc_books_importance_length_correction": -38.506103515625, "rps_doc_openwebtext_importance": -15.604788780212402, "rps_doc_openwebtext_importance_length_correction": -15.604788780212402, "rps_doc_wikipedia_importance": -16.596832275390625, "rps_doc_wikipedia_importance_length_correction": -16.596832275390625 }, "fasttext": { "dclm": -0.000009420000424142927, "english": 0.9873932003974915, "fineweb_edu_approx": 0.4427824020385742, "eai_general_math": 0.0001651600032346323, "eai_open_web_math": 0.21281510591506958, "eai_web_code": -0.000009180000233754981 } }
{ "free_decimal_correspondence": { "primary": { "code": "741.6", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,712,413,267,237,348,000
SCRAPBOOKING CRAFTS PAINTING SEWING KNITTING CROSS STITCH We ship Worldwide! Welcome Scrapbooker! My Cart (0) McAfee SECURE sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams    Blues Twisted Twine 4 Ply 10yds TS-1107 SKU# 298361 Be the first to review this product Availability: In Stock $1.99 Quick Overview Blues Twisted Twine 4 Ply 10yds TS-1107 Blues Twisted Twine 4 Ply 10yds TS-1107 Click on image to zoom. More Views • Blues Twisted Twine 4 Ply 10yds TS-1107 Details QUEEN & CO-Twisted Twine. This package contains one 10-yard spool of twine. Available in a variety of colors (each sold separately). Imported. Additional Information SKU 298361 Weight 0.0400 MPN TS-1107 Manufacturer Queen & Co Depth 1.25 Width 3.4 UPC 081930011076 ASIN N/A Height 3.25 Product Tags Submit a new tag now and earn 10 Reward points once the tag is approved. Learn more... Applies only to registered customers, may vary when logged in. Use spaces to separate tags. Use single quotes (') for phrases.  
{ "url": "http://www.stuff4scrapbooking.com/blues-twisted-twine-4-ply-10yds-ts-1107.html", "source_domain": "www.stuff4scrapbooking.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "50077", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ODXU32JF4BILBAFLYGOI4NMYRRQY4BL6", "WARC-Concurrent-To": "<urn:uuid:4578387e-a2be-428a-8bc7-a924f6eb54fa>", "WARC-Date": "2013-05-21T19:11:00Z", "WARC-IP-Address": "98.129.138.66", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:S7SCYNFKTW6F55KRFKVNLU5XL7BQSIMJ", "WARC-Record-ID": "<urn:uuid:99fbe589-a650-4e4b-816a-1f8fccea7863>", "WARC-Target-URI": "http://www.stuff4scrapbooking.com/blues-twisted-twine-4-ply-10yds-ts-1107.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1afafb7a-db71-4e77-8483-117394b5ea56>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 13, 20, 29, 36, 45, 58, 77, 78, 99, 100, 112, 231, 234, 235, 275, 276, 288, 289, 325, 326, 349, 350, 356, 357, 372, 373, 413, 453, 454, 478, 479, 490, 491, 535, 543, 686, 709, 720, 734, 746, 770, 781, 791, 808, 817, 829, 830, 843, 844, 917, 918, 932, 933, 996, 997, 1061, 1062 ], "line_end_idx": [ 13, 20, 29, 36, 45, 58, 77, 78, 99, 100, 112, 231, 234, 235, 275, 276, 288, 289, 325, 326, 349, 350, 356, 357, 372, 373, 413, 453, 454, 478, 479, 490, 491, 535, 543, 686, 709, 720, 734, 746, 770, 781, 791, 808, 817, 829, 830, 843, 844, 917, 918, 932, 933, 996, 997, 1061, 1062, 1063 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1063, "ccnet_original_nlines": 57, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1506849229335785, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.1004566177725792, "rps_doc_frac_lines_end_with_ellipsis": 0.017241379246115685, "rps_doc_frac_no_alph_words": 0.29680365324020386, "rps_doc_frac_unique_words": 0.7485029697418213, "rps_doc_mean_word_length": 4.940119743347168, "rps_doc_num_sentences": 17, "rps_doc_symbol_to_word_ratio": 0.00913241971284151, "rps_doc_unigram_entropy": 4.678554058074951, "rps_doc_word_count": 167, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.15515151619911194, "rps_doc_frac_chars_dupe_6grams": 0.15515151619911194, "rps_doc_frac_chars_dupe_7grams": 0.15515151619911194, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05818181857466698, "rps_doc_frac_chars_top_3gram": 0.08242423832416534, "rps_doc_frac_chars_top_4gram": 0.08727273344993591, "rps_doc_books_importance": -67.9091567993164, "rps_doc_books_importance_length_correction": -67.9091567993164, "rps_doc_openwebtext_importance": -41.00290298461914, "rps_doc_openwebtext_importance_length_correction": -29.14110565185547, "rps_doc_wikipedia_importance": -49.47944259643555, "rps_doc_wikipedia_importance_length_correction": -49.47944259643555 }, "fasttext": { "dclm": -0.000007390000064333435, "english": 0.7506945729255676, "fineweb_edu_approx": 0.7532853484153748, "eai_general_math": -1.199999957179898e-7, "eai_open_web_math": 0.013975019566714764, "eai_web_code": -0.000007510000159527408 } }
{ "free_decimal_correspondence": { "primary": { "code": "745.56", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Decorative arts" } }, "secondary": { "code": "684.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Woodwork and Furniture" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
161,237,626,782,477,060
Skip to content Expect the Nationals to trade Michael Morse Jan 8, 2013, 12:49 PM EDT Mike Morse Getty Getty Images It took Adam LaRoche a couple months to cave in and accept the Nationals’ two-year offer, but now that he’s returning to Washington expect Michael Morse to be on the way out. Morse has somewhat quietly been one of the better right-handed hitters in baseball since becoming a regular in 2010, but there’s nowhere for him to play with LaRoche at first base and Bryce Harper and Jayson Werth flanking Denard Span in the outfield. Morse batted .291 with 18 homers and a .791 OPS in 102 games last season and has hit .296 with 64 homers and an .861 OPS in 346 games since 2010. During that three-year span his OPS ranks 15th among all right-handed hitters with 1,000-plus plate appearances, sandwiched between Andrew McCutchen and Corey Hart. However, his trade value could be somewhat limited because Morse will be a free agent next offseason and gives back a ton of runs defensively in the outfield. But for a team in need of some right-handed pop in the middle of the lineup–and perhaps willing to play him at first base or designated hitter–Morse would make a lot of sense. 1. proudlycanadian - Jan 8, 2013 at 12:52 PM Would the Yankees want him? • uyf1950 - Jan 8, 2013 at 12:54 PM Could be as I said below. He’s going to make $6.75MM in 2013 and he’s a FA in 2014. It all depends I think on hat the Nationals want in return. • uyf1950 - Jan 8, 2013 at 12:54 PM correction: …on “what” the Nationals…. • sabathiawouldbegoodattheeighthtoo - Jan 8, 2013 at 1:10 PM I would give the Nats any hat I own for Mike Morse if I am Brian Cashman. • uyf1950 - Jan 8, 2013 at 1:34 PM sabathia, that would have been a lot funny if you had posted it BEFORE i posted my correction. 2. uyf1950 - Jan 8, 2013 at 12:52 PM Depending on the cost the Yankees could certainly be interested. The cost is the elephant in the room in this case though. • dcfan4life - Jan 8, 2013 at 1:56 PM The Nats have little needs, but if anything they can strengthen their bullpen a little more, another lefty in particular, or combo Morse and Espinosa to improve their second base situation (their one truly weak position player in my opinion), or just ask for prospects. Since Cano not even an option, and the Yankees have limited lefties in their bullpen as of right now to unlikely spare one, if a deal is done with them, it would be for prospects in my opinion. I just dont see the Yankees and Nats dealing here though. • uyf1950 - Jan 8, 2013 at 2:31 PM The Yankees currently have 2 very, very decent lefty relief pitchers on their 25 man roster: Boone Logan and Clay Rapada. They could certainly part with 1. Personally I think Rapada is the better of the 2 but that’s just my opinion. With a prospect included by the Yankees (depending who) I can see the teams matching up pretty well. Of course it also depends on what some other teams might offer. • dcfan4life - Jan 8, 2013 at 2:59 PM I didnt think the Yankees would give up 1 of their 2 good lefties AND a prospect to get Morse, which i think would be the asking price of the Nationals. But i dunno the Yankees farm system as much. If they feel they can replace one of those lefties than i think that kind of deal would benefit both teams. But as this free agent market has shown, good left handed relievers are hard to come by. Thats why i would think the Yankees would be well served to keep both the ones they have. • uyf1950 - Jan 8, 2013 at 3:13 PM dcfan4life, I don’t know if they would either. But I think to get the bat they are looking for 1 of the lefties would be expendable. Just my opinion. 3. jerze2387 - Jan 8, 2013 at 1:02 PM Super utility role for morse. OF, 1st, came up as a SS so could back up 3rd and SS in a pinch..id like to see him stay in WAS. Especially with the way injuries and slumps go, couldnt hurt to keep an extra bat for 1 more year now that theyre on the playoff track • kinggw - Jan 8, 2013 at 1:07 PM They have Moore, Lombardozzi, and the Shark for reserve roles. Morse should be dealt. He deserves to be an everyday player. • jerze2387 - Jan 8, 2013 at 1:14 PM but he seems a big part of the chemistry also, and why mess with the chemistry of a team on the brink? he could get regular playing time i think with scheduled days off and injuries. • dcfan4life - Jan 8, 2013 at 1:59 PM Morse will never play SS or 3B in the majors. OF, 1B and DH are his only options. And Washington has tremendous utility men. Since theres no where to play him, no way he resigns in Washington, he must be traded. It really isnt a question of if he is but how much we get for him. 4. bat42boy - Jan 8, 2013 at 1:06 PM Would make a great fit for the Indians? They need a DH and being a right hander would make that line-up much better. • sabathiawouldbegoodattheeighthtoo - Jan 8, 2013 at 1:11 PM Indians should not be trading any young talent for a one year guy. Isn’t that why they dumped Choo and signed Swisher long-term? 5. redsox32c - Jan 8, 2013 at 1:11 PM As a free agent I assume he would cost a draft pick for an team to sign him, that plus the fact that hes pretty cheap this year I would think he would be a valuable trade target for a few teams. My guess is a mid level prospect would do it so basically your trading for 1 year of Morse plus a comp pick the following year. 6. sabathiawouldbegoodattheeighthtoo - Jan 8, 2013 at 1:13 PM The Yankees need to be on this like a blogger on his mom’s basement. • awesomenar - Jan 8, 2013 at 1:43 PM … like a blogger on his mom’s insurance. • awesomenar - Jan 8, 2013 at 3:15 PM … like a blogger on his mom’s meatloaf. 7. nyyanksmf - Jan 8, 2013 at 1:15 PM This would be perfect for yanks but I just don’t believe well pull the trigger he’s too young for us lol 8. psuravens19 - Jan 8, 2013 at 1:15 PM Matusz for Morse…. only if he would agree to an extension. 9. Old Gator - Jan 8, 2013 at 1:23 PM Morse to the Feesh for Tweeter, straight up. The Gnats could use an easy out coming off their bench who can play an immobile first base and knows how to run crop circles in the outfield when his knee isn’t out of kilter. Nyuknyuknyuk….. 10. csndrew - Jan 8, 2013 at 1:23 PM Offensively, Morse is a great LF option for the Phillies – hits for power, bats right-handed. But at 30 years old, he’s way too young. • dcfan4life - Jan 8, 2013 at 2:02 PM A trade to a division rival the Phillies who are in the midst of coming back from injuries and a down season? No way the Nats help the Phillies here. They would let him walk via FA before they did that. 11. darthicarus - Jan 8, 2013 at 1:24 PM Based on all the rumors swirling, Morse decided to stay silent on Twitter for “a while” https://twitter.com/Dc_BEAST38/status/288704083181834241 That lasted 27 minutes when he retweeted some spiritual stuff, guess he just needed a few minutes to reflect…. 12. blockedshotnyr - Jan 8, 2013 at 1:38 PM Would love him on the Mets, but only with an extension attached… 13. shawnuel - Jan 8, 2013 at 2:00 PM Morse has become way too big to man SS or 3rd anymore. He was already a slug before bulking up.He is pretty terrible in the field at LF as well. 1B and DH are the best positions for him. • dcfan4life - Jan 8, 2013 at 2:05 PM His outfielding will never be as bad as Alfonso Soriano and Manny Ramirez. It will always be an option to keep him in the OF. • dakotah55 - Jan 8, 2013 at 2:30 PM Or Adam Dunn. Remember him in left? Every fly ball was an adventure. 14. xpensivewinos - Jan 8, 2013 at 2:05 PM Time for the Red Sox to stop the shenanigans with Napoli and get on horn and swing a deal for this guy. • lphboston - Jan 8, 2013 at 6:39 PM Outside of Pedroia there is no everyday player the Sox have that could start for Washington. But maybe a couple of A Grade minor league relievers might get it done 15. paperlions - Jan 8, 2013 at 2:46 PM Injuries happen. Without Morse, who is the next guy off the bench? If they don’t get good return for him, they are probably far better served keeping him. Leave Comment You must be logged in to leave a comment. Not a member? Register now! Top 10 MLB Player Searches 1. J. Odorizzi (4137) 2. J. Profar (4062) 3. J. Garcia (3931) 4. A. Eaton (3742) 5. K. Gausman (3558) 1. M. Cabrera (3489) 2. B. Harper (3338) 3. B. Beachy (3274) 4. M. Garza (3243) 5. I. Davis (2987)
{ "url": "http://hardballtalk.nbcsports.com/2013/01/08/expect-the-nationals-to-trade-michael-morse/", "source_domain": "hardballtalk.nbcsports.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "975581", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:6MOWI7RQ3IAXGGLUILNPXXO5PD7IR6V5", "WARC-Concurrent-To": "<urn:uuid:eb5932a0-457c-49e1-9122-4b348fe54bd6>", "WARC-Date": "2013-05-24T20:09:45Z", "WARC-IP-Address": "76.74.255.117", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:TAKMAXE5JLA66DUHUCETJHWXJ7XDKNG7", "WARC-Record-ID": "<urn:uuid:5d0667bc-5bd3-4a32-8b1e-b975473b8075>", "WARC-Target-URI": "http://hardballtalk.nbcsports.com/2013/01/08/expect-the-nationals-to-trade-michael-morse/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:feec92e3-0a98-494d-913f-0e170ea1bb86>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 61, 62, 88, 89, 119, 120, 295, 296, 548, 549, 860, 861, 1196, 1197, 1244, 1245, 1277, 1278, 1318, 1319, 1469, 1470, 1512, 1513, 1560, 1561, 1628, 1629, 1711, 1712, 1753, 1754, 1857, 1858, 1897, 1898, 2025, 2026, 2068, 2069, 2597, 2598, 2639, 2640, 3046, 3047, 3091, 3092, 3585, 3586, 3627, 3628, 3786, 3787, 3827, 3828, 4094, 4095, 4133, 4134, 4264, 4265, 4308, 4309, 4500, 4501, 4543, 4544, 4829, 4830, 4869, 4870, 4991, 4992, 5057, 5058, 5193, 5194, 5234, 5235, 5562, 5563, 5627, 5628, 5701, 5702, 5744, 5745, 5792, 5793, 5835, 5836, 5882, 5883, 5923, 5924, 6033, 6034, 6076, 6077, 6140, 6141, 6181, 6182, 6407, 6408, 6428, 6429, 6468, 6469, 6608, 6609, 6651, 6652, 6861, 6862, 6905, 6906, 7055, 7056, 7171, 7172, 7218, 7219, 7288, 7289, 7329, 7330, 7521, 7522, 7564, 7565, 7697, 7698, 7741, 7742, 7819, 7820, 7865, 7866, 7974, 7975, 8016, 8017, 8187, 8188, 8230, 8231, 8390, 8391, 8405, 8406, 8476, 8477, 8504, 8528, 8550, 8572, 8593, 8616, 8639, 8661, 8683, 8704 ], "line_end_idx": [ 16, 17, 61, 62, 88, 89, 119, 120, 295, 296, 548, 549, 860, 861, 1196, 1197, 1244, 1245, 1277, 1278, 1318, 1319, 1469, 1470, 1512, 1513, 1560, 1561, 1628, 1629, 1711, 1712, 1753, 1754, 1857, 1858, 1897, 1898, 2025, 2026, 2068, 2069, 2597, 2598, 2639, 2640, 3046, 3047, 3091, 3092, 3585, 3586, 3627, 3628, 3786, 3787, 3827, 3828, 4094, 4095, 4133, 4134, 4264, 4265, 4308, 4309, 4500, 4501, 4543, 4544, 4829, 4830, 4869, 4870, 4991, 4992, 5057, 5058, 5193, 5194, 5234, 5235, 5562, 5563, 5627, 5628, 5701, 5702, 5744, 5745, 5792, 5793, 5835, 5836, 5882, 5883, 5923, 5924, 6033, 6034, 6076, 6077, 6140, 6141, 6181, 6182, 6407, 6408, 6428, 6429, 6468, 6469, 6608, 6609, 6651, 6652, 6861, 6862, 6905, 6906, 7055, 7056, 7171, 7172, 7218, 7219, 7288, 7289, 7329, 7330, 7521, 7522, 7564, 7565, 7697, 7698, 7741, 7742, 7819, 7820, 7865, 7866, 7974, 7975, 8016, 8017, 8187, 8188, 8230, 8231, 8390, 8391, 8405, 8406, 8476, 8477, 8504, 8528, 8550, 8572, 8593, 8616, 8639, 8661, 8683, 8704, 8724 ] }
{ "red_pajama_v2": { "ccnet_original_length": 8724, "ccnet_original_nlines": 166, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.38068756461143494, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.043478261679410934, "rps_doc_frac_lines_end_with_ellipsis": 0.005988019984215498, "rps_doc_frac_no_alph_words": 0.2745197117328644, "rps_doc_frac_unique_words": 0.3732660710811615, "rps_doc_mean_word_length": 4.030895233154297, "rps_doc_num_sentences": 123, "rps_doc_symbol_to_word_ratio": 0.004044489935040474, "rps_doc_unigram_entropy": 5.600780487060547, "rps_doc_word_count": 1586, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.09838885813951492, "rps_doc_frac_chars_dupe_6grams": 0.08462381362915039, "rps_doc_frac_chars_dupe_7grams": 0.01532926969230175, "rps_doc_frac_chars_dupe_8grams": 0.01532926969230175, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02127327024936676, "rps_doc_frac_chars_top_3gram": 0.04254654049873352, "rps_doc_frac_chars_top_4gram": 0.05161895975470543, "rps_doc_books_importance": -706.374267578125, "rps_doc_books_importance_length_correction": -706.374267578125, "rps_doc_openwebtext_importance": -503.7411193847656, "rps_doc_openwebtext_importance_length_correction": -503.7411193847656, "rps_doc_wikipedia_importance": -438.7065734863281, "rps_doc_wikipedia_importance_length_correction": -438.7065734863281 }, "fasttext": { "dclm": 0.0000350500013155397, "english": 0.9490357637405396, "fineweb_edu_approx": 0.8461881279945374, "eai_general_math": 0.02545798011124134, "eai_open_web_math": 0.26805579662323, "eai_web_code": 0.00006138999742688611 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.357", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "338.4766", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
4,339,311,923,405,427,000
Online Privacy Over the years eBay Inc. has learned that one of the keys to success is engendering consumer trust and confidence. To foster that trust, we’ve had to meet customer privacy expectations with every product we offer. We continually strive to meet and exceed consumer expectations, while offering greater levels of transparency, consistency, and consumer control.  Over the years, we have launched several privacy enhancing products and services, including our Ad Choice program, which allows eBay users to choose whether to receive behaviorally targeted third party advertising on eBay and on the websites of our advertising partners.  As a result of our focus on privacy, eBay Inc. was twice ranked by consumers as the most trusted brand for privacy through the Ponemon Institute.  As governments and regulators around the world wrestle with the difficult task of developing new policies to strengthen privacy protections, we want to engage in that dialogue and add value by sharing our expertise and experience.  We believe that there is an important role for policymakers in protecting consumer interests and we are happy to serve as a resource to policymakers on best practices in consumer protection.   However, we would strongly encourage policymakers to promote legislation that creates a uniform standard, is technologically neutral, and broadly based on the Fair Information Practice Principles.  In addition, any privacy law should provide a rational and constructive framework to protect consumers while recognizing legitimate uses of personal information in order to enhance consumer experience and ensure safety and security. eBay Inc. is committed to delighting our customers at every turn and we look forward to working with policymakers around the world, to help craft regulations and policies that protect consumers while preserving innovation and growth.  For more information on eBay Inc. and our privacy efforts, please visit eBay’s Privacy Center.
{ "url": "http://www.ebaymainstreet.com/issues/online-privacy", "source_domain": "www.ebaymainstreet.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "19278", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ZIRKXZD4HUMR2XYDWXKA7P4ZR5IID4ZD", "WARC-Concurrent-To": "<urn:uuid:daa9266c-8aba-4c92-8aae-e406c27a32a6>", "WARC-Date": "2013-05-22T13:36:17Z", "WARC-IP-Address": "66.211.164.76", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:VUNH4RKTJ6XPYQ6NR53AHQVNG7QCDSD2", "WARC-Record-ID": "<urn:uuid:2eaf0dab-2c49-4d1a-ae0d-98a643a2300f>", "WARC-Target-URI": "http://www.ebaymainstreet.com/issues/online-privacy", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0f87aefe-1648-4411-be44-f7f36aca363b>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 15, 16, 230, 231, 797, 798, 1654, 1655 ], "line_end_idx": [ 15, 16, 230, 231, 797, 798, 1654, 1655, 1984 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1984, "ccnet_original_nlines": 8, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3940298557281494, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.09552238881587982, "rps_doc_frac_unique_words": 0.5780730843544006, "rps_doc_mean_word_length": 5.4551496505737305, "rps_doc_num_sentences": 15, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.754486083984375, "rps_doc_word_count": 301, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.017052380368113518, "rps_doc_frac_chars_top_3gram": 0.01461631990969181, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -170.19984436035156, "rps_doc_books_importance_length_correction": -170.19984436035156, "rps_doc_openwebtext_importance": -94.83717346191406, "rps_doc_openwebtext_importance_length_correction": -94.83717346191406, "rps_doc_wikipedia_importance": -47.89914321899414, "rps_doc_wikipedia_importance_length_correction": -47.89914321899414 }, "fasttext": { "dclm": 0.0037589699495583773, "english": 0.9381806254386902, "fineweb_edu_approx": 1.0444499254226685, "eai_general_math": 0.0021740200463682413, "eai_open_web_math": 0.039542730897665024, "eai_web_code": 0.005880239885300398 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.8", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "344.73", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Martial law" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "5", "label": "Evaluate" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "11", "label": "Legal/Regulatory" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "1", "label": "About (Org.)" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,046,269,475,459,772,000
[Nameplate] Mostly Cloudy ~ 58°F   High: 86°F ~ Low: 65°F Sunday, May 26, 2013 Sikeston downs Malden, NMCC in opener Tuesday, March 22, 2011 (Photo) Sikeston's Connor Landers watches his putt on the eighth green at the Sikeston Country Club on Monday. New Madrid County Central's Lofton Hayes (right) looks on. (Photo by Chris Pobst, Staff) Bulldogs' Evan Deere shoots 39 to lead team [email protected] SIKESTON -- It wasn't the perfect opening day but the Sikeston Bulldogs' golf team captured the top spot on Monday at the Sikeston Country Club over visiting New Madrid County Central and Malden. As a team, Sikeston shot a 168 through nine holes. Junior Evan Deere led the team's efforts with a score of 39 -- four over par. "Evan shooting a 39 is something we ought to expect," Sikeston golf coach Andy McGill said. "Just getting a win is going to be good. Our scores this match compared to where we were last year at this time are better. You can't argue that." Battling gusts of wind of up to 20 miles per hour and the anticipations of playing in their first match of the season, sophomore Kirk Hoggatt shot five over par (40) while Conor MacGillivray scored a 41. Connor Landers ended his day with a 48, Ben Murray a 53 and Caleb Hampton a 57. "Conor and Kirk shooting 41 and 40 are both really good," said McGill. "We had a goal to shoot 165 and we shot 168, so we were a little bit off. But, at the same token, I thought the kids played pretty good." NMCC shot a 194 on the day with Reece Porter leading their way with a 47. "I kind of expected (our scores) to be in the high 40's with the wind and everything but we were shooting for low to mid 40's," NMCC coach Greg Hamm said. "But, it's the first match and it's early in the year so, there's lots of room for improvement. That's what we're looking for." It was a decent start to the season for Sikeston on their home course -- a place they will only play once more however during the remained of the season. "The one thing I pointed out to our kids is that we only have one more match here at our home course," McGill said. "We're comfortable with what our home course is and it's flat compared to a lot of the other courses we're going to play. "Our expectations have got to be a little higher, even though we did play pretty well today considering the conditions." Team Scores -- Sikeston 168, Malden 189, NMCC 194 Individual Scores Sikeston -- Evan Deere 39, Connor Landers 48, Kirk Hoggatt 40, Conor MacGillivray 41, Ben Murray 53, Caleb Hampton 57. NMCC -- Reece Porter 47, Lofton Hayes 49, Trey Recker 49, N. Mackaras 49, B. Fischer 54, T. Moore 65. Malden -- Patillo 53, Shepard 65, Montgomery 65. Related subjects
{ "url": "http://www.standard-democrat.com/story/1712479.html", "source_domain": "www.standard-democrat.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "16445", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:FQ6M56FLNSXNZMCU4MEONME2MMLCKFQ7", "WARC-Concurrent-To": "<urn:uuid:150259d4-7b17-432d-acbc-8abe4d3ba9eb>", "WARC-Date": "2013-05-26T09:42:32Z", "WARC-IP-Address": "64.123.246.64", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:OPVGRKSWY3TS7MRMA4FT4PANMJGMJQL6", "WARC-Record-ID": "<urn:uuid:d20964fb-1940-4527-8943-8aca5761c292>", "WARC-Target-URI": "http://www.standard-democrat.com/story/1712479.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:2442f07a-cc3f-4da1-9fca-b6e1de5fc5d2>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 35, 58, 79, 80, 118, 119, 143, 144, 152, 314, 344, 388, 389, 418, 419, 615, 616, 745, 746, 985, 986, 1190, 1191, 1271, 1272, 1481, 1482, 1556, 1557, 1840, 1841, 1995, 1996, 2234, 2235, 2356, 2357, 2407, 2408, 2426, 2427, 2546, 2547, 2649, 2650, 2699, 2700, 2701 ], "line_end_idx": [ 35, 58, 79, 80, 118, 119, 143, 144, 152, 314, 344, 388, 389, 418, 419, 615, 616, 745, 746, 985, 986, 1190, 1191, 1271, 1272, 1481, 1482, 1556, 1557, 1840, 1841, 1995, 1996, 2234, 2235, 2356, 2357, 2407, 2408, 2426, 2427, 2546, 2547, 2649, 2650, 2699, 2700, 2701, 2717 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2717, "ccnet_original_nlines": 48, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.350482314825058, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.024115759879350662, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.25562700629234314, "rps_doc_frac_unique_words": 0.5051546692848206, "rps_doc_mean_word_length": 4.272164821624756, "rps_doc_num_sentences": 30, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.156070709228516, "rps_doc_word_count": 485, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.023166019469499588, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01882239058613777, "rps_doc_frac_chars_top_3gram": 0.012548260390758514, "rps_doc_frac_chars_top_4gram": 0.019305020570755005, "rps_doc_books_importance": -281.3858947753906, "rps_doc_books_importance_length_correction": -281.3858947753906, "rps_doc_openwebtext_importance": -195.5817413330078, "rps_doc_openwebtext_importance_length_correction": -195.5817413330078, "rps_doc_wikipedia_importance": -124.04471588134766, "rps_doc_wikipedia_importance_length_correction": -124.04471588134766 }, "fasttext": { "dclm": 0.0019596200436353683, "english": 0.9622235298156738, "fineweb_edu_approx": 0.9117050170898438, "eai_general_math": 0.00043278999510221183, "eai_open_web_math": 0.10068541765213013, "eai_web_code": 0.00011528000322869048 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.357", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,209,629,384,740,408,000
FILTERS Reset With Ingredients Without Ingredients Holidays Time Tastes Diets Allergies Nutrition Per serving Techniques Cuisines Courses Sources Brands Hash Brown Potatoes Velveeta Cheese Recipes Hash Browns Potato Soup onion, butter, velveeta cheese, potatoes, sour cream, pepper, water and 4 MORE Food.com 3 3 3 3 4 Velveeta Mayo Hash Browns hash browns, velveeta cheese, bacon and mayonnaise Food.com 3 3 3 3 4 Cheesy Hash Browns and Kielbasa Soup (Crock Pot) chicken broth, diced onion, hash browns, velveeta cheese and kielbasa Food.com 3 3 3 3 4 Creamy Hash Brown Potato Casserole pepper, garlic powder, sour cream, velveeta cheese, salt, potatoes and 4 MORE Food.com 3 3 3 3 4 Cheesy Hash Browns Casserole sour cream, hash browns, cream of chicken soup, butter, velveeta cheese and onions Food.com 3 3 4 4 4 Amy's Hash Browns Casserole cream of mushroom soup, sour cream, butter, pepper, hash brown, diced onion and 4 MORE Food.com 3 3 3 3 4 Easy Cheesy Potatoes velveeta cheese, cream of chicken soup, hash browns, milk and butter Food.com 3 3 3 3 4 Super Easy Hash Browns Potato Soup cream of celery soup, onion, hash browns, milk, butter, cream of chicken soup and 3 MORE Food.com 3 3 3 3 4 Cheesy Potatoes margarine, cream of chicken soup, hash brown potatoes, sour cream and 1 MORE Food.com 3 3 3 3 4 Hash Browns Casserole butter, hash browns, velveeta cheese and half and half Food.com 3 3 3 4 4 Au Gratin Potatoes shredded cheddar cheese, margarine, hash brown potatoes, half-and-half and 1 MORE Food.com 3 3 3 3 4 Creamy Hash Brown Casserole french fried onions, velveeta cheese, hash brown, onions, sour cream, margarine and 1 MORE Food.com 3 3 3 4 4 Hamburger and Hash Browns margarine, pepper, onion, potatoes, hamburger, milk, salt, egg, velveeta cheese and 2 MORE Food.com 3 3 3 3 4 Slow Cooked Creamy Hash Browns cream of chicken soup, potatoes, cream of celery soup, onion, velveeta cheese and 4 MORE Food.com 4 4 4 4 4 Breakfast Casserole cheddar cheese, cream of potato soup, salt, bacon, hash browns, pepper and 2 MORE Food.com 3 3 3 3 4 Easy Cheesy Potatoes onion, hash browns, mayonnaise, salt, velveeta cheese and pepper Food.com 3 3 3 3 4 Barbara's Cheesy Potatoes butter, velveeta cheese, hash browns, sharp cheddar cheese and cream Food.com 3 3 3 3 4 Cheesy Hash Browns With Ham sour cream, bacon, ham, onion, hash browns, melted butter, corn flakes and 3 MORE Food.com 3 3 3 4 4 Cheese Potatoes butter, half and half, hash browns and velveeta cheese Food.com 3 3 3 3 4 Tex-Mex Beef and Potatoes hash browns, ground beef, water, corn, seasoning mix and velveeta cheese Food.com 3 3 3 3 4 Molly's Cheesy Potato Casserole sour cream, hash browns, diced onion, cream of chicken soup, butter and 1 MORE Food.com 4 4 4 4 4 Quick Cheese Potatoes bacon bits, margarine, half-and-half, hash brown potatoes and 3 MORE Food.com 3 3 3 3 4 Best Ever Potato Casserole Cullen Baker Country Sampler melted butter, salt, corn flakes, cream of chicken soup, hash browns, onion and 2 MORE Food.com 4 4 4 4 4 Easy and Quick Cheese-Lover's Potato Bake black pepper, velveeta cheese, hash browns, yellow onion, sour cream, salt and 3 MORE Food.com 3 3 3 4 4 Funeral Potatoes corn flakes, velveeta cheese, hash brown, onions, sour cream, melted butter and 1 MORE Food.com 3 3 3 3 4 Spam N Hash Browns Bake milk, hash browns, garlic powder, spam, cream of chicken soup, sour cream and 6 MORE Food.com 4 4 4 4 4 Crockpot Potato Soup hash browns, cream of potato soup, cream of chicken soup, milk and 2 MORE Food.com 4 4 4 4 4 Cheeseburger Soup parsley, pepper, carrots, milk, onion, sour cream, butter, hash browns, flour and 5 MORE Food.com 3 3 3 3 4 VELVEETA Tex-Mex Beef and Potatoes water, hash browns, velveeta, red pepper, ground beef, corn, seasoning mix and 1 MORE Food Network 3 3 3 3 3 Cheesy Tex-Mex Hash Browns Casserole diced onion, cream cheese, crumbs, velveeta, green chilis, hash brown and 4 MORE Food.com 3 3 3 4 4 Cheesy Potatoes Au Gratin velveeta cheese, hash browns, half-and-half, pepper, butter and salt Food.com 3 3 3 3 4 Creamy Cheesy Vegetable Soup milk, chicken bouillon cubes, water, velveeta cheese, vegetables and 2 MORE Food.com 3 3 3 4 4 Hearty Party Cheese Dip Recipe mushrooms, velveeta cheese, milk, sausage, cheese, cheese, mushroom soup and browns Chow 4 4 4 4 4 Cheesy Potatoes oleo, half-and-half, hash browns, cheddar cheese and velveeta cheese Food.com 3 3 3 3 4
{ "url": "http://www.yummly.com/recipes/hash-brown-potatoes-velveeta-cheese", "source_domain": "www.yummly.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "118730", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:BAX3WGEBMX4UEGTLIOB3TE2BFEWFHAJY", "WARC-Concurrent-To": "<urn:uuid:eec3758b-9188-460d-9745-2846696b5759>", "WARC-Date": "2013-05-23T12:17:35Z", "WARC-IP-Address": "23.21.230.176", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7PE4A2B75DYFZNEMKHCYKKVM4ICQHGE7", "WARC-Record-ID": "<urn:uuid:290674fa-2e25-48cb-87c2-f9d0a2e64d6c>", "WARC-Target-URI": "http://www.yummly.com/recipes/hash-brown-potatoes-velveeta-cheese", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d3232ea7-8d2b-4ceb-9fd1-b31bd6b44544>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 14, 15, 32, 33, 53, 54, 63, 64, 69, 70, 77, 78, 84, 85, 95, 96, 118, 119, 130, 131, 140, 141, 149, 150, 158, 159, 166, 167, 211, 212, 236, 315, 334, 360, 411, 430, 479, 549, 568, 603, 681, 700, 729, 812, 831, 859, 946, 965, 986, 1055, 1074, 1109, 1198, 1217, 1233, 1310, 1329, 1351, 1406, 1425, 1444, 1526, 1545, 1573, 1664, 1683, 1709, 1800, 1819, 1850, 1939, 1958, 1978, 2060, 2079, 2100, 2165, 2184, 2210, 2279, 2298, 2326, 2408, 2427, 2443, 2498, 2517, 2543, 2616, 2635, 2667, 2746, 2765, 2787, 2856, 2875, 2931, 3018, 3037, 3079, 3165, 3184, 3201, 3288, 3307, 3331, 3416, 3435, 3456, 3530, 3549, 3567, 3656, 3675, 3710, 3796, 3819, 3856, 3937, 3956, 3982, 4051, 4070, 4099, 4175, 4194, 4225, 4309, 4324, 4340, 4409 ], "line_end_idx": [ 14, 15, 32, 33, 53, 54, 63, 64, 69, 70, 77, 78, 84, 85, 95, 96, 118, 119, 130, 131, 140, 141, 149, 150, 158, 159, 166, 167, 211, 212, 236, 315, 334, 360, 411, 430, 479, 549, 568, 603, 681, 700, 729, 812, 831, 859, 946, 965, 986, 1055, 1074, 1109, 1198, 1217, 1233, 1310, 1329, 1351, 1406, 1425, 1444, 1526, 1545, 1573, 1664, 1683, 1709, 1800, 1819, 1850, 1939, 1958, 1978, 2060, 2079, 2100, 2165, 2184, 2210, 2279, 2298, 2326, 2408, 2427, 2443, 2498, 2517, 2543, 2616, 2635, 2667, 2746, 2765, 2787, 2856, 2875, 2931, 3018, 3037, 3079, 3165, 3184, 3201, 3288, 3307, 3331, 3416, 3435, 3456, 3530, 3549, 3567, 3656, 3675, 3710, 3796, 3819, 3856, 3937, 3956, 3982, 4051, 4070, 4099, 4175, 4194, 4225, 4309, 4324, 4340, 4409, 4427 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4427, "ccnet_original_nlines": 131, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.09250243008136749, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.024342749267816544, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.37974685430526733, "rps_doc_frac_unique_words": 0.16517286002635956, "rps_doc_mean_word_length": 4.3969268798828125, "rps_doc_num_sentences": 33, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.7669577598571777, "rps_doc_word_count": 781, "rps_doc_frac_chars_dupe_10grams": 0.019801979884505272, "rps_doc_frac_chars_dupe_5grams": 0.32498544454574585, "rps_doc_frac_chars_dupe_6grams": 0.2635410726070404, "rps_doc_frac_chars_dupe_7grams": 0.22044262290000916, "rps_doc_frac_chars_dupe_8grams": 0.16161909699440002, "rps_doc_frac_chars_dupe_9grams": 0.15055328607559204, "rps_doc_frac_chars_top_2gram": 0.04484565928578377, "rps_doc_frac_chars_top_3gram": 0.04280722141265869, "rps_doc_frac_chars_top_4gram": 0.07571344822645187, "rps_doc_books_importance": -382.1203918457031, "rps_doc_books_importance_length_correction": -382.1203918457031, "rps_doc_openwebtext_importance": -245.67337036132812, "rps_doc_openwebtext_importance_length_correction": -245.67337036132812, "rps_doc_wikipedia_importance": -133.5972900390625, "rps_doc_wikipedia_importance_length_correction": -133.5972900390625 }, "fasttext": { "dclm": 0.034445520490407944, "english": 0.7937229871749878, "fineweb_edu_approx": 0.8311618566513062, "eai_general_math": 0.0016889000544324517, "eai_open_web_math": 0.003271640045568347, "eai_web_code": 0.0006746100261807442 } }
{ "free_decimal_correspondence": { "primary": { "code": "641.5", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } }, "secondary": { "code": "641.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-3,462,713,887,729,072,600
Fatcow Icon Sue Smith Feb 25, 2013 | 1318 views | 0 0 comments | 2 2 recommendations | email to a friend | print Sue Smith, 71, of Evarts, went home to be with the Lord Sunday, February, 24, 2013, at her daughter’s home following a short illness. Born June 30, 1941 in Maynardville, Tennessee, she had lived here most of her life. She was a homemaker and believed in the Pentecostal faith. Sue was preceded in death by her husband, Roy Edward Smith, Jr.; her mother, Johnnie Collins Spurlock; her father, Lige King; two sisters, Linda Caroll and Betty Ailor; three brothers, Leo Coppock, Douglas King and Jimmy King; and a special brother-in-law, William Hooks. Survivors include two daughters, Lisa Eldridge and husband, Ben, Closplint; Sherry Perry and husband, Junior, Bailey’s Creek; three sisters, Lois Perry and husband, Tommy; Barbara Hooks; Martha Suffridge and husband, Glenn, all of Tennessee; and four brothers, Lonnie King and wife, Mona, Evarts; Peter King, Louisville; Daryll Pendergrass, TN; and Theo Coppock and wife, Linda, TN. Also surviving are a host of nieces and nephews, including two special nieces, Barbara Skidmore and Treisa Daniels; three special children in her life, Isaac Dean, Samantha Skidmore and Marissa Lee; and special friends, Bertha Bailey, Melissa Dean and Jimmy Dean. Visitation will be held Tuesday and Wednesday from 5 until 8 pm at the Evarts Funeral Home. Funeral services will be conducted Thursday, February 28, 2013, at 12 noon in the Chapel of the Evarts Funeral Home with the Reverends Stanley Blevins, Jimmy Dean and Buddy Simpson officiating. Burial will follow in the Howard Cemetery at Red Bud. Pallbearers will be Keith Skidmore, Edward Wynn, Sillis Thompson, Doug Lamb, J.C. Setser and Tom Roark. Online condolences may be left for the family at www.harlanobits.net. Evarts Funeral Home is in charge of her arrangements. Comments (0) Comments-icon Post a Comment No Comments Yet Weather Sponsored By:
{ "url": "http://www.harlandaily.com/view/full_story_obits/21814555/article-Sue-Smith", "source_domain": "www.harlandaily.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "52528", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JHU5MAVCHSECMYQEUOD7C66DABVSYCXX", "WARC-Concurrent-To": "<urn:uuid:4ac010be-9f84-45af-b203-3b3618e98537>", "WARC-Date": "2013-05-23T15:27:16Z", "WARC-IP-Address": "98.129.178.208", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:3OBCYK5WEVTXFRHEEPK5PYFVGE5HB2XL", "WARC-Record-ID": "<urn:uuid:cf09e079-972f-444f-9ac6-e9b028f35099>", "WARC-Target-URI": "http://www.harlandaily.com/view/full_story_obits/21814555/article-Sue-Smith", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b49a30ca-1a3b-488d-864d-9de2303db2be>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 12, 22, 113, 390, 391, 663, 664, 1311, 1312, 1404, 1405, 1599, 1600, 1758, 1759, 1829, 1830, 1884, 1893, 1897, 1926, 1942, 1950 ], "line_end_idx": [ 12, 22, 113, 390, 391, 663, 664, 1311, 1312, 1404, 1405, 1599, 1600, 1758, 1759, 1829, 1830, 1884, 1893, 1897, 1926, 1942, 1950, 1963 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1963, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.23614458739757538, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.009638549759984016, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2674698829650879, "rps_doc_frac_unique_words": 0.6114649772644043, "rps_doc_mean_word_length": 4.923566818237305, "rps_doc_num_sentences": 18, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.943194389343262, "rps_doc_word_count": 314, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.025873219594359398, "rps_doc_frac_chars_top_3gram": 0.03298835828900337, "rps_doc_frac_chars_top_4gram": 0.025873219594359398, "rps_doc_books_importance": -170.1375274658203, "rps_doc_books_importance_length_correction": -170.1375274658203, "rps_doc_openwebtext_importance": -71.63187408447266, "rps_doc_openwebtext_importance_length_correction": -71.63187408447266, "rps_doc_wikipedia_importance": -59.59926986694336, "rps_doc_wikipedia_importance_length_correction": -59.59926986694336 }, "fasttext": { "dclm": 0.00021641999774146825, "english": 0.9040482044219971, "fineweb_edu_approx": 0.640055775642395, "eai_general_math": 0.00028651999309659004, "eai_open_web_math": 0.22765076160430908, "eai_web_code": -0.000007029999778751517 } }
{ "free_decimal_correspondence": { "primary": { "code": "305.2", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social sciences — Periodicals" } }, "secondary": { "code": "248.4", "labels": { "level_1": "Religion", "level_2": "Devotional literature and Theology, Practical", "level_3": "Christian life" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "15", "label": "Nonfiction Writing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-6,975,237,172,976,890,000
Archery Forums 3DShoots.com Find Archery Shoots near you  |   Advertise on 3DShoots.com Go Back   Archery Forums 3DShoots.com > Free Classifieds - Used Archery Equipment > Bows for sale or trade > PSE Bows for Sale or Trade   Reply   Thread Tools Display Modes Old 11-19-2010, 06:11 PM   #1 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default RH PSE Mojo NC New 260 tyd triplett0341 is offline   Reply With Quote Old 11-21-2010, 12:58 PM   #2 bowhunterpse Junior Member   bowhunterpse's Avatar   Join Date: May 2006 Location: Attica, New York Posts: 118 bowhunterpse is on a distinguished road Send a message via Yahoo to bowhunterpse Default Mojo Poundage? ATA..Brace? __________________ 2012 ROSS Crave DRT 33.5 2008 ROSS Cardiac Prestige Archery shooting staff ROSS Archery shooting staff Black Eagle Arrows field staff bowhunterpse is offline   Reply With Quote Old 12-01-2010, 12:52 PM   #3 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default 60-70# 29" Brace Height: 7" I.B.O. Speed: 301-309 fps Axle-to-axle: 38 7/8" Weight: 3.6 lbs. Let-off: 80% (65% adj.) triplett0341 is offline   Reply With Quote Old 12-01-2010, 12:54 PM   #4 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default Reduced $220 Tyd triplett0341 is offline   Reply With Quote Old 12-03-2010, 04:16 PM   #5 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default last one.. these are cheap triplett0341 is offline   Reply With Quote Old 12-09-2010, 02:41 PM   #6 GreenArrow702 Junior Member   Join Date: Dec 2010 Posts: 2 GreenArrow702 is on a distinguished road Default interested in PSE mojo Can offer $150 shipped for it. Reply in interested. I'm located in 89052 area. GreenArrow702 is offline   Reply With Quote Old 12-09-2010, 08:54 PM   #7 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default 210 is bottom dollar triplett0341 is offline   Reply With Quote Old 12-10-2010, 12:58 AM   #8 GreenArrow702 Junior Member   Join Date: Dec 2010 Posts: 2 GreenArrow702 is on a distinguished road Default I can meet half way I can offer $180 shipped. Let me know that works for yah... GreenArrow702 is offline   Reply With Quote Old 12-28-2010, 01:25 PM   #9 triplett0341 Member   Join Date: Sep 2009 Posts: 41 triplett0341 is on a distinguished road Default $210 shipped triplett0341 is offline   Reply With Quote Old 12-28-2011, 11:26 PM   #10 tonycuts39 Junior Member   Join Date: Dec 2011 Posts: 1 tonycuts39 is on a distinguished road Default pse mojo hey do u still have the pse u were trying to get rid of and if so do u have some pics of it? tonycuts39 is offline   Reply With Quote Reply Thread Tools Display Modes Posting Rules You may not post new threads You may not post replies You may not post attachments You may not edit your posts BB code is On Smilies are On [IMG] code is On HTML code is Off Forum Jump All times are GMT -5. The time now is 09:29 PM. Powered by vBulletin® Version 3.8.7 Copyright ©2000 - 2013, vBulletin Solutions, Inc. Copyright 2004 3DShoots.com
{ "url": "http://www.3dshoots.com/forums/showthread.php?p=307212", "source_domain": "www.3dshoots.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "75027", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UGS6GQZMJL6AHEKIKN5CMZL6XN4TESWM", "WARC-Concurrent-To": "<urn:uuid:4970ae33-ae9f-4f9e-a488-4762b5748bdd>", "WARC-Date": "2013-05-26T02:34:35Z", "WARC-IP-Address": "199.48.129.83", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:5G44REDUK6M4W47KJC5EEYVCDSEUVLOU", "WARC-Record-ID": "<urn:uuid:988df523-7923-4ae7-89d4-77dac1af510a>", "WARC-Target-URI": "http://www.3dshoots.com/forums/showthread.php?p=307212", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d1db63b7-ee35-4348-9a71-ecdd1208b5db>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 28, 88, 89, 225, 227, 228, 234, 236, 263, 293, 306, 313, 315, 335, 345, 385, 408, 409, 421, 464, 494, 507, 521, 523, 545, 547, 567, 594, 605, 645, 686, 699, 700, 722, 741, 766, 784, 816, 844, 875, 918, 948, 961, 968, 970, 990, 1000, 1040, 1048, 1049, 1060, 1061, 1078, 1104, 1126, 1143, 1167, 1210, 1240, 1253, 1260, 1262, 1282, 1292, 1332, 1340, 1341, 1358, 1401, 1431, 1444, 1451, 1453, 1473, 1483, 1523, 1531, 1532, 1559, 1602, 1632, 1646, 1660, 1662, 1682, 1691, 1732, 1763, 1764, 1843, 1887, 1917, 1930, 1937, 1939, 1959, 1969, 2009, 2017, 2018, 2039, 2082, 2112, 2126, 2140, 2142, 2162, 2171, 2212, 2240, 2241, 2301, 2345, 2375, 2388, 2395, 2397, 2417, 2427, 2467, 2475, 2476, 2489, 2532, 2563, 2574, 2588, 2590, 2610, 2619, 2657, 2674, 2675, 2768, 2809, 2815, 2816, 2829, 2843, 2844, 2858, 2887, 2912, 2941, 2969, 2970, 2984, 2999, 3016, 3033, 3034, 3045, 3046, 3047, 3095, 3096, 3097, 3133, 3183 ], "line_end_idx": [ 28, 88, 89, 225, 227, 228, 234, 236, 263, 293, 306, 313, 315, 335, 345, 385, 408, 409, 421, 464, 494, 507, 521, 523, 545, 547, 567, 594, 605, 645, 686, 699, 700, 722, 741, 766, 784, 816, 844, 875, 918, 948, 961, 968, 970, 990, 1000, 1040, 1048, 1049, 1060, 1061, 1078, 1104, 1126, 1143, 1167, 1210, 1240, 1253, 1260, 1262, 1282, 1292, 1332, 1340, 1341, 1358, 1401, 1431, 1444, 1451, 1453, 1473, 1483, 1523, 1531, 1532, 1559, 1602, 1632, 1646, 1660, 1662, 1682, 1691, 1732, 1763, 1764, 1843, 1887, 1917, 1930, 1937, 1939, 1959, 1969, 2009, 2017, 2018, 2039, 2082, 2112, 2126, 2140, 2142, 2162, 2171, 2212, 2240, 2241, 2301, 2345, 2375, 2388, 2395, 2397, 2417, 2427, 2467, 2475, 2476, 2489, 2532, 2563, 2574, 2588, 2590, 2610, 2619, 2657, 2674, 2675, 2768, 2809, 2815, 2816, 2829, 2843, 2844, 2858, 2887, 2912, 2941, 2969, 2970, 2984, 2999, 3016, 3033, 3034, 3045, 3046, 3047, 3095, 3096, 3097, 3133, 3183, 3210 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3210, "ccnet_original_nlines": 159, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1621233969926834, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.044476330280303955, "rps_doc_frac_lines_end_with_ellipsis": 0.0062500000931322575, "rps_doc_frac_no_alph_words": 0.3586800694465637, "rps_doc_frac_unique_words": 0.4215686321258545, "rps_doc_mean_word_length": 4.794117450714111, "rps_doc_num_sentences": 27, "rps_doc_symbol_to_word_ratio": 0.0172166395932436, "rps_doc_unigram_entropy": 4.855897903442383, "rps_doc_word_count": 510, "rps_doc_frac_chars_dupe_10grams": 0.27321064472198486, "rps_doc_frac_chars_dupe_5grams": 0.5018404722213745, "rps_doc_frac_chars_dupe_6grams": 0.436400830745697, "rps_doc_frac_chars_dupe_7grams": 0.4245398938655853, "rps_doc_frac_chars_dupe_8grams": 0.30674847960472107, "rps_doc_frac_chars_dupe_9grams": 0.27321064472198486, "rps_doc_frac_chars_top_2gram": 0.06871166080236435, "rps_doc_frac_chars_top_3gram": 0.02044989913702011, "rps_doc_frac_chars_top_4gram": 0.07361962646245956, "rps_doc_books_importance": -186.14207458496094, "rps_doc_books_importance_length_correction": -186.14207458496094, "rps_doc_openwebtext_importance": -156.16419982910156, "rps_doc_openwebtext_importance_length_correction": -156.16419982910156, "rps_doc_wikipedia_importance": -118.5362777709961, "rps_doc_wikipedia_importance_length_correction": -118.5362777709961 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.8143938779830933, "fineweb_edu_approx": 0.8617386221885681, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.0943189263343811, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "797.2", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Boats and boating, Aquatic sports, and Aeronautical sports" } }, "secondary": { "code": "683.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Firearms and Locksmithing" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "15", "label": "E-Commerce/Marketplace" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "24", "label": "User Review" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
9,032,605,319,818,784,000
PhotoCamel: Your friendly photo community, with free discussion forums, digital photography reviews, photo sharing, galleries, downloads, blogs, photography contests, and prizes. Photography Contest Photo of the Week Photo of the Week Go Back   PhotoCamel - Your Friendly Photography Forum > Contests, Challenges, and Assignments Sub-Forums : Fun Stuff   Forum Last Post Threads Posts Board for the popular Guess the Close-up challenge. 21 Minutes Ago Go to last post 1,462 33,874 Board for the popular Guess the Face! contest. by KikiD 1 Hour Ago Go to last post 1,090 15,004 Forum for the game Guess the Movie! by KikiD 1 Hour Ago Go to last post 1,099 13,723 Board for the Guess the Movie Quote game. by aram535 1 Week Ago Go to last post 319 2,125 Board for displaying "before" and "after" shots, showing and discussing how shots can be improved through postprocessing and other means. 151 1,128 Post New Thread Threads in Forum : Fun Stuff Forum Tools   Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views Thread Rating: 3 votes, 5.00 average. AlbertP 09-14-2012 by ceropegia Go to last post 189 26,118   Thread Rating: 5 votes, 4.00 average. M. Worthington 1 Hour Ago by Ed Porter Go to last post 34,290 403,575 Thread Rating: 7 votes, 4.43 average. jfrancho 3 Hours Ago by robbiew Go to last post 37,440 503,176 Smile Kathy Simon 4 Hours Ago by mike54 Go to last post 241 2,315 Thread Rating: 1 votes, 5.00 average. JDArt 22 Hours Ago by scoundrel1728 Go to last post 340 15,815 Tat2Duck 1 Day Ago by SpeedGraphicMan Go to last post 6 133 Thread Rating: 1 votes, 5.00 average. M. Worthington 1 Day Ago by mike54 Go to last post 292 2,625 Morgan Starr 3 Days Ago by toonamp Go to last post 1 76 Morgan Starr 3 Days Ago by Morgan Starr Go to last post 0 73 Morgan Starr 4 Days Ago by hillsidekim Go to last post 8 141 Morgan Starr 1 Week Ago by Morgan Starr Go to last post 628 14,571 JZerbe 1 Week Ago by Tat2Duck Go to last post 8 221 hillsidekim 2 Weeks Ago by JZerbe Go to last post 10 340 Thread Rating: 4 votes, 5.00 average. Paul Shields 2 Weeks Ago by horace Go to last post 2,802 94,533 Thread Rating: 1 votes, 5.00 average. Morgan Starr 2 Weeks Ago by pro70z28 Go to last post 53 2,567 pro70z28 2 Weeks Ago by Morgan Starr Go to last post 7 256 SpeedGraphicMan 3 Weeks Ago by hillsidekim Go to last post 4 174 pro70z28 3 Weeks Ago by pro70z28 Go to last post 16 481 SA_Tosterud 4 Weeks Ago by SA_Tosterud Go to last post 0 167 zemlin 4 Weeks Ago by SpeedGraphicMan Go to last post 15 408 LinuxGold 4 Weeks Ago by scootermcq Go to last post 34 1,922 Morgan Starr 05-02-2013 by SpeedGraphicMan Go to last post 1 212 SpeedGraphicMan 05-02-2013 by SpeedGraphicMan Go to last post 10 366 hillsidekim 05-02-2013 by SpeedGraphicMan Go to last post 7 305 hillsidekim 04-28-2013 by hillsidekim Go to last post 0 173 Morgan Starr 04-26-2013 by Morgan Starr Go to last post 0 164 Morgan Starr 04-26-2013 by zemlin Go to last post 1 185 hillsidekim 04-23-2013 by SpeedGraphicMan Go to last post 7 381 Thread Rating: 2 votes, 3.00 average. M. Worthington 04-15-2013 by M. Worthington Go to last post 0 215 Morgan Starr 04-14-2013 by Morgan Starr Go to last post 0 208 elyuma 04-10-2013 by brosig Go to last post 17 733 Post New Thread Display Options Moderators Showing threads 1 to 30 of 507 Moderators : 1 Sorted By Sort Order From The Forum Tools Search this Forum Search this Forum : Advanced Search New posts New posts More than 30 replies or 250 views Hot thread with new posts No new posts No new posts More than 30 replies or 250 views Hot thread with no new posts Closed Thread Thread is closed    
{ "url": "http://photocamel.com/forum/fun-stuff/", "source_domain": "photocamel.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "126285", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:A6UFRWN2EBM5D2U32NXYUOJJN5VF2D6T", "WARC-Concurrent-To": "<urn:uuid:da7ea71b-5ec9-4ae9-9bb8-35d1644e7617>", "WARC-Date": "2013-06-19T01:53:07Z", "WARC-IP-Address": "67.227.136.98", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:DLJ35ZOKSVPLJXL3UGWAYX4RUPO6GRBO", "WARC-Record-ID": "<urn:uuid:a4f298a8-28b6-46cd-a601-d366e77cd514>", "WARC-Target-URI": "http://photocamel.com/forum/fun-stuff/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:62998399-5394-4718-82e1-e5bc434d9661>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 179, 235, 236, 331, 332, 355, 387, 439, 470, 483, 530, 539, 566, 579, 615, 624, 651, 664, 706, 717, 744, 754, 892, 902, 903, 919, 960, 1036, 1082, 1093, 1122, 1133, 1135, 1188, 1199, 1228, 1243, 1290, 1302, 1329, 1344, 1350, 1362, 1374, 1400, 1410, 1454, 1467, 1500, 1511, 1520, 1530, 1565, 1571, 1624, 1634, 1660, 1670, 1683, 1694, 1721, 1726, 1739, 1750, 1782, 1787, 1800, 1811, 1842, 1848, 1861, 1872, 1904, 1915, 1922, 1933, 1961, 1967, 1979, 1991, 2017, 2024, 2075, 2087, 2113, 2126, 2177, 2189, 2217, 2226, 2235, 2247, 2279, 2285, 2301, 2313, 2344, 2350, 2359, 2371, 2399, 2406, 2418, 2430, 2461, 2467, 2474, 2486, 2521, 2528, 2538, 2550, 2580, 2589, 2602, 2613, 2648, 2654, 2670, 2681, 2716, 2723, 2735, 2746, 2781, 2787, 2799, 2810, 2841, 2847, 2860, 2871, 2903, 2909, 2922, 2933, 2959, 2965, 2977, 2988, 3023, 3029, 3082, 3093, 3127, 3133, 3146, 3157, 3189, 3195, 3202, 3213, 3239, 3246, 3262, 3263, 3290, 3336, 3357, 3366, 3396, 3416, 3417, 3433, 3434, 3514, 3603, 3636 ], "line_end_idx": [ 179, 235, 236, 331, 332, 355, 387, 439, 470, 483, 530, 539, 566, 579, 615, 624, 651, 664, 706, 717, 744, 754, 892, 902, 903, 919, 960, 1036, 1082, 1093, 1122, 1133, 1135, 1188, 1199, 1228, 1243, 1290, 1302, 1329, 1344, 1350, 1362, 1374, 1400, 1410, 1454, 1467, 1500, 1511, 1520, 1530, 1565, 1571, 1624, 1634, 1660, 1670, 1683, 1694, 1721, 1726, 1739, 1750, 1782, 1787, 1800, 1811, 1842, 1848, 1861, 1872, 1904, 1915, 1922, 1933, 1961, 1967, 1979, 1991, 2017, 2024, 2075, 2087, 2113, 2126, 2177, 2189, 2217, 2226, 2235, 2247, 2279, 2285, 2301, 2313, 2344, 2350, 2359, 2371, 2399, 2406, 2418, 2430, 2461, 2467, 2474, 2486, 2521, 2528, 2538, 2550, 2580, 2589, 2602, 2613, 2648, 2654, 2670, 2681, 2716, 2723, 2735, 2746, 2781, 2787, 2799, 2810, 2841, 2847, 2860, 2871, 2903, 2909, 2922, 2933, 2959, 2965, 2977, 2988, 3023, 3029, 3082, 3093, 3127, 3133, 3146, 3157, 3189, 3195, 3202, 3213, 3239, 3246, 3262, 3263, 3290, 3336, 3357, 3366, 3396, 3416, 3417, 3433, 3434, 3514, 3603, 3636, 3637 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3637, "ccnet_original_nlines": 168, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.18514007329940796, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.004872110206633806, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.35688185691833496, "rps_doc_frac_unique_words": 0.31811264157295227, "rps_doc_mean_word_length": 4.327245235443115, "rps_doc_num_sentences": 28, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.538560390472412, "rps_doc_word_count": 657, "rps_doc_frac_chars_dupe_10grams": 0.03376714885234833, "rps_doc_frac_chars_dupe_5grams": 0.34752023220062256, "rps_doc_frac_chars_dupe_6grams": 0.30003517866134644, "rps_doc_frac_chars_dupe_7grams": 0.23039042949676514, "rps_doc_frac_chars_dupe_8grams": 0.12205416709184647, "rps_doc_frac_chars_dupe_9grams": 0.05276117101311684, "rps_doc_frac_chars_top_2gram": 0.10411536693572998, "rps_doc_frac_chars_top_3gram": 0.09848751127719879, "rps_doc_frac_chars_top_4gram": 0.14773127436637878, "rps_doc_books_importance": -396.7455749511719, "rps_doc_books_importance_length_correction": -396.7455749511719, "rps_doc_openwebtext_importance": -283.2205810546875, "rps_doc_openwebtext_importance_length_correction": -283.2205810546875, "rps_doc_wikipedia_importance": -144.2614288330078, "rps_doc_wikipedia_importance_length_correction": -144.2614288330078 }, "fasttext": { "dclm": -0.000008820000402920414, "english": 0.800309956073761, "fineweb_edu_approx": 0.6224796175956726, "eai_general_math": -0.000007390000064333435, "eai_open_web_math": 0.04627532139420509, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "770", "labels": { "level_1": "Arts", "level_2": "Photography", "level_3": "" } }, "secondary": { "code": "790", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "18", "label": "Q&A Forum" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-8,041,035,233,110,888,000
Contact Overland Solutions for all your custom modifications and setup for overland travel. Go Back   Horizons Unlimited - The HUBB > Technical, Bike forums > Which Bike? Which Bike? Comments and Questions on what is the best bike for YOU, for YOUR trip. Note that we believe that ANY bike will do, so please remember that it's all down to PERSONAL OPINION. Technical Questions for all brands go in their own forum. With more than 58 destinations worldwide, Edelweiss Bike Travel is Number 1 in guided motorcycle tours! AMERICA’S PREMIER MANUFACTURER OF MOTORCYCLE SUSPENSION Reply   LinkBack Thread Tools Display Modes   #61   Old 14 Dec 2010 Registered Users Veteran HUBBer   Join Date: May 2010 Location: Granada, Spain Posts: 122 Hey that XT250 looks brilliant. But it doesn't look like any of the XT250s I've looked at up till now - has it had a lot of modifications (seat lowered, etc etc...)? It does look really ride-able and I could see myself riding round Africa on it, for sure! Jeanie Reply With Quote   #62   Old 14 Dec 2010 Registered Users New on the HUBB   Join Date: Dec 2009 Location: australia Posts: 3 hi Jeannie. My wife rides KL250 super sherpa and she 4foot 9 I slip forks in clamp 35mm.add 20cm in her boots. the other bike we had was lowered f650gs. the KL did 45000 km before we trached the motor. New oil put in around 2000 to 3000km. good luck in find a bike Regards Stuart Reply With Quote   #63   Old 15 Dec 2010 Contributing Member Veteran HUBBer   Join Date: Aug 2008 Location: Aus. Qld. Mackay Posts: 323 Xt 250 Jeanie, It's Jan here, as for the modifications I don't think there is to many, but I will list what I have. Barkbusters are a must (fell off on Mayole rode about 5 times and they saved both levers everytime.) I have that engine guard thing and Paul had Hi-way Pegs welded on (I broke both these off tho, first one went in Egypt when a stupid idiot walked out in front of me, and the second one in the Simien Mountains (Ethiopia) I took a spill on a gravel road. I also bought Andy Strap expedition panniers (pain at first but sorted out now) I have a Air Hawk seat which was really good. I took the seat to a motor trimmers and they cut it back for me, which made a fair bit of difference as I am only 5'2". The mechanic pulled the front forks thru a little, and did something at the back to even it out (not sure what tho, but if you end up getting one I'll find out for you. I also had a light frame welded on the back to hold my extra fuel container up right (It worked out really well as we had our Dual Fuel Stove hooked on as well and then put a Lid Safe bag which fitted perfectly over both, and was lockable then.) The frames that hold my Panniers came from America (The engine guard, Pannier Racks and Fuel Container all came from the one place) I use a roll bag which I lay across the back and fasten with those Andy Straps. The Bike was white with blue decals when I bought it, but we own a Graphics Company (Visual Graphics - create.develop) so Paul wanted something Australian so we did a make over of the 2 bikes. Let me know if you you need any more info on Timone (My bikes name, Pauls is called Pumba they make a good pair) I have attached a couple of my photos of it here. I was going to sell it in Capetown when I reached there and ride my F650gs from South America onwards, but after this trip there is no ways will I part with it. !!!! Attached Thumbnails Which bike for a petite learner with dreams of riding across Africa?-img_6631.jpg   Which bike for a petite learner with dreams of riding across Africa?-p1000794.jpg   Which bike for a petite learner with dreams of riding across Africa?-img_0584.jpg   __________________ ....rather Die Living.....than Live Dying ! www.globetrekkers.net.au Reply With Quote   #64   Old 15 Dec 2010 Contributing Member HUBB regular   Join Date: Jun 2010 Location: Newcastle upon Tyne Posts: 59 Do you have any close-ups of the fuel container and it's frame for us to look at? Reply With Quote   #65   Old 15 Dec 2010 Registered Users Veteran HUBBer   Join Date: Sep 2006 Location: Somewhere west of Laramie... Posts: 479 Quote: Originally Posted by stuart little View Post hi Jeannie. My wife rides KL250 super sherpa and she 4foot 9 I slip forks in clamp 35mm... I was just going to suggest the Sherpa too if it is available in OZ - it is infinitely better than a Serow (and I've ridden both) - it feels like a small big bike, rather than just a small bike. The only limiting factor with the Sherpa is the size of the stock fuel tank - you should get around 100 miles from it, but I don't think there is anything larger on the aftermarket that is a ready fit. Certainly if you are shorter and not particularly strong, I'd forget about anything over 400cc - the weight and physical size of any of the 650cc bikes will just make life a misery for you if you stray off the highway/dirt roads... Personally, I would look at a DRZ 400 SM (the supermoto version), which has slightly shorter suspension travel and is lower than the Trail version by virtue of having 17 inch wheels. They are also typically cheaper than the Trail version, as people buy them and then realise they are not a rootin' tootin' hardcore supermoto, but a trail bike with fatter tyres... so sell them cheap and buy a Husaburg or something mental! Fortunately all the aftermarket bits you might want for the Trail DRZ also fit the SM (lowering links, larger fuel tanks and skid-plates, luggage racks, comfort seats etc.) - are all readily available, and if you get a 19 inch rim laced onto the front, the bike will still be low, but you can run all-terrain tyres such as the TKC80, which I'd say is a great tyre for the sort of trip you're planning. The DRZ engine is very reliable, easy to maintain, and as others have said previously - get a good/new one and make sure all the consumable parts are fresh, and you shouldn't have any real 'parts' issues on your trip anyway... And even if you did end up with a problem, you can get anything shipped anywhere in the world these days, you might just have to wait a while somewhere - but then that's usually when the best adventures happen anyway... Jx __________________ JennyDakar.com Reply With Quote   #66   Old 16 Dec 2010 Contributing Member Veteran HUBBer   Join Date: Aug 2008 Location: Aus. Qld. Mackay Posts: 323 Fuel Rack Deana/Jeanie, (Paul here this time) I have not got any close up photos of the rack we made but I can draw what we did if you want. The back rack is a Borrego Rack, for the panniers we used a Denali Rack, and the fuel was a Kolpin Fuel Storage. These are 2 web sites that you can see these products Kolpin Fuel Pack Jr with Bracket - ATV - Motorcycle Superstore and also TCI Products I must add everthing we did worked extremely well as we wanted the bike to be as lights as possible. I also put Heidanau 60s for the tyres which are not even showing signs of wear yet. Thanks Paul __________________ ....rather Die Living.....than Live Dying ! www.globetrekkers.net.au Reply With Quote   #67   Old 16 Dec 2010 Registered Users New on the HUBB   Join Date: Dec 2009 Location: australia Posts: 3 small tank on the Sherpa i get around 28 km per litre that give me but 225km, the worst ever was 24 km per litre was two up with camping, food and water for 4 days. On the open road siting on 90 km per hour. You can fit 30-litre DR650 Safari tank. In the 01/07 twowheels mag there write up & pic with Sherpa with 30 tank. Regards Stuart Reply With Quote   #68   Old 16 Dec 2010 Registered Users Veteran HUBBer   Join Date: Sep 2006 Location: Somewhere west of Laramie... Posts: 479 Quote: Originally Posted by stuart little View Post In the 01/07 twowheels mag there write up & pic with Sherpa with 30 tank. Regards Stuart Can you actually see the bike under all that tank?! Good to know there is an option - I reckon that would make it an excellent lightweight travel bike! Jx __________________ JennyDakar.com Reply With Quote   #69   Old 16 Dec 2010 palace15's Avatar ABRmodahater Veteran HUBBer   Join Date: Feb 2005 Location: LONDONISTAN, England Posts: 1,017 [quote=stuart little;316057 You can fit 30-litre DR650 Safari tank. In the 01/07 twowheels mag there write up & pic with Sherpa with 30 tank. Regards Stuart[/quote Anyone got a picture of it??? __________________ 'He who laughs last, was too slow to get the joke' Officially now in a minority living in London! Reply With Quote   #70   Old 17 Dec 2010 Registered Users Veteran HUBBer   Join Date: May 2010 Location: Granada, Spain Posts: 122 Quote: Originally Posted by PaulD View Post Jeanie, It's Jan here, as for the modifications I don't think there is to many, but I will list what I have. Barkbusters are a must (fell off on Mayole rode about 5 times and they saved both levers everytime.) I have that engine guard thing and Paul had Hi-way Pegs welded on (I broke both these off tho, first one went in Egypt when a stupid idiot walked out in front of me, and the second one in the Simien Mountains (Ethiopia) I took a spill on a gravel road. I also bought Andy Strap expedition panniers (pain at first but sorted out now) I have a Air Hawk seat which was really good. I took the seat to a motor trimmers and they cut it back for me, which made a fair bit of difference as I am only 5'2". The mechanic pulled the front forks thru a little, and did something at the back to even it out (not sure what tho, but if you end up getting one I'll find out for you. I also had a light frame welded on the back to hold my extra fuel container up right (It worked out really well as we had our Dual Fuel Stove hooked on as well and then put a Lid Safe bag which fitted perfectly over both, and was lockable then.) The frames that hold my Panniers came from America (The engine guard, Pannier Racks and Fuel Container all came from the one place) I use a roll bag which I lay across the back and fasten with those Andy Straps. The Bike was white with blue decals when I bought it, but we own a Graphics Company (Visual Graphics - create.develop) so Paul wanted something Australian so we did a make over of the 2 bikes. Let me know if you you need any more info on Timone (My bikes name, Pauls is called Pumba they make a good pair) I have attached a couple of my photos of it here. I was going to sell it in Capetown when I reached there and ride my F650gs from South America onwards, but after this trip there is no ways will I part with it. !!!! Hey Jan, Thanks for the info and pix of your bike - it really does look great and the sort of bike/set-up that I could handle. As a fairly new rider, it looks manageable compared to some of the "adventure bikes" I've seen - and it really looks the part, as well as being functional for the varying terrain of Africa! I'm flying out to Cape Town at the end of next week and am thinking about trying to hire a bike for a few weeks to tour South Africa. (It's kind of a recce trip for the bigger one I'll do across Africa later in the year!). But I'm having trouble finding anywhere that will hire bikes this small - ie 250cc. So if anyone's get any tip-offs about where I might go to hire a smaller bike, that would be great! Jeanie Reply With Quote   #71   Old 18 Dec 2010 Registered Users New on the HUBB   Join Date: Nov 2007 Location: Australia Posts: 6 Bikes you can get in Asia that fit the bill... Kawasaki D-Tracker 250, Yamaha XT225 Serow, Honda SL230 are stand outs, the D-Tracker is fairly new on the scene but people are raving about. The Honda is an old design so parts are AVAILABLE EVERYWHERE!! 5'2" Is short so the other option is to get a "touring"bike like a Honda Night Hawk or CB and do some mods so it can get off road... you won't get down'n'dirty but you will handle most trails and also have an option for up to 400cc that way (more luggage/pillion). I've seen a couple done up quite well. My pick is the D-Tracker though... Reply With Quote Reply Currently Active Users Viewing This Thread: 1 (0 Registered Users and/or Members and 1 guests)   Thread Tools Display Modes Posting Rules You may not post new threads You may not post replies You may not post attachments You may not edit your posts BB code is On Smilies are On [IMG] code is On HTML code is Off Trackbacks are On Pingbacks are On Refbacks are On Similar Threads Thread Thread Starter Forum Replies Last Post Riding buddy for Africa mhoey Travellers Seeking Travellers 6 4 Jan 2010 17:49 Dreams of Paris to Dakar Robboxrv Travellers' questions that don't fit anywhere else 21 9 Jan 2009 06:53 dreams seekeronsaltspringisland Money Saving Ideas, making travel money 4 10 Oct 2008 09:46 Riding Quads Across Africa QuadsAcrossAfrica Travellers Seeking Travellers 1 14 Sep 2007 13:13 Buying a bike in South Africa, then riding to UK Squags Trip Paperwork 0 26 Apr 2006 19:31 All times are GMT +1. The time now is 10:30.
{ "url": "http://www.horizonsunlimited.com/hubb/which-bike/bike-petite-learner-dreams-riding-51071-5", "source_domain": "www.horizonsunlimited.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "175667", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:YF5B7CBUZJSIV4QQX3A4JNCM3B4REMJ5", "WARC-Concurrent-To": "<urn:uuid:f200895b-87cf-465f-8f94-100d5c07c577>", "WARC-Date": "2013-05-18T09:30:56Z", "WARC-IP-Address": "69.5.16.192", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:NNSQIB5FMWPCUK2Z5W42WJOT4DPKBVWS", "WARC-Record-ID": "<urn:uuid:16a62c5c-9383-4f09-b149-fee486b45f8a>", "WARC-Target-URI": "http://www.horizonsunlimited.com/hubb/which-bike/bike-petite-learner-dreams-riding-51071-5", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ad48f973-107a-4523-a0ff-994496a35a47>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 92, 93, 172, 173, 418, 522, 523, 579, 580, 586, 588, 624, 632, 648, 665, 680, 682, 702, 727, 738, 770, 771, 995, 996, 1003, 1020, 1028, 1044, 1061, 1077, 1079, 1099, 1119, 1128, 1408, 1425, 1433, 1449, 1469, 1484, 1486, 1506, 1533, 1544, 1551, 1552, 1560, 1643, 2261, 3081, 3194, 3410, 3430, 3514, 3515, 3599, 3600, 3684, 3685, 3704, 3748, 3773, 3790, 3798, 3814, 3834, 3847, 3849, 3869, 3899, 3909, 3991, 4008, 4016, 4032, 4049, 4064, 4066, 4086, 4125, 4136, 4143, 4188, 4279, 4676, 4677, 4909, 4910, 5333, 5334, 5736, 5737, 5964, 5965, 6185, 6186, 6189, 6208, 6223, 6240, 6248, 6264, 6284, 6299, 6301, 6321, 6348, 6359, 6369, 6370, 6384, 6476, 6731, 6938, 6939, 6946, 6951, 6970, 7014, 7039, 7056, 7064, 7080, 7097, 7113, 7115, 7135, 7155, 7164, 7372, 7486, 7501, 7518, 7526, 7542, 7559, 7574, 7576, 7596, 7635, 7646, 7653, 7698, 7772, 7787, 7839, 7840, 7940, 7941, 7942, 7943, 7944, 7945, 7948, 7967, 7982, 7999, 8007, 8023, 8041, 8054, 8069, 8071, 8091, 8122, 8135, 8163, 8277, 8299, 8300, 8301, 8302, 8332, 8351, 8402, 8403, 8450, 8467, 8475, 8491, 8508, 8523, 8525, 8545, 8570, 8581, 8588, 8625, 8633, 8716, 9334, 10154, 10267, 10483, 10492, 10493, 10801, 10802, 11209, 11210, 11217, 11234, 11242, 11258, 11275, 11291, 11293, 11313, 11333, 11342, 11389, 11390, 11595, 11596, 11900, 11901, 11936, 11953, 11959, 11960, 11961, 12056, 12058, 12071, 12085, 12086, 12100, 12129, 12154, 12183, 12211, 12212, 12226, 12241, 12258, 12275, 12293, 12310, 12326, 12327, 12328, 12344, 12390, 12469, 12574, 12666, 12761, 12852, 12853, 12854 ], "line_end_idx": [ 92, 93, 172, 173, 418, 522, 523, 579, 580, 586, 588, 624, 632, 648, 665, 680, 682, 702, 727, 738, 770, 771, 995, 996, 1003, 1020, 1028, 1044, 1061, 1077, 1079, 1099, 1119, 1128, 1408, 1425, 1433, 1449, 1469, 1484, 1486, 1506, 1533, 1544, 1551, 1552, 1560, 1643, 2261, 3081, 3194, 3410, 3430, 3514, 3515, 3599, 3600, 3684, 3685, 3704, 3748, 3773, 3790, 3798, 3814, 3834, 3847, 3849, 3869, 3899, 3909, 3991, 4008, 4016, 4032, 4049, 4064, 4066, 4086, 4125, 4136, 4143, 4188, 4279, 4676, 4677, 4909, 4910, 5333, 5334, 5736, 5737, 5964, 5965, 6185, 6186, 6189, 6208, 6223, 6240, 6248, 6264, 6284, 6299, 6301, 6321, 6348, 6359, 6369, 6370, 6384, 6476, 6731, 6938, 6939, 6946, 6951, 6970, 7014, 7039, 7056, 7064, 7080, 7097, 7113, 7115, 7135, 7155, 7164, 7372, 7486, 7501, 7518, 7526, 7542, 7559, 7574, 7576, 7596, 7635, 7646, 7653, 7698, 7772, 7787, 7839, 7840, 7940, 7941, 7942, 7943, 7944, 7945, 7948, 7967, 7982, 7999, 8007, 8023, 8041, 8054, 8069, 8071, 8091, 8122, 8135, 8163, 8277, 8299, 8300, 8301, 8302, 8332, 8351, 8402, 8403, 8450, 8467, 8475, 8491, 8508, 8523, 8525, 8545, 8570, 8581, 8588, 8625, 8633, 8716, 9334, 10154, 10267, 10483, 10492, 10493, 10801, 10802, 11209, 11210, 11217, 11234, 11242, 11258, 11275, 11291, 11293, 11313, 11333, 11342, 11389, 11390, 11595, 11596, 11900, 11901, 11936, 11953, 11959, 11960, 11961, 12056, 12058, 12071, 12085, 12086, 12100, 12129, 12154, 12183, 12211, 12212, 12226, 12241, 12258, 12275, 12293, 12310, 12326, 12327, 12328, 12344, 12390, 12469, 12574, 12666, 12761, 12852, 12853, 12854, 12898 ] }
{ "red_pajama_v2": { "ccnet_original_length": 12898, "ccnet_original_nlines": 250, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3849177956581116, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03788420185446739, "rps_doc_frac_lines_end_with_ellipsis": 0.03187251091003418, "rps_doc_frac_no_alph_words": 0.17905646562576294, "rps_doc_frac_unique_words": 0.3083832263946533, "rps_doc_mean_word_length": 4.228400230407715, "rps_doc_num_sentences": 109, "rps_doc_symbol_to_word_ratio": 0.00929235015064478, "rps_doc_unigram_entropy": 5.884021282196045, "rps_doc_word_count": 2338, "rps_doc_frac_chars_dupe_10grams": 0.42251670360565186, "rps_doc_frac_chars_dupe_5grams": 0.4525591731071472, "rps_doc_frac_chars_dupe_6grams": 0.4408254027366638, "rps_doc_frac_chars_dupe_7grams": 0.435261994600296, "rps_doc_frac_chars_dupe_8grams": 0.435261994600296, "rps_doc_frac_chars_dupe_9grams": 0.435261994600296, "rps_doc_frac_chars_top_2gram": 0.007788789924234152, "rps_doc_frac_chars_top_3gram": 0.015577579848468304, "rps_doc_frac_chars_top_4gram": 0.015577579848468304, "rps_doc_books_importance": -1007.4618530273438, "rps_doc_books_importance_length_correction": -1007.4618530273438, "rps_doc_openwebtext_importance": -642.77880859375, "rps_doc_openwebtext_importance_length_correction": -642.77880859375, "rps_doc_wikipedia_importance": -480.1318664550781, "rps_doc_wikipedia_importance_length_correction": -480.1318664550781 }, "fasttext": { "dclm": 0.00021630999981425703, "english": 0.9490767121315002, "fineweb_edu_approx": 1.010385274887085, "eai_general_math": 0.007014039903879166, "eai_open_web_math": 0.251431405544281, "eai_web_code": 0.00000810999972600257 } }
{ "free_decimal_correspondence": { "primary": { "code": "629.22", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } }, "secondary": { "code": "910.4", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "24", "label": "User Review" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-7,856,510,907,291,357,000
   Subscribe and save! CG Compass: Canadian Geographic blogCG Compass: Canadian Geographic blog Kinder Morgan submits plan to expand Trans Mountain pipeline Posted by Jimmy Thomson in Nature on Friday, May 24, 2013 Kinder Morgan's pipeline expansion would result in more tankers off of Vancouver. (Photo: Mat Hampson) Kinder Morgan has submitted its plan for the proposed expansion of its existing Trans Mountain pipeline, setting in motion the National Energy Board review process that is expected to take about two years once the final proposal is in later this year. The company plans to add a new line to triple the capacity of the existing pipeline, which carries light and heavy oil from Edmonton to the Pacific coast in Burnaby, B.C. Read full post » Watch the sky for the Dance of the Planets Posted by Lillianne Cadieux-Shaw in Science & Technology on Friday, May 24, 2013 The elusive Mercury will be visible on the horizon over the next week as part of a celestial phenomenon commonly known as the Dance of the Planets. (Photo: NASA) Every few years, Mercury, Venus and Jupiter — the three brightest planets visible from Earth — dance around each other in western twilight, spinning their partners and changing positions from evening to evening. This celestial phenomenon is commonly known as the Dance of the Planets. The dance begins its peak tonight. Read full post » Picnic trivia: How much do you know about the contents of your picnic? Posted by Brittany Harris in Science & Technology on Thursday, May 23, 2013 Hover your mouse on the image above to discover interesting picnic facts. In the summer of 2000, nearly four million people attended a picnic in France that was about 1,000 kilomtres long. While you won’t likely be attending a picnic that is longer than the world’s tallest building lying end to end 1,000 times, you can still enjoy sandwiches and wine in one of the thousands of parks Canada has to offer. Read full post » New Land Expedition: All about ice Posted by New Land 2013 in Expeditions on Tuesday, May 21, 2013 Toby Thorleifsson collects ice. Click on the image to see more photos from the expedition. (Photos courtesy of New Land 2013) The New Land 2013 expedition is following the route of Norwegian explorer Otto Sverdrup across Ellesmere Island, Nunavut. This blog was written by Toby Thorleifsson. We are now about midway across the big Nansen Sound, and we are camping directly on the sea ice tonight. Let me tell you a little bit about the sea ice we’ve spent so much time on up here. Read full post » Tips for photographing flowers Posted by Justin Nalepa in Photography on Sunday, May 19, 2013 Canadian Geographic visited Ottawa's Tulip Festival to compile a list of tips for shooting flowers. Click on the image to view more photos. (Photos: Justin Nalepa) As spring blossoms across Canada, flower photographers will be on a mission to get the perfect shot. Whether visiting gardens or on a walk in the woods, here are some tips and tricks to keep in my mind for your next shoot: Read full post » CG Compass: Canadian Geographic blog Categories Monthly archives Subscribe to Canadian Geographic Magazine and Save Province  Privacy Policy   Canadian Geographic Magazine | Canadian Geographic Travel Magazine Canadian Atlas Online | Canadian Travel | CG Education | Mapping & Cartography | Canadian Geographic Photo Club | Kids | Canadian Contests | Canadian Lesson Plans | Blog Royal Canadian Geographical Society | Canadian Council for Geographic Education | Geography Challenge | Canadian Award for Environmental Innovation Jobs | Internships | Submission Guidelines © 2013 Canadian Geographic Enterprises
{ "url": "http://www.canadiangeographic.ca/blog/", "source_domain": "www.canadiangeographic.ca", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "60517", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UYC53DWF5D4PYXFV4KKC6LEQGZBPB4RO", "WARC-Concurrent-To": "<urn:uuid:fcc5d3aa-92b4-4faa-90d9-ac99269689cd>", "WARC-Date": "2013-05-26T05:24:35Z", "WARC-IP-Address": "209.217.69.138", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:FT37PYOG35N526NAKWXQUAHU6CAVJ7O2", "WARC-Record-ID": "<urn:uuid:e9af2c2e-b4a4-4524-86b2-2b39cac0e5bc>", "WARC-Target-URI": "http://www.canadiangeographic.ca/blog/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:2b7e6669-83f6-4dd0-855d-26bf7172e6ee>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 3, 23, 96, 97, 98, 159, 160, 161, 219, 220, 221, 222, 325, 326, 749, 750, 767, 768, 769, 770, 771, 814, 815, 816, 897, 898, 899, 900, 1062, 1063, 1383, 1384, 1401, 1402, 1403, 1404, 1405, 1476, 1477, 1478, 1554, 1555, 1556, 1557, 1631, 1632, 1965, 1966, 1983, 1984, 1985, 1986, 1987, 2022, 2023, 2024, 2088, 2089, 2090, 2091, 2217, 2218, 2384, 2385, 2574, 2575, 2592, 2593, 2594, 2595, 2596, 2627, 2628, 2629, 2692, 2693, 2694, 2695, 2859, 2860, 3083, 3084, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3145, 3146, 3157, 3158, 3159, 3160, 3177, 3178, 3179, 3230, 3240, 3257, 3258, 3259, 3260, 3261, 3328, 3498, 3499, 3647, 3648, 3691, 3692 ], "line_end_idx": [ 3, 23, 96, 97, 98, 159, 160, 161, 219, 220, 221, 222, 325, 326, 749, 750, 767, 768, 769, 770, 771, 814, 815, 816, 897, 898, 899, 900, 1062, 1063, 1383, 1384, 1401, 1402, 1403, 1404, 1405, 1476, 1477, 1478, 1554, 1555, 1556, 1557, 1631, 1632, 1965, 1966, 1983, 1984, 1985, 1986, 1987, 2022, 2023, 2024, 2088, 2089, 2090, 2091, 2217, 2218, 2384, 2385, 2574, 2575, 2592, 2593, 2594, 2595, 2596, 2627, 2628, 2629, 2692, 2693, 2694, 2695, 2859, 2860, 3083, 3084, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3145, 3146, 3157, 3158, 3159, 3160, 3177, 3178, 3179, 3230, 3240, 3257, 3258, 3259, 3260, 3261, 3328, 3498, 3499, 3647, 3648, 3691, 3692, 3730 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3730, "ccnet_original_nlines": 113, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3149492144584656, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.008708270266652107, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1640058159828186, "rps_doc_frac_unique_words": 0.5134680271148682, "rps_doc_mean_word_length": 4.978114604949951, "rps_doc_num_sentences": 23, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.2617597579956055, "rps_doc_word_count": 594, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.05343253165483475, "rps_doc_frac_chars_dupe_6grams": 0.023672640323638916, "rps_doc_frac_chars_dupe_7grams": 0.023672640323638916, "rps_doc_frac_chars_dupe_8grams": 0.023672640323638916, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05478525906801224, "rps_doc_frac_chars_top_3gram": 0.020290840417146683, "rps_doc_frac_chars_top_4gram": 0.0219817403703928, "rps_doc_books_importance": -298.5296936035156, "rps_doc_books_importance_length_correction": -298.5296936035156, "rps_doc_openwebtext_importance": -175.77293395996094, "rps_doc_openwebtext_importance_length_correction": -175.77293395996094, "rps_doc_wikipedia_importance": -122.12809753417969, "rps_doc_wikipedia_importance_length_correction": -122.12809753417969 }, "fasttext": { "dclm": -0.000006790000043110922, "english": 0.9254235625267029, "fineweb_edu_approx": 1.628098487854004, "eai_general_math": 0.00048769000568427145, "eai_open_web_math": 0.08121877908706665, "eai_web_code": -0.000007749999895168003 } }
{ "free_decimal_correspondence": { "primary": { "code": "333.91", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } }, "secondary": { "code": "523.1", "labels": { "level_1": "Science and Natural history", "level_2": "Astronomy", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,009,274,196,378,184,000
Log in Sign up 03/08/09 — Lt. Gov. helps kick off businesss expo in Duplin View Archive Lt. Gov. helps kick off businesss expo in Duplin By Bonnie Edwards Published in News on March 8, 2009 9:57 AM KENANSVILLE -- The resilience of small business and a fighting spirit are going to get North Carolinians through the current tough times, Lt. Gov. Walter Dalton told Duplin County leaders Friday afternoon . Dalton helped kick off the Duplin County... Please log in to see full story. Not yet registered? Sign up - Subscribers register for free! Read more about this change Goldsboro Quick Care - 919-734-6700
{ "url": "http://www.newsargus.com/news/archives/2009/03/08/lt_gov_helps_kick_off_businesss_expo_in_duplin/", "source_domain": "www.newsargus.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "17234", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HFDFSQH3U62C4MGBX3FW3YV2JQNF2WMZ", "WARC-Concurrent-To": "<urn:uuid:5788313b-caca-45d7-b856-dff1fd9f3e40>", "WARC-Date": "2013-05-25T07:29:55Z", "WARC-IP-Address": "198.143.233.76", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:HBO7ZVXE7F6C4YTKFHKDKDV4L5J3RH26", "WARC-Record-ID": "<urn:uuid:24c9a789-d0ff-4c12-abd4-a7153e715d45>", "WARC-Target-URI": "http://www.newsargus.com/news/archives/2009/03/08/lt_gov_helps_kick_off_businesss_expo_in_duplin/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4cc1fa55-a8a2-4eba-9227-146de5905fc9>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 7, 8, 16, 17, 77, 78, 91, 92, 141, 142, 160, 203, 204, 455, 456, 489, 490, 551, 552, 580, 581 ], "line_end_idx": [ 7, 8, 16, 17, 77, 78, 91, 92, 141, 142, 160, 203, 204, 455, 456, 489, 490, 551, 552, 580, 581, 616 ] }
{ "red_pajama_v2": { "ccnet_original_length": 616, "ccnet_original_nlines": 21, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.22047244012355804, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.015748029574751854, "rps_doc_frac_lines_end_with_ellipsis": 0.04545455053448677, "rps_doc_frac_no_alph_words": 0.25196850299835205, "rps_doc_frac_unique_words": 0.7425742745399475, "rps_doc_mean_word_length": 4.732673168182373, "rps_doc_num_sentences": 12, "rps_doc_symbol_to_word_ratio": 0.007874020375311375, "rps_doc_unigram_entropy": 4.193850994110107, "rps_doc_word_count": 101, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1589958220720291, "rps_doc_frac_chars_dupe_6grams": 0.1589958220720291, "rps_doc_frac_chars_dupe_7grams": 0.1589958220720291, "rps_doc_frac_chars_dupe_8grams": 0.1589958220720291, "rps_doc_frac_chars_dupe_9grams": 0.1589958220720291, "rps_doc_frac_chars_top_2gram": 0.031380750238895416, "rps_doc_frac_chars_top_3gram": 0.04184100031852722, "rps_doc_frac_chars_top_4gram": 0.058577410876750946, "rps_doc_books_importance": -51.580745697021484, "rps_doc_books_importance_length_correction": -64.43452453613281, "rps_doc_openwebtext_importance": -26.790407180786133, "rps_doc_openwebtext_importance_length_correction": -39.64418411254883, "rps_doc_wikipedia_importance": -15.006698608398438, "rps_doc_wikipedia_importance_length_correction": -27.860475540161133 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.8748182058334351, "fineweb_edu_approx": 0.9697598814964294, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.019549550488591194, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "338.09756", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } }, "secondary": { "code": "352.23", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "Local government" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-283,971,341,288,700,700
Free! panoramica-theme Panoramica Panoramica is built with the intent of adapting to as many window sizes as possible. It has a fully fluid layout that gives it tremendous flexibility, allowing you to cater to both large and small screens alike. Its polished portfolio heavily emphasizes the use of images, displaying a clean slideshow in every portfolio item. And of course, you can customize its appearance through its extensive options panel. If you like this theme, check out Panoramica Professional! It contains a lot more features than the free version, coupled with premium support. panoramica-feature-sliderFlexible Homepage Slider Panoramica comes with a full-width slideshow on the homepage, which you can use to showcase your site in a striking way. The slider easily adapts to the width of the browser window, ensuring that your site will look great in any screen. panoramica-feature-portfolioPortfolio Items The theme also includes a complete portfolio, with categories and even slideshows in each item! You can easily build your site around your work, showcasing your best projects with full size images while the offering a small intro in the homepage. panoramica-feature-layoutFully Fluid Layout Panoramica is totall fluid! It’s designed to adapt to the screen width of any device, molding its content for optimum legibility. With it, you can create a site that can take advantage of large resolutions, while staying great on lower ones. panoramica-feature-featuresHomepage Micro Features For added flexibility, you can also make use of small blocks of text on the homepage, using them to present your site concisely and to the point. Like with slides, you can add as many as you want, thanks to WordPress’ custom post types. Other Features This theme comes with plenty of features that allow you to customize it to your needs: • Custom logo image or text title • Customizable background color and textures • Homepage slider • Homepage features • Portfolio template, including portfolio items and categories • Contact form template • Other page templates (blog, sitemap, full-width…) • Easy-to-use options panel Log In To Download Download This Theme Please fill out the following form to get this theme for free. Try The Demo Released June 14, 2013 Requires WordPress 3.1+ Theme Documentation Trouble using the theme? Look for your answer here. Support & Help If you need any help, you can contact us through the contact page of our support site. Beware though, premium themes get higher priority. Standard Features View All Features Our themes are powered by our custom-built framework, which includes a great variety of extra features, and allows you to effortlessly customize your theme to your needs. feature_01 Professional Design CPOThemes designs all of its themes from scratch, following the best practices of the web design industry in order to deliver beautiful and usable interfaces. feature_02 Cross-browser Compatible Our themes have been thoroughly tested to look good and work properly in all modern browsers, enhancing progressively from older versions. feature_07 Native SEO Tools All themes have its markup optimized for SEO out of the box. They also come with easy-to-use tools to optimize post and page metadata for search engines. feature_06 Page Templates We make sure to add plenty of useful page templates to every theme, so that you can have a great variety of customization options. feature_05 Useful Shortcodes Al themes integrate a great variety of shortcodes, which let you turn into full-blown interactive experiences. You can view all included shortcodes here. feature_03 Theme Options Page Every setting is easily configurable through an integrated theme options page, which lets you tweak any aspect of the theme to suit your needs. feature_09 Custom Widgets The Core provides a variety of additional widgets that you can use in the theme’s sidebars. You can use them to display highly dynamic, interactive experiences. feature_08 Built for Customization You can find plenty of options that allow you to customize our themes as you please, down to the code. They are extremely flexible and can be tweaked to suit your needs.
{ "url": "http://www.cpothemes.com/theme/panoramica", "source_domain": "www.cpothemes.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "27823", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UQ3KEKQQIHCXQRQMLAL2MIE7E3JRVY4C", "WARC-Concurrent-To": "<urn:uuid:6db938d2-8e83-452a-bd2a-e24ea57cafc3>", "WARC-Date": "2013-06-20T01:39:37Z", "WARC-IP-Address": "188.95.249.188", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:LZXQFUOLD3UAH4G7FEARSU5U2JO6SCVJ", "WARC-Record-ID": "<urn:uuid:cadfd340-ab66-413c-b90d-6c016eed7fd9>", "WARC-Target-URI": "http://www.cpothemes.com/theme/panoramica", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6526a167-3e1d-4bba-9f11-b212cf835fae>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 6, 23, 24, 35, 36, 448, 449, 593, 594, 644, 645, 882, 883, 884, 928, 929, 1176, 1177, 1178, 1222, 1223, 1465, 1466, 1467, 1518, 1519, 1756, 1757, 1758, 1773, 1774, 1861, 1862, 1898, 1945, 1965, 1987, 2052, 2078, 2132, 2162, 2181, 2182, 2202, 2203, 2266, 2267, 2280, 2281, 2304, 2305, 2329, 2330, 2350, 2402, 2417, 2555, 2556, 2574, 2575, 2764, 2765, 2766, 2777, 2778, 2798, 2799, 2958, 2959, 2970, 2971, 2996, 2997, 3136, 3137, 3148, 3149, 3166, 3167, 3321, 3322, 3333, 3334, 3349, 3350, 3481, 3482, 3493, 3494, 3512, 3513, 3667, 3668, 3679, 3680, 3699, 3700, 3844, 3845, 3856, 3857, 3872, 3873, 4034, 4035, 4046, 4047, 4071, 4072 ], "line_end_idx": [ 6, 23, 24, 35, 36, 448, 449, 593, 594, 644, 645, 882, 883, 884, 928, 929, 1176, 1177, 1178, 1222, 1223, 1465, 1466, 1467, 1518, 1519, 1756, 1757, 1758, 1773, 1774, 1861, 1862, 1898, 1945, 1965, 1987, 2052, 2078, 2132, 2162, 2181, 2182, 2202, 2203, 2266, 2267, 2280, 2281, 2304, 2305, 2329, 2330, 2350, 2402, 2417, 2555, 2556, 2574, 2575, 2764, 2765, 2766, 2777, 2778, 2798, 2799, 2958, 2959, 2970, 2971, 2996, 2997, 3136, 3137, 3148, 3149, 3166, 3167, 3321, 3322, 3333, 3334, 3349, 3350, 3481, 3482, 3493, 3494, 3512, 3513, 3667, 3668, 3679, 3680, 3699, 3700, 3844, 3845, 3856, 3857, 3872, 3873, 4034, 4035, 4046, 4047, 4071, 4072, 4241 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4241, "ccnet_original_nlines": 109, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37305697798728943, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0025906700175255537, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1347150355577469, "rps_doc_frac_unique_words": 0.45523521304130554, "rps_doc_mean_word_length": 5.186646461486816, "rps_doc_num_sentences": 35, "rps_doc_symbol_to_word_ratio": 0.0012953400146216154, "rps_doc_unigram_entropy": 5.207364559173584, "rps_doc_word_count": 659, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.013458159752190113, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02106495015323162, "rps_doc_frac_chars_top_3gram": 0.007899359799921513, "rps_doc_frac_chars_top_4gram": 0.013165590353310108, "rps_doc_books_importance": -311.0614929199219, "rps_doc_books_importance_length_correction": -311.0614929199219, "rps_doc_openwebtext_importance": -189.1943817138672, "rps_doc_openwebtext_importance_length_correction": -189.1943817138672, "rps_doc_wikipedia_importance": -97.26930236816406, "rps_doc_wikipedia_importance_length_correction": -97.26930236816406 }, "fasttext": { "dclm": 0.00011634999827947468, "english": 0.903378963470459, "fineweb_edu_approx": 0.9743375778198242, "eai_general_math": 0.0035572100896388292, "eai_open_web_math": 0.06255120038986206, "eai_web_code": 0.0016681599663570523 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.1", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "658.87", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,212,963,581,510,971,000
Legal Cashier Jobs in Vermont Unfortunately, there are currently no Legal Cashier jobs available in Vermont which match this search: • Explore similar job titles on the Legal jobs in Vermont page. • Use the job search form above. • Upload your resume • Subscribe to email alerts for Legal Cashier jobs in Vermont. Here are some related jobs: Vermont Law School has a distinguished record of preparing students to serve their clients and the public interest. As the nation's leading environmental law and policy program (US News & World Report), we seek to fill the following position: Transactional Clinical Staff Attorney This newly created position will work as a lawyer and teacher spearheading the Center for Agriculture and Food Systems... BENNINGTON, 05201 As an Army National Guard Indirect Fire Infantryman, you'll be trained and ready to be a vital part of a mortar squad, section, or platoon. You will perform challenging activities that may include parachuting from troop transport airplanes and camouflaging mortar fire positions. Plus, the teamwork, discipline, and leadership skills you learn as an Indirect Fire Infantryman will help you in any civ... BENNINGTON, 05201 Imagine being able to tell your next employer: In the Army National Guard, I protected lives and property by providing on-site intelligence to my commanding officer that consistently resulted in safe passage of armored columns through hostile zones. Pretty impressive, no matter what career you're going after. As a Cavalry Scout, you are the eyes and ears of the armored division. You move ahead of... BRADFORD, 05033 We're looking for team players to provide construction and engineering support vital to the successful outcome of Army National Guard missions. As a member of a Guard Combat Engineer team, you'll be designing and building bridges, roadways, secure perimeters, and tactical firing systems, as well as detecting and safely neutralizing mines and other dangers. In doing so, you will ensure the safe and... BRADFORD, 05033 Airfields. Roads. Dams. Buildings. Name the project, and the Army National Guard builds it. And to do it, they need to move tons of earth, debris, and building materials. That's where the Horizontal Construction Engineer comes in with bulldozers, cranes, graders, and other heavy equipment. As a Guard Horizontal Construction Engineer, you will use heavy machinery to level earth for runways and road... BRADFORD, 05033 Army National Guard Unit Supply Specialists make sure the unit and fellow Soldiers have what they need when they need it. In this role, your keen eye and management ability will keep warehouse functions running smoothly and keep the Guard moving forward. As a Unit Supply Specialist, you will oversee the shipping, storage and supply of Army National Guard equipment. This includes receiving, inspect... COLCHESTER, 05446 Set the tone for your music career by serving part-time as a member of the Army National Guard band. Army National Guard musicians perform in a variety of environments, ranging from ceremonial band to jazz band to small ensembles, playing all styles of music, while specializing in one (or more) of the following instruments: Tuba, Trombone, Euphonium, Bassoon, Electric Bass Guitar, Saxophone, Flute... COLCHESTER, 05446 Got a knack for keeping cars and trucks on the road? Then join the Army National Guard as a Light-Wheel Vehicle Mechanic and help keep freedom moving forward. As a Light-Wheel Vehicle Mechanic, you will have the opportunity to supervise and perform unit maintenance and recovery operations on gasoline - and diesel - fueled light-wheeled vehicles. In short, if it's on wheels, you'll work on it. And... COLCHESTER, 05446 Add power to your resume in the Army National Guard's Power-Generation Equipment Repairer specialty. As a Power-Generation Equipment Repairer, you will ensure that the Army National Guard keeps receiving the electricity it needs to continue serving the Nation. This will be accomplished by maintaining and repairing electricity-generating equipment in mobile and stationary power plants. Through trai... COLCHESTER, 05446 Are you one of those people who just instinctively see how things work? Are you the person people come to when they need to have something looked at or fixed? Put that talent to work in the Army National Guard. As a Quartermaster and Chemical Equipment Repairer in the Army National Guard, you will build the skills you need for a civilian career while directly supporting the maintenance of chemical... COLCHESTER, 05446 As an Automated Logistical Specialist in the Army National Guard, you will learn the ins and outs of supply chain management, from storage and distribution to warehouse management and record keeping. Major duties include: Establishing and maintaining records, such as stock lists, inventory, material control, accounting, and supply reports Reviewing and verifying quantities received against bills o... COLCHESTER, 05446 Electronics are used in virtually every Army National Guard unit. It is the job of the Land Combat Electronic Missile System Repairer to fix and maintain electronics relevant to the Army's missile systems. You will work primarily on the TOW antimissile system, the DRAGON antitank guided missile systems, and the Bradley Fighting Vehicle systems. Other duties include testing instruments and navigati... JERICHO, 05465 Join the Army National Guard as a Fire Support Specialist and you'll find out just how exciting computers and communications can be. As part of an elite field artillery team, you will support infantry and tank units in combat operations while learning highly sought-after skills that will help you in your civilian career. Also known as the Forward Observer, the Fire Support Specialists act as the e... JERICHO, 05465 Discipline. Loyalty. Experience. Every employer wants someone with these qualities because these are the people who become leaders. And those are exactly the qualities you'll develop as a Soldier in the Army National Guard. Imagine competing for a management position and it comes down to you and one other applicant. The strong work ethic, valuable skills, and undeniable experience you gain in the... JERICHO, 05465 As an Army National Guard Indirect Fire Infantryman, you'll be trained and ready to be a vital part of a mortar squad, section, or platoon. You will perform challenging activities that may include parachuting from troop transport airplanes and camouflaging mortar fire positions. Plus, the teamwork, discipline, and leadership skills you learn as an Indirect Fire Infantryman will help you in any civ... JERICHO, 05465 Join the Army National Guard as a Fire Support Specialist and you'll find out just how exciting computers and communications can be. As part of an elite field artillery team, you will support infantry and tank units in combat operations while learning highly sought-after skills that will help you in your civilian career. Also known as the Forward Observer, the Fire Support Specialists act as the e... JERICHO, 05465 Communication is the heartbeat of any Army National Guard unit. By joining the Army National Guard as a Signal Support Systems Specialist, you will keep the information flowing by making sure all communications equipment is in top working order. And while you maintain signal support devices and terminals in the Army National Guard, you will be building skills that will help you in your civilian ca... JERICHO, 05465 Dreaming of a health care career? As a National Guard Health Care Specialist, you will address the health care needs of civilians after natural disasters or civil emergencies. You will also be the first line of defense against injuries and illnesses suffered by our Soldiers through the administration of immediate emergency care and ongoing care and support. After extensive Army medical training, y... JERICHO, 05465 Army National Guard Unit Supply Specialists make sure the unit and fellow Soldiers have what they need when they need it. In this role, your keen eye and management ability will keep warehouse functions running smoothly and keep the Guard moving forward. As a Unit Supply Specialist, you will oversee the shipping, storage and supply of Army National Guard equipment. This includes receiving, inspect... LYNDONVILLE, 05851 With the Army National Guard's thousands of personnel and countless missions, the need for communications goes beyond vitally important to absolute necessity, because without ongoing and reliable communications, systems fail, orders do not get relayed, and missions come to a grinding halt. That's why the Army National Guard fields the communications maintenance team – to keep the Army National G... Sponsored results Get a Legal Job With a Paralegal or Law Degree! Free Training Info. www.Legal.EducationMatch.us Get Answers Faster at Ask.com. Try It Now! Ask.com Search For New Legal Jobs Nationwide Today! www.iHireLegal.com Quickly Find Legal Employment Resources in Our Online Directory. www.business.com Didn't find the right Legal Cashier job in Vermont? We'll keep looking and send you new jobs that match this search. email me Upload your resume and let employers find you! It's that simple! Legal Career Tools Cashier Salaries $14,560.00 - $22,880.00 Typical Salary for Cashier in Vermont (1651 Respondents) Source: Monster.com Careerbenchmarking Tool Education / Training Some College Coursework Completed 31.2% High School 29.4% Bachelor's 16.9% Associates 10% Some High School Coursework 5.7% Certification 3.6% Vocational 2.5% (1294 Respondents) Source: Monster.com Careerbenchmarking Tool Popular Legal Cashier Articles Alternative Legal Careers Article Rating Interested in law but don't want to take the LSAT or wear a badge? Check out these 10 different possibilities to enter the field. Hispanics/Latinos in Legal Careers Article Rating Hispanics/Latinos are finding that a law degree can open the door to a number of legal careers. Learn about three. For Employers: Post Jobs | Search Resumes | Advertise About Monster | Work for Monster | Advertise with Us | AdChoices | Partner with Us | Investor Relations | Social Media Terms of Use | Privacy Center | Accessibility Centre | Help | Security | Contact Us | Sitemap | Mobile ©2013 Monster - All Rights Reserved U.S. Patents No. 5,832,497; 7,599,930 B1; 7,827,125 and 7,836,060 MWW - Looking for Monster Cable? - V: 2013.5.0.223-315 eTrustLogo
{ "url": "http://jobs.monster.com/v-legal-q-legal-cashier-jobs-l-vermont.aspx", "source_domain": "jobs.monster.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "108716", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:D3Q26VZLPSRVO4RTUPJC5TK2RA4U7ST2", "WARC-Concurrent-To": "<urn:uuid:ad212f88-f8a3-4e2b-a962-d1f01c2172dc>", "WARC-Date": "2013-06-19T17:08:17Z", "WARC-IP-Address": "63.121.30.72", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7Y5F4XDJR6MVBUYT2O3BQMJ5BBVWQWSS", "WARC-Record-ID": "<urn:uuid:ba496e02-1aee-4e07-949c-9582ed209d57>", "WARC-Target-URI": "http://jobs.monster.com/v-legal-q-legal-cashier-jobs-l-vermont.aspx", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:5f63485b-c9ff-4149-80e9-370454ae83e8>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 30, 31, 134, 135, 201, 236, 259, 324, 352, 755, 773, 1177, 1195, 1598, 1614, 2018, 2034, 2438, 2454, 2858, 2876, 3280, 3298, 3701, 3719, 4123, 4141, 4545, 4563, 4967, 4985, 5389, 5404, 5808, 5823, 6226, 6241, 6645, 6660, 7064, 7079, 7483, 7498, 7902, 7917, 8321, 8340, 8744, 8762, 8830, 8858, 8901, 8909, 8953, 8972, 9037, 9054, 9106, 9171, 9180, 9181, 9228, 9246, 9247, 9266, 9267, 9275, 9276, 9285, 9286, 9310, 9348, 9367, 9411, 9412, 9433, 9434, 9468, 9474, 9486, 9492, 9503, 9509, 9520, 9524, 9552, 9557, 9571, 9576, 9587, 9592, 9611, 9655, 9656, 9687, 9688, 9729, 9859, 9909, 10024, 10078, 10197, 10300, 10457 ], "line_end_idx": [ 30, 31, 134, 135, 201, 236, 259, 324, 352, 755, 773, 1177, 1195, 1598, 1614, 2018, 2034, 2438, 2454, 2858, 2876, 3280, 3298, 3701, 3719, 4123, 4141, 4545, 4563, 4967, 4985, 5389, 5404, 5808, 5823, 6226, 6241, 6645, 6660, 7064, 7079, 7483, 7498, 7902, 7917, 8321, 8340, 8744, 8762, 8830, 8858, 8901, 8909, 8953, 8972, 9037, 9054, 9106, 9171, 9180, 9181, 9228, 9246, 9247, 9266, 9267, 9275, 9276, 9285, 9286, 9310, 9348, 9367, 9411, 9412, 9433, 9434, 9468, 9474, 9486, 9492, 9503, 9509, 9520, 9524, 9552, 9557, 9571, 9576, 9587, 9592, 9611, 9655, 9656, 9687, 9688, 9729, 9859, 9909, 10024, 10078, 10197, 10300, 10457, 10467 ] }
{ "red_pajama_v2": { "ccnet_original_length": 10467, "ccnet_original_nlines": 104, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3141414225101471, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.015151520259678364, "rps_doc_frac_lines_end_with_ellipsis": 0.190476194024086, "rps_doc_frac_no_alph_words": 0.18888889253139496, "rps_doc_frac_unique_words": 0.3873986303806305, "rps_doc_mean_word_length": 5.286962032318115, "rps_doc_num_sentences": 118, "rps_doc_symbol_to_word_ratio": 0.010101010091602802, "rps_doc_unigram_entropy": 5.6737775802612305, "rps_doc_word_count": 1603, "rps_doc_frac_chars_dupe_10grams": 0.23858407139778137, "rps_doc_frac_chars_dupe_5grams": 0.29073745012283325, "rps_doc_frac_chars_dupe_6grams": 0.26159292459487915, "rps_doc_frac_chars_dupe_7grams": 0.25616517663002014, "rps_doc_frac_chars_dupe_8grams": 0.24271385371685028, "rps_doc_frac_chars_dupe_9grams": 0.23858407139778137, "rps_doc_frac_chars_top_2gram": 0.03823009133338928, "rps_doc_frac_chars_top_3gram": 0.048141591250896454, "rps_doc_frac_chars_top_4gram": 0.03303835168480873, "rps_doc_books_importance": -854.0615844726562, "rps_doc_books_importance_length_correction": -854.0615844726562, "rps_doc_openwebtext_importance": -378.7688903808594, "rps_doc_openwebtext_importance_length_correction": -378.7688903808594, "rps_doc_wikipedia_importance": -259.4498291015625, "rps_doc_wikipedia_importance_length_correction": -259.4498291015625 }, "fasttext": { "dclm": 0.0051770200952887535, "english": 0.9307681322097778, "fineweb_edu_approx": 1.7095787525177002, "eai_general_math": 0.0022511500865221024, "eai_open_web_math": 0.13735228776931763, "eai_web_code": 0.0005381699884310365 } }
{ "free_decimal_correspondence": { "primary": { "code": "355.02", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "" } }, "secondary": { "code": "340", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "7", "label": "Search/Directory/Bibliography" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,891,646,624,283,114,000
Wednesday, June 19, 2013 fire header 911 InstaFire lineup fire bucket packets fire bucket bulk Pouches Whether you are preparing for an emergency or camping cross-country, InstaFire Adventure Gallon buckets not only provide you with a convenient and easy firestarter, but an easy storage solution as well. With 24 individual InstaFire pouches, this 2 Gallon bucket is easy to carry, easy to store, and extremely durable. InstaFire 2 Gallon Bucket (24 Paper Pouches) $59.95    Bulk InstaFire is a great fire starter. Composed of recycled wood, inert minerals and shielded with a patented blend of paraffin makes InstaFire inherently safe. Unlike similar products, InstaFire does not contain any harmful chemicals or vapors, making it a perfect choice for people, food and the environment. InstaFire 2 Gallon Bucket (Bulk) $54.95  
{ "url": "http://www.911foodandwater.com/index.php?option=com_content&view=article&id=22&Itemid=15", "source_domain": "www.911foodandwater.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "23127", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2CMVQNA6JSNBN2XEMVWO5ST7YYMRA4SZ", "WARC-Concurrent-To": "<urn:uuid:e11ed733-5cb5-4506-aba5-baaca86708f0>", "WARC-Date": "2013-06-19T20:29:36Z", "WARC-IP-Address": "184.154.229.2", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:DFZQSKJLPBIWJPUG7TY6RQSYXEHC65ZM", "WARC-Record-ID": "<urn:uuid:d836da00-2677-4ead-9bc7-3043d580039d>", "WARC-Target-URI": "http://www.911foodandwater.com/index.php?option=com_content&view=article&id=22&Itemid=15", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:7c1ab137-1bab-4aca-9bb3-b4fad086d77b>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 25, 26, 38, 39, 53, 60, 97, 98, 106, 107, 425, 426, 452, 471, 478, 480, 481, 487, 488, 795, 796, 822, 829, 830, 837, 838 ], "line_end_idx": [ 25, 26, 38, 39, 53, 60, 97, 98, 106, 107, 425, 426, 452, 471, 478, 480, 481, 487, 488, 795, 796, 822, 829, 830, 837, 838, 839 ] }
{ "red_pajama_v2": { "ccnet_original_length": 839, "ccnet_original_nlines": 26, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2371794879436493, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2371794879436493, "rps_doc_frac_unique_words": 0.6640625, "rps_doc_mean_word_length": 5.25, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.242119312286377, "rps_doc_word_count": 128, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03125, "rps_doc_frac_chars_top_3gram": 0.058035708963871, "rps_doc_frac_chars_top_4gram": 0.0654761865735054, "rps_doc_books_importance": -70.83566284179688, "rps_doc_books_importance_length_correction": -70.83566284179688, "rps_doc_openwebtext_importance": -35.652679443359375, "rps_doc_openwebtext_importance_length_correction": -34.38394546508789, "rps_doc_wikipedia_importance": -42.44178009033203, "rps_doc_wikipedia_importance_length_correction": -42.44178009033203 }, "fasttext": { "dclm": 0.006478849798440933, "english": 0.8714473247528076, "fineweb_edu_approx": 0.9756214022636414, "eai_general_math": 0.0011424999684095383, "eai_open_web_math": 0.1451871395111084, "eai_web_code": 0.0000370699999621138 } }
{ "free_decimal_correspondence": { "primary": { "code": "649.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Child rearing and Parenting" } }, "secondary": { "code": "628.5", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Sanitary engineering, Sanitation, and Water-supply" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
3,693,972,496,630,104,000
Sign in Sign in to LehighValleyLive.com Close Customize Your Weather Close Congratulations! Your weather is now set to . You can change this setting at any time. Close Janice Blake-Piccotti | The Express-Times Janice Blake-Piccotti | The Express-Times About Me:  Janice, an Easton native who currently lives in Forks Township with her son and her mother, is the assistant editorial page editor and a member of the copy desk/pagination team. Zip Code: 18040 Posts by Janice Blake-Piccotti | The Express-Times (173 total)    RSS Most recent activity is shown first. Show oldest activity first Newly refurbished Avenue A in Wind Gap Somebody Did Something: Avenue A in Wind Gap Posted on Slate Belt News on September 22, 2012, 8:00AM OK. We captured it on a rainy day, but Avenue A in Wind Gap was still beaming with pride after a recent makeover. The road was the focus of Somebody Do Something in May when motorists complained that it was a pothole-ridden nightmare. That same month Wind Gap Councilman Dave Hess told The Express-Times that council would be soliciting bids... Full story » Metal plate repairs on Route 22 in Lopatcong Somebody Did Something - Metal plate on Route 22 in Lopatcong Township Posted on Phillipsburg Area News on September 08, 2012, 8:00AM The removal of the plate and permanent repairs to the highway were completed last week,  Full story » Arlen Specter mug Arlen Specter battling non-Hodgkin's lymphoma, law firm confirms Posted on Lehigh Valley Breaking News on September 07, 2012, 1:29PM Specter has twice overcome bouts with Hodgkin's disease, a cancer of the lymphatic system. Full story » Somebody Do Something - Nesquehoning Street Somebody Do Something - Blind curve, drivers going too fast on Route 611 in Easton Posted on Easton Area News with The Express-Times on August 31, 2012, 7:02AM A reader says police patrols or a mirror would help. Full story » Cent' Anni committee praised for hard work Posted on Lehigh Valley Opinion on August 20, 2012, 12:25AM I would like to express my sincere thanks to the Roseto Cent’ Anni committee that worked tirelessly to put together a year’s worth of celebration. It gave me great joy to see how wonderful our residents are and how they pulled together to accomplish so much. The 35 to 40 members of the Cent’ Anni committee spent hundreds of hours... Full story » Somebody Do Something - Locke Heights Road Somebody Do Something: Rutted road in Washington Township, Pa. Posted on Slate Belt News on August 17, 2012, 7:00AM Readers say the potential for a serious accident is high. Full story » Somebody Do Something - Metal grate on Route 22 Somebody Do Something - Metal grate on Route 22 in Lopatcong Township Posted on Phillipsburg Area News on August 04, 2012, 10:36AM Driving over it is jarring; trying to avoid it can be dangerous. Full story » Somebody Do Something - Teels and Delabole roads Somebody Do Something - Not-so-quiet country roads in Plainfield Township Posted on Slate Belt News on July 28, 2012, 6:15AM A reader says the consequences of speeding on this winding stretch where Teels Road meets Delabole Road could be disastrous. See PHOTOS and watch VIDEO. Full story » Somebody Did Something - Driveway off Roseberry Street in Phillipsburg Somebody (Did) Something - Driveway in Phillipsburg gets a face-lift Posted on Phillipsburg Area News on July 20, 2012, 6:15AM Drivers can now enter and exit the businesses without risking damage to their vehicles. Full story » Somebody Do Something - Buttermilk Road in Williams Township Somebody Do Something: Obstructed view at Williams Township intersection Posted on Easton Area News with The Express-Times on July 14, 2012, 8:00AM Pulling from Buttermilk Road onto Raubsville Road is tricky. Full story » Somebody Did Something: Storm drain in Bangor Somebody Did Something: Repairs to troublesome storm drain in Bangor Posted on Slate Belt News on July 07, 2012, 8:00AM A reader feared this storm drain, covered by weather-worn wood for years, could be the site of a serious accident with someone falling into the gaping hole the wood covered. Full story » Somebody Do Something: Center Street in Wind Gap Somebody Do Something: Rocky ride on Center Street in Wind Gap Posted on Slate Belt News on July 04, 2012, 7:55AM The intersection of Center Street and Broadway is a challenge. Full story » Somebody Do Something - Edamy Street in Palmer Township Somebody Do Something: Bottoming out on Edamy Street in Palmer Township Posted on Easton Area News with The Express-Times on June 15, 2012, 4:00PM A dip in the road is frustrating motorists. Full story » Somebody Do Something: Port Colden Manor Somebody Do Something: Port Colden Manor falls on hard times Posted on Warren County News from The Express-Times on May 26, 2012, 7:53AM It's served as a trolley station, private home, girl's school, hotel and school district offices over the years. Full story » Somebody Do Something - Riegelsville Somebody Do Something: Old Victorian house in Riegelsville Posted on Upper Bucks News on May 12, 2012, 8:00AM A reader says this rundown house along Route 611 makes Riegelsville less inviting. Full story » Nazareth man allegedly threatens wife, her son Posted on Nazareth Area News on May 11, 2012, 3:29PM Mark Peterson, 54, told his wife he wanted her 'free-loading' son and girlfriend out of the house or he would shoot them and his wife, according to court documents.  Full story » mikayla resh Nazareth area girl's story being shared across Pennsylvania Posted on Nazareth Area News on May 10, 2012, 4:05PM Mikayla Resh, 17, of Lower Nazareth Township, is disabled and the focus of a book written in 2005 by her third-grade classmates. Full story » Somebody Do Something - Avenue A in Wind Gap Somebody Do Something: Avenue A puts an end to smooth sailing in Wind Gap Posted on Slate Belt News on May 05, 2012, 12:30PM It's slow going on Avenue A in Wind Gap, a driver tells us. Full story » Somebody (Did) Something - Uhler Road railroad tracks Somebody (Did) Something - Ride no longer bumpy on Uhler Road in Forks Township Posted on Easton Area News with The Express-Times on May 03, 2012, 10:50AM The out-of-whack railroad tracks are fixed on the second try. Full story »
{ "url": "http://connect.lehighvalleylive.com/user/jpiccott/posts-3.html", "source_domain": "connect.lehighvalleylive.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "120634", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ZT3RNMGBDHLXRPKPTH6WLNAE3GUV7KMR", "WARC-Concurrent-To": "<urn:uuid:073257d8-fcd7-4466-af93-af99a15c5e2a>", "WARC-Date": "2013-05-19T06:56:41Z", "WARC-IP-Address": "23.0.160.8", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ARNIG3XKQZTW5Q46HRQMYA7I4KEXCAAD", "WARC-Record-ID": "<urn:uuid:2deeb8b3-2c0a-4fb2-91e5-94c54600a484>", "WARC-Target-URI": "http://connect.lehighvalleylive.com/user/jpiccott/posts-3.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b09d9ccb-4472-4150-88a0-6f98714fc0b7>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 8, 9, 41, 42, 48, 71, 72, 78, 95, 165, 171, 213, 214, 256, 257, 268, 446, 462, 463, 533, 534, 598, 637, 638, 683, 684, 740, 741, 1099, 1144, 1145, 1216, 1217, 1280, 1281, 1383, 1401, 1402, 1467, 1468, 1536, 1537, 1641, 1685, 1686, 1769, 1770, 1847, 1848, 1914, 1915, 1958, 1959, 2019, 2020, 2368, 2411, 2412, 2475, 2476, 2529, 2530, 2601, 2649, 2650, 2720, 2721, 2782, 2783, 2861, 2910, 2911, 2985, 2986, 3037, 3038, 3204, 3275, 3276, 3345, 3346, 3404, 3405, 3506, 3567, 3568, 3641, 3642, 3717, 3718, 3792, 3838, 3839, 3908, 3909, 3960, 3961, 4148, 4197, 4198, 4261, 4262, 4313, 4314, 4390, 4446, 4447, 4519, 4520, 4595, 4596, 4653, 4694, 4695, 4756, 4757, 4833, 4834, 4960, 4997, 4998, 5057, 5058, 5109, 5110, 5206, 5207, 5254, 5255, 5308, 5309, 5488, 5501, 5502, 5562, 5563, 5616, 5617, 5759, 5804, 5805, 5879, 5880, 5931, 5932, 6005, 6059, 6060, 6140, 6141, 6216, 6217 ], "line_end_idx": [ 8, 9, 41, 42, 48, 71, 72, 78, 95, 165, 171, 213, 214, 256, 257, 268, 446, 462, 463, 533, 534, 598, 637, 638, 683, 684, 740, 741, 1099, 1144, 1145, 1216, 1217, 1280, 1281, 1383, 1401, 1402, 1467, 1468, 1536, 1537, 1641, 1685, 1686, 1769, 1770, 1847, 1848, 1914, 1915, 1958, 1959, 2019, 2020, 2368, 2411, 2412, 2475, 2476, 2529, 2530, 2601, 2649, 2650, 2720, 2721, 2782, 2783, 2861, 2910, 2911, 2985, 2986, 3037, 3038, 3204, 3275, 3276, 3345, 3346, 3404, 3405, 3506, 3567, 3568, 3641, 3642, 3717, 3718, 3792, 3838, 3839, 3908, 3909, 3960, 3961, 4148, 4197, 4198, 4261, 4262, 4313, 4314, 4390, 4446, 4447, 4519, 4520, 4595, 4596, 4653, 4694, 4695, 4756, 4757, 4833, 4834, 4960, 4997, 4998, 5057, 5058, 5109, 5110, 5206, 5207, 5254, 5255, 5308, 5309, 5488, 5501, 5502, 5562, 5563, 5616, 5617, 5759, 5804, 5805, 5879, 5880, 5931, 5932, 6005, 6059, 6060, 6140, 6141, 6216, 6217, 6291 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6291, "ccnet_original_nlines": 152, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.23422713577747345, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02760251984000206, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.21687696874141693, "rps_doc_frac_unique_words": 0.393410861492157, "rps_doc_mean_word_length": 4.828488349914551, "rps_doc_num_sentences": 32, "rps_doc_symbol_to_word_ratio": 0.0015772900078445673, "rps_doc_unigram_entropy": 5.272932052612305, "rps_doc_word_count": 1032, "rps_doc_frac_chars_dupe_10grams": 0.043748751282691956, "rps_doc_frac_chars_dupe_5grams": 0.25647199153900146, "rps_doc_frac_chars_dupe_6grams": 0.23058399558067322, "rps_doc_frac_chars_dupe_7grams": 0.11699779331684113, "rps_doc_frac_chars_dupe_8grams": 0.09371864050626755, "rps_doc_frac_chars_dupe_9grams": 0.08027292788028717, "rps_doc_frac_chars_top_2gram": 0.042143288999795914, "rps_doc_frac_chars_top_3gram": 0.08007224649190903, "rps_doc_frac_chars_top_4gram": 0.046959660947322845, "rps_doc_books_importance": -714.056884765625, "rps_doc_books_importance_length_correction": -714.056884765625, "rps_doc_openwebtext_importance": -399.0193176269531, "rps_doc_openwebtext_importance_length_correction": -399.0193176269531, "rps_doc_wikipedia_importance": -243.87051391601562, "rps_doc_wikipedia_importance_length_correction": -243.87051391601562 }, "fasttext": { "dclm": 7.200000027296483e-7, "english": 0.8692018389701843, "fineweb_edu_approx": 1.158058524131775, "eai_general_math": 0.0005574799724854529, "eai_open_web_math": 0.08414971828460693, "eai_web_code": -0.000009299999874201603 } }
{ "free_decimal_correspondence": { "primary": { "code": "307.76", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social sciences — Research, Social sciences — Study and teaching, and Cities and towns" } }, "secondary": { "code": "363.3", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
3,261,438,384,191,880,700
Dental in United Kingdom Go to http://www.mysheriff.co.uk Dental United Kingdom Dental Directory featuring Dental in Towns and Cities across United Kingdom with photos, phone numbers, maps, addresses, ratings and reviews. There are many businesses that advertise for free in our Dental Directory. If you would like a life long free business listing please click the link below. Add your business today and get the top listing Free Browse Dental latest added businesses and reviews malmin.co.uk Malmin dental service provides the best dental care with some specialist dentist who will took care of your complete dental treatment....  more details Dental Equipment and Supplies London Fairdent Limited Fairdent Limited is a national supplier of quality dental equipment throughout the UK Why should you choose Fairdent? • We pride ourse...  more details Dental Equipment and Supplies Kings Lynn Dental Headlamps Based in Harrow, Dental Headlamps supplies dental headlamps and headlights to dental practitioners throughout the UK. Set up in 2012, the co...  more details Dental Equipment and Supplies Harrow Claudius Ash Claudius Ash was established in 1829 and has an unbroken and continuous record of service to the profession. Claudius Ash is part of the Pla...  more details Dental Equipment and Supplies Stevenage Browse Top Categories in Dental UK Business Directory A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z 
{ "url": "http://www.mysheriff.co.uk/categories/industries/dental/", "source_domain": "www.mysheriff.co.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "28696", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IYK77EAPY5HD7JFKXRK2Z7O2O5FEBW4V", "WARC-Concurrent-To": "<urn:uuid:01d002f2-0604-4853-be0c-28078f78948d>", "WARC-Date": "2013-06-20T01:39:16Z", "WARC-IP-Address": "184.106.119.121", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:L3UEQGHRPHANGZCEZMSDIKJZXEEOGFI6", "WARC-Record-ID": "<urn:uuid:c0a6f9a9-97e2-40be-a270-63a75d32e0e1>", "WARC-Target-URI": "http://www.mysheriff.co.uk/categories/industries/dental/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d124cb5f-9a35-4521-bec9-4c1d8c4b5420>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 58, 59, 81, 82, 224, 225, 381, 382, 435, 436, 443, 444, 487, 488, 489, 502, 503, 655, 692, 693, 710, 711, 863, 904, 905, 922, 923, 1081, 1118, 1119, 1132, 1133, 1291, 1331, 1332, 1339, 1340, 1365, 1366, 1367, 1389, 1390 ], "line_end_idx": [ 58, 59, 81, 82, 224, 225, 381, 382, 435, 436, 443, 444, 487, 488, 489, 502, 503, 655, 692, 693, 710, 711, 863, 904, 905, 922, 923, 1081, 1118, 1119, 1132, 1133, 1291, 1331, 1332, 1339, 1340, 1365, 1366, 1367, 1389, 1390, 1467 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1467, "ccnet_original_nlines": 42, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.28244274854660034, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.1106870174407959, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.09541984647512436, "rps_doc_frac_unique_words": 0.5897436141967773, "rps_doc_mean_word_length": 4.9188032150268555, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0.015267180278897285, "rps_doc_unigram_entropy": 4.582388877868652, "rps_doc_word_count": 234, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.12858383357524872, "rps_doc_frac_chars_dupe_6grams": 0.12858383357524872, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.06516072899103165, "rps_doc_frac_chars_top_3gram": 0.05907905846834183, "rps_doc_frac_chars_top_4gram": 0.09035620838403702, "rps_doc_books_importance": -108.30143737792969, "rps_doc_books_importance_length_correction": -102.34696197509766, "rps_doc_openwebtext_importance": -42.98008728027344, "rps_doc_openwebtext_importance_length_correction": -42.98008728027344, "rps_doc_wikipedia_importance": -22.75731086730957, "rps_doc_wikipedia_importance_length_correction": -12.932472229003906 }, "fasttext": { "dclm": -0.000004410000201460207, "english": 0.8517809510231018, "fineweb_edu_approx": 0.8195871114730835, "eai_general_math": -0.0000071499998739454895, "eai_open_web_math": 0.004783929791301489, "eai_web_code": -0.000009540000064589549 } }
{ "free_decimal_correspondence": { "primary": { "code": "617.6", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Surgery and Dentistry" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
407,709,279,013,980,740
Restaurant Reservations - Free • Instant • Confirmed Learn More Restaurant Reviews Find Restaurants in Your Area Select a Location Most Reviewed Restaurants Philadelphia / New Jersey Suburbs 4.39 out of 5 Philadelphia / New Jersey Suburbs 4.512 out of 5 Philadelphia / New Jersey Suburbs 4.329 out of 5 Top-Rated Restaurants Philadelphia / New Jersey Suburbs 4.512 out of 5 Philadelphia / New Jersey Suburbs 4.39 out of 5 Philadelphia / New Jersey Suburbs 4.329 out of 5 Contemporary American Restaurant Reviews (Philadelphia / New Jersey Suburbs) Overall Rating:4.5 out of 5 stars. "In an economy that has forced fine restaurants to expand their definition of "Casual Dining!" Krazy Kats has maintained its atmosphere of elegance. What better milieu in which to find both whimsy in"... (see more Krazy Kat's at The Inn at Montchanin Village details or make Krazy Kat's at The Inn at Montchanin Village reservations) Moro Reviews (237 reviews)Buy Now (Philadelphia / New Jersey Suburbs) Overall Rating:4.4 out of 5 stars. "Had a wonderful dinner at Moro once again! I was especially pleased because I told them when making reservation through Open Table that my daughtter graduates that day with her Masters. They surprised"... (see more Moro details or make Moro reservations) (Philadelphia / New Jersey Suburbs) Overall Rating:4.3 out of 5 stars. "Javier was our server and he did an excellent job! Brunch is not a typical service for DH but they opened it up for Mother's Day and made us all feel special!"... (see more Domaine Hudson details or make Domaine Hudson reservations) (Philadelphia / New Jersey Suburbs) Overall Rating:3.7 out of 5 stars. "Are waiter Elvis was great, drinks were top notch at a good price. The vegetarian options were good for our vegetarian. One other in the group liked his meal, but did not remember what it was a few"... (see more Ernest & Scott Taproom details or make Ernest & Scott Taproom reservations)
{ "url": "http://reviews.opentable.com/0938/N431C70/category.htm", "source_domain": "reviews.opentable.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "86268", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:YHJUCBV2IZ5GLDA4LHT6WDKLRDB6IWR6", "WARC-Concurrent-To": "<urn:uuid:da45ce10-649f-459c-b5f1-87c9d624ad8b>", "WARC-Date": "2013-05-20T06:01:12Z", "WARC-IP-Address": "184.51.126.8", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:VNBEVKF4YEXPO77RGOUPVTKOJMY5SJ7J", "WARC-Record-ID": "<urn:uuid:b281ee67-6b37-4ea6-b59c-6561689b6226>", "WARC-Target-URI": "http://reviews.opentable.com/0938/N431C70/category.htm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cbb871e9-a5e1-45e9-8151-12ee9eb0d5ae>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 53, 64, 83, 113, 131, 157, 191, 205, 239, 254, 288, 303, 325, 359, 374, 408, 422, 456, 471, 472, 513, 514, 550, 585, 919, 953, 989, 1024, 1280, 1316, 1351, 1585, 1621, 1656 ], "line_end_idx": [ 53, 64, 83, 113, 131, 157, 191, 205, 239, 254, 288, 303, 325, 359, 374, 408, 422, 456, 471, 472, 513, 514, 550, 585, 919, 953, 989, 1024, 1280, 1316, 1351, 1585, 1621, 1656, 1944 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1944, "ccnet_original_nlines": 34, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2731829583644867, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007518799975514412, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2606516182422638, "rps_doc_frac_unique_words": 0.491909384727478, "rps_doc_mean_word_length": 4.970873832702637, "rps_doc_num_sentences": 26, "rps_doc_symbol_to_word_ratio": 0.010025059804320335, "rps_doc_unigram_entropy": 4.677216053009033, "rps_doc_word_count": 309, "rps_doc_frac_chars_dupe_10grams": 0.1471354216337204, "rps_doc_frac_chars_dupe_5grams": 0.3151041567325592, "rps_doc_frac_chars_dupe_6grams": 0.2552083432674408, "rps_doc_frac_chars_dupe_7grams": 0.1940104216337204, "rps_doc_frac_chars_dupe_8grams": 0.1940104216337204, "rps_doc_frac_chars_dupe_9grams": 0.1471354216337204, "rps_doc_frac_chars_top_2gram": 0.09765625, "rps_doc_frac_chars_top_3gram": 0.13671875, "rps_doc_frac_chars_top_4gram": 0.1822916716337204, "rps_doc_books_importance": -159.4176483154297, "rps_doc_books_importance_length_correction": -159.4176483154297, "rps_doc_openwebtext_importance": -99.0601806640625, "rps_doc_openwebtext_importance_length_correction": -99.0601806640625, "rps_doc_wikipedia_importance": -62.02365493774414, "rps_doc_wikipedia_importance_length_correction": -62.02365493774414 }, "fasttext": { "dclm": 0.00002694000068004243, "english": 0.9367928504943848, "fineweb_edu_approx": 0.7528643012046814, "eai_general_math": 0.00016910000704228878, "eai_open_web_math": 0.34723639488220215, "eai_web_code": -0.000008580000212532468 } }
{ "free_decimal_correspondence": { "primary": { "code": "647.95", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Household employees, Caterers and catering, and Real estate management" } }, "secondary": { "code": "381.2", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Commerce" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "14", "label": "Reviews/Critiques" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "24", "label": "User Review" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-805,345,768,965,468,400
How does Jesus Painting Rate? More Than 150,000 Consumers Subscribe to CHECKBOOK to Find the Best Contractors/Remodelers--General Home and More... Subscribe to Bay Area Consumers' CHECKBOOK for unbiased reports, customer reviews, and ratings on 1198 local contractors/remodelers--general home. Jesus Painting received 1 consumer rating from Consumers' CHECKBOOK subscribers. CHECKBOOK provides: • Award winning articles and ratings reports compiled from more than 197,000 San Francisco Bay Area consumer ratings by Consumers' CHECKBOOK and Consumer Reports magazine subscribers who have used these companies and professionals. • Thousands of hours of undercover price shopping. • Review of complaints received by local consumer agencies such as Better Business Bureau (BBB) and attorney general offices. • In-depth research. • No advertising. • No ballot-box stuffing. • Nonprofit Jesus Painting San Jose, CA 95112 Phone: 408-921-4479 Bay Area Consumers' CHECKBOOK > Contractors/Remodelers--General Home > Jesus Painting   Bay Area Consumers' CHECKBOOK "If you want specific, practical, useful information, not generic bull, you’ll find it in Bay Area Consumers’ CHECKBOOK."   Bay Area Consumers' CHECKBOOK "I can attest to [CHECKBOOK’s] magical transformation: What looks like an overflow of information becomes a welcome guide to the perplexed when you actually need to use it."   A Consumers' CHECKBOOK Subscriber "I've never been disappointed by the recommendations from Consumers' Checkbook.After all the reviews are from consumers,not advertisers." ...many more comments Local Contractors/remodelers--General Home Mission City Contractors, San Jose, CA American Kitchen & Bath, San Jose, CA Dague General Contractor, San Jose, CA Goff Development & Design Company, San Jose, CA Tyler Black Construction, San Jose, CA Case Handyman & Remodeling, San Jose, CA Bonnie Conrad, San Jose, CA J&E Construction Designs, San Jose, CA James Construction, San Jose, CA John Able Construction, San Jose, CA Jesus Painting, San Jose, CA John Able Construction, San Jose, CA Jesus Painting, San Jose, CA Flegel's Construction Co, San Jose, CA JNR Design Solutions, San Jose, CA Cribari Construction, San Jose, CA Lang's Mobile Home Service, San Jose, CA Building & Home Repair Service, San Jose, CA D G Sparks, San Jose, CA Kitchens Etc, San Jose, CA Marvin Davis Construction, San Jose, CA Benchmark General Building, San Jose, CA   many more......
{ "url": "http://www.checkbook.org/sitemap/San_Francisco/neighbor-to-neighbor/contractors-remodelers-general-home/detail.cfm?firmCode1=9214479", "source_domain": "www.checkbook.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "30439", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:J3U7YUGUN6ACVDX6N2GBFWYHVASMY2PP", "WARC-Concurrent-To": "<urn:uuid:824df4c1-6a44-4115-b735-4ca510325182>", "WARC-Date": "2013-06-20T09:58:33Z", "WARC-IP-Address": "69.63.135.176", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:3AMZOIBSEGZKHBIDMKJRNVLKRTSNKQDW", "WARC-Record-ID": "<urn:uuid:942f1a54-46e9-4284-9ba0-ee7965804302>", "WARC-Target-URI": "http://www.checkbook.org/sitemap/San_Francisco/neighbor-to-neighbor/contractors-remodelers-general-home/detail.cfm?firmCode1=9214479", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b10edad6-c2c9-4803-b39c-a8499049e739>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 147, 148, 295, 296, 377, 378, 398, 632, 685, 813, 836, 856, 884, 898, 899, 914, 933, 953, 954, 1040, 1042, 1072, 1073, 1195, 1196, 1198, 1228, 1229, 1403, 1404, 1406, 1440, 1441, 1579, 1580, 1602, 1603, 1646, 1647, 1648, 1687, 1688, 1726, 1727, 1766, 1767, 1815, 1816, 1855, 1856, 1897, 1898, 1926, 1927, 1966, 1967, 2000, 2001, 2038, 2039, 2068, 2069, 2070, 2107, 2108, 2137, 2138, 2177, 2178, 2213, 2214, 2249, 2250, 2291, 2292, 2337, 2338, 2363, 2364, 2391, 2392, 2432, 2433, 2474, 2475 ], "line_end_idx": [ 147, 148, 295, 296, 377, 378, 398, 632, 685, 813, 836, 856, 884, 898, 899, 914, 933, 953, 954, 1040, 1042, 1072, 1073, 1195, 1196, 1198, 1228, 1229, 1403, 1404, 1406, 1440, 1441, 1579, 1580, 1602, 1603, 1646, 1647, 1648, 1687, 1688, 1726, 1727, 1766, 1767, 1815, 1816, 1855, 1856, 1897, 1898, 1926, 1927, 1966, 1967, 2000, 2001, 2038, 2039, 2068, 2069, 2070, 2107, 2108, 2137, 2138, 2177, 2178, 2213, 2214, 2249, 2250, 2291, 2292, 2337, 2338, 2363, 2364, 2391, 2392, 2432, 2433, 2474, 2475, 2492 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2492, "ccnet_original_nlines": 85, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.14639174938201904, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.08865979313850403, "rps_doc_frac_lines_end_with_ellipsis": 0.023255810141563416, "rps_doc_frac_no_alph_words": 0.2680412530899048, "rps_doc_frac_unique_words": 0.49142858386039734, "rps_doc_mean_word_length": 5.577142715454102, "rps_doc_num_sentences": 15, "rps_doc_symbol_to_word_ratio": 0.008247420191764832, "rps_doc_unigram_entropy": 4.5875420570373535, "rps_doc_word_count": 350, "rps_doc_frac_chars_dupe_10grams": 0.056864749640226364, "rps_doc_frac_chars_dupe_5grams": 0.06813524663448334, "rps_doc_frac_chars_dupe_6grams": 0.056864749640226364, "rps_doc_frac_chars_dupe_7grams": 0.056864749640226364, "rps_doc_frac_chars_dupe_8grams": 0.056864749640226364, "rps_doc_frac_chars_dupe_9grams": 0.056864749640226364, "rps_doc_frac_chars_top_2gram": 0.08247950673103333, "rps_doc_frac_chars_top_3gram": 0.10604508221149445, "rps_doc_frac_chars_top_4gram": 0.06454917788505554, "rps_doc_books_importance": -220.810791015625, "rps_doc_books_importance_length_correction": -220.810791015625, "rps_doc_openwebtext_importance": -102.98666381835938, "rps_doc_openwebtext_importance_length_correction": -102.98666381835938, "rps_doc_wikipedia_importance": -93.4141845703125, "rps_doc_wikipedia_importance_length_correction": -93.4141845703125 }, "fasttext": { "dclm": -0.000006320000011328375, "english": 0.8546323776245117, "fineweb_edu_approx": 0.8245237469673157, "eai_general_math": 0.00001109000004362315, "eai_open_web_math": 0.21814078092575073, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "690.0", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } }, "secondary": { "code": "381.0", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Commerce" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "14", "label": "Reviews/Critiques" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-9,088,255,964,431,301,000
ChavTowns Username Remember Me? Password Register Caterham – Croydon’s Chav B-Town This article has: 5 Comments I live in Caterham. I ahve my whole life. The Chavs are EVERYWHERE. Down my road, next door, sitting in the car park of Tesco, infesting the Skate Park no less. At 2 in the morning, the high-pitched squeal of a moped can be heard screeching it’s way through the town at 20mph. They walk around in hordes of horribly unflatteringly ugly clothes that gives you a good impression of their attitudes to life – “don’t care, as long as I look my ‘mates’ and spent £300 on a fake gold chain”. Chav culture – one example, a chav on his pedal bike riding on the pavement. My friends were standing on the pavement, waiting for another to come out the newsagent. This chav had the nerve to screech to a halt next to one of my friends and demands that he moves out the way. Firstly, he’s on a bike that should be on the ROAD, secondly he didn’t even ask nicely. He thinks it’s funny to start on my friend. Wisely, we start to leave, but this chav isn’t having any of it. We go past a pub as this chav is effing and blinding at the top of his voice. To make things worse, about 40 odd chavs make their way out the pub and start to follow him. Some older people try and calm this guy down,a nd tell him to abck off, but this chav wants a fight. We go a couple of roads, and he’s still going. Just as we near our friend’s house, the chav starts coming in for a proper fight. Typical chav culture, the odd 40 following get out their camera phones. My friend runs like the wind, the chavs eventually leave bored. Caterham – the s**thole. Come at your own risk! 5 Responses 1. pearl says: I lived in Caterham for many years i was born there.. I now have moved away and find it really hard to go back there to visit friends… Its soo chavy always has been full of thick scuzzy tatooed scumbags wanting fights or just drinking shouting, drugs or other such thing in the numerous rough pubs through out Caterham is a s**t hole even though it is Surrey it is more like Peckham everyday.. I would never move back there although caterham valley used to be the roughest now i think it has changed turns I now believe Caterham on the hill is the roughest with its dull bleak Grey atmosphere… Be warned for your teenage kids in this dump of a town… 2. Dave says: I moved to Caterham 12 months ago and yet to see these chavs you talk about, I live in Caterham in the Valley and have returned from Central London on the last train back, it has been very quiet and I felt very safe every time walking back home. 3. Dan says: No there right caterham is a s**t hole with way to many scum bags, it’s not just caterham it is the surrounding places to I live in godstone and oh boy what a bunch of scum that comes from there I will post a full story ASAP 4. EMG says: Couple in our 40′s, we moved to Caterham 5 years ago running away from a very bad area in SE London, thinking that Caterham was a nice little village still within zone 6. Not so nice, but acceptable. What at first looked like a decent place, with some charming spots and educated people, soon turned into a place full of shirt-less young guys full of tattooes and shaved heads, wearing completely stupid clothes when used outside a gym, or silly trousers that constantly allow the ugly vision of their underwear, which I see as quite a put-off and a clownish and uncomfortable fashion that evidently youngsters of all backgrounds have adopted for some stupid aesthetic reason that totally evades me. Get a 18 years old and give him a trouser for a 10 years old … I would laugh at them if I were not afraid that some of them would attack me, but still they are laughable for their stupidity in following ridiculous fashions, supposedly to make them special and different. HA! You are what you are inside, no need of an alternative uniform. Also lots of silly teenager girls with gib bellies, 1-2 or even more children, who obviously were too drunk or too stupid to use a condom or taking a pill at the time, and who are now being maintained because of their stupidity at becoming pregnant at a young age without means to educate and support their kids. Evidently not responsible and mature enough to take care of their kids, but instead of giving the children to couples who find that they cannot have their own, these silly irresponsible youths get to keep their little kids, who will mostly turn in the kind of guys and girls that scare we all at the tender age of 5. Sick of maintaining these stupid people, we should simply take the kids away and try to give them to a committed family, but this not only happens in Caterham, it’s a nationwide problem. Sterilisation scheme for young guys, with reversal at a later time when they are productive, please! (female sterilisation is much more expensive and difficult to revert, so let’s stick to pills and patches for them…). Freedom comes with responsibility and without us having to maintain parasites any longer… grandmas at 35, a good reason to be proud! If you don’t have the time, means and education, please do not have children! All these people are quite evident since a couple of years ago. Our area is still okay, not too many stupid youngsters, mostly educated and not looking like they want to kill you if you hold their eyes. Caterham is also full of older people and quite a lot of pensioners, some decent, some as chav as the youngsters. Still a better place than where we were in London, and close to a fantastic countryside, which makes it worth the change. ADVISE FOR ALL AREAS: check your area at different times and days before buying anything, and avoid buying anything without having a look at the neighbours! East Croydon is really bad, some spots of South Croydon okay, Purley has its good and bad, and really everywhere is like that in Surrey for commuters to London. 5. Pete says: What are you on about, it’s got more OAP’s in it than chavs. This is surrey, not peckham. Leave a Reply  
{ "url": "http://www.chavtowns.co.uk/2006/10/caterham-croydons-chav-b-town/comment-page-1/", "source_domain": "www.chavtowns.co.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "37470", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:OZOFM2HCXFWJXZVLRK6PTCBH77IAEZI3", "WARC-Concurrent-To": "<urn:uuid:a7c7ff1d-e752-4b7b-8e0f-bf33a1bd5ee6>", "WARC-Date": "2013-05-20T08:58:17Z", "WARC-IP-Address": "78.129.135.60", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7FABJSKOLCOBJ6BKXNMVCKXSCB255WHB", "WARC-Record-ID": "<urn:uuid:250864f5-aac7-462a-b9ec-ba2345241fe6>", "WARC-Target-URI": "http://www.chavtowns.co.uk/2006/10/caterham-croydons-chav-b-town/comment-page-1/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c5f1901b-3a01-4787-a29c-6dd7c02ad065>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 10, 32, 41, 50, 51, 84, 85, 114, 115, 157, 601, 1611, 1659, 1660, 1672, 1673, 1690, 1691, 2345, 2346, 2362, 2363, 2613, 2614, 2629, 2630, 2859, 2860, 2875, 2876, 3919, 3920, 4741, 4742, 5176, 5177, 5620, 5621, 5943, 5944, 5960, 5961, 6055, 6056, 6070, 6071 ], "line_end_idx": [ 10, 32, 41, 50, 51, 84, 85, 114, 115, 157, 601, 1611, 1659, 1660, 1672, 1673, 1690, 1691, 2345, 2346, 2362, 2363, 2613, 2614, 2629, 2630, 2859, 2860, 2875, 2876, 3919, 3920, 4741, 4742, 5176, 5177, 5620, 5621, 5943, 5944, 5960, 5961, 6055, 6056, 6070, 6071, 6072 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6072, "ccnet_original_nlines": 46, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4829721450805664, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02089782990515232, "rps_doc_frac_lines_end_with_ellipsis": 0.021276600658893585, "rps_doc_frac_no_alph_words": 0.13699689507484436, "rps_doc_frac_unique_words": 0.4426523447036743, "rps_doc_mean_word_length": 4.261648654937744, "rps_doc_num_sentences": 52, "rps_doc_symbol_to_word_ratio": 0.004643959924578667, "rps_doc_unigram_entropy": 5.620416641235352, "rps_doc_word_count": 1116, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.0071488600224256516, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.005256520118564367, "rps_doc_frac_chars_top_3gram": 0.004415479954332113, "rps_doc_frac_chars_top_4gram": 0.0063078198581933975, "rps_doc_books_importance": -537.0673217773438, "rps_doc_books_importance_length_correction": -537.0673217773438, "rps_doc_openwebtext_importance": -281.7977600097656, "rps_doc_openwebtext_importance_length_correction": -281.7977600097656, "rps_doc_wikipedia_importance": -229.24462890625, "rps_doc_wikipedia_importance_length_correction": -229.24462890625 }, "fasttext": { "dclm": 0.01060390006750822, "english": 0.9761022925376892, "fineweb_edu_approx": 1.1175833940505981, "eai_general_math": 0.031075479462742805, "eai_open_web_math": 0.23904812335968018, "eai_web_code": 0.0007088800193741918 } }
{ "free_decimal_correspondence": { "primary": { "code": "306.0941", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } }, "secondary": { "code": "306.48", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "9", "label": "Personal/Misc" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "1", "label": "Technically Flawed" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,462,633,622,654,521,900
All EOS blogs All Spain blogs  Start your own blog Start your own blog  Author My books. Olympics 27 July 2012 @ 17:28 Well, the Olympic ceremony tonight is compulsive viewing for me. Please God that there are no more cock ups, aka Korean flag etc. I daresay I'll be glad, like the rest of us Brits, when it's all over. So many people have put so much effort into it that they deserve it to be a roaring success. On Chapter 14 now of the first book of the trilogy, "The Saturday Pledge". Researching a 1974 scene and surprised that Dr Beeching's axe fell on Accrington train station. Had to rewrite a large part of the chapter! I shall never vote Tory again!. Looking at some works of art on line with my grandson, we came acrossThe Venus de Milo. I told him that's what happens if you continuously bite your nails. So it's summer in the UK. I missed it last year, I was brushing my teeth. I was reading a book on great inventions last night, got to the chapter on Super Glue.......couldn't put it down.       1 Comments Gerald said: 28 July 2012 @ 10:26 Thought I'd watch the opening Ceremony thinking it would be a big yawn wondering how long I would last, 10 minutes, 20? before I switched over. But this has to be one of the best things on the box EVER. Seriousness, humour, (Rowan Atkinson!) splendour, marketting of Great Britain..... it was amazing. Brilliant well done. My daughter went to the full dress practice earlier this week & warned me it was unbelievable. Can't believe the Queen parachuted in !!!!!!!! Leave a comment Please leave a comment about this post. You don't have to be registered to leave a comment. Name *   Website (Optional if you want to link to it.  Include http://) Spam protection:  What is the capital of Spain? *    Your comment *  (HTML not allowed)   (Items marked * are required)  
{ "url": "http://www.eyeonspain.com/blogs/josephdickerson/7483/olympics.aspx", "source_domain": "www.eyeonspain.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "28804", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JFWME2ABMJVOVTKNWQDZ2TWIWSQPGQFG", "WARC-Concurrent-To": "<urn:uuid:6ded8a52-4990-44f1-8b52-a4b523ed19f3>", "WARC-Date": "2013-05-24T04:04:23Z", "WARC-IP-Address": "89.234.2.203", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:TFJGHQVHSPNQYURWLF4OK33IT4PECG4S", "WARC-Record-ID": "<urn:uuid:3719c9c8-c915-4c2b-83ff-bf81236b3846>", "WARC-Target-URI": "http://www.eyeonspain.com/blogs/josephdickerson/7483/olympics.aspx", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e1229665-dc1c-473e-b255-50e0f3d19933>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 72, 73, 80, 81, 91, 92, 101, 122, 123, 417, 418, 665, 666, 822, 823, 897, 898, 1012, 1013, 1015, 1016, 1018, 1019, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1039, 1040, 1053, 1074, 1075, 1278, 1398, 1493, 1540, 1541, 1542, 1558, 1559, 1651, 1652, 1659, 1661, 1724, 1775, 1777, 1814, 1844, 1845, 1846, 1847 ], "line_end_idx": [ 72, 73, 80, 81, 91, 92, 101, 122, 123, 417, 418, 665, 666, 822, 823, 897, 898, 1012, 1013, 1015, 1016, 1018, 1019, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1039, 1040, 1053, 1074, 1075, 1278, 1398, 1493, 1540, 1541, 1542, 1558, 1559, 1651, 1652, 1659, 1661, 1724, 1775, 1777, 1814, 1844, 1845, 1846, 1847, 1848 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1848, "ccnet_original_nlines": 56, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3672456741333008, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03473944962024689, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.20347395539283752, "rps_doc_frac_unique_words": 0.6614906787872314, "rps_doc_mean_word_length": 4.285714149475098, "rps_doc_num_sentences": 29, "rps_doc_symbol_to_word_ratio": 0.0074441698379814625, "rps_doc_unigram_entropy": 5.083576679229736, "rps_doc_word_count": 322, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01449275016784668, "rps_doc_frac_chars_top_3gram": 0.028260869905352592, "rps_doc_frac_chars_top_4gram": 0.023188410326838493, "rps_doc_books_importance": -149.5192413330078, "rps_doc_books_importance_length_correction": -149.19497680664062, "rps_doc_openwebtext_importance": -89.50096130371094, "rps_doc_openwebtext_importance_length_correction": -89.50096130371094, "rps_doc_wikipedia_importance": -62.033241271972656, "rps_doc_wikipedia_importance_length_correction": -62.032928466796875 }, "fasttext": { "dclm": 0.00026852000155486166, "english": 0.9539214372634888, "fineweb_edu_approx": 0.9202809929847717, "eai_general_math": 0.00023252000391948968, "eai_open_web_math": 0.1326097846031189, "eai_web_code": -0.000006790000043110922 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.097", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "808.8", "labels": { "level_1": "Literature", "level_2": "", "level_3": "Rhetoric and Style, Literary" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
9,137,345,465,291,608,000
Home Apparel Appliances Books DVD Electronics Home & Garden Kindle eBooks Magazines Music Outdoor Living Software Tools & Hardware PC & Video Games Location:  Home » Books » Author Zach McLarty Books: Author Zach McLarty RSS - Subscribe to Books: Author Zach McLarty Sort by CERTAIN CONTENT THAT APPEARS ON THIS SITE COMES FROM AMAZON SERVICES LLC. THIS CONTENT IS PROVIDED ‘AS IS’ AND IS SUBJECT TO CHANGE OR REMOVAL AT ANY TIME. Brought to you by American Poems Related Categories
{ "url": "http://www.americanpoems.com/store/1052-1000-Zach+McLarty-Author-rc-1.html", "source_domain": "www.americanpoems.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "70071", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JBHQQ4NY4HPNLHBZQEFIQCB73RVWCXKS", "WARC-Concurrent-To": "<urn:uuid:b0e75be4-a94b-4fe3-bd8c-cfce660a7d2b>", "WARC-Date": "2013-05-18T23:08:11Z", "WARC-IP-Address": "66.232.102.139", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:SRG7A42YFDI24DTICGK4M46LYCUXC6BE", "WARC-Record-ID": "<urn:uuid:3a567103-050c-45a3-ad03-1ea25b9dcc92>", "WARC-Target-URI": "http://www.americanpoems.com/store/1052-1000-Zach+McLarty-Author-rc-1.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:67d3ca5d-a8c3-4e33-8376-b6e266041d66>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 5, 13, 24, 30, 34, 46, 60, 74, 84, 90, 105, 114, 131, 148, 158, 194, 195, 222, 223, 269, 277, 433, 466 ], "line_end_idx": [ 5, 13, 24, 30, 34, 46, 60, 74, 84, 90, 105, 114, 131, 148, 158, 194, 195, 222, 223, 269, 277, 433, 466, 484 ] }
{ "red_pajama_v2": { "ccnet_original_length": 484, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.05681817978620529, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.35227271914482117, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14772726595401764, "rps_doc_frac_unique_words": 0.7662337422370911, "rps_doc_mean_word_length": 5.090909004211426, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.9677555561065674, "rps_doc_word_count": 77, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.07653061300516129, "rps_doc_frac_chars_top_3gram": 0.1301020383834839, "rps_doc_frac_chars_top_4gram": 0.11224489659070969, "rps_doc_books_importance": -36.45725631713867, "rps_doc_books_importance_length_correction": -43.27266311645508, "rps_doc_openwebtext_importance": -24.653562545776367, "rps_doc_openwebtext_importance_length_correction": -31.46896743774414, "rps_doc_wikipedia_importance": -24.86773681640625, "rps_doc_wikipedia_importance_length_correction": -31.683143615722656 }, "fasttext": { "dclm": -0.000009890000001178123, "english": 0.6662333607673645, "fineweb_edu_approx": 0.8203482031822205, "eai_general_math": -0.000009780000254977494, "eai_open_web_math": 0.22992563247680664, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "811.009", "labels": { "level_1": "Literature", "level_2": "American literature", "level_3": "American poetry" } }, "secondary": { "code": "025.042", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,097,937,516,344,801,000
      FI Black 3D      FAQ  •  Search   •  Register  •  Profile  •  Log in to check your private messages  •  Log in Recent Topics  •  Dean Homepage  •  How do I Join DOA?     View the New Deans for 2013  Pageing Dana... View next topic View previous topic Post new topicReply to topic Author Message DIMEBAG JOE Joined: 04 Dec 2003 Posts: 9139 Location: Where ever the party is at PostPosted: Fri Dec 19, 2003 10:19 pm Reply with quoteBack to top Can you post some pics of that black 24 fret bolt on ML?? _________________ #01-00004 Image IF YOU'RE NOT A PREDATOR, THEN OH YOU BETTER PRAY....... View user's profileSend private message guitarforceone Joined: 01 Dec 2003 Posts: 456 Location: Austin, Texas PostPosted: Mon Dec 22, 2003 4:14 pm Reply with quoteBack to top Joe, funny you should mention that guitar....I am probably going to be selling it. It only has 22 frets, though. I don't have an image hosting site that has worked for me. The Walagata one that everyone is using would not upload my pics for some reason. I can send you pics via email if you want. Dana <~~~ _________________ DOA #02-00111 '82 Baby Z Pinkburst '9? Icons Amberburst (3) '85 Jackson RR Custom '86 Jackson San Dimas Str*t '86 Charvel Model 4's (6) '87 Charvel Model 6 '90 Charvel 650 '05 Charvel San Dimas Marshall heads (7) etc. View user's profileSend private message Display posts from previous:       Post new topicReply to topic  Jump to:    View next topic View previous topic You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum Powered by phpBB    
{ "url": "http://www.deanguitars.com/forum/viewtopic.php?p=5030", "source_domain": "www.deanguitars.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "21818", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SSH2ZU5CHR643ETDE6BVZ7IDVPRKHSFF", "WARC-Concurrent-To": "<urn:uuid:d66b0842-f306-401c-868b-d7c7e3d2d8a5>", "WARC-Date": "2013-05-22T14:19:46Z", "WARC-IP-Address": "209.18.100.171", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:XAOJCPRFQWY6TJ5GY5GSLSEYXITKEMT3", "WARC-Record-ID": "<urn:uuid:9dab7e8e-f2a6-4145-8706-eb081e7a6520>", "WARC-Target-URI": "http://www.deanguitars.com/forum/viewtopic.php?p=5030", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f17d7bd8-b272-4d9d-a778-a874565e01e6>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 2, 4, 18, 20, 22, 117, 118, 173, 175, 177, 205, 206, 239, 259, 288, 303, 315, 316, 317, 318, 338, 350, 387, 388, 454, 455, 513, 514, 532, 542, 543, 549, 606, 646, 661, 662, 663, 664, 684, 695, 719, 720, 785, 786, 1083, 1093, 1094, 1112, 1126, 1147, 1172, 1194, 1222, 1248, 1268, 1284, 1306, 1330, 1370, 1405, 1434, 1435, 1436, 1449, 1450, 1451, 1452, 1468, 1488, 1529, 1570, 1611, 1654, 1693, 1694, 1695, 1696, 1697, 1714, 1716 ], "line_end_idx": [ 2, 4, 18, 20, 22, 117, 118, 173, 175, 177, 205, 206, 239, 259, 288, 303, 315, 316, 317, 318, 338, 350, 387, 388, 454, 455, 513, 514, 532, 542, 543, 549, 606, 646, 661, 662, 663, 664, 684, 695, 719, 720, 785, 786, 1083, 1093, 1094, 1112, 1126, 1147, 1172, 1194, 1222, 1248, 1268, 1284, 1306, 1330, 1370, 1405, 1434, 1435, 1436, 1449, 1450, 1451, 1452, 1468, 1488, 1529, 1570, 1611, 1654, 1693, 1694, 1695, 1696, 1697, 1714, 1716, 1717 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1717, "ccnet_original_nlines": 80, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.24585634469985962, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.06906077265739441, "rps_doc_frac_lines_end_with_ellipsis": 0.01234568003565073, "rps_doc_frac_no_alph_words": 0.2734806537628174, "rps_doc_frac_unique_words": 0.5748299360275269, "rps_doc_mean_word_length": 4.244897842407227, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0.016574589535593987, "rps_doc_unigram_entropy": 4.881935119628906, "rps_doc_word_count": 294, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.26923078298568726, "rps_doc_frac_chars_dupe_6grams": 0.17628204822540283, "rps_doc_frac_chars_dupe_7grams": 0.046474359929561615, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03605768829584122, "rps_doc_frac_chars_top_3gram": 0.04407050833106041, "rps_doc_frac_chars_top_4gram": 0.04487178847193718, "rps_doc_books_importance": -163.60693359375, "rps_doc_books_importance_length_correction": -152.4085235595703, "rps_doc_openwebtext_importance": -92.55571746826172, "rps_doc_openwebtext_importance_length_correction": -92.55571746826172, "rps_doc_wikipedia_importance": -75.38062286376953, "rps_doc_wikipedia_importance_length_correction": -67.51190185546875 }, "fasttext": { "dclm": -0.000009780000254977494, "english": 0.8400812149047852, "fineweb_edu_approx": 0.7577334642410278, "eai_general_math": -1.199999957179898e-7, "eai_open_web_math": 0.02245521917939186, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "787.72", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Stringed instruments" } }, "secondary": { "code": "787.7", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Stringed instruments" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-708,184,540,286,627,100
Thought for the day Your page will load in ... Close Ad X Advertisement Movies Artists News   Share This Story Sunny Leone's lesbian act in Ragini MMS 2! Posted by: Updated: Friday, February 8, 2013, 14:30 [IST] Sunny Leone's lesbian act in Ragini MMS 2! Adult actress Sunny Leone is all set to do the unbelievable in her upcoming movie Ragini MMS 2. The last we heard was that actress Richa Chadda backing out of the film, courtesy some lesbian scenes with Ms Leone. And, the latest we hear is that TV actress Sandhya Mridul has gone a step forward to take up this bold challenge. According to a leading daily, Sandhya Mridul will be doing a few intimate, lesbian scenes with Sunny Leone for the film. Reports also say that Mridul has recently shot some kissing scenes with Sunny. Tanuj Garg, the CEO of Balaji Motion Pictures told the daily that there is a sensuous kissing scene between Sunny and Sandhya in Ragini MMS 2. He had also said that the kissing scenes were aesthetically shot, hence, "there's nothing vulgar in the way it's been presented". Tanuj adds, "It's a sequel to the first part in the true sense of the word." Reportedly, Ragini MMS 2 will be releasing on Friday 10th of May 2013. Story first published:  Wednesday, February 6, 2013, 11:30 [IST] Write a comment
{ "url": "http://entertainment.oneindia.in/bollywood/news/2013/sunny-leone-lesbian-act-ragini-mms-2-103258.html", "source_domain": "entertainment.oneindia.in", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "77469", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:PO432JG7JQ4L5V4NGG6OEDQ6CE6MK3DX", "WARC-Concurrent-To": "<urn:uuid:3bd6aab3-d592-4984-8973-2f6e7a990679>", "WARC-Date": "2013-05-24T18:36:52Z", "WARC-IP-Address": "174.142.176.28", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:KZLE3NLDZ3IOP5BP2UN4VELQOJNUGSUS", "WARC-Record-ID": "<urn:uuid:c98b1d9e-8c30-4ba4-bef6-236b364f9702>", "WARC-Target-URI": "http://entertainment.oneindia.in/bollywood/news/2013/sunny-leone-lesbian-act-ragini-mms-2-103258.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f3f0d853-e383-4707-a9f3-b5032dc419a1>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 20, 47, 58, 72, 79, 87, 92, 94, 111, 112, 155, 156, 167, 214, 215, 258, 259, 586, 587, 930, 931, 1209, 1210, 1275 ], "line_end_idx": [ 20, 47, 58, 72, 79, 87, 92, 94, 111, 112, 155, 156, 167, 214, 215, 258, 259, 586, 587, 930, 931, 1209, 1210, 1275, 1290 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1290, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3357400596141815, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0361010804772377, "rps_doc_frac_lines_end_with_ellipsis": 0.03999999910593033, "rps_doc_frac_no_alph_words": 0.2057761698961258, "rps_doc_frac_unique_words": 0.5859031081199646, "rps_doc_mean_word_length": 4.431717872619629, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0.0036101099103689194, "rps_doc_unigram_entropy": 4.631008625030518, "rps_doc_word_count": 227, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.06560636311769485, "rps_doc_frac_chars_dupe_6grams": 0.06560636311769485, "rps_doc_frac_chars_dupe_7grams": 0.06560636311769485, "rps_doc_frac_chars_dupe_8grams": 0.06560636311769485, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.044731609523296356, "rps_doc_frac_chars_top_3gram": 0.049701791256666183, "rps_doc_frac_chars_top_4gram": 0.03578529134392738, "rps_doc_books_importance": -118.26956176757812, "rps_doc_books_importance_length_correction": -118.26956176757812, "rps_doc_openwebtext_importance": -82.64745330810547, "rps_doc_openwebtext_importance_length_correction": -82.64745330810547, "rps_doc_wikipedia_importance": -67.99767303466797, "rps_doc_wikipedia_importance_length_correction": -67.99767303466797 }, "fasttext": { "dclm": 0.0018388599855825305, "english": 0.9606672525405884, "fineweb_edu_approx": 0.8714838027954102, "eai_general_math": 0.0003252000024076551, "eai_open_web_math": 0.1678829789161682, "eai_web_code": -0.000004410000201460207 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.4372", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "306.766", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,955,743,908,335,318,000
cart 0 items ($0.00) Home > Lacrosse (M) > Item# 835968 2012 LACROSSE Share This Photo: CAMBRIDGE, Mass. -- The Harvard men's lacrosse team defeated Michigan, 11-7, March 31, 2012. Customer Rating Be the first to rate this product. "Thanks so much! I really appreciate the quick reply. Replay Photos has provided great customer service to me so far, both on the phone and by email. Thanks again!" – Brad D. from Florida Product Options Unframed Print Best Seller Custom Framed Print Size Finished Frame Sizes: Frame Standard (wood, 1-1/2") Black Mahogany Dark Walnut Premium (wood, 2-1/4", add 4-1/2" to height and width) Black Mats Canvas Gallery Wrap Best Seller TOTAL PRICE:  $159.95 (usually ships in 3 business days) Best Sellers... My Account Navigation All About Replay Policies
{ "url": "http://www.replayphotos.com/harvardphotostore/lacrosse-m-print/-_835968.cfm", "source_domain": "www.replayphotos.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "48557", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:6RHO4LCE6FFHIM3UPBONFCWGY7LM55SQ", "WARC-Concurrent-To": "<urn:uuid:c9f74b5e-61c3-40c6-b701-e706d6191848>", "WARC-Date": "2013-06-20T10:18:45Z", "WARC-IP-Address": "216.134.204.38", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:6OJ4SI4KLIFSUWQLRKG2K2C36SRVSINN", "WARC-Record-ID": "<urn:uuid:0ada13cb-7475-49a4-a52e-9021fb266e71>", "WARC-Target-URI": "http://www.replayphotos.com/harvardphotostore/lacrosse-m-print/-_835968.cfm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:55d2066b-1c1e-427b-82da-c93c7c8cd314>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 5, 13, 21, 56, 57, 71, 72, 90, 91, 184, 185, 201, 202, 237, 238, 239, 404, 405, 428, 429, 445, 446, 461, 473, 493, 498, 499, 521, 522, 528, 552, 558, 567, 579, 634, 640, 645, 665, 677, 699, 734, 750, 751, 762, 763, 774, 775, 792, 793 ], "line_end_idx": [ 5, 13, 21, 56, 57, 71, 72, 90, 91, 184, 185, 201, 202, 237, 238, 239, 404, 405, 428, 429, 445, 446, 461, 473, 493, 498, 499, 521, 522, 528, 552, 558, 567, 579, 634, 640, 645, 665, 677, 699, 734, 750, 751, 762, 763, 774, 775, 792, 793, 801 ] }
{ "red_pajama_v2": { "ccnet_original_length": 801, "ccnet_original_nlines": 49, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1428571343421936, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03846153989434242, "rps_doc_frac_lines_end_with_ellipsis": 0.019999999552965164, "rps_doc_frac_no_alph_words": 0.3791208863258362, "rps_doc_frac_unique_words": 0.8240000009536743, "rps_doc_mean_word_length": 4.823999881744385, "rps_doc_num_sentences": 12, "rps_doc_symbol_to_word_ratio": 0.010989010334014893, "rps_doc_unigram_entropy": 4.560677528381348, "rps_doc_word_count": 125, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03316750004887581, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -63.49656677246094, "rps_doc_books_importance_length_correction": -63.49656677246094, "rps_doc_openwebtext_importance": -44.28630065917969, "rps_doc_openwebtext_importance_length_correction": -44.28473663330078, "rps_doc_wikipedia_importance": -23.278348922729492, "rps_doc_wikipedia_importance_length_correction": -23.278348922729492 }, "fasttext": { "dclm": -0.000009540000064589549, "english": 0.832714319229126, "fineweb_edu_approx": 0.5040076375007629, "eai_general_math": -0.000009420000424142927, "eai_open_web_math": 0.014380750246345997, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.01", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "658.85", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "24", "label": "User Review" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-8,549,487,933,824,717,000
Theres a new blog post about it..don't really get why since anyone who would preorder TMTYL almost for sure preorders Tech's stuff but I guess I'll live with a 2nd copy lol Views: 382 Reply to This Replies to This Discussion Called it SM tryin to double-dip their fans again..weren't there 4 diff copies of A6&7...i wouldnt have pre-ordered klusterfuk if I knew about this. would have waited and pre-ordered TMTYL w/klusterfuk. now im NOT pre-ordering TMTYL from strange. $30 for tmtyl, klusterfuk, t-shirt(XL), sticker is too much. i really want the CD with the signatures but its not worth paying double. Amazon has it for $15. It's still comes with the XL T-shirt for TMTYL, which I think is pretty badass looking.  If I wasn't going to a Hostile Takeover show 5 days after the album comes out (where I can get it for $10 and still get all the signatures), I'd get it. weed_burglar said: SM tryin to double-dip their fans again..weren't there 4 diff copies of A6&7...i wouldnt have pre-ordered klusterfuk if I knew about this. would have waited and pre-ordered TMTYL w/klusterfuk. now im NOT pre-ordering TMTYL from strange. $30 for tmtyl, klusterfuk, t-shirt(XL), sticker is too much. i really want the CD with the signatures but its not worth paying double. Amazon has it for $15. Ehh, not a big deal to me. I'll just give one of my Klusterfuks to a friend or something. I can see why weed burglar is upset. When they did that with A6A7 I was pissed because I would've rather got the version with the Strange pendant. But it is what it is 'n I haven't pre-ordered TMTYL yet but I still plan to. I havent gotten my copy of Kulsterfuk yet and I was planning on getting Maydays album anyway so its all gravy to me. I preordered 6s&7s for the tshirt, but also bought the Best Buy version for the pendant. I sold my 2nd copy for 7 bucks so I ended up paying about 10 for the pendant. I would have only been mad if the bonus copy of Klusterfuk was signed, because thats the main reason I preorder anyway.  But since its not, I only see it as an added bonus. TMTYL and Klusterfuk will be available in stores also? My big question is how will it be released in terms of the physical jewel case? Will we have a two face disc tray (ex. Killer) or will it be the TMTYL album with Klusterfuk (Cardboard Sleeve included) shrink wrapped together? I personally hope to get the cardboard sleeve included, just because I have a physical copy of every other Tech album. I've already got my copy of Klusterfuk, and would've much rather had another bonus or something, but I'm fine with it. I'll give my copy of Klusterfuk that comes with TMTYL to my friend. don't see why people care so much. It's the normal pre-order set plus Klusterfuk. I would think this is a good move since it gives Mayday more promotion through that bonus. in fact, this bonus is making me wanna pre-order this now straight up i preordered TMTYL the first day it went up for preorder, so this is just a bonus. Reply to Discussion RSS Tech N9ne Blog Strange Music S.O.S. Sale – 50% Off At strangemusicinc.net! The weather is heating up and you know what that means, right? Time for the S.O.S. sale!  For a limited time, you can get your hands on trunkloads of Strange Music gear at 50% off during the S.O.S. sale! Don’t miss out on your favorite Jerseys T-shirts Tank tops Music* and more at an incredible discount [...] TECHnologic: Imagining Daft Punk x Tech N9ne [Discussion] As 2013 rolls on, fans on the web continue to push rumors and speculation as to just who Tech N9ne will link up with next for his Something Else LP. From alternative rock heavyweights to rap’s elite, it seems like no one is off limits in the discussion. With the recent release of their Random [...] ‘Get Your Ass To Soundset’ – Tech N9ne Heads To Minnesota For Soundset Festival 2013 This weekend, Tech N9ne and Strange Music join some of hip hop’s biggest names in Shakopee, MN for Soundset 2013. The massive music festival, presented by Rhymesayers Ent., brings together fans from all corners hip hop for a day of live performances featuring the likes of Atmosphere, Snoop Dogg, Busta Rhymes, Schoolboy Q, R.A. The [...] Rest In Peace To Founding Doors Member And Music Legend Ray Manzarek   Today the music world lost one of the greatest to ever touch a keyboard. Ray Manzarek, one of the two founding members of The Doors, passed away at the age of 74. It was in July of 1965 that a random encounter between the prodigious keyboardist and Jim Morrison would eventually turn into one [...] Tech N9ne Chops It Up With Fred Durst, Collab In The Works? Does Tech N9ne have another collab in the works for Something Else? Out on the road  for a string of live performances, Tech got the chatter going on Twitter as he confirmed a phone call with Limp Bizkit frontman, Fred Durst. We can only assume it’s for collaborative purposes, but who knows? Fans may recall [...] © 2013   Created by Strange Admin. Badges  |  Report an Issue  |  Terms of Service
{ "url": "http://www.therealtechn9ne.com/forum/topics/klusterfuk-being-included-with-tmtyl-pre-order?xg_source=activity", "source_domain": "www.therealtechn9ne.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "69528", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:VRTDDM6BL633EXYSRN2FN3YNNMYALTU3", "WARC-Concurrent-To": "<urn:uuid:7c2c01a8-2d8a-4dfa-aded-7014bc3fa6ea>", "WARC-Date": "2013-05-24T07:55:30Z", "WARC-IP-Address": "208.82.16.68", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:H7VZC7U6VBQTHGWJQK7KHK3NDWXFLEZZ", "WARC-Record-ID": "<urn:uuid:f57e8c8a-72d7-46ea-b57f-534b98ffdc92>", "WARC-Target-URI": "http://www.therealtechn9ne.com/forum/topics/klusterfuk-being-included-with-tmtyl-pre-order?xg_source=activity", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:a40e9804-5fb5-4b55-8d08-0431d7b7ecaa>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 173, 174, 185, 186, 200, 201, 228, 229, 239, 240, 635, 636, 878, 879, 898, 899, 1294, 1295, 1609, 1610, 1727, 1894, 1895, 2068, 2069, 2124, 2125, 2470, 2471, 2658, 2659, 2832, 2833, 2903, 2904, 2987, 2988, 3008, 3009, 3013, 3014, 3029, 3030, 3090, 3091, 3402, 3403, 3461, 3462, 3762, 3763, 3848, 3849, 4188, 4189, 4258, 4259, 4560, 4561, 4621, 4622, 4937, 4938, 4973, 4974 ], "line_end_idx": [ 173, 174, 185, 186, 200, 201, 228, 229, 239, 240, 635, 636, 878, 879, 898, 899, 1294, 1295, 1609, 1610, 1727, 1894, 1895, 2068, 2069, 2124, 2125, 2470, 2471, 2658, 2659, 2832, 2833, 2903, 2904, 2987, 2988, 3008, 3009, 3013, 3014, 3029, 3030, 3090, 3091, 3402, 3403, 3461, 3462, 3762, 3763, 3848, 3849, 4188, 4189, 4258, 4259, 4560, 4561, 4621, 4622, 4937, 4938, 4973, 4974, 5021 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5021, "ccnet_original_nlines": 65, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3907225728034973, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.060660120099782944, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.174843892455101, "rps_doc_frac_unique_words": 0.4333706498146057, "rps_doc_mean_word_length": 4.344904899597168, "rps_doc_num_sentences": 73, "rps_doc_symbol_to_word_ratio": 0.006244420073926449, "rps_doc_unigram_entropy": 5.441350936889648, "rps_doc_word_count": 893, "rps_doc_frac_chars_dupe_10grams": 0.15721648931503296, "rps_doc_frac_chars_dupe_5grams": 0.15721648931503296, "rps_doc_frac_chars_dupe_6grams": 0.15721648931503296, "rps_doc_frac_chars_dupe_7grams": 0.15721648931503296, "rps_doc_frac_chars_dupe_8grams": 0.15721648931503296, "rps_doc_frac_chars_dupe_9grams": 0.15721648931503296, "rps_doc_frac_chars_top_2gram": 0.014432989992201328, "rps_doc_frac_chars_top_3gram": 0.006185569800436497, "rps_doc_frac_chars_top_4gram": 0.009278349578380585, "rps_doc_books_importance": -631.6373901367188, "rps_doc_books_importance_length_correction": -631.6373901367188, "rps_doc_openwebtext_importance": -321.4586181640625, "rps_doc_openwebtext_importance_length_correction": -321.4586181640625, "rps_doc_wikipedia_importance": -235.01858520507812, "rps_doc_wikipedia_importance_length_correction": -235.01858520507812 }, "fasttext": { "dclm": 0.001328710000962019, "english": 0.9512923955917358, "fineweb_edu_approx": 0.8040211796760559, "eai_general_math": 0.016165489330887794, "eai_open_web_math": 0.1932709813117981, "eai_web_code": 0.0019428699743002653 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.4216", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "302.2", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social psychology" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "1", "label": "News/Editorial" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,831,580,401,090,834,000
Skip to content Taking Ajax further with PHP Peter's WebDev Workshop Find this tutorial useful? First of all, I have to apologise. It’s been literally two months since my last post in this series, and it’s been more than that since I last looked at Ajax in PHP. OK, I might admit it, it was this comment that motivated me to pick up this series again. Oh, that and I’m now on the half term break, so I’m finally getting round to some things that have been on the back burner for a long time. In our last Ajax tutorial, we got started with Ajax using PHP and made our first Ajax application. Today, we’re going to take Ajax a little further, by building a little application where our user selects a product from a pop-up list, and then we do a little Ajax dance to get some product details (and an image) and display them in a box below. We’ll be making our own little XML schema which we’ll use to pass information between the JavaScript in the user’s browser and our PHP script on the server. Requirements For this tutorial, you’ll need the following (and in brackets, I’ll show you what I’ll be using): • A web server running PHP (I’m using PHP 5, but it might work on PHP 4). • A decent browser (I’ll be using Firefox 2.0.0.1). • A decent text editor and/or IDE that supports Unix line breaks if you download my set of files (I’m using the best web development IDE in the world, Quanta). • Some patience, time, determination and enough hair to rip out when the JavaScript is going wrong (check, check, check). Also highly recommended, but not required, is the Firebug extension for Firefox, as it makes checking and debugging your JavaScript a lot easier. All code in this tutorial is released under the Modified BSD Licence. You might want to download yourself the finished project now, so you can see how it works and if you’re not rewriting it yourself and just stepping through my code. Download .zip Download .tar.gz Download .tar.bz2 What we’re doing Diagrams are always good, so let’s briefly look at what we’ll be doing (click to enlarge, or grab the PDF). Ajax tutorial diagram That’s roughly how our system is going to work. Our list of products that will appear in the <select> list will be populated by PHP on the pageload and for this tutorial, the product data that we’ll be using will be hard-coded into PHP. There’s no reason why you couldn’t populate the list and fetch product details using a database, but to keep it simple, we’ll stick with a set list for this tutorial. We will write it so that it’s easily modifiable, though. Our data Here’s data.php, which contains our product information. 1. <?php 2.   3. // this file just contains our sample data for the application 4. // you can edit, add to, and delete this data or use a database in a real situation 5.   6. $products[1]['name'] = 'Big Green monster'; 7. $products[1]['description'] = 'If you want a monster, look no further than a Big Green one. Big Green have over 40 years experience making top-quality monsters, and at low, low prices.'; 8. $products[1]['price'] = 33.99; 9.   10. $products[2]['name'] = 'Dalmatian'; 11. $products[2]['description'] = 'A white dog with black spots is just what you need. But don\'t take our word for it, speak to our happy customer.'; 12. $products[2]['price'] = 699.99; 13.   14. $products[3]['name'] = 'The Latest Gadget'; 15. $products[3]['description'] = 'Can you live without The Latest Gadget? Probably, yes, but you don\'t have to! Buy it now and we guarantee you will be satisfied. Not an actual guarantee.'; 16. $products[3]['price'] = 9999.99; 17.   18. $products[4]['name'] = 'Purple furry thing'; 19. $products[4]['description'] = 'Hey, it\'s purple and furry. Need we say more? You want one and so does everyone in your street.'; 20. $products[4]['price'] = 10.99; 21.   22.   23. ?> OK, fairly simple. From now on, we need to make sure all our PHP files include() or require() this data file. Our interface Here’s index.php, our main interface with the user. 1. <?php 2.   3. // this is our interface with the user. 4.   5. require_once('data.php'); // import our data 6.   7. ?> 8.   9. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 10. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb"> 11. <head> 12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 13. <title>Product information page</title> 14.   15. <style type="text/css"> 16.   17. /* some really basic styles */ 18.   19. body { 20.     background-color:#ffffff; font-family:Verdana,sans-serif; font-size:0.8em 21. } 22.   23. h1 { 24.     font-family:'Trebuchet MS',sans-serif; font-size:1.5em 25. } 26.   27. </style> 28.   29. <script type="text/javascript" src="ajaxprodselect.js"></script> 30.   31. </head> 32. <body> 33. <h1>Product information page</h1> 34.   35. <p>Welcome. Please buy lots of stuff from this website. To find out more about a product, choose it from 36. the box below.</p> 37.   38. <!-- we don't actually need a form tag, as it won't be submitted in the normal way in this example --> 39.   40. <select name="chooseproduct" onchange="selectProduct(this.options[this.selectedIndex]);"> 41.   42. <!-- dummy element, deliberately the value is -1 --> 43. <option value="-1" selected="selected">---</option> 44.   45. <?php 46.   47. // populate the box 48.   49. foreach ($products as $number => $prod) { 50.   51.     ?><option value="<?php echo $number;?>"><?php echo $prod['name'];?></option><?php 52.   53. } // end foreach 54.   55. ?> 56. </select> 57.   58. <br /><br /> 59. <div id="descriptionarea">Choose a product to see its description here.</div> 60.   61. </body> 62. </html> The Ajax backend Here’s our PHP file that will act as our backend. It’s the script JavaScript calls behind the scenes to get the data. As you can see, we have our own XML setup going on below, which I’ll explain in a minute. 1. require_once('data.php'); // import our data 2.   3. // start the XML document 4.   5. header('Content-Type: text/xml'); 6. echo '<'.'?'.'xml version="1.0" ?'.'>'."\n"; 7. ?> 8. <productresponse> 9. <?php 10.   11. // if there is no ID, give an error and quit 12.   13. if (empty($_GET['prodid'])) { 14.   15.     ?><requeststatus>ERROR</requeststatus></productresponse><?php 16.     die(); 17.   18. } 19.   20. // similarly, if the number is -1, or too big 21.   22. if ($_GET['prodid'] == -1 OR ($_GET['prodid'] > count($products)) ) { 23.   24.     ?><requeststatus>ERROR</requeststatus></productresponse><?php 25.     die(); 26.   27. } 28.   29. // otherwise, the request is OK, so let JavaScript know 30.   31. // then fetch name and description of the product 32. ?> 33. <requeststatus>OK</requeststatus> 34.   35. <productname><?php echo $products[$_GET['prodid']]['name'];?></productname> 36. <productdesc><?php echo $products[$_GET['prodid']]['description'];?></productdesc> 37. <productprice><?php echo $products[$_GET['prodid']]['price'];?></productprice> 38.   39. </productresponse> Our XML schema here is made up of the following: productresponse is the root tag, and is only really used here as a container. requeststatus lets JavaScript know whether the request was OK, or failed, identified by ERROR or OK. (If there is an error, that’s it – the end of the XML document. We won’t bother including the tags below). productname contains the product name (funnily enough). productdesc contains the product description. productprice is for the price. If you’ve got all the files in place so far, try browsing to ajax.php. If you’re using a decent browser, you should get a nice syntax-highlighted XML tree (nice for debugging). You’ll notice that you’ve got an error here, and rightly so – you didn’t specify a product ID! Try going to ajax.php?prodid=1. That’s better. You should see the data in ourtags. That’s our fully formed XML document that JavaScript will have the job of parsing and formatting. Sounds like fun… The JavaScript Now, finally, the hardest part of the whole exercise – the JavaScript that actually makes sense of the XML and displays it in our box. Bear with me here, let’s just get the code down here then I’ll explain what we’re doing. 1. var ajaxObject = false; 2.   3. // this is our object which gives us access 4. // to Ajax functionality 5.   6.   7. function selectProduct(productId) { 8.   9.         if (window.XMLHttpRequest) { // Gecko, KHTML/WebKit, and IE7 apparently 10.             ajaxObject = new XMLHttpRequest(); 11.             if (ajaxObject.overrideMimeType) { 12.                 ajaxObject.overrideMimeType('text/xml'); 13.                 // ^ is for older Mozilla-based browsers 14.             } 15.         } else if (window.ActiveXObject) { // IE5 or IE6 16.             try { 17.         // IE has two methods of calling the object, typical! 18.                 ajaxObject = new ActiveXObject("Msxml2.XMLHTTP"); 19.             } catch (e) { 20.                 try { 21.                     ajaxObject = new ActiveXObject("Microsoft.XMLHTTP"); 22.                 } catch (e) {} 23.             } 24.         } 25.   26.   27.         if (!ajaxObject) { 28.         alert("Sorry, your browser doesn't support this feature."); 29.             return false; 30.         } 31.   32.   33.         ajaxObject.onreadystatechange = selectProduct_response; 34.     ajaxObject.open('GET', 'ajax.php?prodid=' + productId.value, true); 35.         ajaxObject.send(null); 36.   37.     return true; 38.   39. } // end selectProduct() 40.   41. function selectProduct_response() { 42.   43.     if (ajaxObject.readyState == 4) { // it's finished 44.   45.         if (ajaxObject.status == 200) { // the HTML request is all OK 46.   47.             // do the response 48.             var xmlData = ajaxObject.responseXML.documentElement; 49.     50.     51.             if (xmlData.getElementsByTagName("requeststatus")[0].firstChild.data != 'OK') { 52.                 // if <requeststatus> isn't OK, then stop processing 53.                 alert("Sorry, there was an error."); 54.                 return;x 55.             } 56.     57.             var productName = xmlData.getElementsByTagName("productname")[0].firstChild.data; 58.             // extract product name from the XML 59.     60.             var productDesc = xmlData.getElementsByTagName("productdesc")[0].firstChild.data; 61.             // same with product description 62.     63.             var productPrice = xmlData.getElementsByTagName("productprice")[0].firstChild.data; 64.             // and price 65.     66.             // now we've extracted our data, let's format it 67.     68.             var divContent = '<strong>Name:</strong> ' + productName + '<br /><br /><strong>Description:</strong> ' + productDesc + '<br /><br /><strong>Price</strong> ' + productPrice; 69.     70.             // and place it in our div 71.             document.getElementById('descriptionarea').innerHTML = divContent; 72.   73.         74.         } // end if status is 200   75.   76.         else // if the HTTP code is anything other than 200 OK 77.         { 78.             79.                 alert("Sorry, there was an error."); 80.             return; 81.   82.         } 83.   84.     } // end readyState is 4 85.   86. } // end selectProduct_response Dissecting the JavaScript You should be able to decipher the vast majority of this already. If you’ve been through the first tutorial (and you certainly should have), you should understand exactly what we’re doing with the basic Ajax stuff. The new and important bit here are the lines like this: 1. var productName = xmlData.getElementsByTagName("productname")[0].firstChild.data; All that’s really saying is this: • Go to the XML document and fetch me all the elements with the tag name ‘productname’. • Now get me the first instance of that tag (that’s the [0] bit) • Go to the first child (meaning the stuff inside that tag) • Fetch me the content of the stuff inside that tag We do that for the name, description and price and each time put that information in a variable. We then just concatenate these variables together with some HTML formatting and line breaks, and that’s what is going inside our div. We put that in our div, and we’re done! You might also notice the line: 1. if (xmlData.getElementsByTagName("requeststatus")[0].firstChild.data != 'OK') It’s exactly the same idea, but instead of putting the content of the requeststatus tag into a variable so we can use it later, we just check to see if it isn’t ‘OK’. And if it isn’t, we throw an error dialogue box. It works! At this point, our example works very well. Very very well. If you head over to index.php, you should be able to simply select a product from the list and have the description pop into the correct box within a second or two. It might not seem very impressive for the level of work – and in fact, we could have done this without XML, but now that you’ve got some basic XML parsing with JavaScript ability, you can move on to cooler things with Ajax. I could go on and extend this application some more, but this is already a monster post and it’s about time I signed off this tutorial. We may well be returning to this project at a later date to add some more functionality to it, but I can’t guarantee when that will be. Feedback is the key This tutorial took an insane amount of time to write. Almost a whole afternoon. Actually, you have to plan it, write the code, then write the tutorial, debug the code, fix the code, break the code, rewrite bits of the tutorial and check everything works. And that takes time. All I ask of you is that if you read this and liked it, or if you didn’t, or if you just read it, to leave a comment below. It makes all the effort worthwhile. Anyway, thanks for reading thus far and I look forward to next time! Icon from Oxygen icon set, CC BY-NC 2.5. Find this tutorial useful? Like this post? 19 Comments 1. Ashok wrote: this is one and only & very nice tutorial, which i have found in net. By this i can able to write my own ajax program. thank u very much. Ashok Wednesday, March 14, 2007 at 08:58 | Permalink | Using Internet Explorer Internet Explorer 6.0 on Windows Windows 2000 2. Tom wrote: Awesome, prior to reading this article the process of adding some ajax to my php sites was a pretty nebulous to say the least. This gives me a great jumping off point. Thanks a bunch! Tuesday, March 27, 2007 at 15:11 | Permalink | Using Safari Safari 419.3 on Mac OS Mac OS 3. mccormicky wrote: Thanks for writing this, I needed something like this. Tuesday, November 20, 2007 at 07:01 | Permalink | Using Mozilla Firefox Mozilla Firefox 2.0.0.9 on Windows Windows 2000 4. Bubbila wrote: Sweet comprehensive tutorial, just what I have been looking for! Well Pleased… Monday, February 11, 2008 at 23:09 | Permalink | Using Internet Explorer Internet Explorer 6.0 on Windows Windows XP 5. Invader_Zim wrote: Thank you so much for your time to write this tutorial. Awesome! Friday, October 17, 2008 at 11:05 | Permalink | Using Mozilla Firefox Mozilla Firefox 2.0.0.17 on Windows Windows XP 6. Alan Gilmore wrote: Fantastic content. Just the kind of stuff I need. Thanks so much. Alan Friday, October 17, 2008 at 14:29 | Permalink | Using Internet Explorer Internet Explorer 7.0 on Windows Windows XP 7. Tony Gaspro wrote: Excellent tutorial. I check out the basic PHP/AJAX tut, and after going over it, immediately went through this one. Your tutorials are clear and concise. Will be letting friends know about these two. Cheers. Sunday, October 19, 2008 at 19:27 | Permalink | Using Safari Safari 525.20.1 on Mac OS X Mac OS X 10.5.5 8. Emily wrote: Thanks a billion for this tutorial.. i have been trying learn ajax. so far i cant really understand it. But your is a simple and detail one which i can understand and now i know how to write it already. Once again thank you for your time in writing this tutorial. :) Saturday, December 6, 2008 at 05:03 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.3 on Windows Windows XP 9. emil wrote: awesome stuff man! you really helped me into ajax and I will not try to rewrite my blog into ajax and xml stuff! thanks dude! Wednesday, December 17, 2008 at 23:37 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.4 on Windows Windows XP 10. F.P. wrote: Thanks! Great tutorial!! Friday, January 2, 2009 at 14:47 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.5 on Windows Windows XP 11. Paul wrote: Thanks a great deal for these two tutorials! The instructions are very clear and well written, an excellent jumping point to start my training into what I can do with AJAX. I look forward to reading the next installment. Tuesday, January 13, 2009 at 06:02 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.0.5 on Windows Windows Vista 12. like ur tuts wrote: like Thursday, October 29, 2009 at 04:40 | Permalink | Using Google Chrome Google Chrome 3.0.195.27 on Windows Windows XP 13. John wrote: It’s really a good start for me, thank you very much! Monday, November 2, 2009 at 08:08 | Permalink | Using Mozilla SeaMonkey Mozilla SeaMonkey 2.0b1 on Linux Linux 14. Ofer wrote: Thanks, You’ve been my first introduction to Ajax! Monday, November 23, 2009 at 02:18 | Permalink | Using Internet Explorer Internet Explorer 8.0 on Windows Windows Vista 15. egorbrandt wrote: thanks, Peter, your tutorials are a great way to share your knowledge: well written, and to the point. I enjoyed them very much. Thursday, February 18, 2010 at 10:42 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.5.8 on Windows Windows Vista 16. Nits wrote: It runs cool…but i wanna display & update d users info from database….so wht do i do……? Tuesday, March 23, 2010 at 08:16 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.6 on Windows Windows XP 17. Munish wrote: VERY VERY THANKYOU FOR SUCH A GREATE TUTORIAL EVEN A BEGINER CAN USE THIS TUTORIAL THANKS !!!!!!!!!!!!!!!!!! Thursday, June 17, 2010 at 14:31 | Permalink | Using Mozilla Firefox Mozilla Firefox 3.6.3 on Windows Windows XP 18. w wrote: Interesting tutorial… Sunday, February 26, 2012 at 03:19 | Permalink | Using Safari Safari 534.52.7 on Mac OS X Mac OS X 10.7.2 19. John wrote: Brilliant! I have completed both AJAX tutorials, managed to break them both, and fix them again, with thanks to what I learned here. Now I’m off to adapt what I’ve learnt to a real-world scenario. Many thanks. Thursday, May 2, 2013 at 01:11 | Permalink | Using Google Chrome Google Chrome 26.0.1410.64 on Windows Windows 7 19 Trackbacks/Pingbacks 1. [...] Taking Ajax further with PHP [...] 2. [...] Ready to take Ajax further? I’ve got a followup tutorial. This was written by Peter. Posted on Wednesday, September 27, 2006, at 5:09 pm. Filed under [...] 3. 50 Excellent AJAX Tutorials | Tutorials | Smashing Magazine on Thursday, October 16, 2008 at 22:46 [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...] 4. Useful AJAX Tutorials | Neurosoftware web dev on Friday, October 17, 2008 at 07:58 [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...] 5. pligg.com on Friday, October 17, 2008 at 12:14 Taking Ajax further with PHP… First of all, I have to apologise. It’s been literally two months since my last post in this series, and it’s been more than that since I last looked at Ajax in PHP. OK, I might admit it, it was this comment that motivated me to pick up this series a… 6. 50 Excellent AJAX Tutorials | Web Burning Blog on Saturday, October 18, 2008 at 09:05 [...] Taking AJAX Further with PHPFollowing up on the preceding introduction, this post goes a bit further. [...] 7. 50 Excellent AJAX Tutorials | Evolution : weblog on Friday, October 31, 2008 at 05:22 [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...] 8. 50 Excellent AJAX Tutorials « Rohit Dubal on Monday, February 16, 2009 at 10:43 [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...] 9. [...] Taking AJAX Further with PHP Following up on the preceding introduction, this post goes a bit further. [...] 10. [...] “Taking AJAX Further with PHP”: Following up on the preceding introduction, this post goes a bit further. [...] Post a Comment On some sites, you must be logged in to post a comment. This is not the case on this site. Your email address is not made public or shared. Required fields are marked with *. * * * Posting a comment signifies you accept the privacy policy. Please note — usually your comment will appear straight away but sometimes it will be held for approval (this is due to the spam filter). If your comment is waiting to be approved, please don’t post it again! It will appear eventually.
{ "url": "http://peter.upfold.org.uk/blog/2007/02/18/taking-ajax-further-with-php/", "source_domain": "peter.upfold.org.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "120281", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SZ33P55NERPB7VMMU4YLLYDCGGA43QGD", "WARC-Concurrent-To": "<urn:uuid:42bc0c7d-c23c-4e08-bd63-5e1035eecd26>", "WARC-Date": "2013-05-22T09:36:25Z", "WARC-IP-Address": "88.108.131.179", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ITTC4K4DOPO727OP5FWTKMARANUQXEIM", "WARC-Record-ID": "<urn:uuid:75a4e369-40fe-44ea-bbca-f923feadd48a>", "WARC-Target-URI": "http://peter.upfold.org.uk/blog/2007/02/18/taking-ajax-further-with-php/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e81fe42b-5040-4677-9a98-8e55e5b1ac04>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 46, 47, 71, 72, 99, 100, 101, 102, 103, 104, 500, 501, 600, 601, 1005, 1006, 1019, 1020, 1118, 1119, 1195, 1249, 1411, 1535, 1536, 1682, 1683, 1753, 1754, 1919, 1920, 1934, 1951, 1969, 1970, 1987, 1988, 2096, 2097, 2119, 2120, 2168, 2169, 2582, 2583, 2592, 2593, 2650, 2651, 2662, 2669, 2737, 2826, 2833, 2882, 3074, 3110, 3117, 3159, 3312, 3350, 3358, 3408, 3602, 3641, 3649, 3700, 3836, 3873, 3881, 3889, 3898, 3899, 4009, 4010, 4024, 4025, 4077, 4078, 4089, 4096, 4141, 4148, 4198, 4205, 4213, 4220, 4347, 4414, 4427, 4502, 4548, 4556, 4586, 4594, 4631, 4639, 4652, 4736, 4744, 4752, 4763, 4828, 4836, 4844, 4859, 4867, 4938, 4946, 4960, 4973, 5013, 5021, 5132, 5157, 5165, 5274, 5282, 5378, 5386, 5445, 5503, 5511, 5523, 5531, 5557, 5565, 5613, 5621, 5713, 5721, 5744, 5752, 5761, 5777, 5785, 5804, 5888, 5896, 5910, 5924, 5925, 5942, 5943, 6151, 6152, 6202, 6209, 6240, 6247, 6286, 6336, 6344, 6367, 6378, 6386, 6437, 6445, 6481, 6489, 6561, 6578, 6586, 6594, 6602, 6654, 6662, 6738, 6746, 6818, 6835, 6843, 6851, 6859, 6921, 6929, 6985, 6994, 7034, 7042, 7124, 7213, 7298, 7306, 7331, 7332, 7381, 7382, 7460, 7461, 7669, 7670, 7726, 7727, 7773, 7774, 7805, 7806, 8078, 8079, 8277, 8278, 8293, 8294, 8518, 8519, 8548, 8555, 8604, 8634, 8641, 8648, 8689, 8696, 8781, 8834, 8887, 8950, 9013, 9033, 9096, 9120, 9188, 9260, 9292, 9320, 9399, 9436, 9456, 9472, 9480, 9488, 9521, 9595, 9627, 9643, 9651, 9659, 9729, 9807, 9844, 9852, 9875, 9883, 9914, 9922, 9964, 9972, 10033, 10041, 10117, 10125, 10162, 10234, 10244, 10254, 10352, 10427, 10486, 10517, 10537, 10547, 10647, 10702, 10712, 10812, 10863, 10873, 10975, 11006, 11016, 11083, 11093, 11285, 11295, 11340, 11425, 11433, 11447, 11489, 11497, 11566, 11582, 11600, 11659, 11685, 11693, 11709, 11717, 11752, 11760, 11798, 11799, 11825, 11826, 12041, 12042, 12098, 12099, 12186, 12187, 12221, 12222, 12312, 12379, 12441, 12495, 12496, 12593, 12594, 12728, 12729, 12769, 12770, 12802, 12803, 12886, 12887, 13103, 13104, 13114, 13115, 13340, 13341, 13565, 13566, 13838, 13839, 13859, 13860, 14115, 14116, 14137, 14138, 14298, 14299, 14368, 14369, 14410, 14411, 14438, 14439, 14440, 14441, 14442, 14443, 14459, 14460, 14472, 14473, 14491, 14492, 14615, 14638, 14648, 14649, 14772, 14788, 14789, 14977, 14978, 15072, 15095, 15096, 15155, 15156, 15280, 15300, 15301, 15384, 15385, 15506, 15530, 15531, 15600, 15601, 15722, 15747, 15748, 15818, 15819, 15828, 15829, 15949, 15973, 15974, 16094, 16095, 16183, 16184, 16196, 16197, 16306, 16324, 16325, 16532, 16533, 16601, 16602, 16722, 16739, 16740, 16857, 16858, 16875, 16876, 16998, 17016, 17017, 17046, 17047, 17164, 17182, 17183, 17360, 17361, 17413, 17414, 17536, 17562, 17563, 17572, 17573, 17694, 17712, 17713, 17771, 17772, 17887, 17905, 17906, 17918, 17965, 17966, 18090, 18114, 18115, 18222, 18223, 18253, 18254, 18378, 18396, 18397, 18489, 18490, 18605, 18625, 18626, 18739, 18740, 18857, 18872, 18873, 18899, 18900, 19010, 19028, 19029, 19044, 19170, 19238, 19255, 19256, 19373, 19374, 19398, 19399, 19445, 19446, 19613, 19614, 19718, 19719, 19838, 19839, 19927, 19928, 20047, 20048, 20100, 20101, 20135, 20136, 20392, 20393, 20484, 20485, 20603, 20604, 20695, 20696, 20815, 20816, 20901, 20902, 21021, 21022, 21142, 21143, 21267, 21268, 21283, 21284, 21375, 21459, 21461, 21463, 21465, 21466, 21525 ], "line_end_idx": [ 16, 17, 46, 47, 71, 72, 99, 100, 101, 102, 103, 104, 500, 501, 600, 601, 1005, 1006, 1019, 1020, 1118, 1119, 1195, 1249, 1411, 1535, 1536, 1682, 1683, 1753, 1754, 1919, 1920, 1934, 1951, 1969, 1970, 1987, 1988, 2096, 2097, 2119, 2120, 2168, 2169, 2582, 2583, 2592, 2593, 2650, 2651, 2662, 2669, 2737, 2826, 2833, 2882, 3074, 3110, 3117, 3159, 3312, 3350, 3358, 3408, 3602, 3641, 3649, 3700, 3836, 3873, 3881, 3889, 3898, 3899, 4009, 4010, 4024, 4025, 4077, 4078, 4089, 4096, 4141, 4148, 4198, 4205, 4213, 4220, 4347, 4414, 4427, 4502, 4548, 4556, 4586, 4594, 4631, 4639, 4652, 4736, 4744, 4752, 4763, 4828, 4836, 4844, 4859, 4867, 4938, 4946, 4960, 4973, 5013, 5021, 5132, 5157, 5165, 5274, 5282, 5378, 5386, 5445, 5503, 5511, 5523, 5531, 5557, 5565, 5613, 5621, 5713, 5721, 5744, 5752, 5761, 5777, 5785, 5804, 5888, 5896, 5910, 5924, 5925, 5942, 5943, 6151, 6152, 6202, 6209, 6240, 6247, 6286, 6336, 6344, 6367, 6378, 6386, 6437, 6445, 6481, 6489, 6561, 6578, 6586, 6594, 6602, 6654, 6662, 6738, 6746, 6818, 6835, 6843, 6851, 6859, 6921, 6929, 6985, 6994, 7034, 7042, 7124, 7213, 7298, 7306, 7331, 7332, 7381, 7382, 7460, 7461, 7669, 7670, 7726, 7727, 7773, 7774, 7805, 7806, 8078, 8079, 8277, 8278, 8293, 8294, 8518, 8519, 8548, 8555, 8604, 8634, 8641, 8648, 8689, 8696, 8781, 8834, 8887, 8950, 9013, 9033, 9096, 9120, 9188, 9260, 9292, 9320, 9399, 9436, 9456, 9472, 9480, 9488, 9521, 9595, 9627, 9643, 9651, 9659, 9729, 9807, 9844, 9852, 9875, 9883, 9914, 9922, 9964, 9972, 10033, 10041, 10117, 10125, 10162, 10234, 10244, 10254, 10352, 10427, 10486, 10517, 10537, 10547, 10647, 10702, 10712, 10812, 10863, 10873, 10975, 11006, 11016, 11083, 11093, 11285, 11295, 11340, 11425, 11433, 11447, 11489, 11497, 11566, 11582, 11600, 11659, 11685, 11693, 11709, 11717, 11752, 11760, 11798, 11799, 11825, 11826, 12041, 12042, 12098, 12099, 12186, 12187, 12221, 12222, 12312, 12379, 12441, 12495, 12496, 12593, 12594, 12728, 12729, 12769, 12770, 12802, 12803, 12886, 12887, 13103, 13104, 13114, 13115, 13340, 13341, 13565, 13566, 13838, 13839, 13859, 13860, 14115, 14116, 14137, 14138, 14298, 14299, 14368, 14369, 14410, 14411, 14438, 14439, 14440, 14441, 14442, 14443, 14459, 14460, 14472, 14473, 14491, 14492, 14615, 14638, 14648, 14649, 14772, 14788, 14789, 14977, 14978, 15072, 15095, 15096, 15155, 15156, 15280, 15300, 15301, 15384, 15385, 15506, 15530, 15531, 15600, 15601, 15722, 15747, 15748, 15818, 15819, 15828, 15829, 15949, 15973, 15974, 16094, 16095, 16183, 16184, 16196, 16197, 16306, 16324, 16325, 16532, 16533, 16601, 16602, 16722, 16739, 16740, 16857, 16858, 16875, 16876, 16998, 17016, 17017, 17046, 17047, 17164, 17182, 17183, 17360, 17361, 17413, 17414, 17536, 17562, 17563, 17572, 17573, 17694, 17712, 17713, 17771, 17772, 17887, 17905, 17906, 17918, 17965, 17966, 18090, 18114, 18115, 18222, 18223, 18253, 18254, 18378, 18396, 18397, 18489, 18490, 18605, 18625, 18626, 18739, 18740, 18857, 18872, 18873, 18899, 18900, 19010, 19028, 19029, 19044, 19170, 19238, 19255, 19256, 19373, 19374, 19398, 19399, 19445, 19446, 19613, 19614, 19718, 19719, 19838, 19839, 19927, 19928, 20047, 20048, 20100, 20101, 20135, 20136, 20392, 20393, 20484, 20485, 20603, 20604, 20695, 20696, 20815, 20816, 20901, 20902, 21021, 21022, 21142, 21143, 21267, 21268, 21283, 21284, 21375, 21459, 21461, 21463, 21465, 21466, 21525, 21760 ] }
{ "red_pajama_v2": { "ccnet_original_length": 21760, "ccnet_original_nlines": 513, "rps_doc_curly_bracket": 0.001746320049278438, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2765653729438782, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03548847883939743, "rps_doc_frac_lines_end_with_ellipsis": 0.009727629832923412, "rps_doc_frac_no_alph_words": 0.38099122047424316, "rps_doc_frac_unique_words": 0.3086223304271698, "rps_doc_mean_word_length": 4.769010543823242, "rps_doc_num_sentences": 527, "rps_doc_symbol_to_word_ratio": 0.005710789933800697, "rps_doc_unigram_entropy": 6.097607612609863, "rps_doc_word_count": 3143, "rps_doc_frac_chars_dupe_10grams": 0.07785709947347641, "rps_doc_frac_chars_dupe_5grams": 0.1304289847612381, "rps_doc_frac_chars_dupe_6grams": 0.11361665278673172, "rps_doc_frac_chars_dupe_7grams": 0.07972513139247894, "rps_doc_frac_chars_dupe_8grams": 0.07785709947347641, "rps_doc_frac_chars_dupe_9grams": 0.07785709947347641, "rps_doc_frac_chars_top_2gram": 0.017746349796652794, "rps_doc_frac_chars_top_3gram": 0.016011739149689674, "rps_doc_frac_chars_top_4gram": 0.012609249912202358, "rps_doc_books_importance": -2345.92041015625, "rps_doc_books_importance_length_correction": -2345.92041015625, "rps_doc_openwebtext_importance": -1270.41259765625, "rps_doc_openwebtext_importance_length_correction": -1270.41259765625, "rps_doc_wikipedia_importance": -965.7940673828125, "rps_doc_wikipedia_importance_length_correction": -965.7940673828125 }, "fasttext": { "dclm": 0.0005559300188906491, "english": 0.7302367091178894, "fineweb_edu_approx": 1.3230550289154053, "eai_general_math": 0.0015069800429046154, "eai_open_web_math": 0.36760562658309937, "eai_web_code": 0.0980343222618103 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.7", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "005.1", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
6,056,937,581,846,274,000
Prolog... | Eyepiece and Adapters | Camera Attached to Eyepiece | Camera Attached to Telescope | Result: Photo of the Full Moon On this page, I demonstrate how I attach the Ricoh GXR A12-50 combo to a telescope eyepiece with a T mount filter thread for astro photos using the projection technique. Projection technique means that the camera is mounted to the eyepiece, not directly to the telescope. The latter technique can only be used with SLR cameras where the body can be directly attached to the telescope - typically using a T mount adapter. I mention the 1:50 method on this site several times. This is a simple variant of the projection technique - you hold the camera by hand to the eyepiece instead of attaching it firmly...   Prolog... At the beginning a few warnings:   Eyepiece and Adapters Here, you can see the Revelation 32mm DigiScope eyepiece and the two adapters needed to mount the Ricoh GXR A12-50 to the eyepiece. A second adapter is required, because there is no T mount adapter available, which directly fits the filter thread of the A12-50 camera unit (40.5mm).You can remove the upper part of the eyepiece including the eyecup to reveal the T mount filter thread. Left: Baader DT ring adapter M37/M40.5 (#2458027); right: Baader digital camera T mount adapter M37/M42 (#2408165) Top left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece Top left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece Top left: Baader T mount adapter M42/M37; bottom left: Baader DT ring adapter M37/M40.5; right: Revelation 32mm DigiScope eyepiece - eyecup removed Revelation 32mm DigiScope eyepiece - eyecup removed and adapters attached     Camera Attached to Eyepiece Here, you can see the Ricoh GXR A12-50 attached to the eyepiece: Detail view Complete view Detail view Complete view   Camera Attached to Telescope Heritage P130 Here, you can see the Ricoh GXR A12-50 attached to the Dobsonian telescope Sky-Watcher Heritage P130: More or less complete view Detail view View from front View from front View from front     Result: Photo of the Full Moon Finally, here is a photo of the full moon with some additional sharpening that was taken with the equipment shown above (April 27, 2010): Photo: Photo of the full moon Please note that the 32mm is a wide angle eyepiece with a low magnification of about 20 at the Heritage P130 (it would deliver a magnification of about 40 at my Meade 10" Dobson telescope). Such a low magnification is not sufficient for photos of planets. Therefore, I looked for a solution to attach the GXR A12-50 combo to my Baader Hyperion eyepiece having a focal length of 5mm (130x and 250x magnification) - and found it.   An den Anfang   Homepage   made by walodesign on a mac! 27.12.2011
{ "url": "http://www.waloszek.de/gxr_astro1_e.php", "source_domain": "www.waloszek.de", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "15605", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:4J4FJ7GFVSWJSB7UYFTIWX5IU6QEKR5F", "WARC-Concurrent-To": "<urn:uuid:3b98c141-911d-4121-86c9-948190d9712c>", "WARC-Date": "2013-05-26T04:26:42Z", "WARC-IP-Address": "81.169.145.163", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:XA4UW6M23KPBE4ZTQKFVDUFGXPY45YBX", "WARC-Record-ID": "<urn:uuid:81797513-b0f8-4ba9-bf15-7c2c4f9062ea>", "WARC-Target-URI": "http://www.waloszek.de/gxr_astro1_e.php", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:dc37cba3-28f6-4bab-a92b-e5b51b84e34b>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 128, 129, 737, 738, 740, 741, 751, 752, 785, 786, 788, 789, 811, 812, 1198, 1199, 1314, 1315, 1446, 1447, 1578, 1579, 1727, 1728, 1802, 1803, 1805, 1806, 1808, 1809, 1837, 1838, 1903, 1904, 1916, 1917, 1931, 1932, 1944, 1945, 1959, 1960, 1962, 1963, 2006, 2007, 2109, 2110, 2137, 2138, 2150, 2151, 2167, 2168, 2184, 2185, 2201, 2202, 2204, 2205, 2207, 2208, 2239, 2240, 2378, 2379, 2409, 2410, 2838, 2839, 2841, 2842, 2869, 2870, 2899 ], "line_end_idx": [ 128, 129, 737, 738, 740, 741, 751, 752, 785, 786, 788, 789, 811, 812, 1198, 1199, 1314, 1315, 1446, 1447, 1578, 1579, 1727, 1728, 1802, 1803, 1805, 1806, 1808, 1809, 1837, 1838, 1903, 1904, 1916, 1917, 1931, 1932, 1944, 1945, 1959, 1960, 1962, 1963, 2006, 2007, 2109, 2110, 2137, 2138, 2150, 2151, 2167, 2168, 2184, 2185, 2201, 2202, 2204, 2205, 2207, 2208, 2239, 2240, 2378, 2379, 2409, 2410, 2838, 2839, 2841, 2842, 2869, 2870, 2899, 2909 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2909, "ccnet_original_nlines": 75, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2817869484424591, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0824742317199707, "rps_doc_frac_lines_end_with_ellipsis": 0.02631578966975212, "rps_doc_frac_no_alph_words": 0.19415807723999023, "rps_doc_frac_unique_words": 0.36752137541770935, "rps_doc_mean_word_length": 4.858974456787109, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0.008591069839894772, "rps_doc_unigram_entropy": 4.646841526031494, "rps_doc_word_count": 468, "rps_doc_frac_chars_dupe_10grams": 0.1741424798965454, "rps_doc_frac_chars_dupe_5grams": 0.2735268175601959, "rps_doc_frac_chars_dupe_6grams": 0.25065964460372925, "rps_doc_frac_chars_dupe_7grams": 0.1741424798965454, "rps_doc_frac_chars_dupe_8grams": 0.1741424798965454, "rps_doc_frac_chars_dupe_9grams": 0.1741424798965454, "rps_doc_frac_chars_top_2gram": 0.021108180284500122, "rps_doc_frac_chars_top_3gram": 0.0343007892370224, "rps_doc_frac_chars_top_4gram": 0.06816183030605316, "rps_doc_books_importance": -246.44827270507812, "rps_doc_books_importance_length_correction": -246.44827270507812, "rps_doc_openwebtext_importance": -121.51215362548828, "rps_doc_openwebtext_importance_length_correction": -121.51215362548828, "rps_doc_wikipedia_importance": -83.26788330078125, "rps_doc_wikipedia_importance_length_correction": -83.26788330078125 }, "fasttext": { "dclm": 0.0006585100200027227, "english": 0.8405110836029053, "fineweb_edu_approx": 1.4239487648010254, "eai_general_math": 0.005493820179253817, "eai_open_web_math": 0.04390221834182739, "eai_web_code": 0.00025409000227227807 } }
{ "free_decimal_correspondence": { "primary": { "code": "520", "labels": { "level_1": "Science and Natural history", "level_2": "Astronomy", "level_3": "" } }, "secondary": { "code": "681", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Clocks and watches and Scientific apparatus and instruments" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "9", "label": "Personal/Misc" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
c78d4cf040abe984322cbd60a93ed16f
2,811,610,667,211,816,000
Oregon Humane Society   Adopt Recent adoptees       Go back or Visit the Dogs & Puppies page   ADOPTED: 5/21/2012   Name: Dove  Code Number: 127022   Type: Dog     Breed: Rat Terrier/Mix      Pattern: Tri Color     Color: Tri Color/Unknown Gender: Female     Age:   5 Yr     Weight: 13 lbs.     Description: Do you love squeaky toys or tennis balls as much as I do? Probably not, but you'll definitely get a kick out of watching me enjoy them! I don't necessarily show off my best qualities right off the bat, but given a little time to adjust to my surroundings, I will wow you with my adorableness! I need to go home with kids old enough to know and respect that I'm not a fan of being fussed over, or an adult-only house would be just fine, too. I may be small, but I love to learn and would be perfectly suited for further training and daily exercise! What do you say, do I sound like a match for your lifestyle? The adoption fee includes spay/neuter, microchip ID, collar and OHS I.D. tag, initial vaccines, courtesy veterinarian exam, and plenty of post adoption support! Print this Page     Email to a Friend    
{ "url": "http://www.oregonhumane.org/adopt/adopted_detail.asp?animalID=127022", "source_domain": "www.oregonhumane.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "53870", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HG4TLYB2T6FLCTCOCXU2K7IF7NFE4CVL", "WARC-Concurrent-To": "<urn:uuid:a12f0597-b482-4aeb-b301-f2c9212e56c5>", "WARC-Date": "2013-05-18T12:32:47Z", "WARC-IP-Address": "198.145.182.51", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:CZLCDEQJV2JBHDS2CCB65MXXQDYMJZ52", "WARC-Record-ID": "<urn:uuid:35ac2b0a-dd11-45c7-a951-144d41cc4d29>", "WARC-Target-URI": "http://www.oregonhumane.org/adopt/adopted_detail.asp?animalID=127022", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:fbfc5b2f-80eb-46db-af18-866c26ca0f9a>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 22, 30, 46, 48, 50, 52, 53, 94, 95, 97, 152, 194, 203, 242, 297, 310, 311, 920, 921, 1082, 1083, 1121, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136 ], "line_end_idx": [ 22, 30, 46, 48, 50, 52, 53, 94, 95, 97, 152, 194, 203, 242, 297, 310, 311, 920, 921, 1082, 1083, 1121, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1137, "ccnet_original_nlines": 36, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.340163916349411, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.053278688341379166, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.20081967115402222, "rps_doc_frac_unique_words": 0.7434555292129517, "rps_doc_mean_word_length": 4.37172794342041, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.796230792999268, "rps_doc_word_count": 191, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.011976050212979317, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -111.78770446777344, "rps_doc_books_importance_length_correction": -111.78770446777344, "rps_doc_openwebtext_importance": -56.39276885986328, "rps_doc_openwebtext_importance_length_correction": -51.83506393432617, "rps_doc_wikipedia_importance": -48.667694091796875, "rps_doc_wikipedia_importance_length_correction": -48.667694091796875 }, "fasttext": { "dclm": 0.001836959971114993, "english": 0.8705139756202698, "fineweb_edu_approx": 0.824756920337677, "eai_general_math": 0.00009095999848796055, "eai_open_web_math": 0.09132950752973557, "eai_web_code": -0.000006199999916134402 } }
{ "free_decimal_correspondence": { "primary": { "code": "636.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Domestic animals and Pets" } }, "secondary": { "code": "363.68", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,405,884,846,366,337,000
Wayne Lai and his son do the voiceovers for an animated movie Monday, June 08, 2009 Posted by Admin Disney-PIXAR's movie "Up" has topped the box office in the United States. Wayne Lai who has recently gained popularity for his role "Chai Gao" was invited to do the voiceover for the Hong Kong version with his son Lai Ching Kiu in conjunction with Michael Hui. Wayne will do the voice of "Dug" the golden retriever that can translate his thoughts into speech. Wayne's son Ching Kiu will do the voice for main character Russell and resembles him a lot. His voice even sounds similar to the voice of the Amercian version. Although it was his first time stepping in a recording studio he didn't appear to be frightened. Even his father Wayne was surprised. As to why Michael Hui accepted to do the voiceover for the character Carl? He stated that he originally disliked doing voiceovers because of having to lip read. But after reading the movie script he was touched by Carl and Russell's (Grandfather-Grandson) relationship. In addition, he even invited his 2 grandson's to support him at the studio. Source: Takungpao Translated by: Matchbox @ mediachamber.net Labels: Post a Comment TVB News World - http://tvbnewsworld.blogspot.com Best Viewed in IE10, Mozilla Firefox 20 & Google Chrome 26 © Some Copyright Reserved 2008-2013. Disclaimer: This site is not affiliated to TVB or ATV.  
{ "url": "http://tvbnewsworld.blogspot.com/2009/06/wayne-lai-and-his-son-do-voiceovers-for.html", "source_domain": "tvbnewsworld.blogspot.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "328557", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:PNQLNQ3DURJRWRU7OWJVPPHZI5QCNQSE", "WARC-Concurrent-To": "<urn:uuid:49421323-664c-419e-a3f7-4aa84b0510ac>", "WARC-Date": "2013-05-24T15:56:12Z", "WARC-IP-Address": "74.125.228.108", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:Q6M6DJ3XUMM72E7TAZDWGJNV4LOG57U2", "WARC-Record-ID": "<urn:uuid:a08b184c-4d74-4e89-858e-3388eee79f0e>", "WARC-Target-URI": "http://tvbnewsworld.blogspot.com/2009/06/wayne-lai-and-his-son-do-voiceovers-for.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c5f2d5fc-a4ee-4405-b6a5-d6f41c48797f>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 62, 63, 101, 755, 756, 1102, 1103, 1121, 1164, 1172, 1173, 1188, 1189, 1190, 1191, 1241, 1300, 1301, 1393 ], "line_end_idx": [ 62, 63, 101, 755, 756, 1102, 1103, 1121, 1164, 1172, 1173, 1188, 1189, 1190, 1191, 1241, 1300, 1301, 1393, 1394 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1394, "ccnet_original_nlines": 19, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.34265732765197754, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.017482519149780273, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1818181872367859, "rps_doc_frac_unique_words": 0.6304347515106201, "rps_doc_mean_word_length": 4.8086957931518555, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.703401565551758, "rps_doc_word_count": 230, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.03978300094604492, "rps_doc_frac_chars_dupe_6grams": 0.03978300094604492, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02260397933423519, "rps_doc_frac_chars_top_3gram": 0.012658230029046535, "rps_doc_frac_chars_top_4gram": 0.0289330892264843, "rps_doc_books_importance": -137.7745361328125, "rps_doc_books_importance_length_correction": -137.73898315429688, "rps_doc_openwebtext_importance": -82.18710327148438, "rps_doc_openwebtext_importance_length_correction": -82.18710327148438, "rps_doc_wikipedia_importance": -78.71160888671875, "rps_doc_wikipedia_importance_length_correction": -75.986572265625 }, "fasttext": { "dclm": 0.0003890400112140924, "english": 0.974453330039978, "fineweb_edu_approx": 1.1380155086517334, "eai_general_math": 0.001491190050728619, "eai_open_web_math": 0.1410486102104187, "eai_web_code": 0.000004529999841906829 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.4372", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "791.457", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-7,953,709,146,473,596,000
miranda2115: *somebodys heartbreak* About   Non-smoker with A Few Extra Pounds   City Williamstown Ohio Details   27 year old Woman, 5' 6" (168cm), Non-Religious Ethnicity Caucasian Virgo with Brown hair Intent   miranda2115 is looking for a relationship. Education High School Personality   Profession dietary assistant dating newest I am Seeking a Man For Hang out Needs Test View her relationship needs Chemistry View her chemistry results Do you drink? Socially Do you want children? Yes Marital Status Single Do you do drugs? No Pets No Pets Eye Color Green Do you have a car? Yes Do you have children? No Longest Relationship Under 1 year About Me i have brown hair, blue green eyes, about 5'6 tall. Im not skinny but i have feelings too.i enjoy reading, and hanging out with my friends, listening to music. think this site is a joke actually everyone is so into how people look that they dont see the true beauty whats inside is what counts.....i have 9 tattoos that can be covered up by clothes U dont have 2 be skinny 2 be sexy or beautiful. Confidence is sexy, & being urself is beautiful! If u want to be loved, just love urself & know U R Beautiful! First Date anywhere to get to know the person miranda2115 has 2 roses available. Click Send Message to send miranda2115 a rose! Create Your Seduction Guide.            Copyright 2001-2013 Plentyoffish Media Inc. POF, PLENTYOFFISH, PLENTY OF FISH and PLENTY OF are registered trademarks of Plentyoffish Media Inc.
{ "url": "http://www.pof.com/viewprofile.aspx?profile_id=3240853", "source_domain": "www.pof.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "20166", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SH7TNRK4CIAIKXK2D3XIWXLCENTMPL74", "WARC-Concurrent-To": "<urn:uuid:2b80a398-ab8e-4706-9ab9-5d474a5e8a39>", "WARC-Date": "2013-05-23T20:30:09Z", "WARC-IP-Address": "199.182.216.166", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:L3FULOUZJQ4CEJS5NI2WNLFHVF2F2IPF", "WARC-Record-ID": "<urn:uuid:428b1323-fd88-4891-a50b-8368ff35baaa>", "WARC-Target-URI": "http://www.pof.com/viewprofile.aspx?profile_id=3240853", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ef5d8a40-05b6-407b-9a82-3021c98f4226>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 36, 104, 204, 278, 321, 322, 323, 330, 337, 338, 339, 340, 341, 342, 343, 375, 451, 500, 542, 571, 619, 653, 654, 655, 664, 1013, 1172, 1173, 1184, 1219, 1220, 1221, 1222, 1223, 1224, 1306, 1307, 1336, 1347, 1348, 1349, 1393 ], "line_end_idx": [ 36, 104, 204, 278, 321, 322, 323, 330, 337, 338, 339, 340, 341, 342, 343, 375, 451, 500, 542, 571, 619, 653, 654, 655, 664, 1013, 1172, 1173, 1184, 1219, 1220, 1221, 1222, 1223, 1224, 1306, 1307, 1336, 1347, 1348, 1349, 1393, 1493 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1493, "ccnet_original_nlines": 42, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 2, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.29794520139694214, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04109589010477066, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1780821830034256, "rps_doc_frac_unique_words": 0.6747967600822449, "rps_doc_mean_word_length": 4.719511985778809, "rps_doc_num_sentences": 18, "rps_doc_symbol_to_word_ratio": 0.0034246600698679686, "rps_doc_unigram_entropy": 4.939522743225098, "rps_doc_word_count": 246, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.021533159539103508, "rps_doc_frac_chars_top_3gram": 0.015503879636526108, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -126.36311340332031, "rps_doc_books_importance_length_correction": -117.99571990966797, "rps_doc_openwebtext_importance": -62.729461669921875, "rps_doc_openwebtext_importance_length_correction": -62.729461669921875, "rps_doc_wikipedia_importance": -65.0687484741211, "rps_doc_wikipedia_importance_length_correction": -53.57778549194336 }, "fasttext": { "dclm": 0.00007403000199701637, "english": 0.8725810647010803, "fineweb_edu_approx": 0.686329185962677, "eai_general_math": 0.00003718999869306572, "eai_open_web_math": 0.05998134985566139, "eai_web_code": -0.000009180000233754981 } }
{ "free_decimal_correspondence": { "primary": { "code": "306.854", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } }, "secondary": { "code": "306.852", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "2", "label": "About (Personal)" }, "secondary": { "code": "16", "label": "Personal Blog" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-6,065,427,528,583,151,000
BlackBerry maker's cash burn emerges as pressing concern Mon Jun 25, 2012 2:26pm EDT   By Alastair Sharp TORONTO (Reuters) - While Research In Motion Ltd focuses on the make-or-break launch of its next-generation BlackBerrys later this year, a more immediate question for the embattled company is whether its cash can hold out until the new phones finally hit the market. RIM has already told investors to expect an operating loss when it releases fiscal first-quarter results on Thursday. With that in mind, the focus is now squarely on whether RIM, by reining in costs, mostly through job cuts, can buy enough time to get its shiny new smartphones into the hands of consumers. "All I care about is cash. This is a distressed situation so focus should be on cash," said Matthew Thornton, an analyst at Avian Securities in Boston. "If they're not cutting operating costs fast enough, then cash can drop off very quickly, and that's going to have implications for the stock and the valuation," he said. RIM has no debt and roughly $4 a share of cash and investments, a cash pile Thorsten Heins, the company's new chief executive, has said will increase this quarter. But bankers say RIM could blow through that $2.1 billion very quickly trying to right the ship. If cash dwindles to the point where operations suffer, analysts say RIM may have to take on debt at unfavorable terms or issue dilutive stock at a discount to its already low price. Such scenarios would only heighten the sense that RIM's very survival hangs in the balance. The stock is hovering at eight-year lows around $10, little more than double what the company earned per share in its last fiscal year and a fraction of the glory days near $150 in 2008. STAKES ARE HIGH   Continued...   A logo of the Blackberry maker's Research in Motion is seen on a building at the RIM Technology Park in Waterloo April 18, 2012. Picture taken April 18, 2012. REUTERS/Mark Blinch
{ "url": "http://ca.reuters.com/article/businessNews/idCABRE85O14J20120625", "source_domain": "ca.reuters.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "33111", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IHRVZDXUQQXHSJXY3LMCSQ2XMSLG37WQ", "WARC-Concurrent-To": "<urn:uuid:b799f424-ff0a-4a41-8611-72a6f71811e0>", "WARC-Date": "2013-05-25T02:37:53Z", "WARC-IP-Address": "206.132.6.110", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:3VLSFP3RSYSAM6MEIDDGJT37CPTNVO37", "WARC-Record-ID": "<urn:uuid:7ade7d5c-9a14-4b6e-bd81-b1014ece922a>", "WARC-Target-URI": "http://ca.reuters.com/article/businessNews/idCABRE85O14J20120625", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:2addde1c-0f95-4726-aa8a-f6fcdde6af61>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 57, 58, 86, 88, 89, 107, 108, 375, 376, 683, 684, 836, 837, 1008, 1009, 1269, 1270, 1544, 1545, 1732, 1733, 1764, 1765, 1767 ], "line_end_idx": [ 57, 58, 86, 88, 89, 107, 108, 375, 376, 683, 684, 836, 837, 1008, 1009, 1269, 1270, 1544, 1545, 1732, 1733, 1764, 1765, 1767, 1945 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1945, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4039900302886963, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03740648180246353, "rps_doc_frac_lines_end_with_ellipsis": 0.03999999910593033, "rps_doc_frac_no_alph_words": 0.16957606375217438, "rps_doc_frac_unique_words": 0.6385542154312134, "rps_doc_mean_word_length": 4.629518032073975, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0.002493770094588399, "rps_doc_unigram_entropy": 5.055614471435547, "rps_doc_word_count": 332, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.020819779485464096, "rps_doc_frac_chars_top_3gram": 0.020819779485464096, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -144.86415100097656, "rps_doc_books_importance_length_correction": -144.86415100097656, "rps_doc_openwebtext_importance": -93.67396545410156, "rps_doc_openwebtext_importance_length_correction": -93.67396545410156, "rps_doc_wikipedia_importance": -80.94646453857422, "rps_doc_wikipedia_importance_length_correction": -80.94646453857422 }, "fasttext": { "dclm": 0.0017077899537980556, "english": 0.9649207592010498, "fineweb_edu_approx": 1.1016995906829834, "eai_general_math": 0.011036399751901627, "eai_open_web_math": 0.06634891033172607, "eai_web_code": 0.00035059000947512686 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "338.7", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
3,074,265,812,616,243,700
Health knowledge made personal WellPage for Hindu Goddess + Bookmark › Share Go Search people: Hindu Goddess - People Filter by › Age: Gender: miles from: Name Highlights Dr Kranthi R Vardhan hyderabad, India Dr KRANTHI VARDHAN RENUKUNTLA BAMS; MS (Psycho Therapy & Counseling); have started The Kerala Ayurvedic Care, Specialty Panchakarma Centre, in the year 1999 with an aim to provide high quality, personalized, compassionate & Purest hands-of Ayurveda (The Mother Of All The Sciences).His holistic approach enables him to create individualized programs, specifically tailored to your... Lucia Gabriela Facebook Sound Beach, New York Lucia Gabriela Certified Health Coach. CHC, ADDP I am very proud and fortunate to have studied and completed all of the courses at the Institute of Integrative Nutrition in New York City. IIN is rated the number one school in the world for holistic nutrition and alternative health. We studied over 100 dietary theories and studied a variety of practical lifestyle coaching methods. My training... Communities: Healthy Cooking Donna T. Facebook Sunnyvale, California Hinduism is the oldest religion in the world, as it is an eternal religion.   The mother of all languages of the world is Sanskrit, an eternal and Divine language that has never changed or evolved a bit over the past millions of years because it is already perfect.  My favorite book:  The True History and the Religion of India, by His Divinity Shree Swami... VeganBohemian Athens, Georgia peace, love, happiness, understanding, compassion, healing, forgiveness, kindness, veganism, hinduism, buddhism <3 Communities: Vegan, Raw Food Lynette Sheppard Registered NurseHealth Maven Hoolehua, Hawaii I'm a Registered Nurse, but these days my job (read passion) is connecting with and disseminating the wisdom of menopausal women via my blog at www.menopausegoddessblog.org. A core group of menopausal goddesses came together to make sense of the Changes assaulting us. What we learned and shared helped us beyond our wildest imaginings. Our small community has since expanded to a larger virtual... Dating Goddess Patient Expert unknown, California Who is the Dating Goddess? I am a 53-year-old white, professional woman. My husband of nearly 20 years left me in April '03 and I started dating 18 months later. Generally, I have had a great time meeting interesting men, some of whom became romantic beaus, some became treasured friends, and some I never heard from again. In the beginning, I had dates with single male colleagues, but I quickly... Communities: General Medicine goddess United States
{ "url": "http://www.wellsphere.com/people/hindu-goddess", "source_domain": "www.wellsphere.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "54896", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2OLP4I4Z4UBAMPW7NJNKHIYHSEAHKP3Z", "WARC-Concurrent-To": "<urn:uuid:90a20f8e-c192-49ef-94c4-9548d17f0d1f>", "WARC-Date": "2013-05-23T02:07:18Z", "WARC-IP-Address": "23.3.13.208", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:VBHMUBJTX7HMNWSGVCX72MO3W56SS36U", "WARC-Record-ID": "<urn:uuid:cadbdac0-2e71-4c9d-9bc7-ceaace358e9f>", "WARC-Target-URI": "http://www.wellsphere.com/people/hindu-goddess", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:2c9970e3-fb8f-4f63-b998-2e617385716e>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 31, 58, 77, 80, 95, 96, 119, 120, 132, 137, 145, 157, 162, 173, 174, 195, 196, 213, 597, 598, 622, 623, 645, 1043, 1072, 1073, 1091, 1092, 1114, 1475, 1476, 1490, 1491, 1507, 1622, 1651, 1652, 1698, 1699, 1716, 2115, 2116, 2146, 2147, 2167, 2567, 2597, 2598, 2606, 2607 ], "line_end_idx": [ 31, 58, 77, 80, 95, 96, 119, 120, 132, 137, 145, 157, 162, 173, 174, 195, 196, 213, 597, 598, 622, 623, 645, 1043, 1072, 1073, 1091, 1092, 1114, 1475, 1476, 1490, 1491, 1507, 1622, 1651, 1652, 1698, 1699, 1716, 2115, 2116, 2146, 2147, 2167, 2567, 2597, 2598, 2606, 2607, 2620 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2620, "ccnet_original_nlines": 50, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.26131686568260193, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.039094649255275726, "rps_doc_frac_lines_end_with_ellipsis": 0.09803921729326248, "rps_doc_frac_no_alph_words": 0.18312756717205048, "rps_doc_frac_unique_words": 0.6641603708267212, "rps_doc_mean_word_length": 5.278195381164551, "rps_doc_num_sentences": 23, "rps_doc_symbol_to_word_ratio": 0.01028806995600462, "rps_doc_unigram_entropy": 5.291414260864258, "rps_doc_word_count": 399, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.009496680460870266, "rps_doc_frac_chars_top_3gram": 0.010446339845657349, "rps_doc_frac_chars_top_4gram": 0.013295349664986134, "rps_doc_books_importance": -231.4324493408203, "rps_doc_books_importance_length_correction": -231.4324493408203, "rps_doc_openwebtext_importance": -130.497314453125, "rps_doc_openwebtext_importance_length_correction": -130.497314453125, "rps_doc_wikipedia_importance": -97.00860595703125, "rps_doc_wikipedia_importance_length_correction": -97.00860595703125 }, "fasttext": { "dclm": 0.003885630052536726, "english": 0.9236975908279419, "fineweb_edu_approx": 1.340889811515808, "eai_general_math": 0.0043587698601186275, "eai_open_web_math": 0.05857861042022705, "eai_web_code": 0.0004140700038988143 } }
{ "free_decimal_correspondence": { "primary": { "code": "294.5", "labels": { "level_1": "Religion", "level_2": "Religions", "level_3": "Hinduism, Brahmanism, Buddhism, and Sikhism" } }, "secondary": { "code": "610", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "2", "label": "About (Personal)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
6,932,240,856,894,277,000
Campus Watch Facebook Surveys: Saudi/Gulf Funding Articles marked by a icon are recommended by Campus Watch staff. Why Saudis Send Their Kids to the Islamic Saudi Academy June 12, 2013 at 1:24 pm Anti-Semite Ali Mazrui Honored by Alwaleed Bin Talal Center at Georgetown University May 3, 2013 at 7:09 pm Security Clearance Case Isn't Fit for Federal Court [incl. Islamic Saudi Academy] April 30, 2013 - Courthouse News Service Recommended by Campus Watch StaffDoes the Governor General's Wife Know Who's Coming to Dinner? [on Ingrid Mattson] April 28, 2013 - The Ottawa Citizen 'Israel Lobby' Threatening Free Speech at Berkeley? March 29, 2013 at 6:23 am Recommended by Campus Watch Staff'Israel Lobby' Threatening Free Speech at Berkeley? March 29, 2013 - FrontPage Magazine The Iran Lobby Buys a Friendly Face for Despotism March 10, 2013 at 7:38 pm Recommended by Campus Watch StaffThe Iran Lobby Buys a Friendly Face for Despotism March 10, 2013 - American Thinker Students to Present Research February 28, 2013 - The Herald (student newspaper of Arkansas State University) The Contradictions of Study Abroad August 9, 2012 - Newsbook (Blog of The Economist) In The Wall Street Journal, Michael Oren is Right: Israel's Enemies Seek Its Delegitimization May 16, 2012 - Snapshots (Blog of CAMERA) American Universities, Panhandling for Petrodollars May 11, 2012 - The Corner (Blog of National Review Online) Recommended by Campus Watch StaffBernard Lewis' Stubborn Hope May 9, 2012 - Tablet: A New Read on Jewish Life Revisionist History [incl. Majid Khadduri] April 11, 2012 - The Washington Free Beacon Qatar Donates $1.25 Million to Islamic Studies Institute at McGill University April 2, 2012 - The McGill Tribune Oil and Anti-Semitism March 29, 2012 - Snapshots (Blog of CAMERA) Blood, Money and Jews March 28, 2012 - Ynet News Harvardstan? March 23, 2012 - FrontPage Magazine Recommended by Campus Watch StaffWhat Happened to Harvard's 'Veritas'? [incl. Noah Feldman] March 20, 2012 - FrontPage Magazine Surveillance Efforts Benefit University March 20, 2012 - The Daily Targum (student newspaper of Rutgers University) Reflections on Richard Cravatts' "Genocidal Liberalism: The University's Jihad Against Israel & Jews" March 9, 2012 - FrontPage Magazine Being 'Pro-Israel' Isn't Enough [incl. Tammi Rossman-Benjamin] March 2, 2012 - The Forward Prince Alwaleed and Princess Ameerah Host Prince Alwaleed University Centers' Annual Forum in Boston [incl. John Esposito] February 18, 2012 - Zawya John Louis Esposito for the Defense (of an Alleged, Would-be Terrorist) February 17, 2012 at 8:54 am Recommended by Campus Watch StaffJohn Louis Esposito for the Defense (of an Alleged, Would-be Terrorist) February 17, 2012 - American Thinker Harvard to Host Conference Promoting Israel's Destruction [incl. Marc Ellis, Leila Farsakh] February 17, 2012 - Committee for Accuracy on Middle East Reporting in America (CAMERA) Have You Heard About the Saudi Journalist Who Faces a Potential Death Sentence Under Sharia? February 14, 2012 - The Corner (Blog of National Review Online) Moderate Malaysian Government: Valentine's Day Can Invoke Wrath of Allah [incl. John Esposito] February 12, 2012 - The Corner (Blog of National Review Online) Why Saudi Prince Bin Talal Funds Middle East Studies in America February 10, 2012 at 1:27 pm Islamophobia, Anti-Americanism, Arab Spring [incl. John Esposito] February 9, 2012 - Harvard Magazine Tweeting With a Pile of Saudi Money February 9, 2012 - The Boston Globe Recommended by Campus Watch StaffSaudi Largesse at Georgetown and Harvard February 6, 2012 - Phi Beta Cons (National Review Online) Power, Knowledge and the Universities [incl. Joseph Massad] February 6, 2012 - Al Jazeera Recommended by Campus Watch StaffHarvard's Middle East Outreach Center: Propaganda for Teachers February 5, 2012 - American Thinker Harvard: The Higher Madrassa January 18, 2012 - RenewAmerica Is It Just About Money? January 4, 2012 - The Jerusalem Post Recommended by Campus Watch StaffHarvard's Middle East Outreach Center Headed By BDS Supporter [incl. Paul Beran, Sara Roy] December 13, 2011 - Committee for Accuracy on Middle East Reporting in America (CAMERA) Rashid Ghannoushi: John Esposito's Islamist in Tunis December 11, 2011 at 9:33 am Recommended by Campus Watch StaffRashid Ghannoushi: John Esposito's Islamist in Tunis December 11, 2011 - American Thinker And Tariq Ramadan, With His Boughten Professorship? November 22, 2011 - The Iconoclast - New English Review Sultan of Oman Endows New Professorship at College of William and Mary November 10, 2011 - The Flat Hat (student newspaper of The College of William and Mary) Sultan Qaboos Chair at College of William and Mary to Boost Research on Middle East October 29, 2011 - Muscat Daily New HM Chair at College of William & Mary is Symbol of Amity, Partnership October 27, 2011 - Oman Daily Observer Signing and Celebration of Sultan Qaboos bin Said Professorship October 26, 2011 - News of The College of William & Mary Sultan of Oman Gift to William & Mary Will Establish Middle East Studies Professorship October 25, 2011 - Associated Press College of William & Mary Receives Gift to Establish Sultan Qaboos Professorship October 24, 2011 - News of The College of William & Mary Prince Alwaleed Receives Deputy Assistant Secretary of State for the Arabian Gulf October 19, 2011 - Zawya Ali Asani Named Head of Islamic Studies Program at Harvard October 3, 2011 - The Harvard Crimson Case Against Donor Revisited [incl. John Esposito] September 20, 2011 - The Georgetown Hoya Recommended by Campus Watch StaffJohn L. Esposito: Apologist for Wahhabi Islam September 18, 2011 - American Thinker No Springtime for Hitler at Columbia? September 17, 2011 - American Thinker How Harvard Remembered 9/11 September 10, 2011 - Pajamas Media Report Card on the 9/11 Commission's Recommendations [incl. John Esposito] September 7, 2011 - Family Security Matters Saudi Arabian Dollars Buying American Influence July 11, 2011 - WorldNetDaily Jewish University Presidents Who Abandon Jews July 3, 2011 - American Thinker Georgetown and the Islamist Money Changers June 24, 2011 at 10:42 am Recommended by Campus Watch StaffGeorgetown and the Islamist Money Changers June 24, 2011 - American Thinker Islam Buys Out Western Academia June 23, 2011 - Arutz Sheva OIC Funneled $325,000 through Hamas-linked CAIR to Georgetown University to support restriction of free speech, criminalization of "Islamophobia" [incl. John Esposito] June 15, 2011 - Jihad Watch Recommended by Campus Watch StaffGeorgetown U. Received $325,000 Funneled Through Terror Front Group June 14, 2011 - Pajamas Media Why is Yale University Shutting Its Anti-Semitism Study Institute? June 14, 2011 - Arutz Sheva Anti-Semitism and Man at Yale [incl. Flynt and Hillary Mann Leverett] June 13, 2011 - Jewish Ideas Daily Canada: Ontario College Accepts $2 Million from Islamic Groups Linked to Jihad Terrorism June 6, 2011 - Jihad Watch So Young May Understand, Huron Should Not Give In June 3, 2011 - London Free Press Muslim Funding Raises Canada Hue and Cry June 3, 2011 - OnIslam Controversy Continues Over Global Muslim Brotherhood Funding Of Canadian Islamic Studies Chair June 2, 2011 - The Global Muslim Brotherhood Daily Report The Donor's Dilemma May 18, 2011 - National Review Online University of Western Ontario: Muslim Brotherhood Organizations Commit to Fund a Chair in Islamic Studies [incl. Ingrid Mattson, Tariq Ramadan] May 14, 2011 - Point de Bascule Canada University Offered $2 Million from Muslim Brotherhood-linked Groups to Establish Islamic Studies Program May 13, 2011 - Jihad Watch The Dumbing-Down of Due Diligence at Canada's Huron College May 11, 2011 at 10:57 am Recommended by Campus Watch StaffThe Dumbing-Down of Due Diligence at Canada's Huron College May 11, 2011 - Campus Watch Dumbing-Down about Islam at Canada's Huron College May 11, 2011 - The Ottawa Citizen Recommended by Campus Watch StaffCongressional GOP Gets One Right April 14, 2011 - The Corner (NRO) Concerns About the Funding of a Chair in Islamic Studies at Huron College, University of Western Ontario April 5, 2011 - EclectEcon Blog Jewish Students Under Assault -- Part U April 1, 2011 - Yated Ne'eman Anti-American, Foreign Donors Are Paying Off Our Profs. Shouldn't We Address This? March 25, 2011 - Pajamas Media Recommended by Campus Watch StaffMideast Unrest Reawakens Concern Over Taint of Foreign Money [incl. John Esposito] March 20, 2011 - The Chronicle of Higher Education Dalhousie Medical School to Sell Saudis Ten Seats March 17, 2011 - The Globe and Mail US/Canadian Muslim Brotherhoods Fund Islamic Chair At Canadian University March 16, 2011 - The Global Muslim Brotherhood Daily Report US/Canadian Muslim Brotherhoods Fund Islamic Chair At Canadian University March 15, 2011 - The Global Muslim Brotherhood Daily Report Witness List Set for King Hearing [incl. Islamic Saudi Academy] March 7, 2011 - The Investigative Project on Terrorism Kuwait Gifts $4.5m to George Washington University March 5, 2011 - The Kuwait Times London School of Economics's Ties to Libya the Tip of the Iceberg for Academia March 4, 2011 - Commentary Magazine Follow the Money March 2, 2011 - Jewish Ideas Daily Kuwait Gives George Washington University $4.5 Million Gift for Middle East Studies February 24, 2011 - The GW Hatchet (student newspaper of George Washington University) $4.5 Million Gift to Support George Washington University's Middle East Programs February 23, 2011 - George Washington University News Sharia University December 9, 2010 - Red State Blog Arab Lobby a Force to be Reckoned With, Author Charges November 4, 2010 - Washington Jewish Week Supervisors Extend Saudi Academy's Lease Another Year Along Party Lines October 27, 2010 - The Fairfax Times D.C. Suburb OKs Saudi Madrassa – Again [on Islamic Saudi Academy] October 27, 2010 - WorldNetDaily What, We Worried? [on Islamic Saudi Academy] October 25, 2010 - WORLD Magazine Is Jihad Being Taught in the Backyard of the Nation's Capital? [on Islamic Saudi Academy] October 21, 2010 - InsiderOnline Blog Supervisors Vote to Extend Islamic Saudi Academy Lease October 21, 2010 - Kingstowne Patch Recommended by Campus Watch StaffExtremists and Allys Narrow the Parameters of Free Speech [incl. John Esposito] October 20, 2010 - Scrippsnews Fairfax County Renews Lease for Saudi Wahhabi School [on Islamic Saudi Academy] October 20, 2010 - The Corner (Blog of National Review Online) Connolly Takes $18,758 From Saudi Nationals? [on Islamic Saudi Academy] October 19, 2010 - Bearing Drift (Blog of The Washington Post Blog Network) Iranian Front Group Pumping Funds into US Universities October 11, 2010 - National Review Online The Arab Lobby Exposes Seventy Years of Coercion By Saudi Arabia October 10, 2010 - News Blaze Arab Lobby's Unseen Influence October 6, 2010 - Political Bookworm (A blog of the Washington Post) 'Zaytuna College' and Its Continuing Media Circus September 28, 2010 at 6:05 am Recommended by Campus Watch Staff'Zaytuna College' and Its Continuing Media Circus September 28, 2010 - American Thinker Q & A with Dr. Mitchell Bard September 15, 2010 - Jewish Ledger Recommended by Campus Watch StaffWho're You Calling a 'Bigot'? Middle East Studies Professors Attack Opponents of the Ground Zero Mosque August 29, 2010 - American Thinker The Ground Zero Mosque Should Be Stopped [incl. John Esposito] August 2, 2010 - RedState Georgetown Professor Misses the Mark on NYC Islamic Center [on John Esposito] July 21, 2010 - The Washington Times Kagan Promoted Shariah Law at Harvard July 21, 2010 - Townhall.com Elena Kagan's 'Don't Ask Don't Tell' Sharia Policy July 8, 2010 - National Review Online Senate Republican Accuses Kagan of Staying Silent on Saudi Gift to Harvard June 16, 2010 - FOXNews.com Recommended by Campus Watch StaffInterfaith Meeting Rocked by Terror Accusation [incl. Ingrid Mattson] May 14, 2010 - WorldNetDaily SEALs Case Shows How Terrorists Use 'Lawfare' to Undermine U.S. March 8, 2010 - Human Events Rep. Myrick Looks to Heal Long Rift with Muslims [incl. Ebrahim Moosa] February 25, 2010 - The Charlotte Observer New Campus Watch Research: the Model Arab League, and Massad at UCLA February 1, 2010 at 6:58 pm Recommended by Campus Watch StaffModel Middle East Indoctrination January 31, 2010 - American Thinker Saudis to Establish School in Dublin [incl. Islamic Saudi Academy] December 9, 2009 - The Irish Times Academics Behaving Badly [incl. John Esposito, Martin Kramer] November 24, 2009 - Jerusalem Post Schools' Iran $$ Pipeline [incl. Hamid Dabashi, Hooshang Amirahmadi, Gary Sick] November 22, 2009 - New York Post Schoolhouse Shariah [incl. Islamic Saudi Academy] September 24, 2009 - Investor's Business Daily Yale Sells Its Freedom Of Speech [incl. Jytte Klausen] September 15, 2009 - Cincinnati Independent Examiner Recommended by Campus Watch StaffAn Update on Yale [incl. Jytte Klausen] September 4, 2009 - Contentions (blog of Commentary magazine) Hate Speech on Campus September 3, 2009 - Intellectual Conservative Yale: Betraying Nathan Hale, Embracing the Muslim Brotherhood August 25, 2009 - DianaWest.net Did Yale Prostitute Itself For Oil Money? August 25, 2009 - The American Thinker Yale Selects Daughter of Global Muslim Brotherhood Leader as 2009 Fellow [incl. John Esposito and Jytte Klausen] August 24, 2009 - Family Security Matters: Global Muslim Brotherhood Daily Report Feds Rule Seizure of Terror Funding Muslim Charity's Assets Unconstitutional [incl. Hatem Bazian] August 24, 2009 - Creeping Sharia Blog Yale Dhimmitude: It's About Saudi Money August 22, 2009 - The Jawa Report Recommended by Campus Watch StaffSome Day, Yale's Prince Will Come [incl. Jytte Klausen, Roy Mottahedeh, John Esposito] August 21, 2009 - Sandbox (Weblog of Martin Kramer) My Final Piece on Yale and the Danish Cartoons: Martin Kramer Connects the Dots [incl. Jytte Klausen] August 21, 2009 - Roger's Rules (Blog of Pajamas Media) A Slow-Motion Honor Killing [incl. John Esposito] August 13, 2009 - FrontPage Magazine From Gulag Liberators to Saudi Retainers [incl. Joseph Massad] July 21, 2009 - National Review Online The Inroads of the Muslim Brotherhood in the Obama Administration [incl. John Esposito] April 13, 2009 - Counterterrorism Blog Why the Jews? [incl. Rashid Khalidi, John Esposito] March 26, 2009 - FrontPage Magazine Is Israel Being Held To A Different Standard Or Is It Simply Anti-Semitism? March 16, 2009 - The Bulletin (Philadelphia) Proposed USC-Dubai Journalism School Concerns Faculty and Community October 29, 2008 - The Jewish Journal The Economic Crisis and Middle Eastern Studies October 15, 2008 - Phi Beta Cons Interview with Brigitte Gabriel [incl. Susan Douglas, Islamic Saudi Academy, Khalil Gibran International Academy, et al.] October 9, 2008 - The Examiner Recommended by Campus Watch StaffPublic Schools Teach the ABC's of Islam October 8, 2008 - Christian Broadcast Network Obama's Sleazy Friends [incl. Rashid Khalidi] October 7, 2008 - The Washington Times Recommended by Campus Watch StaffSharia Law: Coming to a Western Nation Near You? [incl. John Esposito, Noah Feldman] September 25, 2008 - FrontPage Magazine Universities Disclose Foreign Gifts [incl. Edward Said, Rashid Khalidi] September 24, 2008 - The New York Sun Wolf Challenges State Department ISA Inaction [on Islamic Saudi Academy] September 24, 2008 - Mount Vernon Gazette Saudi Infiltration into U.S. Education September 18, 2008 - Arutz Sheva, Israel National News Wolf Continues Pressing State Dept. on Saudi School [on the Islamic Saudi Academy in Va.] September 17, 2008 - Investigative Project on Terrorism (For the Record-IPT Blog) 2007-2008: Another Year of Global Academic Anti-Semitism and Anti-Israelism [incl. MESA, ASMEA, Joseph Massad, Nadia Abu El-Haj, Yinon Conen, et al.] October 2008 - Institute for Global Jewish Affairs Saudi Textbooks Teach Students to Hate [incl. the Islamic Saudi Academy in VA] September 5, 2008 - Washington Post (Post Global Blog) Protecting Mosques in New York [incl. the Islamic Saudi Academy in VA] September 4, 2008 - Frontpage Magazine Textbook Appeasement: The State Department and the Islamic Saudi Academy September 2, 2008 - The Heritage Foundation Symposium: The Closing of the American Psyche [incl. Campus Watch, Middle East studies] August 29, 2008 - Frontpage Magazine Put Up vs. Shut Up [on the Islamic Saudi Academy in VA] August 19, 2008 - Richmond-Times Dispatch Will State Department Punt (Again) on Islamic Saudi Academy's Radical Textbooks? August 7, 2008 - Counterterrorism Blog New Page in Saudi Debate [on the Islamic Saudi Academy in VA] August 6, 2008 - Fairfax County Times Behind the Veil at the Islamic Saudi Academy August 2008 - New English Review The Islamic Saudi Academy: A ‘Hot Potato' July 2008 - New English Review Head of Islamic School Guilty of Not Reporting Child Abuse [on the Islamic Saudi Academy in VA] July 31, 2008 - Washington Post Head of Jihadist School in Virginia Guilty of Not Reporting Child Abuse [on the Islamic Saudi Academy] July 31, 2008 - Jihad Watch Page B6 WaPo Story: Islamic School Chief Guilty for Not Reporting Child Abuse [on the Islamic Saudi Academy in VA] July 31, 2008 - NewsBusters Fairfax Stuck in Middle of Saudi Academy Dispute July 31, 2008 - WTOP Radio Head of Saudi School Admits He Didn't Report Abuse [on the Islamic Saudi Academy in VA] July 30, 2008 - Associated Press Islamic Anti-Semitism: From Sacred Texts to Modern Textbooks [incl. the Islamic Saudi Academy in VA] July 28, 2008 - Family Security Matters Textbook Terrorism [on Saudi textbooks] July 24, 2008 - Investor's Business Daily State Dept. Stands Aside [on the Islamic Saudi Academy in VA] July 23, 2008 - Fairfax County Times Multiple Choice Exams, the Saudi Way [incl. the Islamic Saudi Academy in VA] July 22, 2008 - The Platform (St. Louis Post-Dispatch Blog) Despite Saudi Promises, Textbooks Filled With Hate [incl. the Islamic Saudi Academy in VA] July 22, 2008 - New York Sun A Textbook Case of Intolerance [on Saudi textbooks] July 21, 2008 - Slate.com School for Scoundrels [on the Islamic Saudi Academy in VA; ref. Bernard Lewis] July 17, 2008 - Townhall.com Rep. Wolf to Secretary Rice: Figure Out What Saudi School is Teaching [on the Islamic Saudi Academy in VA] July 17, 2008 - Alexandria Times Saudi Textbooks Still Teaching Hate: Report July 17, 2008 - National Post Christians are 'Swine', Jews 'Condemnable', Say Saudi Textbooks July 17, 2008 - Posted (National Post Blog) Is Anyone Responsible? [incl. the Islamic Saudi Academy in VA] July 16, 2008 - Investigate Project on Terrorism Developments in Islamic Saudi Academy and Saudi Textbook Issues July 16, 2008 - Counterterrorism Blog Review Finds Slurs In '06 Saudi Texts [on the Islamic Saudi Academy in VA; incl. Amin Bonnah] July 15, 2008 - Washington Post New Hudson Institute Report Shows Saudi Ministry Textbooks Still Teach Extreme Intolerance [incl. the Islamic Saudi Academy in VA] July 15, 2008 - American Congress for Truth Blog New Report Shows Saudi Ministry Textbooks Still Teach Extreme Intolerance [incl. the Islamic Saudi Academy in VA] July 15, 2008 - PRNewswire This Country Is so Pro-Muslim It Is Giving Succor to the Extremists Who Would Destroy Us [on the UK; incl. MES, Saudi funding] July 8, 2008 - The Daily Mail (U.K) John Esposito on 'Moderation' and 'Peace' July 8, 2008 - First Things Blog The Esposito School: Islamic Apologists in Action, or Who is the "Near Enemy"? [incl. John Voll, Natana Delong-Bas, the Prince Alwaleed Center for Muslim-Christian Understanding] July 1, 2008 - Sharia Finance Watch Virginia's Islamic Academy on Shaky Legal Ground [on the Islamic Saudi Academy in N. Va.] June 27, 2008 - Pajamas Media Saudi School Debate is About More Than Cutting the Grass [on the Islamic Saudi Academy in VA] June 27, 2008 - Alexandria Times State Dept. Stands Alone on Virginia Saudi School [on the Islamic Saudi Academy in N. Va.] June 26, 2008 - IPT News (Investigative Project on Terrorism) Islamic Saudi Academy Latest Example of Saudis' Distribution of Propaganda June 26, 2008 - Counterterrorism Blog Fairfax County Supervisors Wimp Out on Islamic Saudi Academy Textbooks June 25, 2008 - Counterterrorism Blog Al-Jazeera TV Reports on Fairfax, Virginia, Islamic Saudi Academy Controversy, Says U.S. Commission on International Religious Freedom Persecuting U.S. Muslims June 25, 2008 - Middle East Media Research Institute (MEMRI.org) Supervisors Pass Buck on Islamic School [on the Islamic Saudi Academy in VA] June 25, 2008 - Fairfax County Times Rep. Wolf Wants State Department to Step Up in Saudi Academy Controversy [on the Islamic Saudi Academy in N. Va.] June 25, 2008 - Congressional Quarterly's Homeland Security News and Analysis Saudi Academy Challenged Again [on the Islamic Saudi Academy in VA] June 25, 2008 - Mount Vernon Gazette Board Seeks Input On Islamic School [on the Islamic Saudi Academy in VA] June 24, 2008 - Washington Post Politics, Religion and Education a Potent Mix in Virginia Congressional Race [incl. the Islamic Saudi Academy] June 24, 2008 - Congressional Quarterly State Department Asked To Investigate Saudi Academy June 23, 2008 - NBC4.com Saudi Academy Intimately Tied To Extremist Saudi Muslims June 22, 2008 - PipeLineNews.org Islamic Saudi Hate Academy June 20, 2008 - Frontpage Magazine Saudi Hate No Worry for Clueless Energy Crowd [on the Islamic Saudi Academy in VA] June 20, 2008 - Seattle Post Intelligencer Islamic School Has Notorious Alumni [on the Islamic Saudi Academy in VA] June 20, 2008 - OneNewsNow.com Saudi School Head Charged [on the Islamic Saudi Academy] June 19, 2008 - Alexandria Times From Most Groups Overseeing Islamic Saudi Academy, Support or Inaction June 19, 2008 - Alexandria Times Religious Commission Criticizes Saudi Textbooks [on the Islamic Saudi Academy in VA] June 19, 2008 - Baptist Press Feds: Islamic School Condones Violence [on the Islamic Saudi Academy in VA] June 18, 2008 - World on the Web Director of Saudi Academy Arrested for Failing to Report Child Abuse [on the Islamic Saudi Academy in Fairfax, VA] June 17, 2008 - Associated Press Cinnamon Stillwell: Islam in America's Public Schools: Education or Indoctrination? June 17, 2008 - Solomonia Blog Traditional Values Groups Organizes Protest At Virginia's Islamic Saudi Academy June 17, 2008 - PipeLineNews.org 'Soft Jihad' Advancing in U.S. Classrooms June 16, 2008 - Phi Beta Cons Islamic Saudi Academy Director Arrested for Obstruction of Justice June 16, 2008 - Saudi Watch Blog The Next Attack: Coming Soon [incl. the Islamic Saudi Academy in VA] June 16, 2008 - Human Events Foe, Not Friend [incl. the Islamic Saudi Academy in VA] June 16, 2008 - Townhall.com Should Justice Dept. Investigate Violent Teachings at Islamic Saudi Academy? June 14, 2008 - Family Security Matters U.S. Students Learn Hatred Saudi Style [on the Islamic Saudi Academy] June 14, 2008 - History News Network State Lets Islamic School Operate [on the Islamic Saudi Academy] June 13, 2008 - Washington Times State Department: Saudis to Scrub Curriculum by School Year Start [on the Islamic Saudi Academy] June 13, 2008 - The Examiner Islam in America's Public Schools: Education or Indoctrination? June 13, 2008 - Investigate Project on Terrorism Mad For Madrassas [on the Islamic Saudi Academy] June 13, 2008 - Investor's Business Daily What Virginia's Islamic Academy Doesn't Want You to Know June 13, 2008 - Pajamas Media Statement from the Islamic Saudi Academy in Response to the US Commission on International Religious Freedom June 13, 2008 - Islamic Saudi Academy Teaching Hate [on the Islamic Saudi Academy in N. Va.] June 12, 2008 - The New York Sun Review: Troubling Passages in Texts at Va. School [on the Islamic Saudi Academy in N. Va.] June 12, 2008 - Associated Press Panel: Saudi-Run Va. School Promotes Hate [on the Islamic Saudi Academy in N. Va.] June 12, 2008 - The New York Sun School's Books Found to Promote Violence [on the Islamic Saudi Academy in N. Va.] June 12, 2008 - The Examiner Islamic Saudi Academy in Virginia: Case Study in Homegrown Radicalization June 12, 2008 - Counterterrorism Blog Traditional Values Coalition Asks Justice Dept. To Investigate Violent Teachings at Islamic Saudi Academy June 12, 2008 - Traditional Values Coalition Saudi Academy's Books Promote Violence, Intolerance, Panel Says [on the Islamic Saudi Academy in N. Va.] June 11, 2008 - Bloomberg.com USCIRF Confirms Material Inciting Violence, Intolerance Remains in Textbooks Used at Saudi Government's Islamic Saudi Academy June 11, 2008 - U.S. Commission on International Religious Freedom Why Arabian Gulf Countries Donate to US Universities June 9, 2008 - FrontPage Magazine Recommended by Campus Watch StaffSpreading Islam in the Academy [incl. Alwaleed bin Talal] June 9, 2008 - Forum (the blog of Minding the Campus) A Medal for Brass [incl. Alwaleed bin Talal Center for Muslim-Christian Understanding] May 26, 2008 - The Weekly Standard The Real World: Runaway Oil [incl. Saudi gifts to Middle East studies] May 23, 2008 - Middle East Times Exclusive: Should a Saudi School Lease Be Put on Hold? [on the Islamic Saudi Academy] May 17, 2008 - Family Security Matters Recommended by Campus Watch StaffMiddle East Studies in Fiction [incl. John Esposito, Rashid Khalidi, Juan Cole, et al.] May 15, 2008 - FrontPage Magazine Army Colonel Says U.S. Needs Better Focus in the War on Terror [incl. Saudi funding] May 15, 2008 - Congressional Quarterly's Homeland Security News and Analysis Are American Universities in Bed with America's Enemies? [incl. Prince Alwaleed Bin Talal] May 14, 2008 - Family Security Matters Prince Alwaleed Receives Business Leader of the Year Award from Foreign Policy Association [incl. Middle East studies] May 13, 2008 - ArabianBusiness.com Over a Barrel [incl. Saudi funding for higher education] May 11, 2008 - New York Post 2 British Universities to Benefit From Saudi Prince's Gifts [on Alwaleed bin Talal; the universities of Cambridge and Edinburgh; John Esposito] May 9, 2008 - The Chronicle of Higher Education Saudi Prince Gives Universities 16m Pounds for Study of Islam [on Alwaleed bin Talal Abdulaziz al-Saud; the universities of Cambridge and Edinburgh] May 8, 2008 - The Independent (U.K.) Cambridge and Edinburgh Universities announce New Centres for Islamic Studies [on Alwaleed bin Abdulaziz al-Saud] May 8, 2008 - University of Cambridge Alwaleed Gives $31 Million for U.K. University Islamic Centers [on Cambridge and Edinburgh] May 8, 2008 - Bloomberg.com News Flash: Muslims Want Free Speech for Themselves! [on John Esposito] May 8, 2008 - Citizens Against Sharia Blog Arabian Gulf Money and US Universities (Continued) [incl. Middle East studies] May 7, 2008 - Jay P. Greene's Blog A Safe Space to Talk about Islam May 7, 2008 - The Guardian (U.K.) Saudi Cash Seduction is Faustian Pact April 29, 2008 - The Australian Uni Defends Saudi Grant April 24, 2008 - The Australian Spencer and Pipes Explain Jihad April 22, 2008 - The Stanford Review "Extremism" Fear over Islam Studies Donations April 14, 2008 - The Daily Telegraph (London) Saudi Giving at the Heart of a Great Debate Over Middle East Studies April 11, 2008 - Congressional Quarterly Jihad Against West is Well-Entrenched, Author Says [on Walid Phares; incl. higher education] March 31, 2008 - Cybercast News Service Desert Bloom [on academic institutions in the Persian Gulf; quotes Zachary Lockman, Bernard Haykel] March 28, 2008 - Chronicle of Higher Education Following the Foreign Money [incl. the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding; Title VI] March 26, 2008 - National Review Online Rep. Wolf's Questions for Georgetown Over Gift From Saudi Prince Spark Debate [incl. John Esposito, John Voll] March 26, 2008 - Congressional Quarterly DeGioia Insists Center Neutral Despite Saudi Funds [incl. John Esposito, John Voll, Amira Sonbol, Alwaleed Bin Talal Center for Muslim-Christian Understanding] March 14, 2008 - The Hoya (Georgetown University) Prince in £8m Gift for Centre [on Prince Alwaleed Bin Talal] March 14, 2008 - Cambridge News Online Recommended by Campus Watch StaffSaudis's Multi-Million Dollar PR Machine [incl. John Esposito] March 10, 2008 - CBNNews.com Georgetown to Congressman: Don't Worry About Our Petrodollars [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito] February 29, 2008 - Investigate Project on Terrorism Congressman Questions GU Over Saudi Prince's Gift [incl. John Esposito, John Voll] February 22, 2008 - The Hoya (Georgetown University) $20 Million Gift to Muslim Center Questioned [incl. John Esposito, John Voll, Martin Kramer] February 21, 2008 - The Georgetown Voice Georgetown U's Wahhabi Front [incl. John Esposito] February 19, 2008 - FrontPage Magazine Hungry Like Rep. Wolf [on Prince Alwaleed bin Talal's gift to Georgetown U.; John Esposito] February 16, 2008 - Phi Beta Cons Recommended by Campus Watch StaffEsposito at Stanford February 15, 2008 - Frontpage Magazine $20 Million Saudi Gift Is Questioned [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito] February 15, 2008 - Washington Post Wolf to Georgetown: Detail Use of Saudi Millions [on the Prince Alwaleed Bin Talal Center for Muslim-Christian Understanding, John Esposito] February 15, 2008 - Investigate Project on Terrorism Wolf Seeks Additional Details From Georgetown University About Gift to Center for Muslim-Christian Understanding [on the Alwaleed bin Talal Center] February 14, 2008 - Web Site of Rep. Frank Wolf (R-Va) The Fifth Column [on Middle East studies, Title VI, Saudi funding; refs. John Esposito, Hamid Algar] January 23, 2008 - The Conservative Jedi Blog Clinton's Arab Connections Why Aren't People Talking About It? January 22, 2008 - Yid with Lid Blog Al-Babtain Library to Set Up Arabic Language Center in US [on the forthcoming Kuwaiti-funded Arabic Language Center in Eckerd College, Florida] January 22, 2008 - Arab Times (Kuwait) Hillary Clinton and Saudi Funny Money: Conflict of Interest? [incl. Middle East studies at the Univ. of Arkansas] January 21, 2008 - Family Security Matters The Clintons Have Some 'Splainin' to Do [incl. John Esposito] January 21, 2008 - Jihad Watch Recommended by Campus Watch StaffWhat Influence Does Saudi Money Buy? [incl. Mahmoud Ayoub, Prince Alwaleed bin Talal, Sheik Zayed bin Sultan al-Nahyan, Fouad Ajami] January 17, 2008 - Jewish Exponent Recommended by Campus Watch StaffIslamic Economics: What Does It Mean? [incl. Timur Kuran] September 26, 2007 - The Jerusalem Post American Accused in a Plot to Assassinate Bush [incl. Islamic Saudi Academy] February 23, 2005 - New York Times © 2002 - 2013 The Middle East Forum. Campus Watch contact e-mail: [email protected] Donate
{ "url": "http://www.campus-watch.org/survey.php/id/67", "source_domain": "www.campus-watch.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "79112", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:7HBHQR3HLQ5VY7FCYRRQNHMVTFP6BZB3", "WARC-Concurrent-To": "<urn:uuid:73b83789-7a70-47f6-93c2-4a3fb9575b59>", "WARC-Date": "2013-06-18T22:36:56Z", "WARC-IP-Address": "64.131.76.240", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:CGL36R3JUYGCXTVY6RTBPUYG7RLML7TE", "WARC-Record-ID": "<urn:uuid:62425d61-13c2-4fa3-b747-7db1fab66f49>", "WARC-Target-URI": "http://www.campus-watch.org/survey.php/id/67", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:eaabe06d-cf71-4419-9ee3-5e1fa830d2ea>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 22, 23, 51, 52, 117, 118, 174, 199, 200, 285, 308, 309, 391, 432, 433, 548, 584, 585, 637, 663, 664, 749, 785, 786, 836, 862, 863, 946, 980, 981, 1010, 1090, 1091, 1126, 1176, 1177, 1271, 1313, 1314, 1366, 1425, 1426, 1488, 1536, 1537, 1580, 1624, 1625, 1703, 1738, 1739, 1761, 1805, 1806, 1828, 1855, 1856, 1869, 1905, 1906, 1998, 2034, 2035, 2075, 2151, 2152, 2254, 2289, 2290, 2353, 2381, 2382, 2505, 2531, 2532, 2604, 2633, 2634, 2739, 2776, 2777, 2869, 2957, 2958, 3051, 3115, 3116, 3211, 3275, 3276, 3340, 3369, 3370, 3436, 3472, 3473, 3509, 3545, 3546, 3620, 3678, 3679, 3739, 3769, 3770, 3866, 3902, 3903, 3932, 3964, 3965, 3989, 4026, 4027, 4151, 4239, 4240, 4293, 4322, 4323, 4409, 4446, 4447, 4499, 4555, 4556, 4627, 4715, 4716, 4800, 4832, 4833, 4907, 4946, 4947, 5011, 5068, 5069, 5156, 5192, 5193, 5274, 5331, 5332, 5414, 5439, 5440, 5499, 5537, 5538, 5589, 5630, 5631, 5710, 5748, 5749, 5787, 5825, 5826, 5854, 5889, 5890, 5965, 6009, 6010, 6058, 6088, 6089, 6135, 6167, 6168, 6211, 6237, 6238, 6314, 6347, 6348, 6380, 6408, 6409, 6577, 6605, 6606, 6707, 6737, 6738, 6805, 6833, 6834, 6904, 6939, 6940, 7029, 7056, 7057, 7107, 7140, 7141, 7182, 7205, 7206, 7301, 7359, 7360, 7380, 7418, 7419, 7563, 7595, 7596, 7708, 7735, 7736, 7796, 7821, 7822, 7915, 7943, 7944, 7995, 8029, 8030, 8096, 8130, 8131, 8236, 8268, 8269, 8309, 8339, 8340, 8423, 8454, 8455, 8571, 8622, 8623, 8673, 8709, 8710, 8784, 8844, 8845, 8919, 8979, 8980, 9044, 9099, 9100, 9151, 9184, 9185, 9264, 9300, 9301, 9318, 9353, 9354, 9438, 9525, 9526, 9607, 9661, 9662, 9680, 9714, 9715, 9770, 9812, 9813, 9885, 9922, 9923, 9989, 10022, 10023, 10068, 10102, 10103, 10193, 10231, 10232, 10287, 10323, 10324, 10437, 10468, 10469, 10549, 10612, 10613, 10685, 10761, 10762, 10817, 10859, 10860, 10925, 10955, 10956, 10986, 11055, 11056, 11106, 11136, 11137, 11220, 11258, 11259, 11288, 11323, 11324, 11461, 11496, 11497, 11560, 11586, 11587, 11665, 11702, 11703, 11741, 11770, 11771, 11822, 11860, 11861, 11936, 11964, 11965, 12068, 12097, 12098, 12162, 12191, 12192, 12263, 12306, 12307, 12376, 12404, 12405, 12471, 12507, 12508, 12575, 12610, 12611, 12673, 12708, 12709, 12789, 12823, 12824, 12874, 12921, 12922, 12977, 13030, 13031, 13104, 13166, 13167, 13189, 13235, 13236, 13298, 13330, 13331, 13373, 13412, 13413, 13526, 13608, 13609, 13707, 13746, 13747, 13787, 13821, 13822, 13942, 13994, 13995, 14097, 14153, 14154, 14204, 14241, 14242, 14305, 14344, 14345, 14433, 14472, 14473, 14525, 14561, 14562, 14638, 14683, 14684, 14752, 14790, 14791, 14838, 14871, 14872, 14994, 15025, 15026, 15099, 15145, 15146, 15192, 15231, 15232, 15350, 15390, 15391, 15463, 15501, 15502, 15575, 15617, 15618, 15657, 15712, 15713, 15803, 15885, 15886, 16036, 16087, 16088, 16167, 16222, 16223, 16294, 16333, 16334, 16407, 16451, 16452, 16540, 16577, 16578, 16634, 16676, 16677, 16758, 16797, 16798, 16860, 16898, 16899, 16944, 16977, 16978, 17020, 17051, 17052, 17148, 17180, 17181, 17284, 17312, 17313, 17428, 17456, 17457, 17506, 17533, 17534, 17622, 17655, 17656, 17757, 17797, 17798, 17838, 17880, 17881, 17943, 17980, 17981, 18058, 18118, 18119, 18210, 18239, 18240, 18292, 18318, 18319, 18398, 18427, 18428, 18535, 18568, 18569, 18613, 18643, 18644, 18708, 18752, 18753, 18816, 18865, 18866, 18930, 18968, 18969, 19063, 19095, 19096, 19227, 19276, 19277, 19391, 19418, 19419, 19546, 19582, 19583, 19625, 19658, 19659, 19838, 19874, 19875, 19965, 19995, 19996, 20090, 20123, 20124, 20215, 20277, 20278, 20353, 20391, 20392, 20463, 20501, 20502, 20662, 20727, 20728, 20805, 20842, 20843, 20957, 21035, 21036, 21104, 21141, 21142, 21215, 21247, 21248, 21359, 21399, 21400, 21452, 21477, 21478, 21535, 21568, 21569, 21596, 21631, 21632, 21715, 21758, 21759, 21832, 21863, 21864, 21921, 21954, 21955, 22026, 22059, 22060, 22145, 22175, 22176, 22252, 22285, 22286, 22401, 22434, 22435, 22519, 22550, 22551, 22631, 22664, 22665, 22707, 22737, 22738, 22805, 22838, 22839, 22908, 22937, 22938, 22994, 23023, 23024, 23101, 23141, 23142, 23212, 23249, 23250, 23315, 23348, 23349, 23446, 23475, 23476, 23540, 23589, 23590, 23639, 23681, 23682, 23739, 23769, 23770, 23879, 23917, 23918, 23973, 24006, 24007, 24098, 24131, 24132, 24215, 24248, 24249, 24331, 24360, 24361, 24435, 24473, 24474, 24580, 24625, 24626, 24731, 24761, 24762, 24888, 24955, 24956, 25009, 25043, 25044, 25135, 25189, 25190, 25277, 25312, 25313, 25384, 25417, 25418, 25504, 25543, 25544, 25665, 25699, 25700, 25785, 25862, 25863, 25954, 25993, 25994, 26113, 26148, 26149, 26206, 26235, 26236, 26380, 26428, 26429, 26578, 26615, 26616, 26730, 26768, 26769, 26861, 26889, 26890, 26962, 27005, 27006, 27085, 27120, 27121, 27154, 27188, 27189, 27227, 27259, 27260, 27284, 27316, 27317, 27349, 27386, 27387, 27433, 27479, 27480, 27549, 27590, 27591, 27684, 27724, 27725, 27825, 27872, 27873, 27991, 28031, 28032, 28143, 28184, 28185, 28345, 28395, 28396, 28457, 28496, 28497, 28593, 28622, 28623, 28777, 28830, 28831, 28914, 28967, 28968, 29061, 29102, 29103, 29154, 29193, 29194, 29286, 29320, 29321, 29375, 29414, 29415, 29544, 29580, 29581, 29722, 29775, 29776, 29924, 29979, 29980, 30081, 30127, 30128, 30191, 30228, 30229, 30373, 30412, 30413, 30527, 30570, 30571, 30633, 30664, 30665, 30831, 30866, 30867, 30958, 30998, 30999, 31076, 31111, 31112, 31203, 31204 ], "line_end_idx": [ 22, 23, 51, 52, 117, 118, 174, 199, 200, 285, 308, 309, 391, 432, 433, 548, 584, 585, 637, 663, 664, 749, 785, 786, 836, 862, 863, 946, 980, 981, 1010, 1090, 1091, 1126, 1176, 1177, 1271, 1313, 1314, 1366, 1425, 1426, 1488, 1536, 1537, 1580, 1624, 1625, 1703, 1738, 1739, 1761, 1805, 1806, 1828, 1855, 1856, 1869, 1905, 1906, 1998, 2034, 2035, 2075, 2151, 2152, 2254, 2289, 2290, 2353, 2381, 2382, 2505, 2531, 2532, 2604, 2633, 2634, 2739, 2776, 2777, 2869, 2957, 2958, 3051, 3115, 3116, 3211, 3275, 3276, 3340, 3369, 3370, 3436, 3472, 3473, 3509, 3545, 3546, 3620, 3678, 3679, 3739, 3769, 3770, 3866, 3902, 3903, 3932, 3964, 3965, 3989, 4026, 4027, 4151, 4239, 4240, 4293, 4322, 4323, 4409, 4446, 4447, 4499, 4555, 4556, 4627, 4715, 4716, 4800, 4832, 4833, 4907, 4946, 4947, 5011, 5068, 5069, 5156, 5192, 5193, 5274, 5331, 5332, 5414, 5439, 5440, 5499, 5537, 5538, 5589, 5630, 5631, 5710, 5748, 5749, 5787, 5825, 5826, 5854, 5889, 5890, 5965, 6009, 6010, 6058, 6088, 6089, 6135, 6167, 6168, 6211, 6237, 6238, 6314, 6347, 6348, 6380, 6408, 6409, 6577, 6605, 6606, 6707, 6737, 6738, 6805, 6833, 6834, 6904, 6939, 6940, 7029, 7056, 7057, 7107, 7140, 7141, 7182, 7205, 7206, 7301, 7359, 7360, 7380, 7418, 7419, 7563, 7595, 7596, 7708, 7735, 7736, 7796, 7821, 7822, 7915, 7943, 7944, 7995, 8029, 8030, 8096, 8130, 8131, 8236, 8268, 8269, 8309, 8339, 8340, 8423, 8454, 8455, 8571, 8622, 8623, 8673, 8709, 8710, 8784, 8844, 8845, 8919, 8979, 8980, 9044, 9099, 9100, 9151, 9184, 9185, 9264, 9300, 9301, 9318, 9353, 9354, 9438, 9525, 9526, 9607, 9661, 9662, 9680, 9714, 9715, 9770, 9812, 9813, 9885, 9922, 9923, 9989, 10022, 10023, 10068, 10102, 10103, 10193, 10231, 10232, 10287, 10323, 10324, 10437, 10468, 10469, 10549, 10612, 10613, 10685, 10761, 10762, 10817, 10859, 10860, 10925, 10955, 10956, 10986, 11055, 11056, 11106, 11136, 11137, 11220, 11258, 11259, 11288, 11323, 11324, 11461, 11496, 11497, 11560, 11586, 11587, 11665, 11702, 11703, 11741, 11770, 11771, 11822, 11860, 11861, 11936, 11964, 11965, 12068, 12097, 12098, 12162, 12191, 12192, 12263, 12306, 12307, 12376, 12404, 12405, 12471, 12507, 12508, 12575, 12610, 12611, 12673, 12708, 12709, 12789, 12823, 12824, 12874, 12921, 12922, 12977, 13030, 13031, 13104, 13166, 13167, 13189, 13235, 13236, 13298, 13330, 13331, 13373, 13412, 13413, 13526, 13608, 13609, 13707, 13746, 13747, 13787, 13821, 13822, 13942, 13994, 13995, 14097, 14153, 14154, 14204, 14241, 14242, 14305, 14344, 14345, 14433, 14472, 14473, 14525, 14561, 14562, 14638, 14683, 14684, 14752, 14790, 14791, 14838, 14871, 14872, 14994, 15025, 15026, 15099, 15145, 15146, 15192, 15231, 15232, 15350, 15390, 15391, 15463, 15501, 15502, 15575, 15617, 15618, 15657, 15712, 15713, 15803, 15885, 15886, 16036, 16087, 16088, 16167, 16222, 16223, 16294, 16333, 16334, 16407, 16451, 16452, 16540, 16577, 16578, 16634, 16676, 16677, 16758, 16797, 16798, 16860, 16898, 16899, 16944, 16977, 16978, 17020, 17051, 17052, 17148, 17180, 17181, 17284, 17312, 17313, 17428, 17456, 17457, 17506, 17533, 17534, 17622, 17655, 17656, 17757, 17797, 17798, 17838, 17880, 17881, 17943, 17980, 17981, 18058, 18118, 18119, 18210, 18239, 18240, 18292, 18318, 18319, 18398, 18427, 18428, 18535, 18568, 18569, 18613, 18643, 18644, 18708, 18752, 18753, 18816, 18865, 18866, 18930, 18968, 18969, 19063, 19095, 19096, 19227, 19276, 19277, 19391, 19418, 19419, 19546, 19582, 19583, 19625, 19658, 19659, 19838, 19874, 19875, 19965, 19995, 19996, 20090, 20123, 20124, 20215, 20277, 20278, 20353, 20391, 20392, 20463, 20501, 20502, 20662, 20727, 20728, 20805, 20842, 20843, 20957, 21035, 21036, 21104, 21141, 21142, 21215, 21247, 21248, 21359, 21399, 21400, 21452, 21477, 21478, 21535, 21568, 21569, 21596, 21631, 21632, 21715, 21758, 21759, 21832, 21863, 21864, 21921, 21954, 21955, 22026, 22059, 22060, 22145, 22175, 22176, 22252, 22285, 22286, 22401, 22434, 22435, 22519, 22550, 22551, 22631, 22664, 22665, 22707, 22737, 22738, 22805, 22838, 22839, 22908, 22937, 22938, 22994, 23023, 23024, 23101, 23141, 23142, 23212, 23249, 23250, 23315, 23348, 23349, 23446, 23475, 23476, 23540, 23589, 23590, 23639, 23681, 23682, 23739, 23769, 23770, 23879, 23917, 23918, 23973, 24006, 24007, 24098, 24131, 24132, 24215, 24248, 24249, 24331, 24360, 24361, 24435, 24473, 24474, 24580, 24625, 24626, 24731, 24761, 24762, 24888, 24955, 24956, 25009, 25043, 25044, 25135, 25189, 25190, 25277, 25312, 25313, 25384, 25417, 25418, 25504, 25543, 25544, 25665, 25699, 25700, 25785, 25862, 25863, 25954, 25993, 25994, 26113, 26148, 26149, 26206, 26235, 26236, 26380, 26428, 26429, 26578, 26615, 26616, 26730, 26768, 26769, 26861, 26889, 26890, 26962, 27005, 27006, 27085, 27120, 27121, 27154, 27188, 27189, 27227, 27259, 27260, 27284, 27316, 27317, 27349, 27386, 27387, 27433, 27479, 27480, 27549, 27590, 27591, 27684, 27724, 27725, 27825, 27872, 27873, 27991, 28031, 28032, 28143, 28184, 28185, 28345, 28395, 28396, 28457, 28496, 28497, 28593, 28622, 28623, 28777, 28830, 28831, 28914, 28967, 28968, 29061, 29102, 29103, 29154, 29193, 29194, 29286, 29320, 29321, 29375, 29414, 29415, 29544, 29580, 29581, 29722, 29775, 29776, 29924, 29979, 29980, 30081, 30127, 30128, 30191, 30228, 30229, 30373, 30412, 30413, 30527, 30570, 30571, 30633, 30664, 30665, 30831, 30866, 30867, 30958, 30998, 30999, 31076, 31111, 31112, 31203, 31204, 31210 ] }
{ "red_pajama_v2": { "ccnet_original_length": 31210, "ccnet_original_nlines": 800, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.11001615971326828, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019224559888243675, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3158319890499115, "rps_doc_frac_unique_words": 0.2581755518913269, "rps_doc_mean_word_length": 5.2999138832092285, "rps_doc_num_sentences": 201, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.950671672821045, "rps_doc_word_count": 4648, "rps_doc_frac_chars_dupe_10grams": 0.07518064230680466, "rps_doc_frac_chars_dupe_5grams": 0.2473410665988922, "rps_doc_frac_chars_dupe_6grams": 0.1861654669046402, "rps_doc_frac_chars_dupe_7grams": 0.16229601204395294, "rps_doc_frac_chars_dupe_8grams": 0.1470731496810913, "rps_doc_frac_chars_dupe_9grams": 0.10481447726488113, "rps_doc_frac_chars_top_2gram": 0.03945766016840935, "rps_doc_frac_chars_top_3gram": 0.057846881449222565, "rps_doc_frac_chars_top_4gram": 0.04465372860431671, "rps_doc_books_importance": -3172.280517578125, "rps_doc_books_importance_length_correction": -3172.280517578125, "rps_doc_openwebtext_importance": -1775.2838134765625, "rps_doc_openwebtext_importance_length_correction": -1775.2838134765625, "rps_doc_wikipedia_importance": -992.309326171875, "rps_doc_wikipedia_importance_length_correction": -992.309326171875 }, "fasttext": { "dclm": -0.000009890000001178123, "english": 0.8558091521263123, "fineweb_edu_approx": 1.5464881658554077, "eai_general_math": 0.00003052000101888552, "eai_open_web_math": 0.3946745991706848, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "378.196", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Higher and Universities and colleges" } }, "secondary": { "code": "320.956", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "1", "label": "Truncated Snippets" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
832,777,717,084,448,100
7 Worlds Collide 7 Worlds Collide • Websites: • Bio: The first 7 Worlds Collide album, a collection of amazing musical talents from across the globe in aid of Médecins Sans Frontières, was a unique live performance experience ... (more) • Bio: The first 7 Worlds Collide album, a collection of amazing musical talents from across the globe in aid of Médecins Sans Frontières, was a unique live performance experience, fusing the varied talents of a stellar cast across a range of cover versions to create a series of shows that culminated in the live album of the same name. Seven years after that project, instigator Neil Finn has upped the ante with the new 7 Worlds Collide project, The Sun Came Out, a double album of original songs created and recorded by many of the original cast alongside notable new additions in an intense three weeks in his native New Zealand. This time the beneficiaries of this album will be Oxfam, as well as music lovers worldwide. Familiar faces from the original album abound, Johnny Marr, Ed O’Brien and Phil Selway of Radiohead but this album, first and foremost presents the listener with new songs rather than interpretations of old favourites. The Sun Came Out also features a whole host of new guest talents such as KT Tunstall and Wilco and heart stopping firsts, including Phil Selway's songwriting and vocal debut as well as dream collaborations such as those between Johnny Marr and Wilco's Jeff Tweedy; and KT Tunstall and Neil Finn . At the heart of the record is Neil Finn. His enthusiasm and drive persuaded the likes of celebrated producer Jim Scott, Lisa Germano, Johnny Marr and Wilco’s Jeff Tweedy, Pat Sansone, John Stirratt and Glenn Kotche (amongst others) to spend their Christmas holiday in New Zealand and even interrupted KT Tunstall’s honeymoon in the process. With families welcome, the studio became a constant whirl of creativity and energy throughout the three weeks allocated to create the record. Johnny Marr returned from a run on the beach with the basis of ‘Too Blue’, where Jeff Tweedy was waiting to add his talents; KT Tunstall stopped Neil retiring to his bed to complete ‘Hazel Black’; a wandering Johnny Marr added a chorus melody to Liam Finn’s ‘Red Wine Bottle’; Ed O’Brien fashioned ‘Bodhisattva Blues’ from a Tibetan chant. In this atmosphere, anything was possible and Neil’s wife Sharon found herself laying down her debut vocal on ‘Little By Little’ whilst Phil Selway also took his vocal bow and unveiled a hitherto unknown songwriting talent with his solo turn ‘The Ties That Bind Us’ in one take. From Neil’s original doubts over the idea, “I thought, what is this? Is it just an ego thing,”came a double album of astounding collaborations for the listener and amazing memories for all those concerned in the recording. At the center of it all stands Neil Finn, too humble to take the glory himself, it is left to KT Tunstall to give the credit due to the man who made this happen: “It’s Neil. It all comes from him. There’s something about him that made everyone open up creatively.” Jeremy Hobbs, Director of Oxfam International said: "7 Worlds Collide is a great project. I hope The Sun Came Out is a huge success. Not just because it's a unique musical experience but because each CD sold will make a difference -- raising money to fund Oxfam's work to fight poverty." (less) The Sun Came Out The Sun Came Out • 01 download | share Please do not rehost this download.
{ "url": "http://rcrdlbl.com/artists/7_Worlds_Collide/", "source_domain": "rcrdlbl.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "25187", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RVO3BUMOG4BIYGIAI5DRN6A26XTMW5PU", "WARC-Concurrent-To": "<urn:uuid:4af9f3a6-0cf5-4082-aaf7-bb16e5225c3b>", "WARC-Date": "2013-06-19T01:46:23Z", "WARC-IP-Address": "184.169.145.63", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:3BLT6GZ7O533ROFM3I4KDXAFEED24A2A", "WARC-Record-ID": "<urn:uuid:a0ca4f02-fa51-4260-97c4-7db17bb48645>", "WARC-Target-URI": "http://rcrdlbl.com/artists/7_Worlds_Collide/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:10d435ea-c986-4b56-a8cd-0de0cc0c1134>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 17, 18, 35, 49, 242, 971, 972, 1492, 1493, 1838, 1839, 2604, 2605, 3097, 3098, 3390, 3401, 3402, 3419, 3420, 3437, 3444, 3465 ], "line_end_idx": [ 17, 18, 35, 49, 242, 971, 972, 1492, 1493, 1838, 1839, 2604, 2605, 3097, 3098, 3390, 3401, 3402, 3419, 3420, 3437, 3444, 3465, 3504 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3504, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.35395681858062744, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.014388489536941051, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14244604110717773, "rps_doc_frac_unique_words": 0.5092748403549194, "rps_doc_mean_word_length": 4.708262920379639, "rps_doc_num_sentences": 20, "rps_doc_symbol_to_word_ratio": 0.0014388499548658729, "rps_doc_unigram_entropy": 5.2297139167785645, "rps_doc_word_count": 593, "rps_doc_frac_chars_dupe_10grams": 0.1067335233092308, "rps_doc_frac_chars_dupe_5grams": 0.1067335233092308, "rps_doc_frac_chars_dupe_6grams": 0.1067335233092308, "rps_doc_frac_chars_dupe_7grams": 0.1067335233092308, "rps_doc_frac_chars_dupe_8grams": 0.1067335233092308, "rps_doc_frac_chars_dupe_9grams": 0.1067335233092308, "rps_doc_frac_chars_top_2gram": 0.015042980201542377, "rps_doc_frac_chars_top_3gram": 0.030085960403084755, "rps_doc_frac_chars_top_4gram": 0.023280799388885498, "rps_doc_books_importance": -332.85504150390625, "rps_doc_books_importance_length_correction": -332.85504150390625, "rps_doc_openwebtext_importance": -178.74449157714844, "rps_doc_openwebtext_importance_length_correction": -178.74449157714844, "rps_doc_wikipedia_importance": -123.4899673461914, "rps_doc_wikipedia_importance_length_correction": -123.4899673461914 }, "fasttext": { "dclm": 0.0071146502159535885, "english": 0.9376986026763916, "fineweb_edu_approx": 1.0567569732666016, "eai_general_math": 0.004489480052143335, "eai_open_web_math": 0.05788356065750122, "eai_web_code": 0.0007216300000436604 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.4216", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "362.4", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,697,718,154,962,630,000
East Africa: Additional Ugandan and S. Sudanese Troops Join Anti-LRA Force Photo: Arhur Kintu/New Vision Sudanese soldiers ready for combat: Sudan People's Liberation Army sent 500 soldiers to join the African Union task force. Juba — The African Union-initiated Regional Task Force (RTF), established to hunt down the Lord's Resistance Army (LRA) rebels, on Tuesday received 2,000 soldiers from the Ugandan army (UPDF) and 500 from South Sudan army (SPLA). Commanders of the AU Regional Task Force pose for a photo in Juba, South Sudan, March 24, 2012 (ST) The 2,500 troops were handed over to RTF at their base in Yambio, the provincial capital of South Sudan's Western Equatoria state. Abou Moussa, the Special Representative of the United Nations Secretary General, said the handover of the additional troops signal the RTF's collective efforts to put an end to the activities of the LRA, which has caused untold suffering to populations in affected countries. In March this year, four African countries, with the backing of the UN and the AU officially launched a joint military task force aimed at pursuing the LRA rebels and its elusive leader, Joseph Kony. The first batch of the RTF initially comprised of about 5,000 soldiers from Uganda, South Sudan, the Democratic Republic of Congo (DRC) and Central Africa Republic (CAR) initially made up the first batch of the RTF. These are nations that have been greatly affected by over two-decade of the LRA insurgency. Mousa, also the Head of the UN Regional Office for Central Africa (UNOCA), which coordinates UN efforts to address the threat posed by the LRA, further lauded efforts and commitment of these countries towards ending the insurgency, despite other pressing national priorities. He pledged the UN's continued support to the African regional body and other partners, in the implementation of the regional strategy against the LRA, which was adopted by the UN Security Council on 29 June 2012. Moussa, who was on a two-day visit to South Sudan, however, emphasized the need for quick implement the strategy, if the RTF is to achieve its mandate against the LRA problem. The UN, he acknowledged, have been very instrumental in addressing the threat posed by the LRA, specifically citing the UN Mission for Stabilization in Democratic Republic of Congo (MONUSCO) and the United Nations Mission in South Sudan (UNMISS), which provide support to national authorities in the two countries in their responses to the LRA. "The UN Peacekeepers have been offering military escorts and patrols in and around villages and towns where the LRA has been seen, thereby maintaining a level of security that has saved lives", said Moussa, in a statement extended to Sudan Tribune. Meanwhile, the AU Special Envoy for the LRA issue, Francisco Madeira, said the RFT, despite making some progress, still faces logistical, material and financial resource challenges, which limits their operations. The event comes barely a week after 360 soldiers of the Forces Armées Centrafricaines (FACA) were handed over to the AU on 12 September, in CAR, while additional troops are also expected from the DRC in the near future. • Comment Copyright © 2012 Sudan Tribune. All rights reserved. Distributed by AllAfrica Global Media (allAfrica.com). To contact the copyright holder directly for corrections — or for permission to republish or make other authorized use of this material, click here. AllAfrica aggregates and indexes content from over 130 African news organizations, plus more than 200 other sources, who are responsible for their own reporting and views. Articles and commentaries that identify allAfrica.com as the publisher are produced or commissioned by AllAfrica. Comments Post a comment InFocus African Union Steps Up Hunt For Joseph Kony Rebels picture The United Nations has welcomed the addition of 2,500 soldiers to an African Union task force assigned to hunt down Lord's Resistance Army rebels, who have terrorized northern ... Read more »
{ "url": "http://allafrica.com/stories/201209190557.html", "source_domain": "allafrica.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "55267", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LQ5A4WM4J4MABLQ6K6QDORJR2A5K53ZC", "WARC-Concurrent-To": "<urn:uuid:a641ef23-5940-4942-afc9-4e32a64eda61>", "WARC-Date": "2013-06-19T03:19:41Z", "WARC-IP-Address": "173.203.36.104", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:HAWW6CZPUX4YTEDOW2DBAPJO4BUMYNPC", "WARC-Record-ID": "<urn:uuid:998da41c-c63c-42e4-b59e-7d7cea104d4d>", "WARC-Target-URI": "http://allafrica.com/stories/201209190557.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:12db8ccb-9f8e-4318-9d86-1f495c3b6dbc>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 75, 76, 106, 229, 230, 460, 461, 561, 562, 693, 694, 970, 971, 1171, 1172, 1388, 1389, 1481, 1482, 1758, 1759, 1972, 1973, 2149, 2150, 2495, 2496, 2745, 2746, 2959, 2960, 3180, 3181, 3193, 3194, 3451, 3452, 3738, 3739, 3763, 3764, 3772, 3773, 3824, 3825, 3833, 3834 ], "line_end_idx": [ 75, 76, 106, 229, 230, 460, 461, 561, 562, 693, 694, 970, 971, 1171, 1172, 1388, 1389, 1481, 1482, 1758, 1759, 1972, 1973, 2149, 2150, 2495, 2496, 2745, 2746, 2959, 2960, 3180, 3181, 3193, 3194, 3451, 3452, 3738, 3739, 3763, 3764, 3772, 3773, 3824, 3825, 3833, 3834, 4025 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4025, "ccnet_original_nlines": 47, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3381389379501343, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05635648965835571, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17038008570671082, "rps_doc_frac_unique_words": 0.48750001192092896, "rps_doc_mean_word_length": 5.073437690734863, "rps_doc_num_sentences": 25, "rps_doc_symbol_to_word_ratio": 0.001310619991272688, "rps_doc_unigram_entropy": 5.1806817054748535, "rps_doc_word_count": 640, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.02648599073290825, "rps_doc_frac_chars_dupe_6grams": 0.02648599073290825, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01693871058523655, "rps_doc_frac_chars_top_3gram": 0.014782880432903767, "rps_doc_frac_chars_top_4gram": 0.01293502002954483, "rps_doc_books_importance": -388.1764221191406, "rps_doc_books_importance_length_correction": -388.1764221191406, "rps_doc_openwebtext_importance": -198.92752075195312, "rps_doc_openwebtext_importance_length_correction": -198.92752075195312, "rps_doc_wikipedia_importance": -161.52212524414062, "rps_doc_wikipedia_importance_length_correction": -161.52212524414062 }, "fasttext": { "dclm": 0.0026628999039530754, "english": 0.9475252628326416, "fineweb_edu_approx": 2.1519510746002197, "eai_general_math": 0.005125110037624836, "eai_open_web_math": 0.12611454725265503, "eai_web_code": 0.00026733000413514674 } }
{ "free_decimal_correspondence": { "primary": { "code": "355.4", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "" } }, "secondary": { "code": "327.6969", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "International relations and World politics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,528,091,782,118,177,000
Gun sales boom as election looms - KCBD NewsChannel 11 Lubbock Gun sales boom as election looms Posted: Updated: LUBBOCK, TX (KCBD) - Gun sales nationwide are through the roof and some speculate the looming election may be to blame. Sharpshooters Inc. in Lubbock says they often see an increase in gun sales come election season, but it's never been this drastic. They estimate a 40 percent increase in their sales recently. Last year, the FBI received over 16 million background check inquiries for potential gun buyers. Texas accounted for one million of these requests over each of the past four years. Texas came second only to Kentucky, which had nearly double the amount of requests. J.D. Clay is a salesman at Sharpshooters. He says a lot of customers come in because they're concerned about the future of their second amendment rights if Obama is elected again. "Now that it's election season again, you have people uncertain… You have a customer or two coming in and saying that they're buying because they're afraid they won't be able to get it soon," Clay said. Clay said that if Obama were to pass legislation banning some types of firearms that it wouldn't be the first time. In 1994, President Bill Clinton signed a bill that banned certain assault weapons, but it expired ten years later. Months after he signed that bill, voters went to the polls and both the House and the Senate flipped control from Democratic to Republican. Lubbock County Democratic Party Chair Pam Brink was shocked to hear people were trying to correlate the two. She said Americans love their guns and that this was totally out of the blue. "President Obama has not changed his gun policy in the four years he's been in office. In fact, he's been generous," Brink said. Brink believes that the boom in gun sales shows that the economy has improved. She says now that people have more cash in their pockets, they're going out to purchase the things they love. Although Sharpshooters is enjoying the business increase, they don't believe this is a huge issue and they're not worried they'll have to put down their guns anytime soon. Copyright 2012 KCBD. All rights reserved.
{ "url": "http://www.kcbd.com/story/17151444/gun-sales-boom-as-election-looms", "source_domain": "www.kcbd.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "40643", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2VQGLJJJBQV2VLACV46FS7RJ5GPG3CCV", "WARC-Concurrent-To": "<urn:uuid:11045c93-d43d-4350-a605-0c4a3b40e954>", "WARC-Date": "2013-05-24T16:39:19Z", "WARC-IP-Address": "165.254.27.91", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:4FFNQCBSL56UMRJCVXNBH6A2VCSWHL3W", "WARC-Record-ID": "<urn:uuid:8a792157-dcdf-4283-a323-0ea85f242895>", "WARC-Target-URI": "http://www.kcbd.com/story/17151444/gun-sales-boom-as-election-looms", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4e6e8b4a-166e-4b41-aeb3-c6341da1eb40>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 63, 64, 97, 98, 115, 136, 137, 236, 237, 429, 430, 695, 696, 876, 877, 1080, 1081, 1452, 1453, 1640, 1641, 1770, 1771, 1960, 1961, 2133, 2134 ], "line_end_idx": [ 63, 64, 97, 98, 115, 136, 137, 236, 237, 429, 430, 695, 696, 876, 877, 1080, 1081, 1452, 1453, 1640, 1641, 1770, 1771, 1960, 1961, 2133, 2134, 2175 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2175, "ccnet_original_nlines": 27, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.44343891739845276, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.018099550157785416, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14479638636112213, "rps_doc_frac_unique_words": 0.5555555820465088, "rps_doc_mean_word_length": 4.693767070770264, "rps_doc_num_sentences": 24, "rps_doc_symbol_to_word_ratio": 0.0022624400444328785, "rps_doc_unigram_entropy": 5.009943008422852, "rps_doc_word_count": 369, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.031177829951047897, "rps_doc_frac_chars_dupe_6grams": 0.031177829951047897, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02309468947350979, "rps_doc_frac_chars_top_3gram": 0.013856809586286545, "rps_doc_frac_chars_top_4gram": 0.01616627909243107, "rps_doc_books_importance": -192.59507751464844, "rps_doc_books_importance_length_correction": -192.59507751464844, "rps_doc_openwebtext_importance": -94.98883056640625, "rps_doc_openwebtext_importance_length_correction": -94.98883056640625, "rps_doc_wikipedia_importance": -50.140987396240234, "rps_doc_wikipedia_importance_length_correction": -50.140987396240234 }, "fasttext": { "dclm": 0.02638917975127697, "english": 0.9908638000488281, "fineweb_edu_approx": 1.1197822093963623, "eai_general_math": 0.0016703000292181969, "eai_open_web_math": 0.023060740903019905, "eai_web_code": 0.00039892998756840825 } }
{ "free_decimal_correspondence": { "primary": { "code": "323.119", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "Human rights, Ethnic relations, Race relations, and Minorities" } }, "secondary": { "code": "338.476", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,144,780,344,858,929,000
  You no longer follow Thomas You will no longer see updates from this user when they write new reviews, or suggestions based on their library or recommendations. You can re-follow a user if you change your mind. OK You now follow Thomas You will receive updates from this user when they write new reviews, or suggestions based on their library or recommendations. You can unfollow a user if you change your mind. OK Thomas Jasper, IN, United States | Member Since 2011 2 HELPFUL VOTES • 3 reviews • 4 ratings • 85 titles in library • 8 purchased in 2013 FOLLOWING 0 FOLLOWERS 0 • Listening Is an Act of Love • ABRIDGED (55 mins) • By Dave Isay • Narrated By Dave Isay Overall (1243) Performance (1045) Story (1050) Drawn from the work of StoryCorps, the largest and most ambitious private oral history project in American history, comes this tapestry of the stories Americans have been sharing from their lives to leave behind to their loved ones. Debra says: "Touching" "Awesome Stories" Overall Performance Story What did you love best about Listening Is an Act of Love? This is an awesome listen, we need to hear these stories to help stay grounded. What did you like best about this story? the realness of the stories Which character – as performed by Dave Isay – was your favorite? All of them Was this a book you wanted to listen to all in one sitting? most definetly 0 of 0 people found this review helpful • The Energy Bus: 10 Rules to Fuel Your Life, Work, and Team with Positive Energy • UNABRIDGED (2 hrs and 53 mins) • By Jon Gordon • Narrated By Jon Gordon • Whispersync for Voice-ready Overall (153) Performance (84) Story (82) In the mode of other best selling business fables The Energy Bus, takes listeners on an enlightening and inspiring ride that reveals 10 secrets for approaching life and work with the kind of positive, forward thinking that leads to true accomplishment - at work and at home. Everyone faces challenges. And every person, organization, company and team will have to overcome negativity and adversity to define themselves and create their success. Shemia says: "Simple, straightforward" "Awesome informative read" Overall Performance Story What made the experience of listening to The Energy Bus the most enjoyable? It was exactly what I was needing, when I needed it What did you like best about this story? It was put in a way that made it easy to understand, and a way that everyone could relate too. What does Jon Gordon bring to the story that you wouldn’t experience if you just read the book? I think so, he can tell it the way it is suppose to be said. What did you learn from The Energy Bus that you would use in your daily life? That a good positive mental outlook and positive energy will go a lot further than the opposite. 0 of 0 people found this review helpful • Start Something That Matters • UNABRIDGED (4 hrs and 50 mins) • By Blake Mycoskie • Narrated By Blake Mycoskie Overall (180) Performance (163) Story (162) What matters most to you? Should you focus on earning a living, pursuing your passions, or devoting yourself to the causes that inspire you? The surprising truth is that you don’t have to choose—and that you’ll find more success if you don’t. That’s the breakthrough message of the TOMS One for One movement. You don’t have to be rich to give back and you don’t have to retire to spend every day doing what you love. You can find profit, passion, and meaning all at once—right now. Thundersinspring says: "My eyes welled up several times!" "AWESOME" Overall Performance Story Would you recommend this audiobook to a friend? If so, why? I have recommended this books to many friends, already I just love the story but also the fact that it gives you resoiurces to use to follow your own passion to be able to "Start something that Matters" What did you like best about this story? His Story on how he got started and then how his ideas began to grow. Which character – as performed by Blake Mycoskie – was your favorite? Blake himself Was this a book you wanted to listen to all in one sitting? I've listened to it twice now and have gone out a baught a copy to tab and highlight for future references. Any additional comments? I would encourage everyone with a passion about anything to go and read this one. 2 of 2 people found this review helpful Report Inappropriate Content If you find this review inappropriate and think it should be removed from our site, let us know. This report will be reviewed by Audible and we will take appropriate action. CANCEL Thank You Your report has been received. It will be reviewed by Audible and we will take appropriate action.
{ "url": "http://www.audible.com/listener/A3SZ2XHIOHOZWI/Listening-Is-an-Act-of-Love/ref=pd_seeReview_1_2?asin=B002V5B75Y", "source_domain": "www.audible.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "46532", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:U3W54RB66VPMRLWGNSWM7QDCGASMHVQH", "WARC-Concurrent-To": "<urn:uuid:a8ffeb1e-b112-4544-875c-908ee13aebc0>", "WARC-Date": "2013-05-23T05:48:31Z", "WARC-IP-Address": "72.21.211.97", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ZNAHWWWMUG3CBCKJLVLT7JZMGOV2H44G", "WARC-Record-ID": "<urn:uuid:18697efb-47bd-4ff9-b69c-c244a975fc44>", "WARC-Target-URI": "http://www.audible.com/listener/A3SZ2XHIOHOZWI/Listening-Is-an-Act-of-Love/ref=pd_seeReview_1_2?asin=B002V5B75Y", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c8ed5a13-1288-4ec6-9b6a-3e0436dbf60f>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 2, 3, 31, 32, 165, 166, 216, 217, 220, 221, 243, 244, 371, 372, 421, 422, 425, 426, 433, 434, 480, 481, 483, 497, 511, 525, 550, 574, 584, 586, 596, 598, 599, 631, 632, 657, 676, 704, 716, 727, 743, 754, 764, 775, 776, 1013, 1014, 1041, 1063, 1075, 1091, 1101, 1163, 1164, 1248, 1249, 1250, 1295, 1296, 1328, 1329, 1330, 1399, 1400, 1416, 1417, 1418, 1482, 1483, 1502, 1503, 1504, 1548, 1632, 1633, 1670, 1690, 1719, 1753, 1765, 1775, 1791, 1800, 1810, 1819, 1820, 2269, 2270, 2313, 2344, 2356, 2372, 2382, 2462, 2463, 2519, 2520, 2521, 2566, 2567, 2666, 2667, 2668, 2768, 2769, 2834, 2835, 2836, 2918, 2919, 3020, 3021, 3022, 3066, 3099, 3100, 3137, 3161, 3194, 3206, 3216, 3232, 3242, 3252, 3262, 3263, 3749, 3750, 3812, 3826, 3838, 3854, 3864, 3928, 3929, 4136, 4137, 4138, 4183, 4184, 4258, 4259, 4260, 4334, 4335, 4353, 4354, 4355, 4419, 4420, 4532, 4533, 4534, 4563, 4564, 4650, 4651, 4695, 4696, 4725, 4726, 4900, 4901, 4908, 4909, 4919, 4920 ], "line_end_idx": [ 2, 3, 31, 32, 165, 166, 216, 217, 220, 221, 243, 244, 371, 372, 421, 422, 425, 426, 433, 434, 480, 481, 483, 497, 511, 525, 550, 574, 584, 586, 596, 598, 599, 631, 632, 657, 676, 704, 716, 727, 743, 754, 764, 775, 776, 1013, 1014, 1041, 1063, 1075, 1091, 1101, 1163, 1164, 1248, 1249, 1250, 1295, 1296, 1328, 1329, 1330, 1399, 1400, 1416, 1417, 1418, 1482, 1483, 1502, 1503, 1504, 1548, 1632, 1633, 1670, 1690, 1719, 1753, 1765, 1775, 1791, 1800, 1810, 1819, 1820, 2269, 2270, 2313, 2344, 2356, 2372, 2382, 2462, 2463, 2519, 2520, 2521, 2566, 2567, 2666, 2667, 2668, 2768, 2769, 2834, 2835, 2836, 2918, 2919, 3020, 3021, 3022, 3066, 3099, 3100, 3137, 3161, 3194, 3206, 3216, 3232, 3242, 3252, 3262, 3263, 3749, 3750, 3812, 3826, 3838, 3854, 3864, 3928, 3929, 4136, 4137, 4138, 4183, 4184, 4258, 4259, 4260, 4334, 4335, 4353, 4354, 4355, 4419, 4420, 4532, 4533, 4534, 4563, 4564, 4650, 4651, 4695, 4696, 4725, 4726, 4900, 4901, 4908, 4909, 4919, 4920, 5018 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5018, "ccnet_original_nlines": 167, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.396246075630188, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02085505984723568, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17831073701381683, "rps_doc_frac_unique_words": 0.4142512083053589, "rps_doc_mean_word_length": 4.466183662414551, "rps_doc_num_sentences": 40, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.31158447265625, "rps_doc_word_count": 828, "rps_doc_frac_chars_dupe_10grams": 0.10600323975086212, "rps_doc_frac_chars_dupe_5grams": 0.19848567247390747, "rps_doc_frac_chars_dupe_6grams": 0.19091400504112244, "rps_doc_frac_chars_dupe_7grams": 0.1638723611831665, "rps_doc_frac_chars_dupe_8grams": 0.1638723611831665, "rps_doc_frac_chars_dupe_9grams": 0.1238507330417633, "rps_doc_frac_chars_top_2gram": 0.0067604100331664085, "rps_doc_frac_chars_top_3gram": 0.013520820066332817, "rps_doc_frac_chars_top_4gram": 0.011357489973306656, "rps_doc_books_importance": -484.6587829589844, "rps_doc_books_importance_length_correction": -484.6587829589844, "rps_doc_openwebtext_importance": -250.20542907714844, "rps_doc_openwebtext_importance_length_correction": -250.20542907714844, "rps_doc_wikipedia_importance": -180.28866577148438, "rps_doc_wikipedia_importance_length_correction": -180.28866577148438 }, "fasttext": { "dclm": 0.0003697900101542473, "english": 0.9521796703338623, "fineweb_edu_approx": 1.4370203018188477, "eai_general_math": 0.0028742600698024035, "eai_open_web_math": 0.07365698367357254, "eai_web_code": 0.00006222999945748597 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.42", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "025.044", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "14", "label": "Reviews/Critiques" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "24", "label": "User Review" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-6,545,109,824,602,445,000
BeneficialAddiction Stories Written (10) Title Age Rating Reviews Chapters Complete Words Try Outs Everyone 4.5/5 140 6 Yes 7858 New Chapter When the jocks at Forks High School start getting on their nerves, the Cullen boys decide it’s time to give them a taste of their own medicine. ***Some Eclipse References*** Completed for now, but I may add more if inspiration strikes. I've redone CH 1 par all my reviewers who caught Edward's slipup. Sorry 'bout that. Fallen Angel Broken Song Everyone 4.5/5 192 15 No 15934 Banner by Marauder by Midnight Banner 1 What if... Edward wasn't as strong as we thought he was? ***Eclipse References*** Twilight the Musical Everyone 5/5 17 7 No 3466 Twilight characters put their lives to song. Professor Cuddles Everyone 4.5/5 28 1 Yes 796 Alice has something that Bella apparently suggested and that has Edward testy. What did she go and do now? Vitamin V Everyone 5/5 73 7 No 5023 Generated image Rosalie makes a startling online discovery that could change the lives of the Cullens as we know it. Chicken Soup Everyone 5/5 22 1 Yes 1084 When Edward and Alice contract the flu, how does Bella react? Basswood Guitar Everyone 5/5 20 6 No 4356 Generated image When Jasper finds an old basswood guitar at a rummage sale, will he rediscover an old passion in himself? Leashed Everyone 5/5 14 7 No 4255 Generated image Jacob has always been willing to do anything for Bella. Now Bella is willing to let him do anything for her. Edward is a little more convincing, Jacob a little more usable, and Bella just a little more vindictive. “He left me! No, no, no! How could he do this? How could he leave me? No, no, he can’t leave me! He left me!” she sobbed. “He left me!” Bella choked, caught her breath. Raised her head, eyes glittering. HE LEFT ME. Missunderstand Me Everyone 5/5 5 1 Yes 998 Create your own banner at mybannermaker.com! One Shot This is my take on the missing scene from New Moon, when Edward confronts Jasper after the papercut incident. Revised The One Thing I'd Deny Her Everyone 5/5 5 1 Yes 1352 Jasper loves Alice. He'd do anything for her. Anything. So is there one thing he will deny her? Reposted with Corrections Series Written (0) Title Rating Reviews Stories
{ "url": "http://www.twilightarchives.com/users/874", "source_domain": "www.twilightarchives.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "22231", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:EVTVUGVS2ZYWHLZ54Z6O45G4IEGU6GNU", "WARC-Concurrent-To": "<urn:uuid:3d39cc5a-1925-4fec-80b3-584f5db4058c>", "WARC-Date": "2013-05-24T08:45:11Z", "WARC-IP-Address": "72.251.218.88", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:4D3ANGALBXUXPZXSHSPDCNQZ3RI6OWDN", "WARC-Record-ID": "<urn:uuid:899ad1a6-7fdc-4d4b-b851-5ca2885c0390>", "WARC-Target-URI": "http://www.twilightarchives.com/users/874", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:68df67bf-9e2d-44df-ba84-4a92cd37fb08>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 20, 21, 42, 43, 92, 131, 463, 519, 641, 688, 733, 779, 886, 922, 1039, 1079, 1141, 1183, 1305, 1339, 1784, 1827, 1872, 1999, 2052, 2174, 2175, 2194, 2195 ], "line_end_idx": [ 20, 21, 42, 43, 92, 131, 463, 519, 641, 688, 733, 779, 886, 922, 1039, 1079, 1141, 1183, 1305, 1339, 1784, 1827, 1872, 1999, 2052, 2174, 2175, 2194, 2195, 2223 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2223, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.30142566561698914, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.016293279826641083, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2729124128818512, "rps_doc_frac_unique_words": 0.5674300193786621, "rps_doc_mean_word_length": 4.43765926361084, "rps_doc_num_sentences": 37, "rps_doc_symbol_to_word_ratio": 0.0020366599783301353, "rps_doc_unigram_entropy": 5.149837017059326, "rps_doc_word_count": 393, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.017201829701662064, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04013761132955551, "rps_doc_frac_chars_top_3gram": 0.022362390533089638, "rps_doc_frac_chars_top_4gram": 0.01834861934185028, "rps_doc_books_importance": -202.2469940185547, "rps_doc_books_importance_length_correction": -202.2469940185547, "rps_doc_openwebtext_importance": -98.20408630371094, "rps_doc_openwebtext_importance_length_correction": -98.20408630371094, "rps_doc_wikipedia_importance": -55.23422622680664, "rps_doc_wikipedia_importance_length_correction": -55.23422622680664 }, "fasttext": { "dclm": 0.011953470297157764, "english": 0.9234578609466553, "fineweb_edu_approx": 1.036771535873413, "eai_general_math": 0.0027506400365382433, "eai_open_web_math": 0.2552146315574646, "eai_web_code": 0.0008054400095716119 } }
{ "free_decimal_correspondence": { "primary": { "code": "813.6", "labels": { "level_1": "Literature", "level_2": "American literature", "level_3": "American fiction" } }, "secondary": { "code": "025.04", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "9", "label": "Personal/Misc" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "2", "label": "About (Personal)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
4,674,915,730,112,592,000
Investor InformationCorporate GovernanceFinancial & Media Contacts Stock Quote Corporate Governance Frequently Asked Questions         Board Structure How many directors serve on the Board of Directors? Presently, twelve. A current list of our directors can be found here. Does the Board of Directors satisfy the independence requirements of the New York Stock Exchange? Yes. Eleven of our twelve directors are independent, with the one exception being John D. Finnegan, our Chairman, President and Chief Executive Officer. Do your Audit Committee, Corporate Governance & Nominating Committee and Organization & Compensation Committee satisfy the independence requirements of the New York Stock Exchange? Only independent directors serve on each of these committees. Do you have a Lead Director? James M. Zimmerman, an independent director, presently serves as Lead Director. What is the function of the Lead Director? The Lead Director ensures that our Board of Directors remains independent of management by acting as an intermediary between the non-employee directors and management when special circumstances exist or communication out of the ordinary course is necessary. How often do your independent directors meet in executive session without any members of management? Our independent directors meet in executive session without any members of management after most regularly scheduled board meetings.   Director Nominations Where can I find information about the qualifications and other factors that the Corporate Governance & Nominating Committee evaluates in selecting nominees to serve as directors? This information is available in our Corporate Governance Guidelines. Will the Corporate Governance & Nominating Committee consider individuals I suggest as potential director nominees? Yes. The Corporate Governance & Nominating Committee considers suggestions from many sources, including shareholders, regarding possible candidates for director. The procedures a shareholder wishing to propose a director candidate should follow are described in our Bylaws and Corporate Governance Guidelines. Contacting Our Board of Directors and Audit Committee How can I contact your Board of Directors? The procedures for contacting our board of directors, the Chairman of the Board, the Lead Director or any individual director can be found in our Corporate Governance Guidelines. Who should I contact if I have a concern about Chubb's accounting, internal accounting controls or auditing matters? Contact the Audit Committee. The procedures for relaying concerns about our accounting, internal accounting controls or auditing matters are described in our Corporate Governance Guidelines.   Management Where can I find information about Chubb’s management? Information about our senior officers can be found here.   Corporate Governance Materials and SEC Filings Where can I obtain copies of your corporate governance documents? Copies of our certificate of incorporationBy-Lawskey committee charterscorporate governance guidelinescodes of business conduct  and ethics and other materials are available on this Web site. Shareholders may also request copies of these materials by writing to: Corporate Secretary The Chubb Corporation 15 Mountain View Road P.O. Box 1615 Warren, NJ 07061-1615 Where can I find copies of your SEC filings? Copies of our most recent SEC filings are available on this Web site. The SEC maintains a Web site at www.sec.gov that contains our SEC filings since 1994. Shareholders also may obtain copies by writing to our Corporate Secretary at the address provided above.   Commitment to Diversity Where can I find information on your commitment to diversity? Information regarding our commitment to diversity can be found here.   Transfer Agent Who serves as your transfer agent? Computershare Shareholder Services LLC   Independent Auditor Who serves as your independent auditor? Ernst & Young LLP     PDFs require the free Adobe Acrobat Reader. Get it here.
{ "url": "http://chubb.com/investors/chubb3243.html", "source_domain": "chubb.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "27301", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:62JSMCG5INMW2NQ37SX23KDJ5ES34SPH", "WARC-Concurrent-To": "<urn:uuid:97a38917-6cb1-472e-9113-69aa4dd57f95>", "WARC-Date": "2013-06-20T12:06:04Z", "WARC-IP-Address": "164.44.64.195", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ML7RSAD5VEVTS3YPU4GCQZU4XS36KLRH", "WARC-Record-ID": "<urn:uuid:4787dd60-b09b-40db-b82d-ea4078b9be38>", "WARC-Target-URI": "http://chubb.com/investors/chubb3243.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:03dd6193-854b-4c64-bd4d-e776170350ea>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 1, 2, 69, 81, 82, 130, 132, 133, 135, 136, 138, 139, 141, 142, 158, 159, 211, 281, 282, 380, 533, 534, 715, 777, 778, 807, 887, 888, 931, 1189, 1190, 1291, 1424, 1425, 1427, 1428, 1449, 1450, 1630, 1700, 1701, 1817, 2127, 2128, 2129, 2183, 2184, 2227, 2406, 2407, 2524, 2715, 2716, 2718, 2719, 2730, 2731, 2786, 2843, 2844, 2846, 2847, 2894, 2895, 2961, 3224, 3225, 3245, 3267, 3289, 3303, 3325, 3326, 3371, 3632, 3633, 3635, 3636, 3660, 3661, 3723, 3792, 3793, 3795, 3796, 3811, 3812, 3847, 3886, 3887, 3889, 3890, 3910, 3911, 3951, 3969, 3970, 3972, 3973, 3975, 3976 ], "line_end_idx": [ 1, 2, 69, 81, 82, 130, 132, 133, 135, 136, 138, 139, 141, 142, 158, 159, 211, 281, 282, 380, 533, 534, 715, 777, 778, 807, 887, 888, 931, 1189, 1190, 1291, 1424, 1425, 1427, 1428, 1449, 1450, 1630, 1700, 1701, 1817, 2127, 2128, 2129, 2183, 2184, 2227, 2406, 2407, 2524, 2715, 2716, 2718, 2719, 2730, 2731, 2786, 2843, 2844, 2846, 2847, 2894, 2895, 2961, 3224, 3225, 3245, 3267, 3289, 3303, 3325, 3326, 3371, 3632, 3633, 3635, 3636, 3660, 3661, 3723, 3792, 3793, 3795, 3796, 3811, 3812, 3847, 3886, 3887, 3889, 3890, 3910, 3911, 3951, 3969, 3970, 3972, 3973, 3975, 3976, 4032 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4032, "ccnet_original_nlines": 101, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3225308656692505, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03395061939954758, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11882715672254562, "rps_doc_frac_unique_words": 0.40140846371650696, "rps_doc_mean_word_length": 5.84683084487915, "rps_doc_num_sentences": 45, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.9543986320495605, "rps_doc_word_count": 568, "rps_doc_frac_chars_dupe_10grams": 0.07828967273235321, "rps_doc_frac_chars_dupe_5grams": 0.2351701259613037, "rps_doc_frac_chars_dupe_6grams": 0.14272809028625488, "rps_doc_frac_chars_dupe_7grams": 0.11020776629447937, "rps_doc_frac_chars_dupe_8grams": 0.07828967273235321, "rps_doc_frac_chars_dupe_9grams": 0.07828967273235321, "rps_doc_frac_chars_top_2gram": 0.06293284893035889, "rps_doc_frac_chars_top_3gram": 0.028906960040330887, "rps_doc_frac_chars_top_4gram": 0.0457693487405777, "rps_doc_books_importance": -251.7688446044922, "rps_doc_books_importance_length_correction": -251.7688446044922, "rps_doc_openwebtext_importance": -126.0549087524414, "rps_doc_openwebtext_importance_length_correction": -126.0549087524414, "rps_doc_wikipedia_importance": -57.868507385253906, "rps_doc_wikipedia_importance_length_correction": -57.868507385253906 }, "fasttext": { "dclm": 0.00003839000055450015, "english": 0.9023997187614441, "fineweb_edu_approx": 0.9610142707824707, "eai_general_math": 0.0029193200170993805, "eai_open_web_math": 0.16886568069458008, "eai_web_code": 0.00023812000290490687 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.4", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "658.3", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "9", "label": "FAQ" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,971,845,943,212,383,000
happy birthday to me Friday is my birthday… I don’t even want to talk about how old I’m going to be. Being a grown up sucks. Let’s just leave it at that. I had promised myself that I would make my own birthday cake this year. Chocolate and peanut butter, of course. Because what is better than chocolate and peanut butter? (Nothing, that’s what). I surprised even myself with this one. Very rarely does something that I make really blow me out of the water. I mean, of course it’s good or else I wouldn’t post it, but it’s just silly to think that every single recipe I make is going to be mind-blowingly good. This recipe, though… Mind = Blown. It was so good that I even froze a piece to save for my actual birthday on Friday. It was so good I didn’t want to send it to work with the Boyfriend. I just wanted to keep it at home all to myself. The cake was so incredibly moist, the peanut butter frosting was perfect in flavor and texture, and yeah I technically “messed up” the ganache layer (aesthetically speaking), but flavor wise… my god. So good. It was totally worth the extra trip to Sur La Table for a third cake pan. So worthy of being the first cake to be displayed on my brand new cake stand (which, by the way, was a steal at Homegoods). It was so good that I think I found my new go-to chocolate cake recipe. On top of all of that… it’s so easy to make the cake layer that you don’t even need a mixer. Yep, you read that right, NO MIXER REQUIRED. I don’t know if that piece in the freezer will make it to my birthday……. I mean, just look at that thing. I’m drooling just thinking about it. Chocolate Cake with Peanut Butter Frosting [ Printable Recipe ] • 2 cups all-purpose flour • 2 1/2 cups sugar • 3/4 cup unsweetened cocoa powder, preferably Dutch process • 2 teaspoons baking soda • 1 teaspoon salt • 1 cup neutral vegetable oil • 1 cup sour cream • 1 1/2 cups water • 2 tablespoons distilled white vinegar • 1 teaspoon vanilla extract • 2 eggs 1. Preheat the oven to 350 degrees F and prepare three 8-inch cake pans with butter and parchment 2. Sift the flour, sugar, cocoa powder, baking soda, and salt into a large bowl and whisk to combine. Add the oil and sour cream and whisk to blend. Gradually beat in the water. Once the water is incorporated, add the vinegar and vanilla. Whisk in the eggs and continue to beat until well blended. Scrape down the sides and bottom of the bowl to make sure there are no flour bombs lurking in there. Divide the batter evenly among the 3 prepared cake pans. 3. Bake for 30 to 35 minutes, or until a cake tester or wooden toothpick inserted in the center comes out almost clean. I was able to fit all three on one rack in the middle of my oven. If you can’t, just put two on the bottom 1/3 and one on the top 1/3 and rotate about 20 minutes into baking… but be careful or they might fall! 4. Let cool in the pans for about 20 minutes. Invert onto wire racks, carefully peel off the paper liners, and let cool completely. The cakes are very soft – chill the cooled cakes in the freezer for 30 minutes (or overnight if you don’t want to do it all in one day) before continuing. 5. To frost the cake, place one layer, flat side up, on a cake stand or large serving plate. Spread 2/3 cups of the peanut butter frosting evenly over the top. Repeat with the next layer. Place the last layer on top and frost the top and sides of the cake with the remaining frosting. Smitten Kitchen Recommends: 1: Making a crumb coat of frosting–a thin layer that binds the dark crumbs to the cake so they don’t show up in the final outer frosting layer–is a great idea for this cake, or any with a dark cake and lighter-colored frosting. Once you “mask” your cake, let it chill for 15 to 30 minutes until firm, then use the remainder of the frosting to create a smooth final coating. 2: Once the cake is fully frosted, it helps to chill it again and let it firm up. The cooler and more set the peanut butter frosting is, the better drip effect you’ll get from the Chocolate-Peanut Butter Glaze.) 6. To decorate with the Chocolate–Peanut Butter Glaze, put the cake plate on a large baking sheet to catch any drips. Simply pour the glaze over the top of the cake, and using an offset spatula, spread it evenly over the top just to the edges so that it runs down the sides of the cake in long drips. Refrigerate, uncovered, for at least 30 minutes to allow the glaze and frosting to set completely. Remove about 1 hour before serving. This is where I failed – my glaze did not want to drip in a pretty fashion, so I just went for it and used it to cover the entire cake. Honestly, I can’t imagine not having the chocolate ganache all over the cake. I think it was a good move, but if you want it to look fancier, go ahead and try the drippy method. Peanut Butter Frosting Makes about 5 cups • 10 ounces cream cheese, at room temperature* (I used 8, because I only had one package of cream cheese and I wasn’t going to run to the store again) • 1 stick (4 ounces) unsalted butter, at room temperature • ½ teaspoon vanilla extract • 5 cups powdered sugar • 2/3 cup smooth peanut butter 1. In a large bowl with an electric mixer, beat the cream cheese and butter until light and fluffy. Beat in vanilla. Gradually add the confectioners’ sugar 1 cup at a time, mixing thoroughly after each addition and scraping down the sides of the bowl often. Continue to beat on medium speed until light and fluffy, 3 to 4 minutes. 2. Add the peanut butter and beat until thoroughly blended. Taste it…. you know, for quality control Chocolate-Peanut Butter Glaze Makes about 1 1/2 cups • 8 ounces semisweet chocolate, coarsely chopped • 3 tablespoons smooth peanut butter • 2 tablespoons light corn syrup • 1/2 cup half-and-half 1. In the top of a double boiler or in a bowl set over simmering water, combine the chocolate, peanut butter, and corn syrup. Cook, whisking often, until the chocolate is melted and the mixture is smooth. 2. Remove from the heat and whisk in the half-and-half, beating until smooth. Use while still warm. Once the cake is fully frosted, it helps to chill it again and let it firm up. The cooler and more set the peanut butter frosting is, the better drip effect you’ll get from the Chocolate-Peanut Butter Glaze.)  To decorate with the Chocolate–Peanut Butter Glaze, put the cake plate on a large baking sheet to catch any drips. Simply pour the glaze over the top of the cake, and using an offset spatula, spread it evenly over the top just to the edges so that it runs down the sides of the cake in long drips. Refrigerate, uncovered, for at least 30 minutes to allow the glaze and frosting to set completely. Remove about 1 hour before serving. This is where I failed – my glaze did not want to drip in a pretty fashion, so I just went for it and used it to cover the entire cake. Honestly, I can’t imagine not having the chocolate ganache all over the cake. I think it was a good move, but if you want it to look fancier, go ahead and try the drippy method. [ adapted from Smitten Kitchen ] You may also like… Print Friendly 11 thoughts on “happy birthday to me 1. happy birthday to you!!! you’re right…it DOES suck being grown up (although i tend to act, at times, like an eight-year old), but only grownups could make. this. CAKE! oh, natalie, it looks delicious! i avoid the deadly chocolate/peanut butter combo most of the time because i’m dangerous around it, but this cake…i may not be able to resist. love it. 2. Happy Birthday! Well, i have a birthday cake recipe checked now. I love how the frosting is a combination of cream cheese and peanut butter. However, thinks 5 cups of sugar is scary… crazy scary… Gonna try this out! ;) • I don’t think I used the full five, but ended up running out of frosting as a result lol :) In general, though, sugar is the easiest thing to cut back on in a recipe. Itll be your birthday- just go for it! (calories don’t count on your birthday) 3. I made this cake last weekend, and totally agree! It was amazing, got my exact recipe from one of my cake cookbooks… can’t exactly remember the name.Mile high cakes or something like that. It’s a kepper for sure Leave a Reply Your email address will not be published. Required fields are marked * You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
{ "url": "http://wee-eats.com/2012/03/15/chocolate-peanut-butter-cake/", "source_domain": "wee-eats.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "59648", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UNIZAULHQCSTH5D3NZVDBAEBWKSDNDNY", "WARC-Concurrent-To": "<urn:uuid:772ac356-782a-43c6-b45a-d2309ebfe1fc>", "WARC-Date": "2013-05-22T13:56:40Z", "WARC-IP-Address": "69.195.124.88", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:ZZX4VB3MDJAO3IWPV7YKJUX5NSCYSFOU", "WARC-Record-ID": "<urn:uuid:87312ac0-660f-4661-bccd-c9847d69f6d0>", "WARC-Target-URI": "http://wee-eats.com/2012/03/15/chocolate-peanut-butter-cake/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:39022e5f-fd1d-400b-a4c8-c5fc4592b592>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 21, 22, 348, 349, 613, 614, 649, 650, 1058, 1328, 1329, 1467, 1468, 1611, 1612, 1655, 1656, 1677, 1678, 1707, 1728, 1791, 1819, 1839, 1871, 1892, 1913, 1955, 1986, 1997, 1998, 2096, 2097, 2553, 2554, 2884, 2885, 3172, 3173, 3458, 3459, 3487, 3488, 3862, 3863, 4075, 4076, 4512, 4513, 4827, 4828, 4851, 4870, 4871, 5024, 5084, 5115, 5141, 5174, 5175, 5506, 5507, 5608, 5609, 5639, 5662, 5663, 5714, 5753, 5788, 5814, 5815, 6020, 6021, 6121, 6122, 6331, 6332, 6766, 6767, 7081, 7082, 7115, 7116, 7135, 7136, 7151, 7152, 7189, 7190, 7363, 7364, 7552, 7553, 7777, 7778, 8030, 8031, 8225, 8252, 8253, 8267, 8268, 8339, 8340 ], "line_end_idx": [ 21, 22, 348, 349, 613, 614, 649, 650, 1058, 1328, 1329, 1467, 1468, 1611, 1612, 1655, 1656, 1677, 1678, 1707, 1728, 1791, 1819, 1839, 1871, 1892, 1913, 1955, 1986, 1997, 1998, 2096, 2097, 2553, 2554, 2884, 2885, 3172, 3173, 3458, 3459, 3487, 3488, 3862, 3863, 4075, 4076, 4512, 4513, 4827, 4828, 4851, 4870, 4871, 5024, 5084, 5115, 5141, 5174, 5175, 5506, 5507, 5608, 5609, 5639, 5662, 5663, 5714, 5753, 5788, 5814, 5815, 6020, 6021, 6121, 6122, 6331, 6332, 6766, 6767, 7081, 7082, 7115, 7116, 7135, 7136, 7151, 7152, 7189, 7190, 7363, 7364, 7552, 7553, 7777, 7778, 8030, 8031, 8225, 8252, 8253, 8267, 8268, 8339, 8340, 8535 ] }
{ "red_pajama_v2": { "ccnet_original_length": 8535, "ccnet_original_nlines": 105, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 2, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3906976580619812, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.021188629791140556, "rps_doc_frac_lines_end_with_ellipsis": 0.009433959610760212, "rps_doc_frac_no_alph_words": 0.20620155334472656, "rps_doc_frac_unique_words": 0.33164235949516296, "rps_doc_mean_word_length": 4.162967681884766, "rps_doc_num_sentences": 102, "rps_doc_symbol_to_word_ratio": 0.007235140074044466, "rps_doc_unigram_entropy": 5.488275527954102, "rps_doc_word_count": 1577, "rps_doc_frac_chars_dupe_10grams": 0.2284843921661377, "rps_doc_frac_chars_dupe_5grams": 0.23594820499420166, "rps_doc_frac_chars_dupe_6grams": 0.2333587259054184, "rps_doc_frac_chars_dupe_7grams": 0.2284843921661377, "rps_doc_frac_chars_dupe_8grams": 0.2284843921661377, "rps_doc_frac_chars_dupe_9grams": 0.2284843921661377, "rps_doc_frac_chars_top_2gram": 0.015993909910321236, "rps_doc_frac_chars_top_3gram": 0.01827874965965748, "rps_doc_frac_chars_top_4gram": 0.014013710431754589, "rps_doc_books_importance": -852.1370849609375, "rps_doc_books_importance_length_correction": -852.1370849609375, "rps_doc_openwebtext_importance": -486.6207275390625, "rps_doc_openwebtext_importance_length_correction": -486.6207275390625, "rps_doc_wikipedia_importance": -369.69830322265625, "rps_doc_wikipedia_importance_length_correction": -369.69830322265625 }, "fasttext": { "dclm": 0.007115240208804607, "english": 0.9269095063209534, "fineweb_edu_approx": 1.0652409791946411, "eai_general_math": 0.012451290152966976, "eai_open_web_math": 0.16962605714797974, "eai_web_code": 0.0002885500143747777 } }
{ "free_decimal_correspondence": { "primary": { "code": "641.863", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } }, "secondary": { "code": "641.862", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "9", "label": "Personal/Misc" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,728,031,493,280,149,500
Classic Twill - Apple/Violet #13401 . Classic Twill - Apple/Violet Hover to see enlarged image Shirts Suits Navy Suit Olive Suit Taupe Suit Brown Suit Charcoal Suit Black Suit Pinstripe the Suit No Suit Overlay Our college stripe design set in a luxurious silk twill. A classic to own and never goes out of style. Handmade of 100% Woven Silk $15.00 for Regular Length (58" x 3 ½") $20.00 for Extra Length (63" x 3 ¾") Quantity: Share this product:   Shipping Questions? Click here   Returns & Exchange Questions? Click here Dry-clean Only Imported .       checkout add to wish-list       Suggestions that match this item: Hendrix Paisley - Apple/Violet #23104 • Silk Classic Twill - White/Light Cornflower #13404 • Silk Classic Twill - Royal/Apple #12311 • Silk Totally Tartan - Violet/Apple #22804 • Silk Classic Twill - Red/Ivory #10339 • Silk     Customer Testimonials: “.....When I received the tie I ordered, I found I had ordered the wrong shade of red. I returned it and got the correct color very quickly, with no additional shipping charges. I am very pleased.....”    –Ricky P., Martin, TN      Silk Ties   •   Wool Ties   •   Cotton Ties   •   Linen Ties   •   Silk Knit Ties   •   Wool Knit Ties
{ "url": "http://www.thetiebar.com/order_page.asp?pn=13401&orderPageReturn=%2FcategoryPages%2FExtra_Long_Ties.asp&pg=48&categoryIds=31&optionValueIds=2", "source_domain": "www.thetiebar.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "56543", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MFI3QCSPBTQR6HZVTJB2NOOH4IZHOKOX", "WARC-Concurrent-To": "<urn:uuid:9a6b52d6-27d2-48d5-bc4e-c130b0d56772>", "WARC-Date": "2013-05-23T10:06:39Z", "WARC-IP-Address": "209.35.7.81", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:UNN4OZY2YBPFSWQK6JVNVZAPOVZFULLU", "WARC-Record-ID": "<urn:uuid:824bc965-6237-4f86-8b5b-07aa4d4dee12>", "WARC-Target-URI": "http://www.thetiebar.com/order_page.asp?pn=13401&orderPageReturn=%2FcategoryPages%2FExtra_Long_Ties.asp&pg=48&categoryIds=31&optionValueIds=2", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cf33b370-964a-48d3-9139-f5f69faae721>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 29, 36, 37, 39, 68, 69, 97, 104, 105, 106, 107, 108, 109, 110, 111, 117, 127, 138, 149, 160, 174, 185, 204, 220, 323, 324, 352, 391, 428, 429, 430, 440, 441, 463, 464, 497, 538, 539, 554, 563, 565, 569, 580, 597, 599, 601, 637, 668, 682, 721, 735, 763, 777, 807, 821, 847, 861, 863, 888, 1091, 1093, 1118, 1120, 1121 ], "line_end_idx": [ 29, 36, 37, 39, 68, 69, 97, 104, 105, 106, 107, 108, 109, 110, 111, 117, 127, 138, 149, 160, 174, 185, 204, 220, 323, 324, 352, 391, 428, 429, 430, 440, 441, 463, 464, 497, 538, 539, 554, 563, 565, 569, 580, 597, 599, 601, 637, 668, 682, 721, 735, 763, 777, 807, 821, 847, 861, 863, 888, 1091, 1093, 1118, 1120, 1121, 1223 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1223, "ccnet_original_nlines": 64, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.14566929638385773, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03543306887149811, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.31496062874794006, "rps_doc_frac_unique_words": 0.6368421316146851, "rps_doc_mean_word_length": 4.721052646636963, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0.03149605914950371, "rps_doc_unigram_entropy": 4.509908199310303, "rps_doc_word_count": 190, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03344482183456421, "rps_doc_frac_chars_top_3gram": 0.04013378173112869, "rps_doc_frac_chars_top_4gram": 0.0568561889231205, "rps_doc_books_importance": -127.1697006225586, "rps_doc_books_importance_length_correction": -127.1697006225586, "rps_doc_openwebtext_importance": -84.60797119140625, "rps_doc_openwebtext_importance_length_correction": -84.60792541503906, "rps_doc_wikipedia_importance": -56.02721405029297, "rps_doc_wikipedia_importance_length_correction": -56.02721405029297 }, "fasttext": { "dclm": 0.000022289999833446927, "english": 0.701119065284729, "fineweb_edu_approx": 0.6266062259674072, "eai_general_math": -0.000007390000064333435, "eai_open_web_math": 0.1481928825378418, "eai_web_code": -0.000009540000064589549 } }
{ "free_decimal_correspondence": { "primary": { "code": "646.722", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Clothing and dress, Fashion, and Beauty, Personal" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
5,012,780,308,324,820,000
Don\'t Miss Home / Tag Archives: Draw-a-pig DQ links for April 11, 2007 Web Applications skrbl.com – An online whiteboard. Write notes, draw, upload pictures, share files. Collaborate with friends on the same screen. Talkr.com – Audio chat instantly. Tweeto.com – An online task manager. Add tags to tasks, color label tasks and track active/completed tasks through RSS feeds. Software Coolexon Dictionary – 60 Languages in a 3MB [...] Read More » Scrolling Box Scroll To Top
{ "url": "http://www.dq.winsila.com/tag/draw-a-pig", "source_domain": "www.dq.winsila.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "57276", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:B2JNQUCVVBBLRYW2JILRH6XY5MDADIKS", "WARC-Concurrent-To": "<urn:uuid:da4a7e76-4326-4894-9822-c75bc8761a8d>", "WARC-Date": "2013-05-20T00:11:03Z", "WARC-IP-Address": "74.220.202.34", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:D56AQMMJA7QUKIFFEC5JXWKW5GMCSZEO", "WARC-Record-ID": "<urn:uuid:a2914834-6bba-4ca5-bc88-1b9add972d97>", "WARC-Target-URI": "http://www.dq.winsila.com/tag/draw-a-pig", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9421d5fc-12bc-4b03-a639-8f7f8b187cc4>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 12, 44, 45, 73, 74, 438, 450, 451, 465, 466 ], "line_end_idx": [ 12, 44, 45, 73, 74, 438, 450, 451, 465, 466, 479 ] }
{ "red_pajama_v2": { "ccnet_original_length": 479, "ccnet_original_nlines": 10, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1456310749053955, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.029126210138201714, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.28155338764190674, "rps_doc_frac_unique_words": 0.8933333158493042, "rps_doc_mean_word_length": 4.973333358764648, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0.009708739817142487, "rps_doc_unigram_entropy": 4.144155979156494, "rps_doc_word_count": 75, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0160857904702425, "rps_doc_frac_chars_top_3gram": 0.04825736954808235, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -34.605770111083984, "rps_doc_books_importance_length_correction": -40.54154968261719, "rps_doc_openwebtext_importance": -30.083633422851562, "rps_doc_openwebtext_importance_length_correction": -36.019412994384766, "rps_doc_wikipedia_importance": -30.352235794067383, "rps_doc_wikipedia_importance_length_correction": -36.28801727294922 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.7570003867149353, "fineweb_edu_approx": 1.0723419189453125, "eai_general_math": 0.000007029999778751517, "eai_open_web_math": 0.09297717362642288, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.67", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "005.457", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
4,464,786,666,327,673,000
Surgical Products Multimedia View Sample FREE Email Newsletter Surgical Products Daily Back Surgery Device Presented October 25, 2012 6:45 am Videos Comments   Dawn's ability to compete in triathlons was diminishing with each race. After years of severe pain and weakness, her doctor recommended spine fusion with the ASPEN MIS Fusion System. Minimally Invasive Aortic Valve Replacement Through A Minithoracotomy October 25, 2012 6:41 am Videos Comments   Dr. Atiq Rehman, director of robotics and minimally invasive cardiac surgery at Columbia University, presents a non-sternotomy approach for aortic valve replacement. Advertisement Full Face Transplant A Success October 25, 2012 6:32 am Videos Comments Unfortunately your browser does not support IFrames.   Surgeons at the University of Maryland succeed in the fullest face transplant ever. Doctors' Notes Empower Patients October 18, 2012 7:01 am Videos Comments Melisa Raney takes a look at how patients benefit from reading doctors' write-ups about their office visits. New Breath Test Can Diagnose Disease October 18, 2012 6:53 am Videos Comments Dr. Peter Mazzone, of the Cleveland Clinic's Respiratory Institute, talks to Anthony Mason and Norah O'Donnell about a new high-tech device that can check your breath and tell you if you're seriously ill. M.D.s Using Social Media, Other Tech To Stay Connected To Patients October 18, 2012 6:50 am Videos Comments Dr. Natasha Burgert, of Kansay City, Mo., uses Twitter, Facebook, and texting to keep in contact with her patients. She's part of a growing number of doctors turning to technology to be better doctors. She talks with Rebecca Jarvis and Anthony Mason about how it's improved her practice. Advertisement Substance Abuse After Weight Loss Surgery October 18, 2012 6:47 am Videos Comments Unfortunately your browser does not support IFrames.   Dr. Leslie Heinberg says it's important to prepare patients for life after weight loss surgery. A Medical News Roundup From Johns Hopkins October 18, 2012 6:38 am Videos Comments PodMed is a weekly podcast from Johns Hopkins Medicine. In it, Elizabeth Tracey, director of electronic media for Johns Hopkins Medicine, and Rick Lange, MD, professor of medicine at Johns Hopkins and vice chairman of medicine at the University of Texas Health Science Center at San Antonio, look at the top medical stories of the week. Is The Cost Of Robotic Surgery Justified? October 11, 2012 6:41 am Videos Comments   Robotic prostate surgery is often favored as the next big thing in prostate cancer treatment, but its value is repeatedly called into question. Do the benefits of robotic prostatectomy surgery outweigh the expense? How much more expensive is robotic surgery? In the delicate world of prostate cancer and saving lives, at what point does price matter? Dr. New Breath Test Could Diagnose Chronic Disease And Cancer October 11, 2012 6:01 am Videos Comments Scientists say that high-tech breath analyzers may soon be able to diagnose serious conditions -- from diabetes to lung cancer -- in just minutes. Demonstrating Benefits Of Using Ports For Laparascopic Surgery October 4, 2012 7:22 am Videos Comments   Dr. Kella talks, intra operatively, of the benefits of using SurgiQuest ports during laparascopic surgery. Bang Surgical was used to stream live OR video to audience members across the US. Dr. Kella performed a laparascopic radical prostatectomy using Intuitives Da Vinci surgical robotic system. Texas Company Battles 'Vulnerability' Of U.S. Surgical Mask Supply October 4, 2012 7:00 am Videos Comments When the swine flu pandemic hit in 2009, a small surgical mask company in North Richland Hills suddenly found itself in high demand. Prestige Ameritech has one of very few plants still making masks in the U. Doctors Grow New Ear On Cancer Victim's Arm October 4, 2012 6:49 am Videos Comments Unfortunately your browser does not support IFrames.   Sherrie Walter lost her ear to cancer two years ago, but doctors at Johns Hopkins Hospital in Baltimore offered Walter a chance at a new ear -- a permanent one built from her own tissue. Pages X You may login with either your assigned username or your e-mail address. The password field is case sensitive. Loading
{ "url": "http://www.surgicalproductsmag.com/multimedia?items_per_page=15&page=9&qt-recent_blogs_articles=0", "source_domain": "www.surgicalproductsmag.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "125325", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SJMCB4YNYJGLSD5V5K3IW44FTRIDLCZC", "WARC-Concurrent-To": "<urn:uuid:65205519-e062-484e-9870-d2d4372409aa>", "WARC-Date": "2013-05-24T14:45:25Z", "WARC-IP-Address": "107.20.166.183", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:YHSH6DNMXY6Y6UBGSV2R4IXU5VI6S443", "WARC-Record-ID": "<urn:uuid:d5858335-2ae4-4464-ad7f-3c0776c1f54f>", "WARC-Target-URI": "http://www.surgicalproductsmag.com/multimedia?items_per_page=15&page=9&qt-recent_blogs_articles=0", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1b94bbaf-278d-4d09-b9f7-8d79a2f08b15>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 18, 19, 30, 31, 43, 44, 66, 67, 91, 92, 122, 123, 164, 165, 350, 351, 421, 422, 463, 464, 632, 633, 647, 648, 679, 680, 721, 722, 861, 862, 894, 895, 936, 937, 1046, 1047, 1084, 1085, 1126, 1127, 1332, 1333, 1400, 1401, 1442, 1443, 1731, 1732, 1746, 1747, 1789, 1790, 1831, 1832, 1983, 1984, 2026, 2027, 2068, 2069, 2406, 2407, 2449, 2450, 2491, 2492, 2849, 2850, 2908, 2909, 2950, 2951, 3098, 3099, 3162, 3163, 3203, 3204, 3503, 3504, 3571, 3572, 3612, 3613, 3821, 3822, 3866, 3867, 3907, 3908, 4150, 4151, 4157, 4158, 4160, 4233, 4271 ], "line_end_idx": [ 18, 19, 30, 31, 43, 44, 66, 67, 91, 92, 122, 123, 164, 165, 350, 351, 421, 422, 463, 464, 632, 633, 647, 648, 679, 680, 721, 722, 861, 862, 894, 895, 936, 937, 1046, 1047, 1084, 1085, 1126, 1127, 1332, 1333, 1400, 1401, 1442, 1443, 1731, 1732, 1746, 1747, 1789, 1790, 1831, 1832, 1983, 1984, 2026, 2027, 2068, 2069, 2406, 2407, 2449, 2450, 2491, 2492, 2849, 2850, 2908, 2909, 2950, 2951, 3098, 3099, 3162, 3163, 3203, 3204, 3503, 3504, 3571, 3572, 3612, 3613, 3821, 3822, 3866, 3867, 3907, 3908, 4150, 4151, 4157, 4158, 4160, 4233, 4271, 4278 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4278, "ccnet_original_nlines": 97, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2565379738807678, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019925279542803764, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2017434537410736, "rps_doc_frac_unique_words": 0.5203007459640503, "rps_doc_mean_word_length": 5.168421268463135, "rps_doc_num_sentences": 42, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.404699802398682, "rps_doc_word_count": 665, "rps_doc_frac_chars_dupe_10grams": 0.05324411019682884, "rps_doc_frac_chars_dupe_5grams": 0.0666278675198555, "rps_doc_frac_chars_dupe_6grams": 0.05324411019682884, "rps_doc_frac_chars_dupe_7grams": 0.05324411019682884, "rps_doc_frac_chars_dupe_8grams": 0.05324411019682884, "rps_doc_frac_chars_dupe_9grams": 0.05324411019682884, "rps_doc_frac_chars_top_2gram": 0.03025894984602928, "rps_doc_frac_chars_top_3gram": 0.06051788851618767, "rps_doc_frac_chars_top_4gram": 0.02094849944114685, "rps_doc_books_importance": -303.2101135253906, "rps_doc_books_importance_length_correction": -303.2101135253906, "rps_doc_openwebtext_importance": -183.85658264160156, "rps_doc_openwebtext_importance_length_correction": -183.85658264160156, "rps_doc_wikipedia_importance": -198.33680725097656, "rps_doc_wikipedia_importance_length_correction": -198.33680725097656 }, "fasttext": { "dclm": -0.0000029800000902469037, "english": 0.9128228425979614, "fineweb_edu_approx": 1.397447109222412, "eai_general_math": 0.000009059999683813658, "eai_open_web_math": 0.05578147992491722, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "617.0", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Surgery and Dentistry" } }, "secondary": { "code": "610.28", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,254,130,357,592,507,000
Buy tickets to premium and sold out events Call us at: 800-927-2770 Who's next? Looking ahead to the best of the 2010 draft class Updated  | Comment  | Recommend E-mail | Print | Southern California free safety Taylor Mays is expected to be a difference-maker on the defensive side of the ball in the NFL next season. By Mark J. Terrill, AP Southern California free safety Taylor Mays is expected to be a difference-maker on the defensive side of the ball in the NFL next season.  BEST OF THE UNDERCLASSMEN Top 2010 underclassmen (listed by position): QB Sam Bradford, Oklahoma QB Jevan Snead, Mississippi RB Jahvid Best, California RB Jonathan Dwyer, Georgia Tech RB Joe McKnight, USC RB DeMarco Murray, Oklahoma RB Evan Royster, Penn State WR Dez Bryant, Oklahoma State WR Arrelious Benn, Illinois WR Damian Williams, USC TE Rob Gronkowski, Arizona G Michael Pouncey, Florida OT Bryan Bulaga, Iowa OT Anthony Davis, Rutgers DE Greg Romeus, Pittsburgh DE Carlos Dunlap, Florida DE Everson Griffen, Southern Cal DT Marvin Austin, North Carolina DT Gerald McCoy, Oklahoma ILB Rolando McClain, Alabama CB Joe Haden, Florida, SS Eric Berry, Tennessee SS Chad Jones, LSU  NFL OFFSEASON Even as the results from this year's NFL draft are being analyzed ad nauseam into training camps, teams and fans are already wondering which college players to watch with an eye toward next year's draft. Actually, that's really not surprising, considering the league itself is so hyped on the draft as an event that NFL officials are discussing the possibility of starting it on Thursday next year, effectively turning the drama into a made-for-TV miniseries. The next draft promises to provide a richer pool of elite talent than was available this year. As usual, the focus is already on quarterbacks as football observers ranging from casual fans to NFL scouts wonder whether Tim Tebow of Florida and Colt McCoy of Texas can convert prolific college careers spent in spread-formation offenses into productive pro careers. In fact, it seems the NFL is already gearing up to greet them as teams are embracing the proliferation of the Wildcat formation, which ideally features run-and-pass athletes under center. But from this long-range perspective, the best senior prospect in the 2010 draft seems to be Southern California's extra large safety, Taylor Mays, according to early ratings by NFLDraftScout.com. As always, the next draft will be upgraded by an array of talented underclassmen, but projecting who will leapfrog to the pros at this point is premature speculation. But for now, here is an initial ranking with commentary of the top 32 senior prospects — those that seem most likely to constitute the 2010 draft's first round — followed by a quick list of underclassmen who could potentially be impact players in the next draft (position, school, height and weight listed): 1. Taylor Mays, FS, Southern California, 6-3, 230:  With a freaky combination of size, speed and athleticism, Mays is expected to be an NFL difference-maker. 2. Russell Okung, OT, Oklahoma State, 6-5, 300:  He became a starter and a standout as a true freshman and is reliable while pass protecting on the blind side. 3. Jermaine Gresham, TE, Oklahoma, 6-6, 262:  The most dynamic tight end at Oklahoma since Keith Jackson can block, catch and run. 4. Mark Herzlich, OLB, Boston College, 6-4, 238:  He was the Atlantic Coast Conference defensive player of year in 2008 with 110 tackles (13 for loss), three sacks and six interceptions. 5. Colt McCoy, QB, Texas, 6-3, 216:  Completed an NCAA record 76.7% of his passes in 2008 and is a great team leader. 6. Ndamukong Suh, DT, Nebraska, 6-4, 305:  Primarily a nose tackle in 2008, Suh led Nebraska in tackles (76), tackles for loss (19), sacks (7½) and interceptions (two). 7. Sergio Kindle, OLB, Texas, 6-4, 254:  After playing linebacker, where he was in on 53 tackles and 10½ sacks last year, Kindle takes over the rush-end position vacated by newly drafted Washington Redskin Brian Orakpo. 8. Brandon Spikes, ILB, Florida, 6-3, 245:  In the 2008 regular season, he had 87 tackles, eight for loss, two sacks and four interceptions. 9. Terrence Cody, DT, Alabama, 6-5, 365:  This disruptive load of a nose tackle made his impact in 2008 with 24 tackles, 4½ of them resulting in a loss of yardage. 10. Trent Williams, OT, Oklahoma, 6-5, 309:  After three years manning the right-tackle post, Williams returns for his senior season to show he can play left tackle, too. 11. Tim Tebow, QB, Florida, 6-3, 238:  Thriving in coach Urban Meyer's spread formation, Tebow has helped the Gators to two national championships while winning one Heisman Trophy. He's likely to be the most debated prospect available entering the 2010 draft. 12. Trevard Lindley, CB, Kentucky, 6-0,178:  Last year he led the Southeastern Conference in passes defended per game, totaling 11 breakups and four interceptions. 13. C.J. Spiller, RB, Clemson, 5-11, 193:  A versatile back, he led the ACC in all-purpose yards in 2008, averaging 147.5 a game with 11 combined touchdowns, rushing, receiving and kick returns. 14. Brandon LaFell, WR, LSU, 6-3, 210:  A big, aggressive receiver who has 118 catches, 1,725 yards, 14 touchdowns and plenty of downfield blocks in his career. 15. Sean Weatherspoon, OLB, Missouri, 6-1, 235:  Versatile prep standout in football, basketball and track (high jump), he established himself as a defensive leader as a sophomore in 2007. 16. Ciron Black, OT, LSU, 6-5, 328:  He's started at left tackle in all 40 of his career games. 17. Greg Hardy, DE, Mississippi, 6-4, 265:  He was sidelined part of 2008 with a foot injury but still managed 8½ sacks in nine games. 18. Adam Ulatoski, OT, Texas, 6-8, 310:  A huge, reliable, seasoned lineman with 30 starts — 14 at left tackle and 16 on the right side. 19. Antonio Coleman, OLB, Auburn, 6-2, 252:  Enters his senior season with 30 career tackles for loss and 14½ sacks. 20. George Selvie, DE, South Florida, 6-4, 252:  Despite being slowed by a high ankle injury in 2008, he is the NCAA's active career leader in tackles for a loss with 79½. 21. Geno Atkins, DT, Georgia, 6-1, 290:  He started all 13 games last year and totaled 34 tackles with a team-high 30 quarterback hurries. 22. Marshwan Gilyard, WR, Cincinnati, 6-0, 185:  In 2008, he caught 81 passes for a school-record 1,276 yards and 11 touchdowns and set school mark with 994 yards on kickoff returns. 23. Chris Brown, RB, Oklahoma, 5-11, 208:  Ready for a big senior season after rushing for 1,220 yards and scoring 20 touchdowns in 2008. 24. Javier Arenas, CB, Alabama, 5-9, 198:  This All-SEC performer is also one of the most dangerous return specialists in college football. 25. Jerry Hughes, OLB, Texas Christian, 6-2, 248:  He led the nation last year with 15 sacks, while placing in the top 10 with 19½ tackles for loss and six forced fumbles. 26. Sergio Render, G, Virginia Tech, 6-3, 314:  This three-year starter had arthroscopic surgery on his shoulder in January but is expected to be fine for 2009. 27. Brandon Lang, DE, Troy, 6-4, 250:  Physical force returned from 2007 knee injury to record 10½ sacks and 17½ tackles for loss in '08. 28. Rico McCoy, OLB, Tennessee, 6-1, 224:  Excellent quickness helped him gather 87 tackles from the weakside spot last year. 29. Brandon Graham, DE, Michigan, 6-2, 270:  He finished second in the nation a year ago with 20 tackles for loss and 10 sacks. 30. Dennis Pitta, TE, Brigham Young, 6-5, 250:  Struggled with a knee injury last year but still caught 78 passes for 1,025 yards. 31. Sam Young, OT, Notre Dame, 6-8, 330:  He has started 38 consecutive games, playing on the right and left side. 32. Kyle Wilson, CB, Boise State, 5-10, 190:  Not only does he have excellent coverage skills, but last year Wilson averaged 14.2 yards on punt returns with three touchdowns. *** Cooney is publisher of NFLDraftScout.com. Posted Updated E-mail | Print | To report corrections and clarifications, contact Reader Editor Brent Jones. For publication consideration in the newspaper, send comments to [email protected]. Include name, phone number, city and state for verification. To view our corrections, go to corrections.usatoday.com. Guidelines: You share in the USA TODAY community, so please keep your comments smart and civil. Don't attack other readers personally, and keep your language decent. Use the "Report Abuse" button to make a difference. Read more.
{ "url": "http://usatoday30.usatoday.com/sports/football/nfl/2009-05-05-2010-draft-preview_N.htm", "source_domain": "usatoday30.usatoday.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "80498", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:3NAUXLHVVMIDRQ3HMW3YQUH35PEWT5QA", "WARC-Concurrent-To": "<urn:uuid:e6e630de-c347-4bfc-a983-23aa0ab5c4db>", "WARC-Date": "2013-05-23T06:14:49Z", "WARC-IP-Address": "165.254.27.73", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:35JWXWVXUO5S47KCRP6Q3MQ52C66CHJT", "WARC-Record-ID": "<urn:uuid:7c8fb064-1600-4de9-84a5-c085330b59f2>", "WARC-Target-URI": "http://usatoday30.usatoday.com/sports/football/nfl/2009-05-05-2010-draft-preview_N.htm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:74bcb4dc-4075-4231-9118-7c3fb21995da>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 43, 68, 130, 179, 318, 341, 480, 507, 508, 553, 554, 580, 608, 635, 667, 688, 716, 744, 774, 802, 826, 853, 880, 902, 928, 955, 981, 1014, 1047, 1073, 1102, 1125, 1150, 1169, 1170, 1185, 1389, 1390, 1646, 1647, 2011, 2012, 2200, 2201, 2398, 2399, 2566, 2567, 2875, 2876, 3034, 3035, 3195, 3196, 3327, 3328, 3515, 3516, 3634, 3635, 3804, 3805, 4025, 4026, 4167, 4168, 4332, 4333, 4504, 4505, 4765, 4766, 4930, 4931, 5126, 5127, 5288, 5289, 5478, 5479, 5575, 5576, 5711, 5712, 5849, 5850, 5967, 5968, 6140, 6141, 6280, 6281, 6464, 6465, 6603, 6604, 6744, 6745, 6917, 6918, 7079, 7080, 7218, 7219, 7345, 7346, 7474, 7475, 7606, 7607, 7722, 7723, 7898, 7899, 7903, 7904, 7946, 7947, 7954, 7962, 7979, 8261 ], "line_end_idx": [ 43, 68, 130, 179, 318, 341, 480, 507, 508, 553, 554, 580, 608, 635, 667, 688, 716, 744, 774, 802, 826, 853, 880, 902, 928, 955, 981, 1014, 1047, 1073, 1102, 1125, 1150, 1169, 1170, 1185, 1389, 1390, 1646, 1647, 2011, 2012, 2200, 2201, 2398, 2399, 2566, 2567, 2875, 2876, 3034, 3035, 3195, 3196, 3327, 3328, 3515, 3516, 3634, 3635, 3804, 3805, 4025, 4026, 4167, 4168, 4332, 4333, 4504, 4505, 4765, 4766, 4930, 4931, 5126, 5127, 5288, 5289, 5478, 5479, 5575, 5576, 5711, 5712, 5849, 5850, 5967, 5968, 6140, 6141, 6280, 6281, 6464, 6465, 6603, 6604, 6744, 6745, 6917, 6918, 7079, 7080, 7218, 7219, 7345, 7346, 7474, 7475, 7606, 7607, 7722, 7723, 7898, 7899, 7903, 7904, 7946, 7947, 7954, 7962, 7979, 8261, 8489 ] }
{ "red_pajama_v2": { "ccnet_original_length": 8489, "ccnet_original_nlines": 122, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.23557187616825104, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04669465124607086, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3326337933540344, "rps_doc_frac_unique_words": 0.49607422947883606, "rps_doc_mean_word_length": 4.686652183532715, "rps_doc_num_sentences": 95, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.998222351074219, "rps_doc_word_count": 1401, "rps_doc_frac_chars_dupe_10grams": 0.03441974148154259, "rps_doc_frac_chars_dupe_5grams": 0.03716113045811653, "rps_doc_frac_chars_dupe_6grams": 0.03441974148154259, "rps_doc_frac_chars_dupe_7grams": 0.03441974148154259, "rps_doc_frac_chars_dupe_8grams": 0.03441974148154259, "rps_doc_frac_chars_dupe_9grams": 0.03441974148154259, "rps_doc_frac_chars_top_2gram": 0.006853490136563778, "rps_doc_frac_chars_top_3gram": 0.010660979896783829, "rps_doc_frac_chars_top_4gram": 0.008528780192136765, "rps_doc_books_importance": -853.8591918945312, "rps_doc_books_importance_length_correction": -853.8591918945312, "rps_doc_openwebtext_importance": -464.8740234375, "rps_doc_openwebtext_importance_length_correction": -464.8740234375, "rps_doc_wikipedia_importance": -344.0247802734375, "rps_doc_wikipedia_importance_length_correction": -344.0247802734375 }, "fasttext": { "dclm": 0.0014128700131550431, "english": 0.9234475493431091, "fineweb_edu_approx": 0.9359179735183716, "eai_general_math": 0.004240159876644611, "eai_open_web_math": 0.1337827444076538, "eai_web_code": 0.00045347001287154853 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "658.3", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "12", "label": "Listicle" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-490,277,203,711,872,100
Properties to rent Properties to rent View all properties to rent from Jenkins Best, Cardiff Jenkins Best, Cardiffbranch details Jenkins Best was established by Chartered Surveyor's Anthony Jenkins and Henry Best in March 2012 to offer a personable and professional service for property owners and occupiers. The company has a long term focus on building strong relationships and contributing towards taking the commercial property market forward in South Wales in terms of quality, efficiency and activity. With a strong understanding of the South Wales commercial property markets and a total of over 35 years experience Jenkins Best is well equipped to provide sound commercial advice and considered analysis of property fundamentals. Jenkins Best's Head Office is strategically located at Treforest Industrial Estate enabling us to service our instruction base extending across the whole South Wales area from Chepstow in the east to Pembroke in the west. Local Map Note: The pin shows the centre of the branch's postcode, and does not pinpoint the exact address. Contact details 20 Centre Court Treforest Industrial Estate, CF37 5YR Letting: 02920 291776  Local call rate See it? Scan it! QR code We use cookies to optimise your experience on our website. If you continue we'll assume that you are happy to receive our cookies. However, if you would like to, you can change your cookie settings at any time. Continue
{ "url": "http://www.rightmove.co.uk/estate-agents/agent/Jenkins-Best/Cardiff-96533.html/svr/1713", "source_domain": "www.rightmove.co.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "45282", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2P74QD55AISW6YEDZXMFTL5CGQRTWZIW", "WARC-Concurrent-To": "<urn:uuid:bfe1d78b-b11d-4f94-aea7-78ecaf4416e9>", "WARC-Date": "2013-05-25T08:12:31Z", "WARC-IP-Address": "80.64.55.7", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:IUV5GTIM44LVSTB2ROJFRPOAJ2BCB5PP", "WARC-Record-ID": "<urn:uuid:9f1db01d-b8c2-428d-9401-2aee55eaa806>", "WARC-Target-URI": "http://www.rightmove.co.uk/estate-agents/agent/Jenkins-Best/Cardiff-96533.html/svr/1713", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:dafb7e0d-917d-4576-9042-16c5850b2ea4>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 19, 20, 94, 130, 131, 510, 511, 741, 742, 964, 965, 975, 976, 1074, 1075, 1091, 1092, 1146, 1147, 1186, 1187, 1204, 1205, 1213, 1214, 1425, 1426 ], "line_end_idx": [ 19, 20, 94, 130, 131, 510, 511, 741, 742, 964, 965, 975, 976, 1074, 1075, 1091, 1092, 1146, 1147, 1186, 1187, 1204, 1205, 1213, 1214, 1425, 1426, 1434 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1434, "ccnet_original_nlines": 27, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3320158123970032, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.011857709847390652, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11067193746566772, "rps_doc_frac_unique_words": 0.6371681690216064, "rps_doc_mean_word_length": 5.185840606689453, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.7111124992370605, "rps_doc_word_count": 226, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03754265978932381, "rps_doc_frac_chars_top_3gram": 0.04095562919974327, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -122.77680969238281, "rps_doc_books_importance_length_correction": -120.45203399658203, "rps_doc_openwebtext_importance": -69.78996276855469, "rps_doc_openwebtext_importance_length_correction": -69.78996276855469, "rps_doc_wikipedia_importance": -48.602256774902344, "rps_doc_wikipedia_importance_length_correction": -41.55583190917969 }, "fasttext": { "dclm": 0.0006130299880169332, "english": 0.9352695941925049, "fineweb_edu_approx": 0.8518897891044617, "eai_general_math": 0.00028700000257231295, "eai_open_web_math": 0.008515600115060806, "eai_web_code": 0.000007269999969139462 } }
{ "free_decimal_correspondence": { "primary": { "code": "338.0246", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } }, "secondary": { "code": "338.024", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "1", "label": "About (Org.)" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,558,435,334,640,041,000
Leaderboard Discrepancy in scoring or point accumulation must be reported in writing no later than 30 days after the event posted date in question. If not, points will not count. Top Student Details Results for Malvina Pelleriti Event Name Region Bonus Points Total Points Date Posted The Falls Premier Ball 7 100.00 175.00 1/31/2013 La Classique Du Quebec 7 100.00 188.00 3/7/2013 Tulip Classic - Festival of Dance 7 0.00 78.00 5/28/2013 Total: 200 441  
{ "url": "http://dancesportseries.com/top_students_detail.php?c=tt&fn=Malvina&ln=Pelleriti", "source_domain": "dancesportseries.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "5128", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:6P7ORXYO47M6XRB4KBB77Q7C5TQUAA3B", "WARC-Concurrent-To": "<urn:uuid:f63b0923-b7a8-4050-bc4b-60774eaea013>", "WARC-Date": "2013-06-18T20:42:38Z", "WARC-IP-Address": "50.63.51.1", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:IHURMAMGTIVWOMAMSUWQM5TXJCNCTA5Y", "WARC-Record-ID": "<urn:uuid:b59921ce-8e8e-42c8-a52d-116b56aef0b5>", "WARC-Target-URI": "http://dancesportseries.com/top_students_detail.php?c=tt&fn=Malvina&ln=Pelleriti", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6c96e532-bdbb-4723-859d-edf25fb4af84>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 12, 13, 180, 181, 182, 202, 203, 233, 234, 290, 339, 387, 444 ], "line_end_idx": [ 12, 13, 180, 181, 182, 202, 203, 233, 234, 290, 339, 387, 444, 460 ] }
{ "red_pajama_v2": { "ccnet_original_length": 460, "ccnet_original_nlines": 13, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1553398072719574, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.42718446254730225, "rps_doc_frac_unique_words": 0.8243243098258972, "rps_doc_mean_word_length": 4.891891956329346, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.039314270019531, "rps_doc_word_count": 74, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.033149171620607376, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -50.46521759033203, "rps_doc_books_importance_length_correction": -52.6847038269043, "rps_doc_openwebtext_importance": -30.29225730895996, "rps_doc_openwebtext_importance_length_correction": -32.511741638183594, "rps_doc_wikipedia_importance": -19.760011672973633, "rps_doc_wikipedia_importance_length_correction": -21.979496002197266 }, "fasttext": { "dclm": 6.000000212225132e-7, "english": 0.7455591559410095, "fineweb_edu_approx": 0.8634287714958191, "eai_general_math": 0.00023537999368272722, "eai_open_web_math": 0.17434245347976685, "eai_web_code": -0.000008940000043367036 } }
{ "free_decimal_correspondence": { "primary": { "code": "793.01", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "793.011", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "20", "label": "Structured Data" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-2,266,178,586,448,608,300
Login Strappy NFC reader brings interactive smartphone ads to Tokyo subway cars Strappy NFC For the past few weeks, commuters on some Tokyo subway lines have been seeing a steady stream of interactive smartphone ads, thanks to a new product called Strappy. Created by Shunkosha, a Japanese printing company, Strappy is a rectangular plastic covering that attaches to the straps hanging from subway car ceilings. Within this covering is a reader that supports the FeliCA NFC standard — the same contactless system behind Pasmo, Tokyo's rechargeable subway cards. Users who place their smartphones over the blue boxes will have their browsers directed to a URL with ads, coupons, or other marketing materials. Of course, the entire system demands a strong underground data connection, but that's not as imposing a hurdle as it may seem, since NTT DoCoMo, Softbank, and KDDI are already building antennas within Tokyo's subway tunnels. Thus far, Strappy has been installed in cars along the Ginza and Marunouchi lines, as part of a trial run that's scheduled to conclude this month. There are 5 Comments. Load 'Em Up. Show speed reading tips and settings Shortcuts to mastering the comment thread. Use wisely. C - Next Comment X - Mark as Read R - Reply Z - Mark Read & Next Shift + C - Previous Shift + A - Mark All Read Comment Settings Live comment alert: Hide it! Comments for this post are closed. The Verge
{ "url": "http://mobile.theverge.com/2012/6/4/3061047/strappy-nfc-tokyo-subway-smartphone-ads", "source_domain": "mobile.theverge.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "34712", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:QR2SE6EILH7TR5EKODNHOAIGMECOU73P", "WARC-Concurrent-To": "<urn:uuid:ace52ec3-ccf0-4d24-aff7-af2cd6d24b93>", "WARC-Date": "2013-05-21T16:02:12Z", "WARC-IP-Address": "69.25.121.112", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:SAUZWTPJJAXAW7RRK3DYOU5ANUQWN3AD", "WARC-Record-ID": "<urn:uuid:dc81c60f-240b-4209-9da4-5331deaf03cc>", "WARC-Target-URI": "http://mobile.theverge.com/2012/6/4/3061047/strappy-nfc-tokyo-subway-smartphone-ads", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3c140c71-37ea-4715-abfc-35f124ccf9bd>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 6, 7, 81, 82, 94, 95, 711, 712, 1084, 1085, 1157, 1158, 1213, 1214, 1231, 1248, 1249, 1259, 1280, 1281, 1302, 1328, 1329, 1346, 1347, 1376, 1377, 1412, 1413 ], "line_end_idx": [ 6, 7, 81, 82, 94, 95, 711, 712, 1084, 1085, 1157, 1158, 1213, 1214, 1231, 1248, 1249, 1259, 1280, 1281, 1302, 1328, 1329, 1346, 1347, 1376, 1377, 1412, 1413, 1422 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1422, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3079710006713867, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.043478261679410934, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1557970941066742, "rps_doc_frac_unique_words": 0.6753246784210205, "rps_doc_mean_word_length": 4.88744592666626, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.840739727020264, "rps_doc_word_count": 231, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.017714789137244225, "rps_doc_frac_chars_top_3gram": 0.042515501379966736, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -116.3960952758789, "rps_doc_books_importance_length_correction": -115.30744171142578, "rps_doc_openwebtext_importance": -60.9196891784668, "rps_doc_openwebtext_importance_length_correction": -60.9196891784668, "rps_doc_wikipedia_importance": -62.94741439819336, "rps_doc_wikipedia_importance_length_correction": -57.096920013427734 }, "fasttext": { "dclm": 0.0002191700041294098, "english": 0.9383126497268677, "fineweb_edu_approx": 1.3735060691833496, "eai_general_math": 0.0030245198868215084, "eai_open_web_math": 0.1331457495689392, "eai_web_code": 0.00009775000216905028 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.689", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "658.85", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
6,080,043,492,182,552,000
Follow Us ! Visit our Facebook Scribbleshop page Follow Scribbleshop on Twitter Visit our YouTube Scribbleshop channelVisit our Google Plus PageVisit us and Pin it at Scribbleshop on Pintrest Share this site: WHITE -LOW TACK ARTIST TAPE WHITE -LOW TACK ARTIST TAPE 3M    SKU #426157 Like Like this product! (0) 3M-Scotch Low Tack Artist Tape. This tape is specially formulated to perform well in more demanding applications that artists encounter. The securely sticking tape is the way to achieve perfectly straight; hard lines with no bleeding and it removes easily and cleanly. This package contains one 10yd/9.1m roll of 3/4in/19mm wide white tape. Adhesive conforms to ASTM D4236. Made in USA. Our Price : $5.19 Scotch Low Tack Artist Tape-.75X10 Yards UPC: 051131936102 Weight: 1.1 oz. Product Dimentions: (in "") Height: 4.25 x Width: 3.90 x Depth: 1.15 This product is not Hazardous. You can choose any shipping method while ordering this product You May Also Like
{ "url": "http://www.scribbleshop.com/content/white-low-tack-artist-tape?quicktabs_prodcuts_tabs=0", "source_domain": "www.scribbleshop.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "76836", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:B5APSKULRSBTJNYYY5MKNB5QAB3BUITW", "WARC-Concurrent-To": "<urn:uuid:23a06801-38f4-4551-99dd-78206e3f0e32>", "WARC-Date": "2013-05-25T08:47:20Z", "WARC-IP-Address": "8.19.32.152", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7KET7GLELNUBBXGSAWTF4CHGSLLZ4PKY", "WARC-Record-ID": "<urn:uuid:f35dca7c-04e2-4d26-b87d-0b8d09fd6343>", "WARC-Target-URI": "http://www.scribbleshop.com/content/white-low-tack-artist-tape?quicktabs_prodcuts_tabs=0", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6e756c06-e811-413f-ad29-becbb401dcfd>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 12, 13, 193, 194, 211, 212, 240, 241, 269, 270, 288, 293, 312, 316, 317, 704, 705, 706, 724, 725, 766, 767, 785, 801, 870, 964 ], "line_end_idx": [ 12, 13, 193, 194, 211, 212, 240, 241, 269, 270, 288, 293, 312, 316, 317, 704, 705, 706, 724, 725, 766, 767, 785, 801, 870, 964, 981 ] }
{ "red_pajama_v2": { "ccnet_original_length": 981, "ccnet_original_nlines": 26, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19704432785511017, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.08866994827985764, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2610837519168854, "rps_doc_frac_unique_words": 0.6883116960525513, "rps_doc_mean_word_length": 5.00649356842041, "rps_doc_num_sentences": 18, "rps_doc_symbol_to_word_ratio": 0.004926110152155161, "rps_doc_unigram_entropy": 4.480864524841309, "rps_doc_word_count": 154, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.05706873908638954, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03631646931171417, "rps_doc_frac_chars_top_3gram": 0.06744488328695297, "rps_doc_frac_chars_top_4gram": 0.06614785641431808, "rps_doc_books_importance": -90.49755859375, "rps_doc_books_importance_length_correction": -90.49755859375, "rps_doc_openwebtext_importance": -59.940093994140625, "rps_doc_openwebtext_importance_length_correction": -46.00758743286133, "rps_doc_wikipedia_importance": -42.001522064208984, "rps_doc_wikipedia_importance_length_correction": -42.001522064208984 }, "fasttext": { "dclm": -0.000004290000106266234, "english": 0.796509861946106, "fineweb_edu_approx": 0.8311376571655273, "eai_general_math": -0.000004649999937100802, "eai_open_web_math": 0.123665452003479, "eai_web_code": -0.00000965999970503617 } }
{ "free_decimal_correspondence": { "primary": { "code": "745.5", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Decorative arts" } }, "secondary": { "code": "663.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Chemistry, Technical and Chemical engineering", "level_3": "Beverages" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
8,208,206,683,955,317,000
Top Sources By Region Classifieds Reviews in history Reviews of significant work in all fields of historical interest. Sign up for email alerts history.ac.uk BBIH: a new bibliography Search over 500,000 books and articles about British and Irish history in the new BBIH history.ac.uk Latest questions Coal Porters in England I noticed that from 1806, a salary was paid... dates What does the date 2d of Richard III mean and is... Maps > Ordnance Survey 1:10,560 - Epoch 1 > Scotland - Invernessshire & Skye > 017 Zoom MAX | HIGH | LOW | MIN    Satellite (new window) Publication date 1876 Citation 'Scotland - Invernessshire & Skye: 017', Ordnance Survey 1:10,560 - Epoch 1 (1876). URL: http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4 Date accessed: 19 June 2013. Add to my bookshelf Supporting documents Central coordinates 57.4102, -4.7021 Map data copyright Copyright (c) and database right Crown Copyright and Landmark Information Group Ltd (all rights reserved 2013)
{ "url": "http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4", "source_domain": "www.british-history.ac.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "35788", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TPDK7RH3TQ7QKWD2GPXGW2P247S546YX", "WARC-Concurrent-To": "<urn:uuid:d8a384d0-3623-4c13-b6db-6b0259935d18>", "WARC-Date": "2013-06-19T04:22:49Z", "WARC-IP-Address": "193.39.212.226", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:5CBB6E6N35H4U5WF6DFAL75Q5DLP6GMY", "WARC-Record-ID": "<urn:uuid:5f1e738e-1a55-4a30-a88f-624e90539ed6>", "WARC-Target-URI": "http://www.british-history.ac.uk/mapsheet.aspx?compid=55159&sheetid=4308&zm=4", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9ff8157c-9567-4fe5-be62-df8d0f7a463d>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 12, 13, 23, 24, 25, 37, 38, 57, 148, 162, 187, 274, 288, 289, 306, 307, 378, 436, 437, 520, 521, 526, 527, 576, 577, 594, 595, 600, 601, 610, 611, 827, 828, 849, 850, 870, 871, 888, 889, 908, 909 ], "line_end_idx": [ 12, 13, 23, 24, 25, 37, 38, 57, 148, 162, 187, 274, 288, 289, 306, 307, 378, 436, 437, 520, 521, 526, 527, 576, 577, 594, 595, 600, 601, 610, 611, 827, 828, 849, 850, 870, 871, 888, 889, 908, 909, 1019 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1019, "ccnet_original_nlines": 41, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.15909090638160706, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.040909089148044586, "rps_doc_frac_lines_end_with_ellipsis": 0.0476190485060215, "rps_doc_frac_no_alph_words": 0.37272727489471436, "rps_doc_frac_unique_words": 0.7625899314880371, "rps_doc_mean_word_length": 5.633093357086182, "rps_doc_num_sentences": 17, "rps_doc_symbol_to_word_ratio": 0.009090909734368324, "rps_doc_unigram_entropy": 4.562322616577148, "rps_doc_word_count": 139, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.06641124188899994, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03575989976525307, "rps_doc_frac_chars_top_3gram": 0.051085568964481354, "rps_doc_frac_chars_top_4gram": 0.06385695934295654, "rps_doc_books_importance": -73.18817138671875, "rps_doc_books_importance_length_correction": -73.18817138671875, "rps_doc_openwebtext_importance": -44.81525421142578, "rps_doc_openwebtext_importance_length_correction": -31.02372169494629, "rps_doc_wikipedia_importance": -31.058624267578125, "rps_doc_wikipedia_importance_length_correction": -31.058624267578125 }, "fasttext": { "dclm": 0.00006472999666584656, "english": 0.7694305777549744, "fineweb_edu_approx": 1.7033897638320923, "eai_general_math": -0.000005129999863129342, "eai_open_web_math": 0.013260009698569775, "eai_web_code": -0.000009299999874201603 } }
{ "free_decimal_correspondence": { "primary": { "code": "912.03", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "Maps and Atlases" } }, "secondary": { "code": "941", "labels": { "level_1": "History and Geography", "level_2": "Europe", "level_3": "Scotland and Ireland" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "7", "label": "Search/Directory/Bibliography" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "20", "label": "Structured Data" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-7,053,424,230,777,341,000
Memorial Day Blowout! Entire Store On Sale! 10% Off Orders Up To $100 | 15% Off Orders Over $100 Good through 5/27/13, excludes Books, Wine, Nambe, Michael Aram, Sales Items, Sukkahs & Schach, Ketubot, Tefillin and Shipping Costs. Judaism.com Judaism.com 1.800.JUDAISM Need Help? Search Judaism.com for Jewish gifts, Judaica and Jewish books. Paper Shoppe Judaism.com shopping basket eMail Sign up Gift Certificates Gift Registry Share:  Email this page to someone. Share this page on del.icio.us Share this page on Facebook Share this page on MySpace Share this page on Reddit Share this page on Twitter Share this page on Pinterest Reference & Quotations Top Stores Jewish Wedding Kosher Wine Jewish Books Mezuzahs Paper Shoppe Bar/Bat Mitzvah Sterling Silver Top Categories Ketubahs Wedding Glass Judaica Tallis Gary Rosenthal Kiddush Cups Tzedakah Boxes Jewish Holidays Tisha B'Av Mon. Eve Jul 15 Rosh Hashanah Wed. Eve Sep 4 Yom Kippur Fri. Eve Sep 13 Items 1 - 10  of  10 | View All Chicken Soup to Warm the Neshama From Krakow to Krypton Great Jewish Quotations Revised Chicken Soup to Warm the Neshama 101 Short Stories, Insights & Sayings Containing Life-Long Lessons Pesach Burston, et al. 5.25"x7" JDC#29920 List Price: $9.99 From Krakow to Krypton Jews and Comic Books Arie Kaplan 8.4"X10.9" JDC#50005 List Price: $25.00 Sale Price: $21.25 Great Jewish Quotations By Jews and About Jews 7.75"x10.25" JDC#40105 List Price: $29.95 Outwitting History The All New Jewish Quiz Book The Jerusalem Book of Quotations Outwitting History The amazing adventures of a man who rescued a million Yiddish books. Aaron Lansky The All New Jewish Quiz Book Barbara Spector JDC#50531 List Price: $9.95 The Jerusalem Book of Quotations A 3,000 Year Perspective Jack Friedman JDC#40124 List Price: $24.95 The Jewish Graphic Novel The Judaic Tradition Tradition! The Jewish Graphic Novel Critical Approaches The Judaic Tradition A Sourcebook of Jewish literature. JDC#10654 List Price: $24.95 Tradition! Jewish Wisdom for Eveyday Life Suzanne S. Zenkel JDC#40118 List Price: $7.99 Where There's Smoke, There's Salmon Where There's Smoke, There's Salmon Jewish Wisdom from Moses to Woody Allen Michael Levin JDC#43508 List Price: $10.95 Jewish Resources Red String Video Instructional Media Beyond The Book Judaism.com Info Contact Judaism.com About Judaism.com Shipping Policy Return Policy Programs & Extras Affiliate/Referral Program Gift Registry Gift Certificates Jewish Resources Order By Phone: 1-800-JUDAISM (1-800-583-2476) Questions Or Comments: [email protected] Technical Problems: [email protected] Category Listing Complete Product Listing Copyright © 1995 - 2013 U.S. Judaica, Inc To find out about Shipping & Handling charges please view our shipping policy. Judaism.com is the longest established Jewish book, Judaica and Jewish gift store on the Internet. Our catalog is the single most comprehensive catalog of Judaica, Jewish books, CDs, video, software, religious articles and Jewish gifts available. Jewish Books |  Judaica & Jewish Gifts |  Jewish Wedding |  Bar Mitzvah & Bat Mitzvah |  Jewish Children's Store |  Shabbat & Jewish Holidays |  Jewish Jewelry |  Jewish Art |  Kosher Wine |  Jewish Artists & Judaica Designers |  Paper Goods & Disposable Dishes
{ "url": "http://www.judaism.com/search.asp?sctn=401", "source_domain": "www.judaism.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "181071", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:NX5I3JJ7PCVSG3RVLZBMYYYL7IOLJOCJ", "WARC-Concurrent-To": "<urn:uuid:093950b1-b908-4337-962f-a5e2d3396be4>", "WARC-Date": "2013-05-27T02:56:33Z", "WARC-IP-Address": "216.18.20.147", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:TEUBKFFUCA2T35VL62T3JVPQCQGFR5WA", "WARC-Record-ID": "<urn:uuid:31130380-304b-4384-9fc8-d8215ef87734>", "WARC-Target-URI": "http://www.judaism.com/search.asp?sctn=401", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9089d9de-94e8-420c-bf2e-1ad6d4f0508e>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 97, 231, 232, 244, 256, 270, 281, 344, 345, 358, 359, 387, 401, 419, 433, 434, 638, 661, 672, 687, 699, 712, 721, 734, 750, 766, 781, 790, 812, 819, 834, 847, 862, 863, 864, 880, 907, 936, 963, 964, 965, 997, 1030, 1053, 1077, 1085, 1118, 1185, 1208, 1217, 1227, 1239, 1245, 1246, 1247, 1270, 1291, 1303, 1314, 1324, 1336, 1343, 1344, 1356, 1363, 1364, 1365, 1389, 1412, 1425, 1435, 1447, 1454, 1455, 1474, 1503, 1536, 1537, 1556, 1625, 1638, 1639, 1668, 1684, 1694, 1706, 1712, 1713, 1714, 1747, 1772, 1786, 1796, 1808, 1815, 1816, 1841, 1862, 1873, 1874, 1899, 1919, 1920, 1941, 1976, 1986, 1998, 2005, 2006, 2007, 2018, 2049, 2067, 2077, 2089, 2095, 2096, 2132, 2133, 2169, 2209, 2223, 2233, 2245, 2252, 2253, 2254, 2255, 2256, 2273, 2290, 2310, 2326, 2343, 2363, 2381, 2397, 2411, 2429, 2456, 2470, 2488, 2505, 2521, 2535, 2552, 2553, 2576, 2593, 2594, 2614, 2636, 2637, 2654, 2679, 2680, 2722, 2723, 2802, 2803, 2804, 3051, 3052 ], "line_end_idx": [ 97, 231, 232, 244, 256, 270, 281, 344, 345, 358, 359, 387, 401, 419, 433, 434, 638, 661, 672, 687, 699, 712, 721, 734, 750, 766, 781, 790, 812, 819, 834, 847, 862, 863, 864, 880, 907, 936, 963, 964, 965, 997, 1030, 1053, 1077, 1085, 1118, 1185, 1208, 1217, 1227, 1239, 1245, 1246, 1247, 1270, 1291, 1303, 1314, 1324, 1336, 1343, 1344, 1356, 1363, 1364, 1365, 1389, 1412, 1425, 1435, 1447, 1454, 1455, 1474, 1503, 1536, 1537, 1556, 1625, 1638, 1639, 1668, 1684, 1694, 1706, 1712, 1713, 1714, 1747, 1772, 1786, 1796, 1808, 1815, 1816, 1841, 1862, 1873, 1874, 1899, 1919, 1920, 1941, 1976, 1986, 1998, 2005, 2006, 2007, 2018, 2049, 2067, 2077, 2089, 2095, 2096, 2132, 2133, 2169, 2209, 2223, 2233, 2245, 2252, 2253, 2254, 2255, 2256, 2273, 2290, 2310, 2326, 2343, 2363, 2381, 2397, 2411, 2429, 2456, 2470, 2488, 2505, 2521, 2535, 2552, 2553, 2576, 2593, 2594, 2614, 2636, 2637, 2654, 2679, 2680, 2722, 2723, 2802, 2803, 2804, 3051, 3052, 3313 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3313, "ccnet_original_nlines": 163, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10349854081869125, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02478134073317051, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3119533360004425, "rps_doc_frac_unique_words": 0.5485231876373291, "rps_doc_mean_word_length": 5.51265811920166, "rps_doc_num_sentences": 49, "rps_doc_symbol_to_word_ratio": 0.011661809869110584, "rps_doc_unigram_entropy": 5.179163932800293, "rps_doc_word_count": 474, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.08113279938697815, "rps_doc_frac_chars_dupe_6grams": 0.038270190358161926, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02755453996360302, "rps_doc_frac_chars_top_3gram": 0.029850749298930168, "rps_doc_frac_chars_top_4gram": 0.034443169832229614, "rps_doc_books_importance": -310.75665283203125, "rps_doc_books_importance_length_correction": -310.75665283203125, "rps_doc_openwebtext_importance": -174.18704223632812, "rps_doc_openwebtext_importance_length_correction": -174.18704223632812, "rps_doc_wikipedia_importance": -128.95001220703125, "rps_doc_wikipedia_importance_length_correction": -128.95001220703125 }, "fasttext": { "dclm": -0.000009059999683813658, "english": 0.6849554181098938, "fineweb_edu_approx": 1.55125093460083, "eai_general_math": -0.000007029999778751517, "eai_open_web_math": 0.026422860100865364, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "296.0", "labels": { "level_1": "Religion", "level_2": "Religions", "level_3": "Judaism" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "7", "label": "Search/Directory/Bibliography" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-666,648,848,829,156,900
SUBSCRIBE NOW WELCOME BACK. Do you want to continue reading where you left off? New Republic subscribers can pick up where they left off no matter which device they were previously using. SUBSCRIBE NOW Go Home Beyond Hypocrisy THE PLANK APRIL 30, 2007 Beyond Hypocrisy Timothy Noah points out that former USAID director Randall Tobias is a hypocrite for cavorting with call girls, seeing as how he oversaw USAID's policy of refusing AIDS funding to any group that didn't sign an anti-prostitution loyalty oath. That's an amusing bit of irony, but now seems like a good time to note that the policy really isn't very funny at all. When Congress first told USAID to make all its recipients sign the pledge, in 2003, lawyers at the Justice Department argued that the policy violated the First Amendment and should be ignored. But the Christian right blew a gasket, DoJ quickly reversed itself, and, under Tobias, USAID started requiring the pledge. The fallout was severe: Brazil lost $40 million in funding for a successful program that persuaded sex workers to use condoms. Over 200 NGOs wrote the White House complaining that the pledge would interfere with their work. In two separate court cases last year, federal judges ordered USAID to stop the policy (those decisions are still being appealed). Of course, since Tobias didn't come up with the pledge, presumably the White House will just find someone with a cleaner personal life to keep things quietly going, but it's still appalling. And here's another question. When Tobias was first hired to head up Bush's AIDS initiative in 2003, a number of people suggested that the former Eli Lilly CEO had been brought aboard to ensure that the money would be spent on brand-name pharmaceuticals rather than cheaper generic drugs. Big Pharma plunders the aid budget, etc. But I haven't seen much follow-up reporting on this, and now seems like an opportune time to find out if Tobias really was horrible on this front or not. --Bradford Plumer SHARE YOUR THOUGHTS Show all 7 comments You must be a subscriber to post comments. Subscribe today. 7 comments New Rasmussen Poll of Likely Dem Primary Voters... Obama: 32% HRC: 30% Obama now leads among voters under 40. Hillary has a 2-point edge among Democrats. Obama has a 19-point lead among independents. In the past 5 weeks: Obama's is up 7 points; Hillary is down 7 points; and John Edwards is stuck in neutral. - g.mcentire April 30, 2007 at 8:26pm You must be a subscriber to post comments. Subscribe today. After this and Tennant puking his guts out in public, how can any rational, morally upright person defend America. All we had to do to win the "War on Terror" was maintain the moral highground and we couldn't even do that. Pond Scumm. - Yminale April 30, 2007 at 9:02pm You must be a subscriber to post comments. Subscribe today. Perhaps Tobias will say he was able to buy his own condoms and therefore didn't need to take an anti-prostitution pledge. - epackard May 1, 2007 at 9:31am You must be a subscriber to post comments. Subscribe today. revelations will be that Rick Santorum owns gay porn, Wolfowitz's maid is in Al Qaeda, and Dick Cheney refrained from kicking a puppy. - japepper May 1, 2007 at 12:28pm You must be a subscriber to post comments. Subscribe today. TNR's blogs are very sloppy. I know you guys probably aren't fact-checked, but maybe you could make some effort to be accurate. 1. Brazil didn't "lose 40 million" in AID, it refused to accept 40 million in AID in order to protest the Bush admin policy, which would have required officials to sign a statement "condemning" sex work. 2. Ultimately, the policy doesn't arise from crazy religious wackos in the Bush admin, it comes from two laws that require groups receiving federal funds have a policy " prohibits funds from going to any group or organization that does not have a policy "explicitly opposing prostitution and sex trafficking." I suppose Bush could have vetoed the laws, but given that one was an AIDS relief bill and one was a sex trafficing bill, it would have been difficult. 3. With that said, there is certainly some impropriety in Tobias patronising a prostitute, given that (1) it's illegal and (2) he's in charge of an organization that is tasked with carrying out Congress's instruction to discourage prostitution. 4. Still, isn't the real story that Tobias was committing a crime? I mean, if I find out that the Surgeon General eats a Big Mac from time to time, even while advocating for lower fat foods, that seems fairly petty hypocrisy, rather than "beyond hypocrisy" or whatever hyperventilation TNR can come up with. If I find out that Corzine supported seat belts, does that make him "beyond a hypocrite?" - Johnni May 1, 2007 at 4:39pm You must be a subscriber to post comments. Subscribe today. Johnni -- Yes, Brazilian officials decided to turn the money down because they believed that signing the pledge would harm their HIV efforts. I think saying they "lost" the money is fine, but I also included a link if you want to find out exactly what happened. And I noted in the post itself that the policy was put in place by Congress, at the behest of the religious right (who later, per the Boston Globe, pressured the Justice Department to reverse its stance on the constitutionality of the laws). Nothing you've said contradicts what I wrote, as far as I can tell. - Brad Plumer May 1, 2007 at 4:59pm You must be a subscriber to post comments. Subscribe today. please let it be so (except for the kicking or nonkicking of puppies). I, for one, am dying to know what Pols are on that list. Please let Newts number be there somewhere. - blackton May 2, 2007 at 3:18pm You must be a subscriber to post comments. Subscribe today. SHARE HIGHLIGHT 0 CHARACTERS SELECTED TWEET THIS POST TO TUMBLR SHARE ON FACEBOOK Close
{ "url": "http://www.newrepublic.com/blog/the-plank/beyond-hypocrisy", "source_domain": "www.newrepublic.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "60540", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ZLNJTMJX7RYIDZ5WGUMCYUXQJFL2XP6K", "WARC-Concurrent-To": "<urn:uuid:8ea2a1c7-3aad-4955-8822-234dc2dd2108>", "WARC-Date": "2013-05-23T18:20:14Z", "WARC-IP-Address": "166.78.242.39", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:U7Q3QUXVEXSPESZL66QMTGAEBZ2EUFYI", "WARC-Record-ID": "<urn:uuid:3d5750dc-c141-4c5c-a3d3-a35870deab77>", "WARC-Target-URI": "http://www.newrepublic.com/blog/the-plank/beyond-hypocrisy", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:01e80e3f-eba3-4dc7-a3ed-fe60195d690f>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 202, 203, 228, 229, 254, 255, 272, 273, 634, 635, 1306, 1307, 1981, 1982, 2000, 2001, 2021, 2022, 2042, 2043, 2103, 2104, 2115, 2116, 2425, 2426, 2439, 2440, 2465, 2466, 2526, 2527, 2762, 2763, 2773, 2774, 2799, 2800, 2860, 2861, 2983, 2984, 2995, 2996, 3018, 3019, 3079, 3080, 3215, 3216, 3227, 3228, 3251, 3252, 3312, 3313, 4749, 4750, 4759, 4760, 4782, 4783, 4843, 4844, 5416, 5417, 5431, 5432, 5454, 5455, 5515, 5516, 5688, 5689, 5700, 5701, 5723, 5724, 5784, 5785, 5801, 5802, 5824, 5825, 5836, 5837, 5852, 5853, 5871, 5872 ], "line_end_idx": [ 202, 203, 228, 229, 254, 255, 272, 273, 634, 635, 1306, 1307, 1981, 1982, 2000, 2001, 2021, 2022, 2042, 2043, 2103, 2104, 2115, 2116, 2425, 2426, 2439, 2440, 2465, 2466, 2526, 2527, 2762, 2763, 2773, 2774, 2799, 2800, 2860, 2861, 2983, 2984, 2995, 2996, 3018, 3019, 3079, 3080, 3215, 3216, 3227, 3228, 3251, 3252, 3312, 3313, 4749, 4750, 4759, 4760, 4782, 4783, 4843, 4844, 5416, 5417, 5431, 5432, 5454, 5455, 5515, 5516, 5688, 5689, 5700, 5701, 5723, 5724, 5784, 5785, 5801, 5802, 5824, 5825, 5836, 5837, 5852, 5853, 5871, 5872, 5877 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5877, "ccnet_original_nlines": 90, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 7, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.38530611991882324, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.041632648557424545, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1893877536058426, "rps_doc_frac_unique_words": 0.47804391384124756, "rps_doc_mean_word_length": 4.617764472961426, "rps_doc_num_sentences": 63, "rps_doc_symbol_to_word_ratio": 0.0008163300226442516, "rps_doc_unigram_entropy": 5.642598628997803, "rps_doc_word_count": 1002, "rps_doc_frac_chars_dupe_10grams": 0.08299113810062408, "rps_doc_frac_chars_dupe_5grams": 0.08904258161783218, "rps_doc_frac_chars_dupe_6grams": 0.08299113810062408, "rps_doc_frac_chars_dupe_7grams": 0.08299113810062408, "rps_doc_frac_chars_dupe_8grams": 0.08299113810062408, "rps_doc_frac_chars_dupe_9grams": 0.08299113810062408, "rps_doc_frac_chars_top_2gram": 0.012102870270609856, "rps_doc_frac_chars_top_3gram": 0.015560840256512165, "rps_doc_frac_chars_top_4gram": 0.017289819195866585, "rps_doc_books_importance": -556.2019653320312, "rps_doc_books_importance_length_correction": -556.2019653320312, "rps_doc_openwebtext_importance": -384.5471496582031, "rps_doc_openwebtext_importance_length_correction": -384.5471496582031, "rps_doc_wikipedia_importance": -320.0751953125, "rps_doc_wikipedia_importance_length_correction": -320.0751953125 }, "fasttext": { "dclm": 0.022696319967508316, "english": 0.9712174534797668, "fineweb_edu_approx": 1.0213291645050049, "eai_general_math": 0.033490780740976334, "eai_open_web_math": 0.20999598503112793, "eai_web_code": 0.0017121999990195036 } }
{ "free_decimal_correspondence": { "primary": { "code": "362.1968", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } }, "secondary": { "code": "320.973", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
315,877,408,424,771,900
Architects Journal - Olympic news http://www.architectsjournal.co.uk http://www.architectsjournal.co.uk http://www.architectsjournal.co.uk/magazine/graphics/logo.png Architects Journal http://www.architectsjournal.co.uk West Ham confirmed as tenant for Populous' Olympic Stadium http://www.architectsjournal.co.uk/news/daily-news/west-ham-confirmed-as-tenant-for-populous-olympic-stadium/8644623.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/west-ham-confirmed-as-tenant-for-populous-olympic-stadium/8644623.article West Ham will take on a 99-year concession at the Olympic Stadium, moving into the Populous-designed arena in time for the 2016-2017 season. Fri, 22 Mar 2013 15:07 GMT Ungagged Olympic architects named http://www.architectsjournal.co.uk/news/daily-news/ungagged-olympic-architects-named/8644424.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/ungagged-olympic-architects-named/8644424.article Olympic Stadium designer Populous features among 19 architects officially allowed to publicise their role in designing the London 2012 games [email protected] (Merlin Fulcher) Wed, 20 Mar 2013 08:49 GMT What do the Olympics do for host cities? We don’t know, says expert http://www.architectsjournal.co.uk/news/daily-news/what-do-the-olympics-do-for-host-cities-we-dont-know-says-expert/8644198.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/what-do-the-olympics-do-for-host-cities-we-dont-know-says-expert/8644198.article The impact of Games on their host cities must be tracked to access the true cost and legacy, says real estate guru [email protected] (Christine Murray) Wed, 13 Mar 2013 18:17 GMT CABE pans first post-Olympic homes http://www.architectsjournal.co.uk/news/daily-news/cabe-pans-first-post-olympic-homes/8641579.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/cabe-pans-first-post-olympic-homes/8641579.article The first housing to emerge as part of London’s Olympic legacy has been described as a ‘poor precedent’ for future development [email protected] (Merlin Fulcher) Tue, 22 Jan 2013 14:49 GMT Zaha Hadid wins Japan national stadium contest http://www.architectsjournal.co.uk/news/daily-news/zaha-hadid-wins-japan-national-stadium-contest/8638748.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/zaha-hadid-wins-japan-national-stadium-contest/8638748.article Zaha Hadid Architects has seen off 10 global big hitters to win the contest to overhaul Japan’s national stadium [email protected] (Merlin Fulcher) Thu, 15 Nov 2012 11:50 GMT Delayed: Olympic Stadium not to re-open for up to four years http://www.architectsjournal.co.uk/news/daily-news/delayed-olympic-stadium-not-to-re-open-for-up-to-four-years/8638458.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/delayed-olympic-stadium-not-to-re-open-for-up-to-four-years/8638458.article Populous’ London 2012 Olympic stadium may have to wait another four years before re-opening to the public [email protected] (Merlin Fulcher) Mon, 12 Nov 2012 08:20 GMT In pictures: Olympic stars Zaha and Populous among finalists for Japan stadium http://www.architectsjournal.co.uk/news/daily-news/in-pictures-olympic-stars-zaha-and-populous-among-finalists-for-japan-stadium/8637869.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/in-pictures-olympic-stars-zaha-and-populous-among-finalists-for-japan-stadium/8637869.article Images of the 11-strong international shortlist of design teams competing to overhaul Japan’s national stadium have been revealed [email protected] (Merlin Fulcher) Tue, 30 Oct 2012 09:49 GMT Make’s Olympic Park south plaza scoops planning http://www.architectsjournal.co.uk/news/daily-news/makes-olympic-park-south-plaza-scoops-planning/8637686.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/makes-olympic-park-south-plaza-scoops-planning/8637686.article Make and James Corner Field Operations have won planning permission for a new post-games public realm on the Olympic Park in east London [email protected] (Merlin Fulcher) Wed, 24 Oct 2012 12:39 GMT ODA chair to lead Labour infrastructure commission http://www.architectsjournal.co.uk/news/daily-news/oda-chair-to-lead-labour-infrastructure-commission/8636636.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/oda-chair-to-lead-labour-infrastructure-commission/8636636.article Olympic Delivery Authority chairman John Armitt has agreed to lead a new independent commission looking at delivering priority infrastructure schemes through cross-party consensus Tue, 2 Oct 2012 08:13 GMT Foster sets up in Sao Paulo as Brits win Brazilian work http://www.architectsjournal.co.uk/news/daily-news/foster-sets-up-in-sao-paulo-as-brits-win-brazilian-work/8636497.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/foster-sets-up-in-sao-paulo-as-brits-win-brazilian-work/8636497.article British businesses have won £70 million of contracts for the 2014 World Cup and Rio 2016 Olympic and Paralympic games, the prime minister said today (28 September) Fri, 28 Sep 2012 16:41 GMT Olympic employment legacy in doubt, says report http://www.architectsjournal.co.uk/news/daily-news/olympic-employment-legacy-in-doubt-says-report/8636160.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/olympic-employment-legacy-in-doubt-says-report/8636160.article Research released today by a recruitment website has found that two-thirds in the built environment are sceptical about the long-term employment legacy of the Olympics Mon, 24 Sep 2012 17:19 GMT Olympic feel-good factor was a result of masterly design http://www.architectsjournal.co.uk/comment/olympic-feel-good-factor-was-a-result-of-masterly-design/8635820.article?referrer=RSS http://www.architectsjournal.co.uk/comment/olympic-feel-good-factor-was-a-result-of-masterly-design/8635820.article Games Maker Yasmin Shariff on how the Olympic Park was transformed by architects and the community of volunteers Mon, 17 Sep 2012 18:02 GMT Fallon confirmed as construction minister in BIS reshuffle http://www.architectsjournal.co.uk/news/daily-news/fallon-confirmed-as-construction-minister-in-bis-reshuffle/8635466.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/fallon-confirmed-as-construction-minister-in-bis-reshuffle/8635466.article New business minister Michael Fallon will take over from outgoing construction minister Mark Prisk’s brief within the Department for Business. Fri, 7 Sep 2012 10:47 GMT In Pictures: Olympic Shooting Range by Magma Architecture http://www.architectsjournal.co.uk/news/in-pictures-olympic-shooting-range-by-magma-architecture/8634308.article?referrer=RSS http://www.architectsjournal.co.uk/news/in-pictures-olympic-shooting-range-by-magma-architecture/8634308.article [FIRST LOOK + DRAWINGS] Magma’s temporary venue in Woolwich has been the venue for the 2012 Olympic shooting events [email protected] (Tom Ravenscroft) Fri, 10 Aug 2012 17:03 GMT Doors close on another Newham pop-up http://www.architectsjournal.co.uk/news/daily-news/doors-close-on-another-newham-pop-up/8634227.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/doors-close-on-another-newham-pop-up/8634227.article Struggling regeneration scheme Industri[us] has been closed for the rest of August after a request for emergency funding was turned down by Newham Council Fri, 10 Aug 2012 08:03 GMT Velodrome leak caused by careless workman http://www.architectsjournal.co.uk/news/daily-news/velodrome-leak-caused-by-careless-workman/8634263.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/velodrome-leak-caused-by-careless-workman/8634263.article Leaking earlier this week at Hopkins’ Olympic velodrome has been blamed on damage caused by a workman [email protected] (Richard Waite) Thu, 9 Aug 2012 15:15 GMT Khan, Ely, Deely, Burdett and others on Olympic legacy review panel http://www.architectsjournal.co.uk/news/daily-news/khan-ely-deely-burdett-and-others-on-olympic-legacy-review-panel/8634164.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/khan-ely-deely-burdett-and-others-on-olympic-legacy-review-panel/8634164.article The London Legacy Development Corporation has named the design review panel which will oversee the development of the post-Games Queen Elizabeth Olympic Park [email protected] (Richard Waite) Tue, 7 Aug 2012 17:38 GMT Lego Games - the Olympic park in mini-bricks http://www.architectsjournal.co.uk/news/daily-news/lego-games-the-olympic-park-in-mini-bricks/8634151.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/lego-games-the-olympic-park-in-mini-bricks/8634151.article Artist Warren Elsmore has recreated the Olympic Park in LEGO bricks to celebrate the London Games [email protected] (Tom Ravenscroft) Tue, 7 Aug 2012 16:51 GMT Olympic special: Subscribe to AJ today and receive a free Velodrome monograph http://www.architectsjournal.co.uk/olympic-special-subscribe-to-aj-today-and-receive-a-free-velodrome-monograph/8634050.article?referrer=RSS http://www.architectsjournal.co.uk/olympic-special-subscribe-to-aj-today-and-receive-a-free-velodrome-monograph/8634050.article Claim your 110-page detailed monograph on Hopkins Architects’ Stirling Prize-nominated Velodrome with contributions from Sir Chris Hoy, Mike Taylor, Chris Wise, Richard Arnold, Ron Webb, Paul Finch, Peter Blundell Jones and Sarah Storey, plus foreword by Sir Nichols Serota Fri, 3 Aug 2012 16:13 GMT DC CABE and Moylan join RIBA in battle against Olympic marketing ban http://www.architectsjournal.co.uk/news/daily-news/dc-cabe-and-moylan-join-riba-in-battle-against-olympic-marketing-ban/8634021.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/dc-cabe-and-moylan-join-riba-in-battle-against-olympic-marketing-ban/8634021.article Design Council Cabe and London Legacy Development Corporation chair Daniel Moylan have thrown their weight behind the RIBA’s ‘Drop the ban’ campaign Fri, 3 Aug 2012 09:43 GMT Getting shirty: Murray sidesteps the Olympic marketing ban http://www.architectsjournal.co.uk/news/daily-news/getting-shirty-murray-sidesteps-the-olympic-marketing-ban/8634020.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/getting-shirty-murray-sidesteps-the-olympic-marketing-ban/8634020.article New London Architecture chairman Peter Murray has taken his seemingly one-man campaign against the draconian Olympic anti-marketing protocol onto a new battlefield armed with a hard-hitting new weapon Fri, 3 Aug 2012 09:38 GMT Triumphant Heatherwick sets Games alight: plans, models and reaction http://www.architectsjournal.co.uk/news/daily-news/triumphant-heatherwick-sets-games-alight-plans-models-and-reaction/8633938.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/triumphant-heatherwick-sets-games-alight-plans-models-and-reaction/8633938.article The AJ can revealed the first drawings and models of Thomas Heatherwick’s show-stopping London 2012 Olympic cauldron, which was kept firmly under wraps until last Friday’s spectacular opening ceremony [email protected] (Richard Waite) Thu, 2 Aug 2012 16:30 GMT Chris Brown: Olympics 'not best way to regenerate' http://www.architectsjournal.co.uk/news/daily-news/chris-brown-olympics-not-best-way-to-regenerate/8633982.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/chris-brown-olympics-not-best-way-to-regenerate/8633982.article A regeneration expert has warned that London did not have time to maximise the benefits of hosting the Olympic Games Thu, 2 Aug 2012 16:21 GMT Revealed: first images of PRP and Make's Olympic legacy housing http://www.architectsjournal.co.uk/news/daily-news/revealed-first-images-of-prp-and-makes-olympic-legacy-housing/8628448.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/revealed-first-images-of-prp-and-makes-olympic-legacy-housing/8628448.article The AJ can reveal pictures of Make Architects, PRP Architects, Muf, Karakusevic Carson and NORD’s competition-winning scheme for the first phase of the Olympic Park’s redevelopment in London [email protected] (Merlin Fulcher) Thu, 2 Aug 2012 09:06 GMT Olympics boost client enquiries despite gag order http://www.architectsjournal.co.uk/olympics-boost-client-enquiries-despite-gag-order/8633936.article?referrer=RSS http://www.architectsjournal.co.uk/olympics-boost-client-enquiries-despite-gag-order/8633936.article Practices involved in the Olympic and Paralympic Games have reported an upsurge in work as a direct result of their involvement, despite LOCOG’s punitive marketing ban. Thu, 2 Aug 2012 08:30 GMT Gallery: Thomas Heatherwick's showstopping Olympic 2012 cauldron http://www.architectsjournal.co.uk/news/daily-news/gallery-thomas-heatherwicks-showstopping-olympic-2012-cauldron/8633793.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/gallery-thomas-heatherwicks-showstopping-olympic-2012-cauldron/8633793.article Thomas Heatherwick’s London 2012 Olympic cauldron, which was kept firmly under wraps until last Friday night, has been hailed almost universally as a design triumph [email protected] (Richard Waite) Tue, 31 Jul 2012 17:07 GMT Animated pixel display lights up Olympic opening ceremony http://www.architectsjournal.co.uk/news/daily-news/-animated-pixel-display-lights-up-olympic-opening-ceremony/8633897.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/-animated-pixel-display-lights-up-olympic-opening-ceremony/8633897.article Pixel tablets turn audience into giant video screen. Team of 50 designers delivered the project in just 14 weeks Sun, 29 Jul 2012 17:47 GMT Ticketing mishap restricts views in Zaha’s £268m Aquatics Centre http://www.architectsjournal.co.uk/news/daily-news/ticketing-mishap-restricts-views-in-zahas-268m-aquatics-centre/8633704.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/ticketing-mishap-restricts-views-in-zahas-268m-aquatics-centre/8633704.article Around 600 spectators have been sold tickets for Zaha Hadid’s showstopper London 2012 Aquatics Centre unaware they will not be able to see the top of the diving board [email protected] (Merlin Fulcher) Thu, 26 Jul 2012 14:01 GMT Video exclusive: Olympic Park from the air http://www.architectsjournal.co.uk/news/daily-news/video-exclusive-olympic-park-from-the-air/8633518.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/video-exclusive-olympic-park-from-the-air/8633518.article A dusk flight over the Olympic Park shows a mini replica of the Thames inside Populous’ Olympic Stadium [email protected] (Simon Hogg) Wed, 25 Jul 2012 11:15 GMT Jason Bruges flicks switch on Coca Cola Olympic pavilion light show http://www.architectsjournal.co.uk/news/daily-news/jason-bruges-flicks-switch-on-coca-cola-olympic-pavilion-light-show/8633570.article?referrer=RSS http://www.architectsjournal.co.uk/news/daily-news/jason-bruges-flicks-switch-on-coca-cola-olympic-pavilion-light-show/8633570.article Lighting designer Jason Bruges has completed a light installation within Pernilla and Asif’s Coca-Cola Beatbox pavilion on the Olympic Park Tue, 24 Jul 2012 17:42 GMT
{ "url": "http://www.architectsjournal.co.uk/XmlServers/navsectionRSS.aspx?navsectioncode=5408", "source_domain": "www.architectsjournal.co.uk", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "24910", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:NY2HWTATXOQMCSQRKB5DIJG5CLSJ6ZAW", "WARC-Concurrent-To": "<urn:uuid:7c2dddbe-492b-42a5-8768-f484f4741b45>", "WARC-Date": "2013-05-21T12:05:37Z", "WARC-IP-Address": "130.185.67.109", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:GZPKFBX2H3YLE4DAAXZMPCFZO7WEZBZ2", "WARC-Record-ID": "<urn:uuid:46cb1254-438b-4c65-8410-dd9457fcf552>", "WARC-Target-URI": "http://www.architectsjournal.co.uk/XmlServers/navsectionRSS.aspx?navsectioncode=5408", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:56f3d6a9-d955-49b4-984b-d93c5b335d10>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0 ], "line_end_idx": [ 15390 ] }
{ "red_pajama_v2": { "ccnet_original_length": 15390, "ccnet_original_nlines": 0, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.14095883071422577, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.020844189450144768, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.40828555822372437, "rps_doc_frac_unique_words": 0.5052802562713623, "rps_doc_mean_word_length": 10.30869197845459, "rps_doc_num_sentences": 321, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.846522331237793, "rps_doc_word_count": 1231, "rps_doc_frac_chars_dupe_10grams": 0.009771469980478287, "rps_doc_frac_chars_dupe_5grams": 0.014814809896051884, "rps_doc_frac_chars_dupe_6grams": 0.009771469980478287, "rps_doc_frac_chars_dupe_7grams": 0.009771469980478287, "rps_doc_frac_chars_dupe_8grams": 0.009771469980478287, "rps_doc_frac_chars_dupe_9grams": 0.009771469980478287, "rps_doc_frac_chars_top_2gram": 0.006619390100240707, "rps_doc_frac_chars_top_3gram": 0.020803779363632202, "rps_doc_frac_chars_top_4gram": 0.0034672999754548073, "rps_doc_books_importance": -1447.25048828125, "rps_doc_books_importance_length_correction": -1447.25048828125, "rps_doc_openwebtext_importance": -615.8236083984375, "rps_doc_openwebtext_importance_length_correction": -615.8236083984375, "rps_doc_wikipedia_importance": -392.4491271972656, "rps_doc_wikipedia_importance_length_correction": -392.4491271972656 }, "fasttext": { "dclm": 0.000023599999622092582, "english": 0.7319208383560181, "fineweb_edu_approx": 1.0745981931686401, "eai_general_math": 0.00009346000297227874, "eai_open_web_math": 0.031628791242837906, "eai_web_code": 0.00001990999953704886 } }
{ "free_decimal_correspondence": { "primary": { "code": "720.0", "labels": { "level_1": "Arts", "level_2": "Architecture", "level_3": "" } }, "secondary": { "code": "796.5", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
6,051,228,391,510,727,000
Guidetti looking for loan move Manchester City striker John Guidetti is looking to join an English club on loan, according to the player's Italian agent. Last Updated: 11/01/13 at 21:09 Post Comment John Guidetti: Manchester City striker is looking to join a club on loan John Guidetti: Manchester City striker is looking to join a club on loan Guidetti has yet to play for City this season after being sidelined by injury, but was rewarded with a new three-year contract in October. He impressed on loan at Feyenoord last season and his Italian representative Roberto De Fanti says Guidetti subsequently rejected a loan move to Siena last summer. A January switch to Serie A has also been ruled out by De Fanti as Guidetti hopes to head out on loan this month in order to play first-team football. "In the summer, the deal for Guidetti's transfer on loan to Siena was already done, then he talked with David Platt and decided to remain at City," De Fanti told Radio Blu. "Now he is back after injury and he's looking for a team, but I think his most likely destination will be in England. "A move to Italy could be possible for next season." Football365 Facebook Fan Page The Football365 fan page is a great place to meet like minded people, have football related discussions and make new friends. Related News Sky Bet • Retrieving latest Sky Bet odds Most Commented Readers' Comments S wap deal with ITV. Can't wait to see Stuart Pearce and Roy Keane giving each other the evils. rambo Southgate tipped for U-21 job J oe has signed John Scales instead. rambo Newcastle pull Douglas deal D oes the medical involve some sort of dressage event? shabtastic Carroll set for Hammers medical Footer 365 Luis Suarez should not be blinded by Liverpool loyalty, says Jamie Carragher Jamie Carragher says Luis Suarez should not be blinded by loyalty to Liverpool if Real Madrid make a big-money offer. Confederations Cup: Brazil on verge of semi-finals after 2-0 win over Mexico Neymar all but fired Brazil to the semi-finals of the Confederations Cup as they defeated Mexico 2-0. Transfer news: Feyenoord say Lex Immers will stay following links to Cardiff City Feyenoord have moved to dismiss reports that midfielder Lex Immers could be on his way to Cardiff City. Mail Box 'Bye Sunderland' & More Fixtures Reaction The afternoon mailbox has plenty more views on the fixture list. Plus, a sublime piece of skill from Emile Heskey, more cool 'ballers and dull football matches... One Guy's Genuinely Irked About Fixtures A Gooner in the Mailbox seems to genuinely think that the world/fixture computer is against his team. Sigh. That, plus more cool footballers & Mike Ashley: Supervillain... © 2013 British Sky Broadcasting Ltd. All Rights Reserved
{ "url": "http://www.football365.com/news/21554/8391421/Manchester-City-striker-John-Guidetti-looking-for-loan-move-but-not-to-Italy", "source_domain": "www.football365.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "67287", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:V3YOIH6AZHYDHSTWW5OTDM47WYKHGBXH", "WARC-Concurrent-To": "<urn:uuid:4575cef0-5d99-4007-824b-11198e1fcce6>", "WARC-Date": "2013-06-20T03:28:39Z", "WARC-IP-Address": "8.26.202.126", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:XPLE4E6YQASZKS3RPP6S7HUQQNKF5ECE", "WARC-Record-ID": "<urn:uuid:ba88e147-6cd1-46bc-bf7a-850a3fbc1553>", "WARC-Target-URI": "http://www.football365.com/news/21554/8391421/Manchester-City-striker-John-Guidetti-looking-for-loan-move-but-not-to-Italy", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:03000c2f-d44e-447d-9722-4c22561cfcff>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 31, 32, 155, 156, 201, 202, 275, 276, 349, 350, 489, 490, 654, 655, 806, 807, 980, 981, 1099, 1100, 1153, 1154, 1184, 1185, 1311, 1312, 1325, 1326, 1334, 1335, 1372, 1373, 1388, 1389, 1407, 1408, 1410, 1411, 1505, 1506, 1512, 1542, 1543, 1545, 1546, 1581, 1582, 1588, 1616, 1617, 1619, 1620, 1673, 1674, 1685, 1717, 1718, 1729, 1730, 1807, 1808, 1926, 1927, 2004, 2005, 2107, 2108, 2190, 2191, 2295, 2296, 2305, 2306, 2348, 2349, 2512, 2513, 2554, 2555, 2727, 2728 ], "line_end_idx": [ 31, 32, 155, 156, 201, 202, 275, 276, 349, 350, 489, 490, 654, 655, 806, 807, 980, 981, 1099, 1100, 1153, 1154, 1184, 1185, 1311, 1312, 1325, 1326, 1334, 1335, 1372, 1373, 1388, 1389, 1407, 1408, 1410, 1411, 1505, 1506, 1512, 1542, 1543, 1545, 1546, 1581, 1582, 1588, 1616, 1617, 1619, 1620, 1673, 1674, 1685, 1717, 1718, 1729, 1730, 1807, 1808, 1926, 1927, 2004, 2005, 2107, 2108, 2190, 2191, 2295, 2296, 2305, 2306, 2348, 2349, 2512, 2513, 2554, 2555, 2727, 2728, 2784 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2784, "ccnet_original_nlines": 81, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3302752375602722, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.01834861934185028, "rps_doc_frac_lines_end_with_ellipsis": 0.024390239268541336, "rps_doc_frac_no_alph_words": 0.14311927556991577, "rps_doc_frac_unique_words": 0.5603448152542114, "rps_doc_mean_word_length": 4.754310131072998, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0.003669719910249114, "rps_doc_unigram_entropy": 5.254168510437012, "rps_doc_word_count": 464, "rps_doc_frac_chars_dupe_10grams": 0.05349047854542732, "rps_doc_frac_chars_dupe_5grams": 0.08068902790546417, "rps_doc_frac_chars_dupe_6grams": 0.08068902790546417, "rps_doc_frac_chars_dupe_7grams": 0.08068902790546417, "rps_doc_frac_chars_dupe_8grams": 0.05349047854542732, "rps_doc_frac_chars_dupe_9grams": 0.05349047854542732, "rps_doc_frac_chars_top_2gram": 0.01631912961602211, "rps_doc_frac_chars_top_3gram": 0.028558479622006416, "rps_doc_frac_chars_top_4gram": 0.020398909226059914, "rps_doc_books_importance": -189.85198974609375, "rps_doc_books_importance_length_correction": -189.85198974609375, "rps_doc_openwebtext_importance": -93.89529418945312, "rps_doc_openwebtext_importance_length_correction": -93.89529418945312, "rps_doc_wikipedia_importance": -92.2839584350586, "rps_doc_wikipedia_importance_length_correction": -92.2839584350586 }, "fasttext": { "dclm": 0.00016301999858114868, "english": 0.9563114643096924, "fineweb_edu_approx": 0.8456671833992004, "eai_general_math": 0.000029680000807275064, "eai_open_web_math": 0.024632040411233902, "eai_web_code": -0.000009059999683813658 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.334092", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-4,247,515,332,250,148,400
Online Now 348 Prevot Still Showing Interest Torrodney Prevot Prevot intends to visit A&M, OU, Cal and USC officially this fall. Alief Taylor (TX) defensive end Torrodney Prevot chose USC over Texas A&M in late August but that hasn’t stopped the Aggie’s pursuit of the 4-star defender. Taylor Hamm Already have an account? Sign In Add a comment Want to be involved in the discussion? 30-Day Free Trial
{ "url": "http://tamu.247sports.com/Article/Despite-his-commitment-to-USC-Torrodney-Prevot-visits-Texas-AM-89942", "source_domain": "tamu.247sports.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "30544", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TXJXB2NLXN3IYANS4QHIVO4EZQRARMTZ", "WARC-Concurrent-To": "<urn:uuid:85b3dce6-66a0-4c3f-8db2-ea18c83b6e4a>", "WARC-Date": "2013-05-20T12:08:31Z", "WARC-IP-Address": "68.71.98.20", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:G22R5MWSH7QEZMPHVZZGSPJ3AQGNFHXW", "WARC-Record-ID": "<urn:uuid:428ffa98-029e-4869-8f49-26efb9086afc>", "WARC-Target-URI": "http://tamu.247sports.com/Article/Despite-his-commitment-to-USC-Torrodney-Prevot-visits-Texas-AM-89942", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:13170e80-3873-447a-9cc2-7bc83694b3bf>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 15, 16, 46, 47, 64, 65, 132, 133, 290, 291, 303, 304, 337, 338, 352 ], "line_end_idx": [ 15, 16, 46, 47, 64, 65, 132, 133, 290, 291, 303, 304, 337, 338, 352, 408 ] }
{ "red_pajama_v2": { "ccnet_original_length": 408, "ccnet_original_nlines": 15, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.21590909361839294, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.09090909361839294, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1931818127632141, "rps_doc_frac_unique_words": 0.8235294222831726, "rps_doc_mean_word_length": 4.735294342041016, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.939091205596924, "rps_doc_word_count": 68, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.09316769987344742, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -49.24726486206055, "rps_doc_books_importance_length_correction": -49.24726867675781, "rps_doc_openwebtext_importance": -27.0842227935791, "rps_doc_openwebtext_importance_length_correction": -27.084226608276367, "rps_doc_wikipedia_importance": -20.847318649291992, "rps_doc_wikipedia_importance_length_correction": -20.847322463989258 }, "fasttext": { "dclm": 0.0000015499999790336005, "english": 0.8492381572723389, "fineweb_edu_approx": 0.47183945775032043, "eai_general_math": 0.00018566999642644078, "eai_open_web_math": 0.22711575031280518, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "373.122", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Secondary and High schools" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-4,524,654,493,658,088,000
New York What’s your chocolate chip cookie preference? 6eb285388fe84a6fd62551436b364be9 When on the verge of a second global financial crisis, or maybe a deepening of The Great Second Depression that shall not be spoken of in such terms, all I want to think about are cookies, or as Tom Haverford from “Parks and Recreation” would call them, tiny-ass cakes. But there’s so much to love about chocolate chip cookies specifically and so many different ways those tiny-ass cakes can be made. This came to light when Tate’s Baked Goods sent me some whole wheat chocolate chip cookies. A thin, dark brown disc with large chocolate chunks in it, the cookies Tate’s sent by appearances, seemed like the dried out over-cooked homemade cookies I’d try to make as a teenager. But eating them is a very different experience from gnawing on those charred pucks I used to make. Tate’s cookies are crispy and crumbly in an incredibly palatable way. Let’s do a rundown of our favorite grocery store chocolate chip cookies and see which come out on top: Chips Ahoy: These, our gossip columnist Dorothy Robinson says, “seem to be made with chimney ash.” But many would assert that they boast a strong dunkability due to that firmness. Plus, as our art director Benn Storey says, they’re not too sweet. Soft Batch: Soft Batch cookies were super trendy in the 80s when they first came on the scene. Everyone loved microwaving them and pretending they came right out of the oven. However, that seems to have gotten old, because no one I asked listed them as a current favorite. Also, now we have refridgerated cookie dough, which if you can manage to get it on the cookie sheet without eating it raw, does a better job at being freshly baked. Entenmann’s: These little discs were roundly the favorite of our office, with both Music Editor Pat Healy and Health Editor Meredith Engel naming them as a fave. Meredith says, “they are really soft, and they’re also small, so I don’t feel too bad about having a couple or a few.” Honorable mentions go to Famous Amos and Peggy Lawton’s cookies. But which ones are your favorites? News Entertainment Sports Lifestyle International Turkish riot police storm Istanbul park to end… Turkish riot police stormed a central Istanbul park on Saturday firing tear gas and water cannon to evict hundreds of anti-government protesters, hours after an ultimatum from Prime Minister Tayyip… International Hospital siege, blasts new Pakistan government's first security… Militants in a volatile region of western Pakistan bombed a bus carrying women students on Saturday and then seized part of the hospital where survivors were taken, in the first… International Pakistan militants blast bus, attack hospital; at least… Militants in western Pakistan bombed a bus carrying women university students on Saturday and then seized part of the hospital where survivors of the attack were taken, killing at least… International Moderate cleric takes lead in Iran presidential election Moderate cleric Hassan Rohani took a solid lead over conservative rivals on Saturday in preliminary vote counting in Iran's presidential election in what could be the makings of a surprise… Entertainment The Word: Kanye does not want to hear… If you spotted Jesus Effing Christ strolling down Madison Ave in a hoodie, just minding his own business, rolling with his boys the Apostles, would you try to talk to… Movies Terrence Stamp, the original General Zod, talks 'Man… The original General Zod tells Metro why he doesn't think the new Superman film can measure up to Richard Donner's. Arts Mia Grace Montross, a true avenger “Between ‘The Super Hero Squad Show’ and the comics I read her, she’s just a comic freak,” says the father of 4-year-old Mia Grace Montross. The Word The Word: Is Amanda Bynes faking her meltdown? Is Amanda Bynes acting crazy - or crazy like a fox? NFL Jets officially sign Kellen Winslow Jr. to contract In a move that surprised no one, the Jets announced Friday afternoon tight end Kellen Winslow Jr. signed a deal with the team. NBA Jason Kidd introduced as new Nets head coach Jason Kidd approached his meeting with Nets general manager Billy King like many job seekers. NFL Giants wrap up minicamp with words of warning… The Giants wrapped up their minicamp portion of the offseason on Thursday with the next stop being the commencement of training camp on July 26. NFL Jets' Idzik dealing with early failures in offseason When Jets general manager John Idzik took the job in January, he stood at the podium and spoke about a new direction. Turns out, it's easier said than done. National Celebrate World Blood Donor Day... with Soleil Moon… Needles aren’t usually people’s favorite part of their doctor visits, but who could resist donating blood if Punky Brewster asked you to? June 14 marks… Lifestyle Want a perfect night's Sleep? Check out these… In our loud, technology-filled world getting the perfect nights sleep can nearly impossible. However, according to a recent Huffington Post article, there are 13 ways… Education Ten years of encouraging Hispanic students to stay… Telemundo hopes to convince students to pursue education. Education Pencils down, the ACT is going digital Taking tests on paper might soon be a thing of the past.
{ "url": "http://www.metro.us/newyork/lifestyle/food/2011/08/07/whats-your-chocolate-chip-cookie-preference/", "source_domain": "www.metro.us", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "53691", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:XKHIFVUETIWTKYJMQNCDCT6D357EBD67", "WARC-Concurrent-To": "<urn:uuid:ba981f7e-0e5a-49db-95dc-c02a5c47533a>", "WARC-Date": "2013-06-19T03:00:23Z", "WARC-IP-Address": "74.201.235.253", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:DQVTYEPA3M2O2OECKDMHHIHV4QR5N2FG", "WARC-Record-ID": "<urn:uuid:a2fb4250-8d7e-4109-83dd-6709ff23ad82>", "WARC-Target-URI": "http://www.metro.us/newyork/lifestyle/food/2011/08/07/whats-your-chocolate-chip-cookie-preference/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4a421bf5-b608-44f1-a206-61c5f88dc4db>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 9, 10, 56, 57, 90, 91, 361, 362, 939, 940, 1043, 1044, 1291, 1292, 1730, 1731, 2012, 2013, 2113, 2114, 2115, 2120, 2134, 2141, 2151, 2165, 2166, 2214, 2215, 2414, 2415, 2429, 2430, 2495, 2496, 2675, 2676, 2690, 2691, 2748, 2749, 2936, 2937, 2951, 2952, 3009, 3010, 3200, 3201, 3215, 3216, 3255, 3256, 3424, 3425, 3432, 3433, 3487, 3488, 3604, 3605, 3610, 3611, 3646, 3647, 3788, 3789, 3798, 3799, 3846, 3847, 3899, 3900, 3904, 3905, 3957, 3958, 4085, 4086, 4090, 4091, 4136, 4137, 4231, 4232, 4236, 4237, 4284, 4285, 4430, 4431, 4435, 4436, 4489, 4490, 4647, 4648, 4657, 4658, 4711, 4712, 4865, 4866, 4876, 4877, 4924, 4925, 5093, 5094, 5104, 5105, 5157, 5158, 5216, 5217, 5227, 5228, 5267, 5268 ], "line_end_idx": [ 9, 10, 56, 57, 90, 91, 361, 362, 939, 940, 1043, 1044, 1291, 1292, 1730, 1731, 2012, 2013, 2113, 2114, 2115, 2120, 2134, 2141, 2151, 2165, 2166, 2214, 2215, 2414, 2415, 2429, 2430, 2495, 2496, 2675, 2676, 2690, 2691, 2748, 2749, 2936, 2937, 2951, 2952, 3009, 3010, 3200, 3201, 3215, 3216, 3255, 3256, 3424, 3425, 3432, 3433, 3487, 3488, 3604, 3605, 3610, 3611, 3646, 3647, 3788, 3789, 3798, 3799, 3846, 3847, 3899, 3900, 3904, 3905, 3957, 3958, 4085, 4086, 4090, 4091, 4136, 4137, 4231, 4232, 4236, 4237, 4284, 4285, 4430, 4431, 4435, 4436, 4489, 4490, 4647, 4648, 4657, 4658, 4711, 4712, 4865, 4866, 4876, 4877, 4924, 4925, 5093, 5094, 5104, 5105, 5157, 5158, 5216, 5217, 5227, 5228, 5267, 5268, 5324 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5324, "ccnet_original_nlines": 119, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3771592974662781, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.011516310274600983, "rps_doc_frac_lines_end_with_ellipsis": 0.13333332538604736, "rps_doc_frac_no_alph_words": 0.13531669974327087, "rps_doc_frac_unique_words": 0.5621436834335327, "rps_doc_mean_word_length": 4.889395713806152, "rps_doc_num_sentences": 35, "rps_doc_symbol_to_word_ratio": 0.016314780339598656, "rps_doc_unigram_entropy": 5.78450345993042, "rps_doc_word_count": 877, "rps_doc_frac_chars_dupe_10grams": 0.028917910531163216, "rps_doc_frac_chars_dupe_5grams": 0.04664178937673569, "rps_doc_frac_chars_dupe_6grams": 0.04664178937673569, "rps_doc_frac_chars_dupe_7grams": 0.04664178937673569, "rps_doc_frac_chars_dupe_8grams": 0.028917910531163216, "rps_doc_frac_chars_dupe_9grams": 0.028917910531163216, "rps_doc_frac_chars_top_2gram": 0.008162310346961021, "rps_doc_frac_chars_top_3gram": 0.01399253960698843, "rps_doc_frac_chars_top_4gram": 0.010261190123856068, "rps_doc_books_importance": -419.4769287109375, "rps_doc_books_importance_length_correction": -419.4769287109375, "rps_doc_openwebtext_importance": -244.98829650878906, "rps_doc_openwebtext_importance_length_correction": -244.98829650878906, "rps_doc_wikipedia_importance": -195.35089111328125, "rps_doc_wikipedia_importance_length_correction": -195.35089111328125 }, "fasttext": { "dclm": 0.007905480451881886, "english": 0.9463629126548767, "fineweb_edu_approx": 1.4928960800170898, "eai_general_math": 0.005212550051510334, "eai_open_web_math": 0.09725344181060791, "eai_web_code": 0.0003503600019030273 } }
{ "free_decimal_correspondence": { "primary": { "code": "641.863", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } }, "secondary": { "code": "306.482", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "12", "label": "Listicle" }, "secondary": { "code": "14", "label": "News Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
9,130,299,131,197,208,000
Welcome to my humble blog! Hello everyone. I wish to welcome you and thank you for visiting my blog. I hope you enjoy your visit and that you get a chance to respond to any of the posts. I hope you have a wonderful day. God bless you. Wednesday, February 16, 2011 A Statement from HH Pope Shenouda III 2 comments: 1. Could someone please translate this into English? Thank you. ReplyDelete 2. IT LOOKS LIKE IT IS A REVOLUTION FOR THE MAJORITY OF MUSLIMS AND FOR THEIR HUMAN RIGHTS.THE 15 MILLION CHRISTIANS WILL RECEIVE THEIR CRUMBS IF ANY. ReplyDelete
{ "url": "http://bishopsuriel.blogspot.com/2011/02/statement-from-hh-pope-shenouda-iii.html", "source_domain": "bishopsuriel.blogspot.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "82294", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2KBUN5I7WEAVITHWT37GPQZCUM6ZHWG4", "WARC-Concurrent-To": "<urn:uuid:da3b46ef-ea6c-4e98-baa0-db6d71a1d431>", "WARC-Date": "2013-06-19T07:21:04Z", "WARC-IP-Address": "74.125.228.12", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:XYZ6HHHZADJWIP2OP6QJBVT7IQOOGJXX", "WARC-Record-ID": "<urn:uuid:16aed550-e428-4d39-ac17-8649737883c1>", "WARC-Target-URI": "http://bishopsuriel.blogspot.com/2011/02/statement-from-hh-pope-shenouda-iii.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:909ffaf9-8493-4840-b661-e079f1eea071>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 27, 28, 44, 45, 103, 104, 190, 191, 239, 240, 241, 270, 271, 309, 310, 322, 323, 389, 390, 406, 559, 560 ], "line_end_idx": [ 27, 28, 44, 45, 103, 104, 190, 191, 239, 240, 241, 270, 271, 309, 310, 322, 323, 389, 390, 406, 559, 560, 575 ] }
{ "red_pajama_v2": { "ccnet_original_length": 575, "ccnet_original_nlines": 22, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2931034564971924, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.27586206793785095, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.18103447556495667, "rps_doc_frac_unique_words": 0.699999988079071, "rps_doc_mean_word_length": 4.380000114440918, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.092822551727295, "rps_doc_word_count": 100, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03652967885136604, "rps_doc_frac_chars_top_3gram": 0.03652967885136604, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -57.751399993896484, "rps_doc_books_importance_length_correction": -72.0758056640625, "rps_doc_openwebtext_importance": -36.71505355834961, "rps_doc_openwebtext_importance_length_correction": -51.03945541381836, "rps_doc_wikipedia_importance": -34.82536697387695, "rps_doc_wikipedia_importance_length_correction": -49.1497688293457 }, "fasttext": { "dclm": 0.0002502799907233566, "english": 0.907475471496582, "fineweb_edu_approx": 0.402255117893219, "eai_general_math": 0.00012230999709572643, "eai_open_web_math": 0.06772022694349289, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "282.09", "labels": { "level_1": "Religion", "level_2": "Christian sects", "level_3": "Catholic Church" } }, "secondary": { "code": "297.09", "labels": { "level_1": "Religion", "level_2": "Religions", "level_3": "Islam and Bahai Faith" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "5", "label": "Evaluate" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,259,307,005,373,441,000
[TriLUG] Anybody using DD-WRT? John Wheeler jwheeler at etherealfringe.com Thu Jul 31 16:10:38 EDT 2008 I run dd-wrt on quite a few routers, from buffalo's to wrt54g's and most recently, a WRT 310n (great 4-port gigabit N router for $99 @ best buy - as long as you don't need external antennae). As far as i know there is no auto update feature for the firmware. It has to be done manually. No service i can think of should allow connections from set ips at all times. I mean the firmware can do many things, from kaid xbox networks, to vpn solutions running on the router, to dynamic ip -> hostname updating services like dyndns. But in all cases the connections should be initiated from the router itself. This is puzzling, i am looking into it. You might consider posting to the forums or ask in #dd-wrt on freenode. I will say this much, the community around dd-wrt is comprised of fairly knowledgeable folks. It's hard to imagine anything devious here. Still, it is puzzling. What services do you have turned on for this setup? Have you modified the default options much? John Wheeler Web Applications Developer jcw.dev at gmail.com 336-255-8004 On Jul 31, 2008, at 1:56 PM, Joseph Mack NA3T wrote: > On Thu, 31 Jul 2008, Brian Daniels wrote: > >> Um, hello? Why are there two 'accept all' rules from sites in >> Germany? > > you can download packages and update the machine on the fly. > Possibly these are the download sites. The hostnames and IPs > don't match with www.dd-wrt.com though. > > Joe > > -- > Joseph Mack NA3T EME(B,D), FM05lw North Carolina > jmack (at) wm7d (dot) net - azimuthal equidistant map > generator at http://www.wm7d.net/azproj.shtml > Homepage http://www.austintek.com/ It's GNU/Linux! > -- > TriLUG mailing list : http://www.trilug.org/mailman/listinfo/trilug > TriLUG FAQ : http://www.trilug.org/wiki/Frequently_Asked_Questions More information about the TriLUG mailing list
{ "url": "http://www.trilug.org/pipermail/trilug/Week-of-Mon-20080728/055546.html", "source_domain": "www.trilug.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "4675", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LQUR3JAGMGNY7C56AYSTJOE3EWHP6QRF", "WARC-Concurrent-To": "<urn:uuid:a0675c15-edb8-464c-a043-e003f1764106>", "WARC-Date": "2013-05-22T09:34:55Z", "WARC-IP-Address": "64.244.27.136", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:KMQM7EBH4RMQNDW6HWVEMO645I7FTD44", "WARC-Record-ID": "<urn:uuid:5b2bbc2d-ba70-4848-b791-2774ff1845a1>", "WARC-Target-URI": "http://www.trilug.org/pipermail/trilug/Week-of-Mon-20080728/055546.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6d52f390-fc9b-43ed-8dcd-0526e49d58a9>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 31, 32, 76, 105, 106, 107, 177, 246, 303, 375, 441, 480, 550, 615, 646, 647, 718, 766, 830, 895, 968, 982, 1005, 1006, 1078, 1104, 1105, 1118, 1145, 1166, 1179, 1180, 1233, 1234, 1278, 1280, 1348, 1360, 1362, 1425, 1488, 1530, 1532, 1538, 1540, 1546, 1597, 1653, 1701, 1754, 1760, 1837, 1907, 1908, 1909, 1910 ], "line_end_idx": [ 31, 32, 76, 105, 106, 107, 177, 246, 303, 375, 441, 480, 550, 615, 646, 647, 718, 766, 830, 895, 968, 982, 1005, 1006, 1078, 1104, 1105, 1118, 1145, 1166, 1179, 1180, 1233, 1234, 1278, 1280, 1348, 1360, 1362, 1425, 1488, 1530, 1532, 1538, 1540, 1546, 1597, 1653, 1701, 1754, 1760, 1837, 1907, 1908, 1909, 1910, 1956 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1956, "ccnet_original_nlines": 56, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2822757065296173, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.035010941326618195, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.29759299755096436, "rps_doc_frac_unique_words": 0.6450511813163757, "rps_doc_mean_word_length": 4.962457180023193, "rps_doc_num_sentences": 35, "rps_doc_symbol_to_word_ratio": 0.0021881801076233387, "rps_doc_unigram_entropy": 5.018229961395264, "rps_doc_word_count": 293, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.015130669809877872, "rps_doc_frac_chars_top_3gram": 0.01925721950829029, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -210.35025024414062, "rps_doc_books_importance_length_correction": -210.35025024414062, "rps_doc_openwebtext_importance": -119.1802749633789, "rps_doc_openwebtext_importance_length_correction": -119.1802749633789, "rps_doc_wikipedia_importance": -86.46836853027344, "rps_doc_wikipedia_importance_length_correction": -86.46836853027344 }, "fasttext": { "dclm": -0.000003580000111469417, "english": 0.8990638256072998, "fineweb_edu_approx": 1.1440154314041138, "eai_general_math": 0.049093540757894516, "eai_open_web_math": 0.14879244565963745, "eai_web_code": 0.0006282899994403124 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.6", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "005.1", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,486,865,933,799,964,000
Canucksdrum: Ryan Kesler & the injured shoulder trickle down effects Ryan Kesler NWSB Insider and Vancouver Canucks blogger The Flying V – Kevin Vanstone weighs in on the Ryan Kesler shoulder injury, will he or won’t he start the season? The trickle down effects and questions. If Maxim Lapierre is moved up to the second line, Chicago Wolves’ center Jordan Schroeder depth chart, what kind of minutes will Manny Malhotra get? In the meantime, it is up to Gillis to decide if his hockey team can afford to learn on the fly. The Canucks Roberto Luongo tells CFOX … “It’s time to move on!” roberto luongo NWSB Rookie Insider and Vancouver Canucks blogger Mitch Dyck weighs in today on the latest Canucks news coming out. An interview by Robert Luongo was given today on CFOX radio in Vancouver. Did we learn some juicy details about Luongo or what? His biggest line, At the end of the day I think it’s time to move on, and I’m ok with that. Mitch says Lu will be damn hard to replace. @Strombone1: Where Canucks goalie controversy and twitter controversy collide Roberto Luongo? NWSB Insider and Vancouver Canucks writer The Flying V has returned to weigh in on the Roberto Luongo twitter controversy. Guess what the Canucks have officially lost to the eventual Stanley Cup Champions. Again. So, whether Luongo himself runs the infamous account, or another Canuck has jokingly taken up his online persona, one NHL team seems destined to become distracted by the infamous Strombone. Vancouver Canucks 2012 NHL Draft plan of attack mike gillis Richard Hodges has taken multiple breaths since the season ended just to make sure he can soundly type something that makes sense and trust me, he waited long enough. Rich delivers a gem that suggest three areas the Vancouver Canucks need to focus on at the upcoming NHL Entry Draft. I’m thinking this is where we solve that goalie dilemma of ours. Dalton Thrower should be a name to watch for. *My* Top Canucks and Vancouver fanbase pet peeves canucks fake jerseys Josh Hall is back with his top five Vancouver Canucks related Pet Peeves and he’s kinda peeved so to speak at the fanbase that wreaks havoc here in VanCity. It’s brutal to sit at home watching a Canucks game and notice the lack of atmosphere there is at Rogers Arena. You know Roberto Luongo will be involved somewhere but is it because everything’s his fault? Read on to find out.
{ "url": "http://www.nwsportsbeat.com/tag/strombone1/", "source_domain": "www.nwsportsbeat.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "98155", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:OQLOWSTKBNLVR7KYWSO6D76ONRPO6RPR", "WARC-Concurrent-To": "<urn:uuid:4f812056-7564-4e7e-b866-6e9759366c98>", "WARC-Date": "2013-05-24T03:02:15Z", "WARC-IP-Address": "98.129.229.222", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:KUCO7RBALR6JMZJADUG2PYAAVIIOZKQG", "WARC-Record-ID": "<urn:uuid:ce3f82e7-9331-42cd-9834-d6520c0c7b26>", "WARC-Target-URI": "http://www.nwsportsbeat.com/tag/strombone1/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e5c5263d-188a-41ec-8bfe-2be9f1140025>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 69, 70, 82, 83, 526, 527, 591, 592, 607, 608, 988, 989, 1067, 1068, 1084, 1085, 1488, 1489, 1537, 1538, 1550, 1551, 1946, 1947, 1997, 1998, 2019, 2020 ], "line_end_idx": [ 69, 70, 82, 83, 526, 527, 591, 592, 607, 608, 988, 989, 1067, 1068, 1084, 1085, 1488, 1489, 1537, 1538, 1550, 1551, 1946, 1947, 1997, 1998, 2019, 2020, 2401 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2401, "ccnet_original_nlines": 28, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37154990434646606, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02760085090994835, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1104034036397934, "rps_doc_frac_unique_words": 0.5724637508392334, "rps_doc_mean_word_length": 4.671497344970703, "rps_doc_num_sentences": 23, "rps_doc_symbol_to_word_ratio": 0.0021231400314718485, "rps_doc_unigram_entropy": 5.089123725891113, "rps_doc_word_count": 414, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.051706310361623764, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0496380589902401, "rps_doc_frac_chars_top_3gram": 0.029472600668668747, "rps_doc_frac_chars_top_4gram": 0.040330920368433, "rps_doc_books_importance": -193.55538940429688, "rps_doc_books_importance_length_correction": -193.55538940429688, "rps_doc_openwebtext_importance": -122.65890502929688, "rps_doc_openwebtext_importance_length_correction": -122.65890502929688, "rps_doc_wikipedia_importance": -95.78009033203125, "rps_doc_wikipedia_importance_length_correction": -95.78009033203125 }, "fasttext": { "dclm": 0.0011363000376150012, "english": 0.9256591200828552, "fineweb_edu_approx": 0.9020647406578064, "eai_general_math": 0.0069200401194393635, "eai_open_web_math": 0.06804096698760986, "eai_web_code": 0.00152211997192353 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.9601", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.9602", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "16", "label": "Personal Blog" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-5,948,567,963,107,148,000
Dionysius of Alexandria; Dionysius the Great (born c.190) Bishop of Alexandria. He studied under Origen, and eventually became the head of the catechetical school. In 250 there was a severe persecution under Decius in Alexandria, which Dionysius attempted to flee, but was taken into custody. He was rescued by Christians and remained in hiding in the Libyan desert until the persecution ceased, 251. At this juncture the Novatian schism occurred in which Dionysius supported Cornelius, the rightful pope, and it was largely through his influence that the whole East was unified. During the persecution of Valerian, he was banished, 257, to the desert of Mareotis, returning to Alexandria when toleration was decreed, 260, by Gallienus. Dionysius dealt leniently with the Christians who had lapsed during the persecutions and refused forgiveness to none at the hour of death. He wrote a work on the Apocalypse, which ranks high as biblical criticism. New Catholic Dictionary NCD Index SQPN Contact Author
{ "url": "http://saints.sqpn.com/ncd02726.htm", "source_domain": "saints.sqpn.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "4641", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:WYWRFONPPL2EWDE7NZQSHS32TYQMHNUN", "WARC-Concurrent-To": "<urn:uuid:d807c682-a6a7-44f3-b2c8-b5a3bf6960ff>", "WARC-Date": "2013-05-24T20:00:34Z", "WARC-IP-Address": "50.23.131.74", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:FB66RDXHZVV46RKKJXZDDLRYFIK2OPRO", "WARC-Record-ID": "<urn:uuid:7657f7a2-6dd7-4d64-b9b5-83cfef8c8761>", "WARC-Target-URI": "http://saints.sqpn.com/ncd02726.htm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1493e567-50a8-4554-893a-6f08e1984aa8>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 45, 46, 952, 953, 977, 978 ], "line_end_idx": [ 45, 46, 952, 953, 977, 978, 1007 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1007, "ccnet_original_nlines": 6, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.385869562625885, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010869570076465607, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.16304348409175873, "rps_doc_frac_unique_words": 0.6518987417221069, "rps_doc_mean_word_length": 5.202531814575195, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.3291168212890625, "rps_doc_word_count": 158, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.029197080060839653, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -79.14746856689453, "rps_doc_books_importance_length_correction": -79.14746856689453, "rps_doc_openwebtext_importance": -42.22019577026367, "rps_doc_openwebtext_importance_length_correction": -28.22857666015625, "rps_doc_wikipedia_importance": -33.483741760253906, "rps_doc_wikipedia_importance_length_correction": -33.483741760253906 }, "fasttext": { "dclm": 0.1316242814064026, "english": 0.9861411452293396, "fineweb_edu_approx": 2.8748843669891357, "eai_general_math": 0.21049469709396362, "eai_open_web_math": 0.5632882118225098, "eai_web_code": 0.013253389857709408 } }
{ "free_decimal_correspondence": { "primary": { "code": "270.092", "labels": { "level_1": "Religion", "level_2": "Church history", "level_3": "" } }, "secondary": { "code": "282.092", "labels": { "level_1": "Religion", "level_2": "Christian sects", "level_3": "Catholic Church" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "10", "label": "Knowledge Article" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
c78d4cf040abe984322cbd60a93ed16f
1,809,609,861,876,470,500
Why is a Bogus Financial Planner so Difficult to Identify? You need to know there are real financial planners and there are bogus financial planners. The fake planners use the title to reduce sales resistance when they sell investment and insurance products. For example, a  plan may recommend a substantial purchase of insurance products. You are more likely to buy if it is recommended by the plan and not by the financial planner. What is the difference? There is no difference when the plan represents the financial interests of the planner. Industry Regulations There are no industry regulations that limit who can call themselves financial planners. A brand new sales rep may adopt the title to facilitate the sales of financial products. There are no tests to make this claim more valid and there are no licenses for financial planners. If you are asking why, it is because Wall Street firms also benefit from this deceptive sales tactic. The firms make more money when they make it easy for their reps to sell investment products and services. And make no mistake.  Wall Street has tremendous influence over the regulations that govern the industry.  Continue reading Seven Layers of Investment Fees Seven Layers of Investment FeesWould you believe there are seven layers of investment fees that can be deducted from your investment accounts? It would be rare to pay all seven, but four or five are fairly common. The more you know about investment fees the less likely excessive expenses will impact you. Every dollar of investment fees is one less dollar you have for reinvestment and your future use. Long-term goals, like secure retirements, can be severely impacted by excessive expenses.  Continue reading Are Investors Paying too Much for Investment Services? Investment expenses are complex and advisors are reluctant to discuss them. They don’t want you to know what you pay in total fees because you may not buy what they are selling. And, they know you may be particularly sensitive about the fees they earn in down markets when you are incurring big losses. If you want to know more about the expenses you pay, you will have to ask the right questions and you better obtain your advisor’s responses in writing. Documentation is a lot better than verbal information that is subject to recall and is easy to deny later. Continue reading VAR: Valueless at Risk JPMorgan Chase CEO Jamie Dimon said the firm suffered a $2 billion trading loss blaming an “egregious” failure in the firm’s risk management. JP Morgan’s $2 billion dollar blunder has its roots in something called Value at Risk (VAR) which is a measure of how much a company estimates it could lose on a portfolio of securities on 95 percent of days. It’s a model that supposedly measures the boundaries of risk in a bank, a portfolio, or a hedge fund under “normal” market conditions. Its main selling point is that it can simply express risk as a single number or dollar figure and ignore the greater complexities of financial markets. Continue reading More CPAs are Providing Financial Planning Services The AICPA announced more CPAs are beginning to offer financial planning services to their clients. This is an excellent fit due to the number of tax considerations in a financial plan. CPAs have two major competitive advantages. First, their clients already trust them. And, trust gives them instant credibility. Second, CPA is a designation that is recognized by just about everybody. Very few people recognize the CFP® designation. Some CPAs will look at planning as nothing more than an additional source of revenue from current client relationships. Notwithstanding its lack of recognition, other more serious CPAs will add a CFP® designation to their credentials. It’s excellent training and the designation will distinguish them from CPAs and CPA/PFS’.
{ "url": "http://www.investorwatchdog.com/blog/tag/financial-planning/", "source_domain": "www.investorwatchdog.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "45841", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:W56ZVEWMUNKGX5SVQGDZNMDETRJBWS5P", "WARC-Concurrent-To": "<urn:uuid:9d7a2333-5dc8-4c10-a244-a16d15da4378>", "WARC-Date": "2013-05-18T18:32:59Z", "WARC-IP-Address": "108.171.163.111", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:OUOLQVEOYD53BB3V726QXK22YMAD4JFJ", "WARC-Record-ID": "<urn:uuid:b7c43ff2-1700-44f1-9c25-7c6c40be096e>", "WARC-Target-URI": "http://www.investorwatchdog.com/blog/tag/financial-planning/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0ce55a3e-5ef2-40a2-9879-6f2ed17b4210>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 59, 60, 547, 548, 569, 570, 1179, 1180, 1212, 1213, 1519, 1520, 1726, 1727, 1782, 1783, 2086, 2087, 2364, 2365, 2388, 2389, 3044, 3045, 3097, 3098, 3283, 3284, 3533, 3534 ], "line_end_idx": [ 59, 60, 547, 548, 569, 570, 1179, 1180, 1212, 1213, 1519, 1520, 1726, 1727, 1782, 1783, 2086, 2087, 2364, 2365, 2388, 2389, 3044, 3045, 3097, 3098, 3283, 3284, 3533, 3534, 3858 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3858, "ccnet_original_nlines": 30, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.43417367339134216, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.015406159684062004, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.10364145785570145, "rps_doc_frac_unique_words": 0.4566929042339325, "rps_doc_mean_word_length": 4.954330921173096, "rps_doc_num_sentences": 39, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.1830267906188965, "rps_doc_word_count": 635, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.017164649441838264, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.015257470309734344, "rps_doc_frac_chars_top_3gram": 0.00953591987490654, "rps_doc_frac_chars_top_4gram": 0.021932609379291534, "rps_doc_books_importance": -304.63262939453125, "rps_doc_books_importance_length_correction": -304.63262939453125, "rps_doc_openwebtext_importance": -184.23162841796875, "rps_doc_openwebtext_importance_length_correction": -184.23162841796875, "rps_doc_wikipedia_importance": -165.30528259277344, "rps_doc_wikipedia_importance_length_correction": -165.30528259277344 }, "fasttext": { "dclm": 0.013133109547197819, "english": 0.9596918821334839, "fineweb_edu_approx": 1.4552578926086426, "eai_general_math": 0.01626623049378395, "eai_open_web_math": 0.03227663040161133, "eai_web_code": 0.0009508099756203592 } }
{ "free_decimal_correspondence": { "primary": { "code": "332.0246", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Finance" } }, "secondary": { "code": "332.6", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Finance" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
c78d4cf040abe984322cbd60a93ed16f
8,459,642,450,972,972,000
Chalkboard Left Adventures of the Bailey School Kids #9 Pirates Don't Wear Pink Sunglasses Lesson Plan: Costume Party! Reward your class for working hard: Have a dress-up day for your favorite Bailey School Kids Character. Be a pirate with pink sunglasses, an angel who knows karate, or choose from over 48 other characters. And the costumes don’t have to be monsters or teachers only. Don’t forget Eddie and the gang! Aye, Pirates! Pirates really existed. They looted unarmed ships from sea to sea. Look up pirates in the library or on the Web. Find two interesting things to tell your class about pirates. Original Cover Original Cover Back to Adventures of the Bailey School Kids Back to Previous Page Debbie Dadey Logo
{ "url": "http://www.debbiedadey.com/Teachers/index.php?gid=93", "source_domain": "www.debbiedadey.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "20358", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:BURACICGMWMPF6QMFFAX76UMUEBZZNR7", "WARC-Concurrent-To": "<urn:uuid:e4a1ee10-4b48-464d-98dd-65a84d8e218f>", "WARC-Date": "2013-05-22T04:32:34Z", "WARC-IP-Address": "198.1.77.74", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:7A4TLAIGAVIYQCT77PCSMBC57EY6OFUG", "WARC-Record-ID": "<urn:uuid:82560da9-ee72-4929-a1dd-6ccdcb661df3>", "WARC-Target-URI": "http://www.debbiedadey.com/Teachers/index.php?gid=93", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:bea4ec11-ecb8-428a-bdaa-39dac5226053>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 16, 17, 54, 55, 93, 94, 107, 122, 422, 436, 611, 612, 627, 642, 643, 688, 689, 711 ], "line_end_idx": [ 16, 17, 54, 55, 93, 94, 107, 122, 422, 436, 611, 612, 627, 642, 643, 688, 689, 711, 728 ] }
{ "red_pajama_v2": { "ccnet_original_length": 728, "ccnet_original_nlines": 18, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.31506848335266113, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1506849229335785, "rps_doc_frac_unique_words": 0.6803278923034668, "rps_doc_mean_word_length": 4.778688430786133, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0.006849320139735937, "rps_doc_unigram_entropy": 4.267096042633057, "rps_doc_word_count": 122, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1063464805483818, "rps_doc_frac_chars_dupe_6grams": 0.1063464805483818, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.061749570071697235, "rps_doc_frac_chars_top_3gram": 0.08233276009559631, "rps_doc_frac_chars_top_4gram": 0.07204116880893707, "rps_doc_books_importance": -75.38762664794922, "rps_doc_books_importance_length_correction": -75.39781951904297, "rps_doc_openwebtext_importance": -43.04889678955078, "rps_doc_openwebtext_importance_length_correction": -43.05908966064453, "rps_doc_wikipedia_importance": -38.48136520385742, "rps_doc_wikipedia_importance_length_correction": -38.491554260253906 }, "fasttext": { "dclm": -0.0000071499998739454895, "english": 0.8601041436195374, "fineweb_edu_approx": 1.1353620290756226, "eai_general_math": 0.00015068000357132405, "eai_open_web_math": 0.13941144943237305, "eai_web_code": -0.000008940000043367036 } }
{ "free_decimal_correspondence": { "primary": { "code": "372.6", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Elementary and Kindergarten" } }, "secondary": { "code": "796.43", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,311,284,212,402,229,800
Game Soundtracks CDJapan ToHeart2 – Kusugawa Sasara 1/6 PVC figure by FREEing Tags: , , , , ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing FREEing is going to release the Kusugawa Sasara (久寿川 ささら) 1/6 PVC figure from the eroge/OVA “ToHeart2″ published by Leaf/AQUAPLUS. Will be released in February April 2012. Around 210mm tall, 9,334 yen. You can order her here ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing Is it just me or the head of this Sasara figure is too small compares to her body? (-____-.? ——Description from Manufacturer—— The talented student council vice-president, wearing a sexy bikini! From the popular adventure dating sim game, ‘ToHeart2″ comes a 1/6th scale figure of Sasara Kusugawa – the talented vice-president of the student council who manages to get through all the council’s duties on her own! She is well known for her cold personality, and may be feared by most students at her school – but they’d definitely warm up to her if they got a good look at her wonderful proportions! She is wearing a lovely white bikini posed on her knees while holding onto her bikini strings – definitely a pose that fans won’t be able to get enough of! ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing ToHeart2 Kusugawa Sasara 1/6 PVC figure by FREEing
{ "url": "http://www.nekomagic.com/?p=27898", "source_domain": "www.nekomagic.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "55831", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2ELB7LLEXJAGPXC563IZ5XB3WSP4CNMK", "WARC-Concurrent-To": "<urn:uuid:1198c025-dcd3-413f-a796-ac82f1535d21>", "WARC-Date": "2013-05-22T19:11:46Z", "WARC-IP-Address": "74.208.82.167", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:FXYL6X3OXMTNGSXKUJ2NW22CIR6DSQIA", "WARC-Record-ID": "<urn:uuid:760a18d1-84d6-477b-b5c7-ad769318d069>", "WARC-Target-URI": "http://www.nekomagic.com/?p=27898", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:85641e4e-5943-4ef4-a0ab-e776a065e34d>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 25, 26, 79, 80, 94, 95, 148, 149, 351, 352, 428, 429, 522, 523, 557, 558, 626, 627, 845, 846, 1188, 1189, 1242, 1243, 1296, 1297, 1350, 1351, 1404, 1405, 1458, 1459, 1512, 1513, 1566, 1567, 1620, 1621, 1674, 1675, 1728, 1729 ], "line_end_idx": [ 25, 26, 79, 80, 94, 95, 148, 149, 351, 352, 428, 429, 522, 523, 557, 558, 626, 627, 845, 846, 1188, 1189, 1242, 1243, 1296, 1297, 1350, 1351, 1404, 1405, 1458, 1459, 1512, 1513, 1566, 1567, 1620, 1621, 1674, 1675, 1728, 1729, 1781 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1781, "ccnet_original_nlines": 42, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2734806537628174, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.046961329877376556, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2541436553001404, "rps_doc_frac_unique_words": 0.4160839319229126, "rps_doc_mean_word_length": 4.877622604370117, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.115291118621826, "rps_doc_word_count": 286, "rps_doc_frac_chars_dupe_10grams": 0.3311828076839447, "rps_doc_frac_chars_dupe_5grams": 0.41577062010765076, "rps_doc_frac_chars_dupe_6grams": 0.41577062010765076, "rps_doc_frac_chars_dupe_7grams": 0.41577062010765076, "rps_doc_frac_chars_dupe_8grams": 0.3913978636264801, "rps_doc_frac_chars_dupe_9grams": 0.3311828076839447, "rps_doc_frac_chars_top_2gram": 0.1505376249551773, "rps_doc_frac_chars_top_3gram": 0.11827956885099411, "rps_doc_frac_chars_top_4gram": 0.19068099558353424, "rps_doc_books_importance": -200.28602600097656, "rps_doc_books_importance_length_correction": -193.8228302001953, "rps_doc_openwebtext_importance": -122.96259307861328, "rps_doc_openwebtext_importance_length_correction": -122.96259307861328, "rps_doc_wikipedia_importance": -91.88529205322266, "rps_doc_wikipedia_importance_length_correction": -90.35399627685547 }, "fasttext": { "dclm": 0.0002738799958024174, "english": 0.9350153803825378, "fineweb_edu_approx": 1.1900725364685059, "eai_general_math": 0.004893119912594557, "eai_open_web_math": 0.1566077470779419, "eai_web_code": 0.00016790999507065862 } }
{ "free_decimal_correspondence": { "primary": { "code": "741.2", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } }, "secondary": { "code": "794.8", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
1,762,075,668,166,741,200
Long Island Business News » market economy http://libn.com The premier source of Long Island news and data on business, economic trends and the region’s robust entrepreneurial sector. Wed, 22 May 2013 19:36:31 +0000 en hourly 1 http://wordpress.org/?v=3.3.1 Keating: What Occupy Wall Street is all about http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/ http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/#comments Wed, 30 Nov 2011 11:51:44 +0000 Raymond Keating http://libn.com/?p=66978 http://libn.com/2011/11/30/keating-what-occupy-wall-street-is-all-about/feed/ 3 Keating: Setting the facts straight on trade http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/ http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/#comments Wed, 22 Jun 2011 18:42:49 +0000 Raymond Keating http://libn.com/?p=58790 http://libn.com/2011/06/22/keating-setting-the-facts-straight-on-trade/feed/ 1
{ "url": "http://libn.com/tag/market-economy/feed/", "source_domain": "libn.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "4299", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:7WDFGRJ2LD774M4QFAPUTOMNKNSJZSVB", "WARC-Concurrent-To": "<urn:uuid:5c6ad168-8193-4491-9341-e7921e664f5c>", "WARC-Date": "2013-05-23T08:49:03Z", "WARC-IP-Address": "64.244.52.200", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:GKP5N3VNNEBBOBBWFSR42WENZAYOWNQK", "WARC-Record-ID": "<urn:uuid:c8176231-426e-488f-a21f-f2ee5411749e>", "WARC-Target-URI": "http://libn.com/tag/market-economy/feed/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:51fdbb92-00df-48be-809e-3b105ee78d04>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0 ], "line_end_idx": [ 961 ] }
{ "red_pajama_v2": { "ccnet_original_length": 961, "ccnet_original_nlines": 0, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1385135054588318, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.5439189076423645, "rps_doc_frac_unique_words": 0.7564102411270142, "rps_doc_mean_word_length": 9.538461685180664, "rps_doc_num_sentences": 17, "rps_doc_symbol_to_word_ratio": 0.0067567601799964905, "rps_doc_unigram_entropy": 3.981123924255371, "rps_doc_word_count": 78, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02688172087073326, "rps_doc_frac_chars_top_3gram": 0.04838709905743599, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -140.31729125976562, "rps_doc_books_importance_length_correction": -140.31729125976562, "rps_doc_openwebtext_importance": -108.89221954345703, "rps_doc_openwebtext_importance_length_correction": -95.47293853759766, "rps_doc_wikipedia_importance": -70.8907241821289, "rps_doc_wikipedia_importance_length_correction": -70.8907241821289 }, "fasttext": { "dclm": -0.000007749999895168003, "english": 0.6543139219284058, "fineweb_edu_approx": 1.058804988861084, "eai_general_math": -0.000009059999683813658, "eai_open_web_math": 0.00038534001214429736, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "330.0", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "" } }, "secondary": { "code": "338.0", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-521,469,403,078,653,250
Stream it now Hellboy II: The Golden Army IMDb rating: 7.1 (136,499 votes) IMDb ID: 0411477 Duration: 120 min Release Date: July 11, 2008 Solar rating: Be first to rate! Please wait.. The mythical world starts a rebellion against humanity in order to rule the Earth, so Hellboy and his team must save the world from the rebellious creatures. Action, Adventure, Fantasy produced in 2008 [USA, Germany]     Voting Quality Age   Voting Quality Age Movie trailer Сomments 8/2 - Gangs of New York (Martin Scorsese, 2002, Rental): 8 8/7 - Away from Her (Sarah Polley, 2007, Rental): 9 8/9 - Tell No One (Guillaume Canet, 2008, Download): 8 8/16 - Hellboy 2: The Golden Army (Guillermo del Toro, 2008, Download): 8 8/20 - Kung Fu Panda (Mark Osborne & John Stevenson, 2008, Download): 6.5 reply just saw a sneak last night. never saw the first one. i thought it was easily the best movie i've seen all year. if only every superhero, fantasy, summer action flick was this good. humor, special effects, emotion...i was floored! reply This seems very awkward.Never seen hellboy and got no idea until i saw this trailer and i though. "Wow this might not be bad" well when it comes i will know. Is it good or is bad...is it AWESOME or is TERRIBLE.We will wait......its STRANGE i am talking about HELLBOY...Yeah THE STRANGERS(2008) WAS HORRIBLE I AINT SEEING IT UNLESS I GET 50$ OR MORE.....yeah lets end by saying READ THIS DAMN REVIEW...I mean preview lol :D reply I must admit I wasn't a great fan of Hell Boy 1, and in fact never heard of the Hell Boy comic before the movie but, being a sci-fi fantasy buff I found it very watchable and was very much looking forward to del Toro's vision for this next chapter. He did not let me down. His creatures and CGI were incredibly beautiful and his casting of Luke Goss (Nomak from Blade2) as prince Nuada was right on. Incredable action and acrobatic fight scenes left me wanting more when the movie was done. A must see movie! reply :fresh: Hellboy II is another guillermo master piece!!!! It will keep you at the edge of your seet! reply I guess since i'm on(but totally drained ) I'll give my non-spoiler review.This movie will knock your socks off.it's totally different from what you expect.Different from the first film ,but totally in a good way.the plot's out there, so i won't go into that. Mignola and del Toro spin a tale that covers the world and the otherworldly.you will be immersed into a world of familiar old friends and enthalled by some new ones. visually ,two words comes to mind spectacular and breathtaking..."eye protein" as del toro calls it...INDEED!!!to see the concepts in the "Art Of..." book come to life are a wonder in itself.(kudos to all involved). The performances...are stellar.Perlman gives his talent of comedic timing a work out.and kicks monster butt like no other"Hellboy SMASH!" __________________ reply The only this would suck if Uwe Boll directed it. reply I've been on a movie-watching tear lately...eventually I'll get around to posting my thoughts on all of them, but I'll just cut to the chase and tell you what two HUGE summer movies I saw last weekend... But Hellboy II's failures outweigh its triumphs. Those triumphs, by the way, include del Toro's infinite sense of whimsy, the Pan's Labyrinth-esque creatures that inhabit his world, and a cast that does surprisingly well with the storylines they're given, especially considering that Grandpa Bluth (Jeffrey Tambor) plays the boss, a former Brit boy-bander plays the villain (Luke Goss), and Doug Jones plays three different parts, all under prosthetics. (Jones also gets to voice Abe Sapien for the first time on-screen, having had practice in the animated series and video game. In the first Hellboy, David Hyde Pierce provided vocals.) The problem is, Hellboy is given precious little to do. He starts out an immature slob, and he ends up, basically, the same immature slob but with a vaguely renewed sense of responsibility. He's destined to destroy mankind, but has chosen to defend it; why, then, give him a mid-story ethical crisis that never quite plays out? Like Batman in The Dark Knight, Hellboy's story has little to do with Hellboy himself. In fact, there's really nothing unique tying him to the story and villain; it could be any fantasy-action hero saving the world here. What del Toro does nail here is in replicating the tone of the first film, providing laughs throughout and moving things along at a nice click. Those two hours (or however long it is) fly by, and though much of what's on paper won't make much sense or bear any real meaning, there's lots of eye candy to take in. All of which means that while Hellboy II is fine (hovering on the low end of Fresh for me), it's also forgettable - which means bad news for a superhero movie battling Iron Man, the Hulk, WALL-E and Batman this summer season. So ends my double-stuffed superhero weekend. Weigh in with your thoughts... reply I haven't seen this movie yet, but my boyfriend said it's going to be awesome! reply hate it hate hate it reply
{ "url": "http://www.solarmovie.so/watch-hellboy-ii-the-golden-army-2008.html", "source_domain": "www.solarmovie.so", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "67289", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ELIZXHVF2ONWFTRECDKEANLTCEL2HQ4Q", "WARC-Concurrent-To": "<urn:uuid:9ae8c5a3-3f3f-45b5-886b-9c05291caa43>", "WARC-Date": "2013-05-21T13:15:35Z", "WARC-IP-Address": "205.204.80.87", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:QSKIIWMMDJ2V4JPEMOGZAFFZYJKH362P", "WARC-Record-ID": "<urn:uuid:a11ebf84-0dbe-4537-837f-b09a42af7673>", "WARC-Target-URI": "http://www.solarmovie.so/watch-hellboy-ii-the-golden-army-2008.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:176c8843-2f35-4ceb-9153-7562731988c8>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 1, 43, 44, 77, 94, 112, 140, 154, 172, 186, 187, 345, 346, 347, 406, 407, 409, 411, 418, 426, 430, 432, 439, 447, 451, 452, 466, 467, 476, 477, 536, 537, 589, 590, 645, 646, 720, 721, 795, 801, 1032, 1038, 1461, 1467, 1976, 1982, 1990, 1991, 2040, 2041, 2084, 2090, 2350, 2516, 2732, 2870, 2889, 2895, 2945, 2951, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3799, 3800, 4128, 4129, 4889, 4890, 4891, 4967, 4973, 5052, 5058, 5079 ], "line_end_idx": [ 1, 43, 44, 77, 94, 112, 140, 154, 172, 186, 187, 345, 346, 347, 406, 407, 409, 411, 418, 426, 430, 432, 439, 447, 451, 452, 466, 467, 476, 477, 536, 537, 589, 590, 645, 646, 720, 721, 795, 801, 1032, 1038, 1461, 1467, 1976, 1982, 1990, 1991, 2040, 2041, 2084, 2090, 2350, 2516, 2732, 2870, 2889, 2895, 2945, 2951, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3799, 3800, 4128, 4129, 4889, 4890, 4891, 4967, 4973, 5052, 5058, 5079, 5084 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5084, "ccnet_original_nlines": 79, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 2, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3713783919811249, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.040386300534009933, "rps_doc_frac_lines_end_with_ellipsis": 0.02500000037252903, "rps_doc_frac_no_alph_words": 0.21071115136146545, "rps_doc_frac_unique_words": 0.5490196347236633, "rps_doc_mean_word_length": 4.504036903381348, "rps_doc_num_sentences": 63, "rps_doc_symbol_to_word_ratio": 0.012291479855775833, "rps_doc_unigram_entropy": 5.715441703796387, "rps_doc_word_count": 867, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.010243279859423637, "rps_doc_frac_chars_top_3gram": 0.0066581298597157, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -512.3365478515625, "rps_doc_books_importance_length_correction": -512.3365478515625, "rps_doc_openwebtext_importance": -300.6758117675781, "rps_doc_openwebtext_importance_length_correction": -300.6758117675781, "rps_doc_wikipedia_importance": -209.57061767578125, "rps_doc_wikipedia_importance_length_correction": -209.57061767578125 }, "fasttext": { "dclm": 0.01781320944428444, "english": 0.9500300884246826, "fineweb_edu_approx": 1.019533634185791, "eai_general_math": 0.008878950029611588, "eai_open_web_math": 0.2606501579284668, "eai_web_code": 0.0013214299688115716 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.43724", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "791.43725", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "14", "label": "Reviews/Critiques" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "24", "label": "User Review" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
7,822,763,110,146,193,000
Science News ... from universities, journals, and other research organizations With a Little Training, Signs of Schizophrenia Are Averted Aug. 22, 2012 — Animals that literally have holes in their brains can go on to behave as normal adults if they've had the benefit of a little cognitive training in adolescence. That's according to new work in the August 23 Neuron, a Cell Press publication, featuring an animal model of schizophrenia, where rats with particular neonatal brain injuries develop schizophrenia-like symptoms. Share This: "The brain can be loaded with all sorts of problems," said André Fenton of New York University. "What this work shows is that experience can overcome those disabilities." Fenton's team made the discovery completely by accident. His team was interested in what Fenton considers a core problem in schizophrenia: the inability to sift through confusing or conflicting information and focus on what's relevant. "As you walk through the world, you might be focused on a phone conversation, but there are also kids in the park and cars and other distractions," he explained. "These information streams are all competing for our brain to process them. That's a really challenging situation for someone with schizophrenia." Fenton and his colleagues developed a laboratory test of cognitive control needed for that kind of focus. In the test, rats had to learn to avoid a foot shock while they were presented with conflicting information. Normal rats can manage that task quickly. Rats with brain lesions can also manage this task, but only up until they become young adults -- the equivalent of an 18- or 20-year-old person -- when signs of schizophrenia typically set in. While that was good to see, Fenton says, it wasn't really all that surprising. But then some unexpected circumstances in the lab led them to test animals with adolescent experience in the cognitive control test again, once they had grown into adults. These rats should have shown cognitive control deficits, similar to those that had not received prior cognitive training, or so the researchers thought. Instead, they were just fine. Their schizophrenic symptoms had somehow been averted. Fenton believes their early training for focus forged some critical neural connections, allowing the animals to compensate for the injury still present in their brains in adulthood. Not only were the animals' behaviors normalized with training, but the patterns of activity in their brains were also. The finding is consistent with the notion that mental disorders are the consequence of problems in brain development that might have gotten started years before. They raise the optimistic hope that the right kinds of experiences at the right time could change the future by enabling people to better manage their diseases and better function in society. Adolescence, when the brain undergoes significant change and maturation, might be a prime time for such training. "You may have a damaged brain, but the consequences of that damage might be overcome without changing the damage itself," Fenton says. "You could target schizophrenia, but other disorders aren't very different," take autism or depression, for example. And really, in this world of infinite distraction, couldn't we all use a little more cognitive control? Share this story on Facebook, Twitter, and Google: Other social bookmarking and sharing tools: | Story Source: The above story is reprinted from materials provided by Cell Press, via EurekAlert!, a service of AAAS. Note: Materials may be edited for content and length. For further information, please contact the source cited above. Journal Reference: 1. Heekyung Lee, Dino Dvorak, Hsin-Yi Kao, Áine M. Duffy, Helen E. Scharfman, André A. Fenton. Early Cognitive Experience Prevents Adult Deficits in a Neurodevelopmental Schizophrenia Model. Neuron, 2012; 75 (4): 714 DOI: 10.1016/j.neuron.2012.06.016 APA MLA Note: If no author is given, the source is cited instead. Search ScienceDaily Number of stories in archives: 138,557 Find with keyword(s):   Enter a keyword or phrase to search ScienceDaily's archives for related news topics, the latest news stories, reference articles, science videos, images, and books. Recommend ScienceDaily on Facebook, Twitter, and Google: Other social bookmarking and sharing services: |   Interested in ad-free access? If you'd like to read ScienceDaily without ads, let us know!   more breaking science news Social Networks Follow ScienceDaily on Facebook, Twitter, and Google: Recommend ScienceDaily on Facebook, Twitter, and Google +1: Other social bookmarking and sharing tools: | Breaking News ... from NewsDaily.com • more science news In Other News ... • more top news Science Video News Learn To Read Through Sound Cognitive neuroscientists monitoring brain activity with fMRI found that children with dyslexia are often unable to process the fast-changing sounds. ...  > full story Strange Science News   Free Subscriptions ... from ScienceDaily Get the latest science news with our free email newsletters, updated daily and weekly. Or view hourly updated newsfeeds in your RSS reader: Feedback ... we want to hear from you! Tell us what you think of ScienceDaily -- we welcome both positive and negative comments. Have any problems using the site? Questions? Post this page to your favorite social bookmarking site: Include this item in your blog or web site: Cite this article in your essay, paper, or report: Email this page's link to a friend or colleague:
{ "url": "http://www.sciencedaily.com/releases/2012/08/120822125026.htm", "source_domain": "www.sciencedaily.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "63751", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SWUNXAQK6DNBH3TUDLOHXTYWGS6Z4MKO", "WARC-Concurrent-To": "<urn:uuid:00a83809-078f-4f73-aefc-8d6f2f964d20>", "WARC-Date": "2013-06-19T05:41:21Z", "WARC-IP-Address": "75.101.140.165", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:M7JCHQXMSCQFIQWLILDU4E37HT6WXP5I", "WARC-Record-ID": "<urn:uuid:af48954e-71d8-418a-a8a1-718b41740a2d>", "WARC-Target-URI": "http://www.sciencedaily.com/releases/2012/08/120822125026.htm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:fb2417b4-874e-494d-95f0-43a45e1db4b2>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 13, 14, 80, 81, 140, 141, 530, 531, 532, 544, 545, 716, 717, 953, 954, 1263, 1264, 1714, 1715, 1966, 1967, 2205, 2206, 2507, 2508, 2976, 2977, 3229, 3230, 3334, 3335, 3386, 3387, 3431, 3432, 3434, 3435, 3449, 3450, 3554, 3555, 3673, 3674, 3675, 3694, 3695, 3948, 3952, 3953, 3957, 3958, 4016, 4017, 4037, 4038, 4077, 4078, 4100, 4102, 4187, 4267, 4268, 4325, 4326, 4373, 4374, 4376, 4377, 4379, 4470, 4499, 4500, 4516, 4517, 4518, 4560, 4572, 4573, 4633, 4634, 4678, 4679, 4681, 4682, 4696, 4697, 4720, 4721, 4743, 4744, 4762, 4763, 4781, 4782, 4801, 4802, 4803, 4831, 4832, 5000, 5001, 5022, 5023, 5025, 5026, 5045, 5046, 5068, 5069, 5209, 5210, 5219, 5220, 5250, 5251, 5386, 5387, 5444, 5488, 5539 ], "line_end_idx": [ 13, 14, 80, 81, 140, 141, 530, 531, 532, 544, 545, 716, 717, 953, 954, 1263, 1264, 1714, 1715, 1966, 1967, 2205, 2206, 2507, 2508, 2976, 2977, 3229, 3230, 3334, 3335, 3386, 3387, 3431, 3432, 3434, 3435, 3449, 3450, 3554, 3555, 3673, 3674, 3675, 3694, 3695, 3948, 3952, 3953, 3957, 3958, 4016, 4017, 4037, 4038, 4077, 4078, 4100, 4102, 4187, 4267, 4268, 4325, 4326, 4373, 4374, 4376, 4377, 4379, 4470, 4499, 4500, 4516, 4517, 4518, 4560, 4572, 4573, 4633, 4634, 4678, 4679, 4681, 4682, 4696, 4697, 4720, 4721, 4743, 4744, 4762, 4763, 4781, 4782, 4801, 4802, 4803, 4831, 4832, 5000, 5001, 5022, 5023, 5025, 5026, 5045, 5046, 5068, 5069, 5209, 5210, 5219, 5220, 5250, 5251, 5386, 5387, 5444, 5488, 5539, 5587 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5587, "ccnet_original_nlines": 120, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3526616096496582, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007604559883475304, "rps_doc_frac_lines_end_with_ellipsis": 0.008264459669589996, "rps_doc_frac_no_alph_words": 0.18631179630756378, "rps_doc_frac_unique_words": 0.49118682742118835, "rps_doc_mean_word_length": 5.23619270324707, "rps_doc_num_sentences": 59, "rps_doc_symbol_to_word_ratio": 0.005703419912606478, "rps_doc_unigram_entropy": 5.562036514282227, "rps_doc_word_count": 851, "rps_doc_frac_chars_dupe_10grams": 0.02603231929242611, "rps_doc_frac_chars_dupe_5grams": 0.05924595892429352, "rps_doc_frac_chars_dupe_6grams": 0.05924595892429352, "rps_doc_frac_chars_dupe_7grams": 0.041292641311883926, "rps_doc_frac_chars_dupe_8grams": 0.02603231929242611, "rps_doc_frac_chars_dupe_9grams": 0.02603231929242611, "rps_doc_frac_chars_top_2gram": 0.012342910282313824, "rps_doc_frac_chars_top_3gram": 0.015260320156812668, "rps_doc_frac_chars_top_4gram": 0.01795331947505474, "rps_doc_books_importance": -498.51513671875, "rps_doc_books_importance_length_correction": -498.51513671875, "rps_doc_openwebtext_importance": -285.8059997558594, "rps_doc_openwebtext_importance_length_correction": -285.8059997558594, "rps_doc_wikipedia_importance": -253.4227752685547, "rps_doc_wikipedia_importance_length_correction": -253.4227752685547 }, "fasttext": { "dclm": 0.0067609502002596855, "english": 0.9337850213050842, "fineweb_edu_approx": 2.487541437149048, "eai_general_math": 0.0031611300073564053, "eai_open_web_math": 0.09717308729887009, "eai_web_code": 0.0013130300212651491 } }
{ "free_decimal_correspondence": { "primary": { "code": "616.8914", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Pathology and Diseases" } }, "secondary": { "code": "612.82", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Physiology" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-6,417,939,930,872,531,000
schrutebag.jpgSay what you will about ESPN executive editor John Walsh, but he definitely made a fascinating choice hiring Le Anne Schreiber as the Leader's new ombudsman. Schreiber weighed in on the whole Schrutebag-Big Lead issue over the weekend, and she pulled no punches. Some of the politer terms my correspondents used to describe [Schrutebag]'s behavior were immature, irresponsible, arrogant, malicious, destructive and dumb. I agree. The official response from ESPN's communication department was: "Our airwaves should not be used for this purpose. We apologize." It is the kind of bland public statement that does little to assuage the anger and distrust of ESPN's audience over an episode like this. Schreiber then got ESPN Radio's senior VP to say, "Such attacks are off limits. Zero tolerance. I can't say it any stronger." So she's not messing around; we have a little bit of a crush. (For now.) So that's the good news. The bad news? Because ESPN Radio had no official policy about this, Schrutebag will not be disciplined ... though if he does it again, there will be trouble! Meanwhile, The Big Lead is finally back online and looking for a new site host. No word on how they'll make up any revenue they lost during the attack; as much as she might be trying, Schreiber can't give this tale a happy ending. Radio Hosts Attack Was Off Limits [ESPN] Do It Again And The Kitten Dies [The Big Lead] The Big Lead, Still Down. Thanks, Schrutebag. [Deadspin] (UPDATE: The Big Lead discusses the matter further.)
{ "url": "http://deadspin.com/250654/the-big-lead-schrutebag-and-the-feisty-new-ombudsman?tag=Schrutebag", "source_domain": "deadspin.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "44970", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:U3QVFTMZ42K6RKSWRFQYNIDF2K45LFDX", "WARC-Concurrent-To": "<urn:uuid:00249089-e635-4a57-83d5-53a28fda06ca>", "WARC-Date": "2013-05-23T12:30:35Z", "WARC-IP-Address": "199.27.72.129", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:Q3ZGHTYLLNZCVCUJ74C36OXTSCZFDOZL", "WARC-Record-ID": "<urn:uuid:aed469e9-fcf1-4857-a032-a2a2473b8934>", "WARC-Target-URI": "http://deadspin.com/250654/the-big-lead-schrutebag-and-the-feisty-new-ombudsman?tag=Schrutebag", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:85e472fc-6dc4-40ea-bedd-b3f513eaf4a0>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 277, 278, 713, 714, 913, 914, 1328, 1329, 1370, 1417, 1474, 1475 ], "line_end_idx": [ 277, 278, 713, 714, 913, 914, 1328, 1329, 1370, 1417, 1474, 1475, 1527 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1527, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37195122241973877, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.030487800016999245, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.18597561120986938, "rps_doc_frac_unique_words": 0.6627451181411743, "rps_doc_mean_word_length": 4.701960563659668, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0.003048779908567667, "rps_doc_unigram_entropy": 4.9015069007873535, "rps_doc_word_count": 255, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.020016679540276527, "rps_doc_frac_chars_top_3gram": 0.033361129462718964, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -142.58900451660156, "rps_doc_books_importance_length_correction": -131.74517822265625, "rps_doc_openwebtext_importance": -99.08250427246094, "rps_doc_openwebtext_importance_length_correction": -99.08250427246094, "rps_doc_wikipedia_importance": -36.43091583251953, "rps_doc_wikipedia_importance_length_correction": -23.442903518676758 }, "fasttext": { "dclm": 0.006283219903707504, "english": 0.9294552803039551, "fineweb_edu_approx": 0.8730477094650269, "eai_general_math": 0.012223959900438786, "eai_open_web_math": 0.10890465974807739, "eai_web_code": 0.01436937041580677 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.01", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "070.4", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Journalism and Newspapers", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,848,716,104,550,985,700
FileHeap - Freeware, Shareware, Demo, Game Files Download Ie Picture Downloader downloads Go to 1 Next >> page  Software 1-20 Show: All software | Only freeware IE Picture Framer IE Picture Framer 1.2 download by imageelements.com Put your photos in a virtual picture frame for print or web use. Take any picture and instantly wrap a frame around it. No need for high priced photo tools, just load your photo, select your frame and save it! Shadows can be added as well, this works out really nice to pop your photos off the page. The included frames, as well as the CD frame pack add-on look like frames you would find in a professional frame shop. Beautiful results in a ... Type: Freeware;    Released: 02/17/2009;    Filesize: 3.4 MB;    Price: USD $0.00; Platforms: Windows Download Picture Saver Picture Saver 2.0.0.1 download by Help Software Corporation picture Saver is a useful tool to save WEB pictures.When you want to save picture in the ie window, you usually right click it and select "Save picture As...", choose the folder, input the file name, then select "OK". The picture Saver can do it quickly by click a "Save picture" button. It save your time to save your favorite pictures. When you move you mouse upon the picture, a "Save picture" button will automatically show. All you need to do is ... Type: Shareware;    Released: 12/06/2009;    Filesize: 992.9 KB;    Price: USD $30.00; Platforms: Windows 98, Windows 2000, Windows XP, Windows 2003, Windows Vista Tags: Picture Save, Download Picture, Web Pictures Download Picture Dropper Picture Dropper 1.3.2.15 download by David ALexander Services Ltd picture dropper is an image capture utility for ie. The program also has the ability to encrypt the saved files so they can only be viewed with the built in viewer. Drag images from ie or explorer onto the target and it automatically saves them. Can save them to a directory of your choice, autorename upon duplication, saves as a file sequence and optionally encrypt them. Can accept multiple file dragging, i.e. select 50 images and drag them ... Type: Shareware;    Released: 10/01/2004;    Filesize: 691.3 KB;    Price: USD $7.50; Platforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003 Tags: Internet, Explorer, Right, Click, Image, Jpg, Jpeg, Bmp, Gif, Save Download ViVL Web Picture Saver 2.0.2 download by vivl.com ViVL Web picture Saver is an efficient plug-in for Internet Explorer (ie). With buttons in ie toolbar and right click menu, you can easily save all images and rename these images simultaneously. This tool can help download all viewed images, including images referred from other websites(What you see is what you get). You can specify minimum height, width and type of images to save. Image viewing program with shortcuts, thumbnail and slideshow is included. Type: Shareware;    Released: 02/17/2009;    Filesize: 2.4 MB;    Price: USD $25.00; Platforms: Windows Download Picture Address Book for Mac Picture Address Book for Mac 6.0.5 download by Apimac picture Address Book is a telephone and address program fully integrated with Mac OS X that allows you to quickly and easily manage addresses, phone numbers, URLs and Email addresses. picture Address Book is a practical telephone and address application with extended printing capacities that allows users to manage addresses, phone numbers (via modem or by playing touch-tones to the phone), URLs, and email addresses, quickly and easily. Type: Shareware;    Released: 06/02/2005;    Filesize: 5.0 MB;    Price: USD $19.95; Platforms: Macintosh, Mac OS X Tags: Picture Address Book, Address Book, Contacts, Mac Download Picture Directory Picture Directory 2.1 download by Picture Directory Plus The picture Directory software lets you easily import your own photos, and make a picture directories instantly! You simply click, import a photo, set the layout and voila! You're done! Some of the features include the following: (a) You can add personal information, such as names, addresses, phone numbers and more to associate with the directory! (b) You can easily customize the layout. You simply select the number of columns, and the number ... Type: Freeware;    Released: 05/05/2007;    Filesize: 1.9 MB;    Price: USD $0.00; Platforms: Windows, Windows 3.x, Windows 95, Windows 98, Windows Me, Windows 2000, Windows 2003 Tags: Picture Directory, Image Directory, Photo Directory Software, Picture Directory Software Download Picture Reporter Picture Reporter 1.4.0 download by Webfoot.Net picture Reporter allows anyone to easily print a set of pictures with customizable comments and captions as a photo album or report. Share projects with Viewer. If you're tired of pasting pictures in an album or report or trying to get an office program to layout and print the pictures, you need picture Reporter! picture Reporter allows anyone to print a set of pictures with customizable comments and ... Type: Shareware;    Released: 04/07/2006;    Filesize: 7.6 MB;    Price: USD $39.95; Platforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP Tags: Pictures, Reports, Picture Printing, Photography, Album Download GOGO Picture Viewer ActiveX Control GOGO Picture Viewer ActiveX Control 3.2 download by Gogowishs Software GOGO picture Viewer ActiveX OCX help you to view and save images of different formats include Bmp,Gif,Jpg,Jpeg,Png,Tif,Tiff,multipaged Tiff.You can rotate,flip,zoom,resize,draw text,print,convert color to grayscaled or black-white to the image. GOGO picture Viewer ActiveX OCX is a powerful ActiveX control, which is intended for work with image data.You can view and save images of different formats include Bmp,Gif,Jpeg,Jpg,Png, Tif,Tiff and multipaged Tiff images.Save Jpeg image files with user-defined ... Type: Shareware;    Released: 05/30/2006;    Filesize: 1.6 MB;    Price: USD $49.90; Platforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP Tags: Photo, Graphic, Image, Images, Picture Viewer, Activex, Ocx, View, Save Image, Bmp Download newObjects IE ScriptBar newObjects IE ScriptBar 1.1 download by newObjects With ie ScriptBar anyone with average script programming skills can create professional tool bands (toolbars) for Microsoft Internet Explorer. The rich run-time library and setup utility give you everything you need to complete an end-product. It is also possible to use VB or C++ (but in very simple manner) instead of scripting. Windows XP SP2 compatible, packed with SQL database engine, installer, networking components and wide range of other ... Type: Demo;    Released: 07/26/2005;    Filesize: 679.7 KB;    Price: USD $99.00; Platforms: Windows, Windows 95, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003 Tags: Toolbar, Toolband, Tool Band, Ie Toolbar, Ie Tool Band, Scripting Download SWF Picture Extractor SWF Picture Extractor 1.6 download by Dcomsoft With SWF picture Extractor, you can easily: * look through all the images in the SWF files; * save one or all of them. You can view the images that are saved in a SWF file and save one or all of them (BMP, JPEG, PNG formats) using SWF picture Extractor. SWF Pictutre Extractor can work with the packed SWF-files. The program is simple in utilization, all the actions ... Type: Freeware;    Released: 08/09/2006;    Filesize: 1.3 MB;    Price: USD $0.00; Platforms: Windows, Windows 2000, Windows XP, Windows 2003 Tags: Swf, Flash, Picture, Image, Extractor, Extract Download AD Picture Viewer Lite AD Picture Viewer Lite 2.1 download by Abroad Design AD picture Viewer Lite is a compact, easy-to-use image viewer. It's support all popular image file formats and have many useful features such as opening images in folder with or without subfolders, viewing them in slide-show mode, a flexible and powerful image printing tool and so on. AD picture Viewer Lite has many powerful features: a easy-to-use and intuitively user interface, complete image formats support, and more ways view all your images. Type: Shareware;    Released: 09/24/2012;    Filesize: 1.7 MB;    Price: USD $19.95; Platforms: Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003, Windows Vista Tags: Image, Picture, Graphic, View, Viewer, Bmp, Gif, Jpeg, Jpg, Png Download Auction Picture FX Auction Picture FX 1.9.1 download by Direct Logic Systems With Auction picture FX, you can use a trick to create pictures with a highlighted border so that it will appear more prominently without having to pay any extra fees. With Auction picture FX, you can now create pictures with a highlighted border so that it will appear more prominently without having to pay any extra fees. You can also insert a copyright notice or any text label right into your pictures so that other ... Type: Shareware;    Released: 09/08/2005;    Filesize: 2.2 MB;    Price: USD $19.99; Platforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP Tags: Auction, Ebay, Picture, Edit, Graphics, Effects, Image, Photo Download Batch Picture Resizer Batch Picture Resizer 4.0.4 download by SoftOrbits Resize images with a batch picture resizer quickly and easily. Batch picture Resizer works with any number of photos, resizing them while preserving as much quality as possible. This is perfect for making images more Internet friendly. A batch picture resizer is software that anyone who works with digital photos will find very useful. Many people use complicated and expensive picture editing software just to resize pictures and resolve other simple tasks because it has not occurred ... Type: Shareware;    Released: 01/26/2013;    Filesize: 2.4 MB;    Price: USD $29.95; Platforms: Windows 2000, Windows XP, Windows 2003, Windows Vista Tags: Picture Resizer, Picture Resize, Photo Resizer, Batch Image Resizer, Batch Picture Resizer Download Cool Paint Materials Pro Picture Gallery 1.0.0.0 download by Coolsoft (Sweden) AB. Cool Paint Materials contains a vast picture gallery which is designed exclusively for Cool Paint, a painting software for drawing and image editing. It provides users with more resources and pleasure during painting or editing pictures. It contains: 1) 3 picture categories: Background, Role, and Animation. 2) Nearly 1000 pictures in various styles and sizes. 3) Pictures can be inserted into canvas easily and can be conveniently ... Type: Shareware;    Released: 12/01/2006;    Filesize: 67.3 MB;    Price: USD $29.95; Platforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003 Tags: Coolsoft, Cool Paint, Paint, Picture, Photo, Gif, Jpg, Jpeg, Pcx, Png Download Picture watermarker Picture watermarker 1 download by PAMO Software PAMO picture Watermarker easily add a text, a date or a logo on your pictures. The pic you took with your digital camera will then be protected ... Type: Shareware;    Released: 02/18/2007;    Filesize: 1.6 MB;    Price: USD $14.95; Platforms: Windows, Windows 2000, Windows XP Tags: Image, Watermark, Picture, Logo Download Magic Picture Converter Magic Picture Converter 1.2 download by Magic Project Magic picture Converter converts digital photos and images in BMP, GIF and JPG formats to most popular web formats. The process is done in batch mode, which means that you can convert all the images in a folder just with one click. The original files are not overwritten for future ... Type: Shareware;    Released: 03/18/2007;    Filesize: 345.8 KB;    Price: USD $10.00; Platforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP, Windows 2003 Tags: Image, Convert, Picture, Photo, Digital, Camera, Web, Internet, Html, Resize Download PicTul - Picture Resizing Made Easy PicTul - Picture Resizing Made Easy 1.3.2 download by I-Tul Design & Software, Inc. Resize any shape picture without distortion in three easy steps! Choose the picture you would like to resize, enter a width and height then choose the best looking preview and save. PicTul automatically adjust the canvas size and the picture size to your dimensions. picture resizing has never been so ... Type: Shareware;    Released: 05/19/2006;    Filesize: 793.0 KB;    Price: USD $19.95; Platforms: Windows, Windows 2000, Windows XP, Windows 2003 Tags: Image Resizer, Resizing Photos, Resizing Pictures, Picture Resizing, Photo Resizing, Picture Resizer, Photo Resizer Download Picture Converter Picture Converter 1.0 download by Digitope picture Converter is a tool to resize and convert photos. The resizer supports four different resize modes. Included templates help make pictures for email, the web, eBay and more. Convert pictures between JPG, BMP, GIF, PNG, PSD and more. picture Converter is an indispensible tool for anyone who works with photos. With only a few clicks, an entire folder of pictures can be changed between formats and sizes. Included presets for common tasks, such as email, web and DV make previously difficult ... Released: 11/22/2006;    Filesize: 1.5 MB;    Price: USD $29.95; Platforms: Windows, Windows XP Tags: Picture, Image, Photo, Converter, Editor, Resizer Download Picture Library Picture Library 1.4.085 download by WenSoftware picture Library is a picture database program that can help you manage and organize your picture collections. Unlike other image cataloging programs, picture Library lets you catalog images on removable disks. It provides many useful database fields such as category, album, series, photographer, place, time, rating, description etc. It supports all popular image file formats. The user-friendly explorer-like interface lets you categorize, group and ... Type: Shareware;    Released: 11/10/2005;    Filesize: 5.4 MB;    Price: USD $35.00; Platforms: Windows, Windows 95, Windows 98, Windows Me, Windows NT, Windows 2000, Windows XP Tags: Picture, Image, Photo, Graphic, Album, Multimedia, Viewer, Catalog, Database, File Download Picture Merge Genius Picture Merge Genius 2.7 download by Easytools,Inc picture Merge Genius is a simple and easy-to-use program for merging your photos,images and pictures. The software can combine several pictures into one in different ways,In the new picture you can also set the size and position of the source files. picture Merge Genius is useful for computer painters,ebay seller, designers,photographer and family entertainment. picture Merge Genius support more than 40 picture file format(JPEG, BMP, ... Type: Shareware;    Released: 05/17/2007;    Filesize: 1.6 MB;    Price: USD $29.95; Platforms: Windows, Windows 98, Windows Me, Windows 2000, Windows XP, Windows 2003 Tags: Merge Pictures, Combine Pictures, Merging Pictures, Merge Photo, Combine Picture, Merge Jpg, Combine Jpg, Picture Merge, Merge Jpeg, Combine Jpeg Download
{ "url": "http://www.fileheap.com/software/ie_picture_downloader.html", "source_domain": "www.fileheap.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "99758", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CGNBL5UB734ZSO37SVBHUXIK2B5WUO6I", "WARC-Concurrent-To": "<urn:uuid:fb777ec7-2ef8-4139-8b00-0573df9a9c08>", "WARC-Date": "2013-05-24T14:23:22Z", "WARC-IP-Address": "67.202.79.96", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:CWDXUR44K6X2BXNCIDVNKPK4TGMGK57T", "WARC-Record-ID": "<urn:uuid:9c03d7d4-6773-4c99-8e60-3e812c1a6769>", "WARC-Target-URI": "http://www.fileheap.com/software/ie_picture_downloader.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:55bf76e6-d1a6-415f-a34f-1bc3c301aad9>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 58, 59, 91, 92, 114, 128, 163, 181, 679, 762, 781, 790, 804, 1319, 1406, 1483, 1543, 1559, 2074, 2160, 2267, 2349, 2859, 2944, 2963, 2972, 3001, 3495, 3580, 3611, 3676, 3694, 4202, 4285, 4381, 4485, 4502, 4957, 5042, 5111, 5182, 5218, 5800, 5885, 5954, 6052, 6076, 6579, 6661, 6756, 6837, 6859, 7277, 7360, 7419, 7481, 7504, 8008, 8093, 8206, 8285, 8304, 8787, 8872, 8965, 9042, 9064, 9606, 9691, 9756, 9862, 10382, 10468, 10551, 10636, 10656, 10852, 10937, 10982, 11029, 11053, 11393, 11480, 11587, 11679, 11715, 12105, 12192, 12251, 12382, 12400, 12946, 13011, 13042, 13107, 13123, 13627, 13712, 13805, 13903, 13924, 14417, 14502, 14585 ], "line_end_idx": [ 58, 59, 91, 92, 114, 128, 163, 181, 679, 762, 781, 790, 804, 1319, 1406, 1483, 1543, 1559, 2074, 2160, 2267, 2349, 2859, 2944, 2963, 2972, 3001, 3495, 3580, 3611, 3676, 3694, 4202, 4285, 4381, 4485, 4502, 4957, 5042, 5111, 5182, 5218, 5800, 5885, 5954, 6052, 6076, 6579, 6661, 6756, 6837, 6859, 7277, 7360, 7419, 7481, 7504, 8008, 8093, 8206, 8285, 8304, 8787, 8872, 8965, 9042, 9064, 9606, 9691, 9756, 9862, 10382, 10468, 10551, 10636, 10656, 10852, 10937, 10982, 11029, 11053, 11393, 11480, 11587, 11679, 11715, 12105, 12192, 12251, 12382, 12400, 12946, 13011, 13042, 13107, 13123, 13627, 13712, 13805, 13903, 13924, 14417, 14502, 14585, 14745 ] }
{ "red_pajama_v2": { "ccnet_original_length": 14745, "ccnet_original_nlines": 104, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19828951358795166, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.037377260625362396, "rps_doc_frac_lines_end_with_ellipsis": 0.16190476715564728, "rps_doc_frac_no_alph_words": 0.32562559843063354, "rps_doc_frac_unique_words": 0.2800905108451843, "rps_doc_mean_word_length": 5.207239627838135, "rps_doc_num_sentences": 170, "rps_doc_symbol_to_word_ratio": 0.005701620131731033, "rps_doc_unigram_entropy": 5.540482044219971, "rps_doc_word_count": 2210, "rps_doc_frac_chars_dupe_10grams": 0.0898505374789238, "rps_doc_frac_chars_dupe_5grams": 0.19343066215515137, "rps_doc_frac_chars_dupe_6grams": 0.1485922783613205, "rps_doc_frac_chars_dupe_7grams": 0.1298227310180664, "rps_doc_frac_chars_dupe_8grams": 0.12234967201948166, "rps_doc_frac_chars_dupe_9grams": 0.11418143659830093, "rps_doc_frac_chars_top_2gram": 0.017379209399223328, "rps_doc_frac_chars_top_3gram": 0.025026069954037666, "rps_doc_frac_chars_top_4gram": 0.02606881968677044, "rps_doc_books_importance": -1268.3216552734375, "rps_doc_books_importance_length_correction": -1268.3216552734375, "rps_doc_openwebtext_importance": -752.0948486328125, "rps_doc_openwebtext_importance_length_correction": -752.0948486328125, "rps_doc_wikipedia_importance": -591.3551635742188, "rps_doc_wikipedia_importance_length_correction": -591.3551635742188 }, "fasttext": { "dclm": 0.00043636999907903373, "english": 0.8031932711601257, "fineweb_edu_approx": 1.7010561227798462, "eai_general_math": 0.00165200000628829, "eai_open_web_math": 0.07581018656492233, "eai_web_code": 0.00037985999369993806 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.4", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "770", "labels": { "level_1": "Arts", "level_2": "Photography", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-1,878,534,458,378,730,200
Tuesday May 21, 2013 Homework Help: world history Posted by Sara on Friday, July 18, 2008 at 3:54am. Can you tell me more about the Korean War? Like the causes and consequences? Answer this Question First Name: School Subject: Answer: Related Questions World history - Causes and consequences of world war 2 social studies - True or False? "Containment" was the underlying cause... Global History - Turning point of world war 2 and the causes of world war 2. U.S. History - what were the major consequences and results of ww11? in the U.S... Essay help :) - Here is my essay: All About The Greek Wars War is a devastating ... Modern World History - World War One Can someone tell me the final chain of ... HISTORY - How well did the Treaty of Versailles address the causes of World War ... flvs - By now, you should be familiar with the causes and alliances of World War... Contemporary History - i have to write two papers, one about the causes and the ... History - Which of the following statements is true regarding the Korean War? A... For Further Reading Search Members Community
{ "url": "http://www.jiskha.com/display.cgi?id=1216367694", "source_domain": "www.jiskha.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "8913", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:XALADYZZSLTFILO6PX42TZDBKQ7IZXMO", "WARC-Concurrent-To": "<urn:uuid:ab25be2f-502e-403b-9f32-b613c63723cd>", "WARC-Date": "2013-05-21T19:28:37Z", "WARC-IP-Address": "69.16.226.94", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:CTJYKRFHWDHE2CDGVD25N2UIVBHNDPAZ", "WARC-Record-ID": "<urn:uuid:067328aa-4165-412d-bfbf-17a3c00c1687>", "WARC-Target-URI": "http://www.jiskha.com/display.cgi?id=1216367694", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:95482060-80b7-4390-ab69-6c5c61b7211c>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 8, 21, 22, 51, 52, 103, 104, 181, 182, 203, 204, 216, 232, 240, 241, 259, 260, 315, 389, 466, 549, 633, 713, 797, 881, 965, 1048, 1049, 1069, 1070, 1077, 1085 ], "line_end_idx": [ 8, 21, 22, 51, 52, 103, 104, 181, 182, 203, 204, 216, 232, 240, 241, 259, 260, 315, 389, 466, 549, 633, 713, 797, 881, 965, 1048, 1049, 1069, 1070, 1077, 1085, 1094 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1094, "ccnet_original_nlines": 32, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.32300883531570435, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02654867060482502, "rps_doc_frac_lines_end_with_ellipsis": 0.24242423474788666, "rps_doc_frac_no_alph_words": 0.22123894095420837, "rps_doc_frac_unique_words": 0.580110490322113, "rps_doc_mean_word_length": 4.591160297393799, "rps_doc_num_sentences": 19, "rps_doc_symbol_to_word_ratio": 0.03539822995662689, "rps_doc_unigram_entropy": 4.2632060050964355, "rps_doc_word_count": 181, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.045728038996458054, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05776172876358032, "rps_doc_frac_chars_top_3gram": 0.060168471187353134, "rps_doc_frac_chars_top_4gram": 0.03971118852496147, "rps_doc_books_importance": -70.05615234375, "rps_doc_books_importance_length_correction": -70.05615234375, "rps_doc_openwebtext_importance": -43.02771759033203, "rps_doc_openwebtext_importance_length_correction": -33.623226165771484, "rps_doc_wikipedia_importance": -36.64375305175781, "rps_doc_wikipedia_importance_length_correction": -36.64375305175781 }, "fasttext": { "dclm": 0.0028542301151901484, "english": 0.9019317030906677, "fineweb_edu_approx": 3.314751625061035, "eai_general_math": 0.00010060999920824543, "eai_open_web_math": 0.17478376626968384, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "940.54", "labels": { "level_1": "History and Geography", "level_2": "Europe", "level_3": "" } }, "secondary": { "code": "951.904", "labels": { "level_1": "History and Geography", "level_2": "Asia", "level_3": "China and Korea" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "1", "label": "Truncated Snippets" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
c78d4cf040abe984322cbd60a93ed16f
3,478,292,821,162,123,000
  advanced search Categories Printable islamic colouring pages software: Islamicsaver-Free Islamic Miracle screensaver, Free Islamic Calligraphy screensaver, Islam means to be surrender and abide by and more. Islamicsaver - Islamic Miracle screensav 1.0 Islamicsaver - Islamic Miracle screensav Rating: (not rated) Platforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com Type: Freeware Releases: Aug 30, 2008 Cost: $0.00US Developer: Islamicsaver Every day observed in the world new and new various miracles. One country tests his power of a-bomb. On the other hand, another country through the rocket. This type of Miracle observed by man. Islamic miracle observed by man's creator. Islamic Miracle picture is wonderful and learnable for everybody. You can see some picture of Islamic Miracle by downloading and installing Islamic Miracle screensaver. file size: 1278k Download Islamicsaver - Islamic Miracle screensav Keywords: screensavers, makkah screensaver, screensaver, islamic calligraphy screensaver, wallpaper More on printable islamic colouring pages D letters for children 10 D letters for children Rating: (not rated) Platforms: Win 3.1x Win95 Win98 WinME WinXP WinNT 3.x WinNT 4.x Windows2000 Windows2003 Mac Homepage: http://www.fun4child.com/alphabet/ Type: Freeware Releases: Oct 10, 2006 Cost: $0.00US Developer: Magic reading Alphabet Alphabet Coloring Pages. Printable alphabet coloring pages accompany the game Alphabet Action. Alphabet Printable Worksheets, Coloring Pages and Flash Cards Alphabet printable activity worksheets, coloring pages, color posters, flash cards and mini books suitable for toddlers, preschool, and early elementary. ABC Activities Offers free printable activity pages including letter and number worksheets and flashcards, coloring pages, and beginning file size: 29k Download D letters for children Keywords: language, d Tuning colouring book 1 Games    Kids Tuning colouring book Rating: (not rated) Platforms: WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Homepage: http://www.uaf.cz Type: Demo Releases: Aug 23, 2006 Cost: $12.50US Developer: PEDISOFT Tuning colouring book is the game for all boys from 3 to 99 years old. Is the game for cultivation children's creativity. Is the game that educate child in working with computer. file size: 1483k Download Tuning colouring book Keywords: Colouring book, colouringbook, coloring book, coloringbook Islamicsaver - Islamic Calligraphy scree 1.0 Islamicsaver - Islamic Calligraphy scree Rating: (not rated) Platforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com Type: Freeware Releases: Aug 30, 2008 Cost: $0.00US Developer: Islamicsaver Islamic Calligraphy is nice and beautiful Calligraphy in the world. This is completely different from other calligraphy in the world. Screensaver of Islamic Calligraphy is wonderful too. This is can be beautiful your computer desktop. So Enjoy your life with Islamic calligraphy screensaver. Just download our site and install your computer. file size: 1121k Download Islamicsaver - Islamic Calligraphy scree Keywords: download screensaver, free islamic screensaver, free screensaver, madina screensaver, screensaver Kids Virtual Colouring Book 2006 2.5.4.0 Kids Virtual Colouring Book 2006 Rating: (not rated) Platforms: Win95 Win98 WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Windows2003 Homepage: visit Type: Shareware Releases: Oct 23, 2005 Cost: $17.95US Developer: www.Day-You-Were-Born.co.uk Kids Colouring Book will allow your children to colour pictures using virtual crayons and buckets on their computer, GUARANTEED FUN for all ages! file size: 11510k Download Kids Virtual Colouring Book 2006 Keywords: Kids, manager, Colouring, game, 2006 Colouring4kids 1.0 Colouring4kids Rating: 4/5 (3 votes) Platforms: Win98 WinME Windows2000 WinXP Homepage: http://www.colouring4kids.co.uk Type: Shareware Releases: Feb 25, 2005 Cost: $10.00US Developer: Colouring4Kids Children will have hours of fun with this electronic colouring book. Large buttons for colour selection make it easy to use even for young children. No more broken or lost crayons with this computer version and the pages can be coloured over and over again with the dozens of available colours. The trial version comes complete with approx 20 preloaded images sorted into categories file size: 6760k Download Colouring4kids Keywords: Coloring book, color, colouring pictures, children, barney Printable Puzzles Tool Bar 1.0 Printable Puzzles Tool Bar Rating: (not rated) Platforms: Win95 Win98 WinXP Windows Vista Starter Windows Vista Home Basic x64 Homepage: http://www.suriacaiberry.com Type: Freeware Releases: Dec 13, 2008 Cost: $0.00US Developer: Printable Puzzles Printable Puzzles Tool Bar Find Your Puzzle! We have all kinds for Puzzles. You will get thousands of puzzles of various types. Fan of the age old crossword puzzles that people have been familiar with almost centuries you can get hundreds of these here and all you will have to do is simply choose the crossword puzzle that you like and right click in order to print. You can fill in the puzzle whenever you want to. file size: 1276k Download Printable Puzzles Tool Bar Keywords: puzzle, Printable coloring pages, children, tool bar, IE Islamic Screensaver 2.02 Islamic Screensaver Rating: (not rated) Platforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.screensaverfine.com Type: Shareware Releases: May 02, 2007 Cost: $10.50US Developer: Screensaverfine Islam means to be surrender and abide by command of God. Who is created us. God select this religion for all mankind. Islam is a completed code of life. Islam is a best religion. All things of Islam beauty no different Islamic screensaver from there. Islamic screensaver is not only a screensaver like general screensaver. This screensaver help us to know about our creator. file size: 1186k Download Islamic Screensaver Keywords: 3D screensaver, Free Popular Screen Savers, 3d screensavers, birds screensaver, Screen saver Free Printable Easter Coloring Book 1 Free Printable Easter Coloring Book Rating: (not rated) Platforms: Win 3.1x Win95 Win98 WinME WinNT 3.x WinNT 4.x Windows2000 WinXP Windows2003 Windows Vista Starter Windows Vista Home Basic Windows Vista Home Premium Windows Vista Business Windows Vista Enterprise Windows Vista Ultimate Windows Vista Home Basic x64 Wind Homepage: http://www.fun-with-pictures.com Type: Freeware Releases: Apr 08, 2009 Cost: $0.00US Developer: fun-with-pictures.com A Printable Easter Gift for Kids from fun-with-pictures.com. This Easter coloring book in PDF format has twenty five coloring book activity pages. Print out and have fun with these coloring sheets of Easter eggs, Cute and funny Easter Bunnies and printable Easter cards. Fun-with-pictures.com is a fun site for kids with lots of Free Printable Coloring Pages, Printable Puzzles, Fun Pictures, Games, Activities, and lots of fun content for kids. file size: 2112k Download Free Printable Easter Coloring Book Keywords: kids, easter activities, easter, easter eggs pics, images Islamicsaver - Jannatul Baqi screensaver 1.0 Islamicsaver - Jannatul Baqi screensaver Rating: (not rated) Platforms: Win98 WinXP Windows2000 Windows2003 Homepage: http://www.islamicsaver.com Type: Freeware Releases: Aug 30, 2008 Cost: $0.00US Developer: Islamicsaver Jannatul Baqi is a popular tomb in the world. This is looking so nice. You can see picture of Jannatul Baqi without visiting place of Jannatul Baqi by downloading and installing "Jannatul Baqi screensaver" easily and free. So download and enjoy your best from today with fantastic slideshow. file size: 1528k Download Islamicsaver - Jannatul Baqi screensaver Keywords: free screensaver, islamic screensaver, screensaver, makkah screensaver, free screensaver For searches similar to printable islamic colouring pages see "Related searches" under the category listing. Lastest Review Breaktru Percent A small utility to instantly calculate percentages. Apr 19, 2013 50,000 software products Related Searches
{ "url": "http://freedownloadmanager.org/download/printable-islamic-colouring-pages-5043995.html", "source_domain": "freedownloadmanager.org", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "42043", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IGQMMIVVBRL4SOSZIV65LM3U57JTOGYL", "WARC-Concurrent-To": "<urn:uuid:161108c9-b552-43dc-aa1d-53639abf4882>", "WARC-Date": "2013-05-21T12:24:20Z", "WARC-IP-Address": "67.228.17.115", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:UWZBPT7GRAMUFAKSCKTLMXSH63AFGE3O", "WARC-Record-ID": "<urn:uuid:593c9b3d-8ebb-45b0-94e0-705da4e93f15>", "WARC-Target-URI": "http://freedownloadmanager.org/download/printable-islamic-colouring-pages-5043995.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c75a977d-aff8-4114-9f42-7fddcc655113>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 2, 18, 19, 30, 31, 211, 212, 213, 258, 259, 300, 308, 320, 405, 443, 481, 887, 1054, 1055, 1056, 1098, 1099, 1125, 1126, 1149, 1157, 1169, 1306, 1344, 1392, 1703, 1840, 1909, 1910, 1934, 1935, 1949, 1971, 1979, 1991, 2074, 2108, 2143, 2322, 2439, 2440, 2485, 2486, 2527, 2535, 2547, 2632, 2670, 2708, 3050, 3225, 3226, 3267, 3268, 3301, 3309, 3321, 3416, 3455, 3509, 3655, 3762, 3763, 3782, 3783, 3798, 3806, 3820, 3903, 3942, 3983, 4366, 4476, 4477, 4508, 4509, 4536, 4544, 4556, 4675, 4713, 4756, 5173, 5293, 5294, 5319, 5320, 5340, 5348, 5360, 5448, 5487, 5529, 5904, 6053, 6054, 6092, 6093, 6129, 6137, 6149, 6459, 6497, 6544, 6990, 7120, 7121, 7166, 7167, 7208, 7216, 7228, 7313, 7351, 7389, 7681, 7847, 7956, 7957, 7972, 7973, 7990, 7991, 8043, 8044, 8057, 8082, 8083 ], "line_end_idx": [ 2, 18, 19, 30, 31, 211, 212, 213, 258, 259, 300, 308, 320, 405, 443, 481, 887, 1054, 1055, 1056, 1098, 1099, 1125, 1126, 1149, 1157, 1169, 1306, 1344, 1392, 1703, 1840, 1909, 1910, 1934, 1935, 1949, 1971, 1979, 1991, 2074, 2108, 2143, 2322, 2439, 2440, 2485, 2486, 2527, 2535, 2547, 2632, 2670, 2708, 3050, 3225, 3226, 3267, 3268, 3301, 3309, 3321, 3416, 3455, 3509, 3655, 3762, 3763, 3782, 3783, 3798, 3806, 3820, 3903, 3942, 3983, 4366, 4476, 4477, 4508, 4509, 4536, 4544, 4556, 4675, 4713, 4756, 5173, 5293, 5294, 5319, 5320, 5340, 5348, 5360, 5448, 5487, 5529, 5904, 6053, 6054, 6092, 6093, 6129, 6137, 6149, 6459, 6497, 6544, 6990, 7120, 7121, 7166, 7167, 7208, 7216, 7228, 7313, 7351, 7389, 7681, 7847, 7956, 7957, 7972, 7973, 7990, 7991, 8043, 8044, 8057, 8082, 8083, 8099 ] }
{ "red_pajama_v2": { "ccnet_original_length": 8099, "ccnet_original_nlines": 133, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.18187743425369263, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.014341589994728565, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.26140809059143066, "rps_doc_frac_unique_words": 0.3342222273349762, "rps_doc_mean_word_length": 5.853333473205566, "rps_doc_num_sentences": 102, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.366672515869141, "rps_doc_word_count": 1125, "rps_doc_frac_chars_dupe_10grams": 0.09552011638879776, "rps_doc_frac_chars_dupe_5grams": 0.186332568526268, "rps_doc_frac_chars_dupe_6grams": 0.14259681105613708, "rps_doc_frac_chars_dupe_7grams": 0.13409262895584106, "rps_doc_frac_chars_dupe_8grams": 0.11662869900465012, "rps_doc_frac_chars_dupe_9grams": 0.10660591721534729, "rps_doc_frac_chars_top_2gram": 0.012148819863796234, "rps_doc_frac_chars_top_3gram": 0.0191344004124403, "rps_doc_frac_chars_top_4gram": 0.031435079872608185, "rps_doc_books_importance": -613.2401123046875, "rps_doc_books_importance_length_correction": -613.2401123046875, "rps_doc_openwebtext_importance": -371.1816101074219, "rps_doc_openwebtext_importance_length_correction": -371.1816101074219, "rps_doc_wikipedia_importance": -263.72418212890625, "rps_doc_wikipedia_importance_length_correction": -263.72418212890625 }, "fasttext": { "dclm": 0.000019670000256155618, "english": 0.8110958337783813, "fineweb_edu_approx": 2.0706450939178467, "eai_general_math": 0.0005582000012509525, "eai_open_web_math": 0.039993349462747574, "eai_web_code": 0.000022169999283505604 } }
{ "free_decimal_correspondence": { "primary": { "code": "297.092", "labels": { "level_1": "Religion", "level_2": "Religions", "level_3": "Islam and Bahai Faith" } }, "secondary": { "code": "741.5", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "1", "label": "Truncated Snippets" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
2,305,768,962,154,996,000
Sign in Sign in to nj.com Close Customize Your Weather Close Congratulations! Your weather is set to . You can change the location at any time. Close Customize Your Weather Congratulations! Your weather is set to . You can change the location at any time. AccuWeather.com Quick Look Become a Reporter We want school logos Help spruce up your school's page with the school logo Upload! Here's how Bergen Tech (10-16-0) 62 1/5/2013 Passaic Valley (6-14-0) 54   Bergen Tech (62) at Passaic Valley (54) - Girls Basketball , January 05, 2013 6:31 p.m. Njaire McKoy scored a game-high 26 points and grabbed 11 rebounds when Bergen Tech defeated Passaic Valley, 62-54, at Passaic Valley High School in Little Falls. Caroline Koboska tallied a team high 13 points for Passaic Valley. Breeland Fife scored 14 points and grabbed 11 rebounds for Bergen Tech in the victory.  
{ "url": "http://highschoolsports.nj.com/news/article/1171337084975331287/bergen-tech-62-at-passaic-valley-54-girls-basketball/", "source_domain": "highschoolsports.nj.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "88504", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ZV62AZFB47EJGUPACHK6KMDQYHPNE224", "WARC-Concurrent-To": "<urn:uuid:ba5b46d8-168d-409d-8883-10b2b2e7b0f4>", "WARC-Date": "2013-06-19T08:13:55Z", "WARC-IP-Address": "184.51.126.74", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:XRBQVLIVJUP3GQEMHO7K3ZQMSYPJOPGT", "WARC-Record-ID": "<urn:uuid:232c6b0a-730c-45f3-9d2c-5abc31dddf6d>", "WARC-Target-URI": "http://highschoolsports.nj.com/news/article/1171337084975331287/bergen-tech-62-at-passaic-valley-54-girls-basketball/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4cfc69ce-6983-46bf-902b-3849aa7d9ee2>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 8, 9, 27, 28, 34, 57, 58, 64, 81, 147, 153, 184, 209, 283, 318, 319, 320, 346, 375, 398, 425, 454, 481, 482, 502, 503, 521, 532, 533, 550, 551, 574, 575, 592, 603, 604, 614, 615, 682, 683, 720, 721, 891, 892, 1054, 1055 ], "line_end_idx": [ 8, 9, 27, 28, 34, 57, 58, 64, 81, 147, 153, 184, 209, 283, 318, 319, 320, 346, 375, 398, 425, 454, 481, 482, 502, 503, 521, 532, 533, 550, 551, 574, 575, 592, 603, 604, 614, 615, 682, 683, 720, 721, 891, 892, 1054, 1055, 1064 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1064, "ccnet_original_nlines": 46, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.20725388824939728, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3212435245513916, "rps_doc_frac_unique_words": 0.5744680762290955, "rps_doc_mean_word_length": 4.808510780334473, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.228066921234131, "rps_doc_word_count": 141, "rps_doc_frac_chars_dupe_10grams": 0.19174040853977203, "rps_doc_frac_chars_dupe_5grams": 0.26843658089637756, "rps_doc_frac_chars_dupe_6grams": 0.19174040853977203, "rps_doc_frac_chars_dupe_7grams": 0.19174040853977203, "rps_doc_frac_chars_dupe_8grams": 0.19174040853977203, "rps_doc_frac_chars_dupe_9grams": 0.19174040853977203, "rps_doc_frac_chars_top_2gram": 0.09587021172046661, "rps_doc_frac_chars_top_3gram": 0.05309734866023064, "rps_doc_frac_chars_top_4gram": 0.07374630868434906, "rps_doc_books_importance": -84.55360412597656, "rps_doc_books_importance_length_correction": -84.55360412597656, "rps_doc_openwebtext_importance": -39.75495147705078, "rps_doc_openwebtext_importance_length_correction": -27.958457946777344, "rps_doc_wikipedia_importance": -31.99781608581543, "rps_doc_wikipedia_importance_length_correction": -31.99781608581543 }, "fasttext": { "dclm": 0.00003122999987681396, "english": 0.8832426071166992, "fineweb_edu_approx": 0.9107999205589294, "eai_general_math": -0.000004529999841906829, "eai_open_web_math": 0.2339460849761963, "eai_web_code": -0.00000965999970503617 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.33", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "373.12", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Secondary and High schools" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f
-697,602,846,319,220,500
East Valley Tribune May 20, 2013 | 05:01 am East Valley Tribune Facebook East Valley Tribune Twitter East Valley Tribune Mobile Version East Valley Tribune Facebook Best of East Valley 2013 East Valley briefs Print Font Size: Default font size Larger font size Posted: Wednesday, September 27, 2006 12:00 am | Updated: 2:15 pm, Fri Oct 7, 2011. Paradise Valley Community College sophomore goalkeeper Dani Guest, a Scottsdale Horizon High product, was named the national goalkeeper of the week Wednesday by the National Junior College Athletic Association. Last week Guest had three saves in a win over Chandler-Gilbert Community College and 13 saves, including a key penalty kick stopper, in a 1-0 shutout over nationally ranked No. 2 Mesa Community College. VOLLEYBALL -- Scottsdale Community College (14-5) defeated host Arizona Western in an Arizona Community College Athletic Conference matchup, 31-29, 30-19, 30-23. HOCKEY -- The Phoenix RoadRunners said veteran forward Joe Dusbabek and defenseman Paul Ballantyne have each agreed to terms on a contract to return to the ECHL team for the 2006-07 season. • Discuss Welcome to the discussion. Rules of Conduct Welcome! | Not you?|| LogoutMy Dashboard Happening Now...  
{ "url": "http://www.eastvalleytribune.com/sports/article_b0774d9f-1932-5e02-b3c7-6210b139d276.html", "source_domain": "www.eastvalleytribune.com", "snapshot_id": "crawl=CC-MAIN-2013-20", "warc_metadata": { "Content-Length": "148452", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HOJPZSEY4YTU7XPG2XRUWDTLL57JNN44", "WARC-Concurrent-To": "<urn:uuid:5320b933-ddf2-4298-8a40-abb291bfc26f>", "WARC-Date": "2013-05-20T12:01:01Z", "WARC-IP-Address": "192.104.182.109", "WARC-Identified-Payload-Type": null, "WARC-Payload-Digest": "sha1:QPZRCK6TDZIHXOPEU7CUEHZDCMFZJLQS", "WARC-Record-ID": "<urn:uuid:3a9975d6-e8a9-449c-9526-391f3886870f>", "WARC-Target-URI": "http://www.eastvalleytribune.com/sports/article_b0774d9f-1932-5e02-b3c7-6210b139d276.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e95a1bc2-6463-478e-8020-b9c11c6e3852>" }, "warc_info": "robots: classic\r\nhostname: ip-10-60-113-184.ec2.internal\r\nsoftware: Nutch 1.6 (CC)/CC WarcExport 1.0\r\nisPartOf: CC-MAIN-2013-20\r\noperator: CommonCrawl Admin\r\ndescription: Wide crawl of the web with URLs provided by Blekko for Spring 2013\r\npublisher: CommonCrawl\r\nformat: WARC File Format 1.0\r\nconformsTo: http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf" }
{ "line_start_idx": [ 0, 20, 21, 45, 166, 191, 192, 211, 212, 218, 229, 247, 264, 265, 349, 350, 561, 562, 765, 766, 777, 778, 929, 930, 937, 938, 1121, 1122, 1134, 1135, 1162, 1163, 1184, 1185, 1198, 1204, 1219, 1242, 1243, 1264, 1265 ], "line_end_idx": [ 20, 21, 45, 166, 191, 192, 211, 212, 218, 229, 247, 264, 265, 349, 350, 561, 562, 765, 766, 777, 778, 929, 930, 937, 938, 1121, 1122, 1134, 1135, 1162, 1163, 1184, 1185, 1198, 1204, 1219, 1242, 1243, 1264, 1265, 1270 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1270, "ccnet_original_nlines": 40, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1596638709306717, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.012605040334165096, "rps_doc_frac_lines_end_with_ellipsis": 0.024390239268541336, "rps_doc_frac_no_alph_words": 0.29411765933036804, "rps_doc_frac_unique_words": 0.6666666865348816, "rps_doc_mean_word_length": 5.290322780609131, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0.004201679956167936, "rps_doc_unigram_entropy": 4.589760780334473, "rps_doc_word_count": 186, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.07113821059465408, "rps_doc_frac_chars_top_3gram": 0.08638211339712143, "rps_doc_frac_chars_top_4gram": 0.050813011825084686, "rps_doc_books_importance": -69.82620239257812, "rps_doc_books_importance_length_correction": -69.82620239257812, "rps_doc_openwebtext_importance": -42.85646438598633, "rps_doc_openwebtext_importance_length_correction": -42.85646438598633, "rps_doc_wikipedia_importance": -34.90195083618164, "rps_doc_wikipedia_importance_length_correction": -34.90195083618164 }, "fasttext": { "dclm": -0.000008940000043367036, "english": 0.878049910068512, "fineweb_edu_approx": 0.9631287455558777, "eai_general_math": -0.000003929999820684316, "eai_open_web_math": 0.23841100931167603, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.33", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.83", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
c78d4cf040abe984322cbd60a93ed16f