{ // 获取包含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 }); }); } })(); \r\n"},"url":{"kind":"string","value":"http://mythoughtson.it/dad-i-want-to-be-an-inventor/"},"metadata_html":{"kind":"list like","value":[{"char_end_idx":0,"char_start_idx":0,"html_attrs":{"attrs":["class","id"],"values":["navigation-wrapper menu-wrapper","main-superfish-wrapper"]},"key":"html","relative_end_pos":6,"relative_start_pos":5,"type":"local","value":"div"},{"char_end_idx":13,"char_start_idx":0,"html_attrs":{"attrs":["value","class"],"values":["","blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":9,"type":"local","value":"option"},{"char_end_idx":17,"char_start_idx":13,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/","menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14 menu-item-depth-0"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"option"},{"char_end_idx":28,"char_start_idx":18,"html_attrs":{"attrs":["class","value"],"values":["menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-120 menu-item-depth-0",""]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":44,"char_start_idx":29,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/category/on-the-settee/","menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-110 menu-item-depth-1"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":56,"char_start_idx":45,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/category/marketing/","menu-item menu-item-type-taxonomy menu-item-object-category menu-item-25 menu-item-depth-1"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":65,"char_start_idx":57,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/category/mobile/","menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26 menu-item-depth-1"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":72,"char_start_idx":66,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/category/news/","menu-item menu-item-type-taxonomy menu-item-object-category menu-item-101 menu-item-depth-1"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":81,"char_start_idx":73,"html_attrs":{"attrs":["value","class"],"values":["http://mythoughtson.it/archives/","menu-item menu-item-type-post_type menu-item-object-page menu-item-22 menu-item-depth-0"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"option"},{"char_end_idx":82,"char_start_idx":0,"html_attrs":{"attrs":["id","class"],"values":["menu-header-1","menu dropdown-menu"]},"key":"html","relative_end_pos":0,"relative_start_pos":8,"type":"local","value":"select"},{"char_end_idx":82,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["responsive-menu-wrapper"]},"key":"html","relative_end_pos":1,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":82,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["header-right-side-wrapper"]},"key":"html","relative_end_pos":2,"relative_start_pos":4,"type":"local","value":"div"},{"char_end_idx":82,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["header-wrapper"]},"key":"html","relative_end_pos":3,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":82,"char_start_idx":82,"html_attrs":{"attrs":["class"],"values":["single-thumbnail-info post-info-color"]},"key":"html","relative_end_pos":7,"relative_start_pos":6,"type":"local","value":"div"},{"char_end_idx":486,"char_start_idx":486,"html_attrs":{"attrs":["id"],"values":["more-130"]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"span"},{"char_end_idx":667,"char_start_idx":82,"html_attrs":{"attrs":["dir"],"values":["ltr"]},"key":"html","relative_end_pos":0,"relative_start_pos":9,"type":"local","value":"p"},{"char_end_idx":1322,"char_start_idx":668,"html_attrs":{"attrs":["dir"],"values":["ltr"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":2194,"char_start_idx":1323,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":2424,"char_start_idx":2195,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":3199,"char_start_idx":2425,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"p"},{"char_end_idx":3200,"char_start_idx":82,"html_attrs":{"attrs":["class"],"values":["single-context single-content"]},"key":"html","relative_end_pos":0,"relative_start_pos":8,"type":"local","value":"div"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":4,"relative_start_pos":3,"type":"local","value":"li"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":["href","class","data-url","data-text","data-via"],"values":["https://twitter.com/share","twitter-share-button","http://mythoughtson.it/dad-i-want-to-be-an-inventor/","Dad, I want to be an inventor","botulJB"]},"key":"html","relative_end_pos":7,"relative_start_pos":6,"type":"local","value":"a"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":8,"relative_start_pos":5,"type":"local","value":"li"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":10,"relative_start_pos":9,"type":"local","value":"li"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":12,"relative_start_pos":11,"type":"local","value":"li"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":13,"relative_start_pos":2,"type":"local","value":"ul"},{"char_end_idx":3200,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["social-share-title gdl-link-title gdl-title social-shares"]},"key":"html","relative_end_pos":14,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":3731,"char_start_idx":3200,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":21,"type":"local","value":"p"},{"char_end_idx":3732,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["comment-content"]},"key":"html","relative_end_pos":0,"relative_start_pos":20,"type":"local","value":"div"},{"char_end_idx":3732,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["comment-context"]},"key":"html","relative_end_pos":1,"relative_start_pos":19,"type":"local","value":"div"},{"char_end_idx":3732,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["comment-body gdl-divider"]},"key":"html","relative_end_pos":2,"relative_start_pos":18,"type":"local","value":"div"},{"char_end_idx":3732,"char_start_idx":3200,"html_attrs":{"attrs":["class","id"],"values":["comment even thread-even depth-1","comment-10"]},"key":"html","relative_end_pos":3,"relative_start_pos":17,"type":"local","value":"li"},{"char_end_idx":3899,"char_start_idx":3732,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":8,"type":"local","value":"p"},{"char_end_idx":3900,"char_start_idx":3732,"html_attrs":{"attrs":["class"],"values":["comment-content"]},"key":"html","relative_end_pos":0,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":3900,"char_start_idx":3732,"html_attrs":{"attrs":["class"],"values":["comment-context"]},"key":"html","relative_end_pos":1,"relative_start_pos":6,"type":"local","value":"div"},{"char_end_idx":3900,"char_start_idx":3732,"html_attrs":{"attrs":["class"],"values":["comment-body gdl-divider"]},"key":"html","relative_end_pos":2,"relative_start_pos":5,"type":"local","value":"div"},{"char_end_idx":3900,"char_start_idx":3732,"html_attrs":{"attrs":["class","id"],"values":["comment odd alt thread-odd thread-alt depth-1","comment-11"]},"key":"html","relative_end_pos":3,"relative_start_pos":4,"type":"local","value":"li"},{"char_end_idx":3900,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["comment-list"]},"key":"html","relative_end_pos":4,"relative_start_pos":16,"type":"local","value":"ol"},{"char_end_idx":3926,"char_start_idx":3914,"html_attrs":{"attrs":["rel","id","href","style"],"values":["nofollow","cancel-comment-reply-link","/dad-i-want-to-be-an-inventor/#respond","display:none;"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":3926,"char_start_idx":3914,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"small"},{"char_end_idx":3926,"char_start_idx":3900,"html_attrs":{"attrs":["id","class"],"values":["reply-title","comment-reply-title"]},"key":"html","relative_end_pos":2,"relative_start_pos":6,"type":"local","value":"h3"},{"char_end_idx":3927,"char_start_idx":3900,"html_attrs":{"attrs":["id","class"],"values":["respond","comment-respond"]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"div"},{"char_end_idx":3927,"char_start_idx":3200,"html_attrs":{"attrs":["class"],"values":["comment-wrapper"]},"key":"html","relative_end_pos":1,"relative_start_pos":15,"type":"local","value":"div"},{"char_end_idx":3927,"char_start_idx":82,"html_attrs":{"attrs":["class"],"values":["gdl-page-float-left gdl-page-item sixteen columns mt0"]},"key":"html","relative_end_pos":2,"relative_start_pos":5,"type":"local","value":"div"},{"char_end_idx":4191,"char_start_idx":4182,"html_attrs":{"attrs":["href"],"values":["http://mythoughtson.it/Who-Is-This-Guy/"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":4191,"char_start_idx":3927,"html_attrs":{"attrs":["class"],"values":["textwidget"]},"key":"html","relative_end_pos":1,"relative_start_pos":5,"type":"local","value":"div"},{"char_end_idx":4192,"char_start_idx":3927,"html_attrs":{"attrs":["class","div","id"],"values":["custom-sidebar gdl-divider widget_text","","text-3"]},"key":"html","relative_end_pos":0,"relative_start_pos":4,"type":"local","value":"div"},{"char_end_idx":4503,"char_start_idx":4494,"html_attrs":{"attrs":["href"],"values":["http://mythoughtson.it/Why-My-Thoughts-On-It/"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":4503,"char_start_idx":4192,"html_attrs":{"attrs":["class"],"values":["textwidget"]},"key":"html","relative_end_pos":1,"relative_start_pos":2,"type":"local","value":"div"},{"char_end_idx":4504,"char_start_idx":4192,"html_attrs":{"attrs":["class","div","id"],"values":["custom-sidebar gdl-divider widget_text","","text-2"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":5261,"char_start_idx":5249,"html_attrs":{"attrs":["href"],"values":["http://mythoughtson.it/we-pinned-our-hopes-on-a-team-that-was-recovering-from-failure-and-we-were-right/"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5261,"char_start_idx":4504,"html_attrs":{"attrs":["class"],"values":["textwidget"]},"key":"html","relative_end_pos":1,"relative_start_pos":2,"type":"local","value":"div"},{"char_end_idx":5262,"char_start_idx":4504,"html_attrs":{"attrs":["class","div","id"],"values":["custom-sidebar gdl-divider widget_text","","text-4"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":5262,"char_start_idx":5262,"html_attrs":{"attrs":["class","div","id"],"values":["custom-sidebar gdl-divider widget_ns_mailchimp","","ns_widget_mailchimp-2"]},"key":"html","relative_end_pos":2,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":5278,"char_start_idx":5265,"html_attrs":{"attrs":["href","title","target"],"values":["http://twitter.com/Steph_and_me","Follow Steph_and_me","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5402,"char_start_idx":5262,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":7,"type":"local","value":"span"},{"char_end_idx":5411,"char_start_idx":5402,"html_attrs":{"attrs":["target","href"],"values":["_blank","http://twitter.com/botulJB/statuses/1118384532665831430"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":5411,"char_start_idx":5262,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":6,"type":"local","value":"li"},{"char_end_idx":5427,"char_start_idx":5415,"html_attrs":{"attrs":["href","title","target"],"values":["http://twitter.com/VeraGaufman","Follow VeraGaufman","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5484,"char_start_idx":5461,"html_attrs":{"attrs":["href","title","target"],"values":["https://t.co/VwneuJRvLU","https://t.co/VwneuJRvLU","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5484,"char_start_idx":5412,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":1,"type":"local","value":"span"},{"char_end_idx":5493,"char_start_idx":5484,"html_attrs":{"attrs":["target","href"],"values":["_blank","http://twitter.com/botulJB/statuses/1116840282815746049"]},"key":"html","relative_end_pos":0,"relative_start_pos":2,"type":"local","value":"a"},{"char_end_idx":5493,"char_start_idx":5412,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"li"},{"char_end_idx":5510,"char_start_idx":5497,"html_attrs":{"attrs":["href","title","target"],"values":["http://twitter.com/ParkerMolloy","Follow ParkerMolloy","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5634,"char_start_idx":5494,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"span"},{"char_end_idx":5643,"char_start_idx":5634,"html_attrs":{"attrs":["target","href"],"values":["_blank","http://twitter.com/botulJB/statuses/1116840195465236480"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":5643,"char_start_idx":5494,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"li"},{"char_end_idx":5655,"char_start_idx":5647,"html_attrs":{"attrs":["href","title","target"],"values":["http://twitter.com/RBReich","Follow RBReich","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":5783,"char_start_idx":5644,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"span"},{"char_end_idx":5792,"char_start_idx":5783,"html_attrs":{"attrs":["target","href"],"values":["_blank","http://twitter.com/botulJB/statuses/1116836462618505216"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":5792,"char_start_idx":5644,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"li"},{"char_end_idx":5805,"char_start_idx":5793,"html_attrs":{"attrs":["href","title","target"],"values":["http://twitter.com/v_brengarth","Follow v_brengarth","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":2,"type":"local","value":"a"},{"char_end_idx":5901,"char_start_idx":5793,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"span"},{"char_end_idx":5910,"char_start_idx":5901,"html_attrs":{"attrs":["target","href"],"values":["_blank","http://twitter.com/botulJB/statuses/1116835626781855744"]},"key":"html","relative_end_pos":0,"relative_start_pos":1,"type":"local","value":"a"},{"char_end_idx":5910,"char_start_idx":5793,"html_attrs":{"attrs":[],"values":[]},"key":"html","relative_end_pos":1,"relative_start_pos":0,"type":"local","value":"li"},{"char_end_idx":5911,"char_start_idx":5262,"html_attrs":{"attrs":["id"],"values":["twitter_update_list"]},"key":"html","relative_end_pos":0,"relative_start_pos":5,"type":"local","value":"ul"},{"char_end_idx":5911,"char_start_idx":5262,"html_attrs":{"attrs":["class"],"values":["twitter-whole"]},"key":"html","relative_end_pos":1,"relative_start_pos":4,"type":"local","value":"div"},{"char_end_idx":5911,"char_start_idx":5262,"html_attrs":{"attrs":["class","div","id"],"values":["custom-sidebar gdl-divider widget_twitter-widget","","twitter-widget-2"]},"key":"html","relative_end_pos":2,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":5911,"char_start_idx":3927,"html_attrs":{"attrs":["class"],"values":["five columns mt0 gdl-right-sidebar right-sidebar-wrapper gdl-divider"]},"key":"html","relative_end_pos":3,"relative_start_pos":3,"type":"local","value":"div"},{"char_end_idx":5911,"char_start_idx":82,"html_attrs":{"attrs":["class"],"values":["content-wrapper sidebar-included right-sidebar"]},"key":"html","relative_end_pos":4,"relative_start_pos":4,"type":"local","value":"div"},{"char_end_idx":5911,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["container"]},"key":"html","relative_end_pos":5,"relative_start_pos":2,"type":"local","value":"div"},{"char_end_idx":5951,"char_start_idx":5930,"html_attrs":{"attrs":["href","rel","target"],"values":["http://davidderus.com","dofollow","_blank"]},"key":"html","relative_end_pos":0,"relative_start_pos":0,"type":"local","value":"a"},{"char_end_idx":6007,"char_start_idx":5911,"html_attrs":{"attrs":["class"],"values":["copyright-wrapper container"]},"key":"html","relative_end_pos":0,"relative_start_pos":7,"type":"local","value":"div"},{"char_end_idx":6007,"char_start_idx":5911,"html_attrs":{"attrs":["class"],"values":["footer-wrapper"]},"key":"html","relative_end_pos":1,"relative_start_pos":6,"type":"local","value":"div"},{"char_end_idx":6007,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["body-wrapper"]},"key":"html","relative_end_pos":2,"relative_start_pos":1,"type":"local","value":"div"},{"char_end_idx":6007,"char_start_idx":0,"html_attrs":{"attrs":["class"],"values":["post-template-default single single-post postid-130 single-format-standard"]},"key":"html","relative_end_pos":3,"relative_start_pos":0,"type":"local","value":"body"}],"string":"[\n {\n \"char_end_idx\": 0,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"navigation-wrapper menu-wrapper\",\n \"main-superfish-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 6,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 13,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"\",\n \"blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 9,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 17,\n \"char_start_idx\": 13,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/\",\n \"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-14 menu-item-depth-0\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 28,\n \"char_start_idx\": 18,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"value\"\n ],\n \"values\": [\n \"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-120 menu-item-depth-0\",\n \"\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 44,\n \"char_start_idx\": 29,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/category/on-the-settee/\",\n \"menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-110 menu-item-depth-1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 56,\n \"char_start_idx\": 45,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/category/marketing/\",\n \"menu-item menu-item-type-taxonomy menu-item-object-category menu-item-25 menu-item-depth-1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 65,\n \"char_start_idx\": 57,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/category/mobile/\",\n \"menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26 menu-item-depth-1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 72,\n \"char_start_idx\": 66,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/category/news/\",\n \"menu-item menu-item-type-taxonomy menu-item-object-category menu-item-101 menu-item-depth-1\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 81,\n \"char_start_idx\": 73,\n \"html_attrs\": {\n \"attrs\": [\n \"value\",\n \"class\"\n ],\n \"values\": [\n \"http://mythoughtson.it/archives/\",\n \"menu-item menu-item-type-post_type menu-item-object-page menu-item-22 menu-item-depth-0\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"option\"\n },\n {\n \"char_end_idx\": 82,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"menu-header-1\",\n \"menu dropdown-menu\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 8,\n \"type\": \"local\",\n \"value\": \"select\"\n },\n {\n \"char_end_idx\": 82,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"responsive-menu-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 82,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"header-right-side-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 82,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"header-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 82,\n \"char_start_idx\": 82,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"single-thumbnail-info post-info-color\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 7,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 486,\n \"char_start_idx\": 486,\n \"html_attrs\": {\n \"attrs\": [\n \"id\"\n ],\n \"values\": [\n \"more-130\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 667,\n \"char_start_idx\": 82,\n \"html_attrs\": {\n \"attrs\": [\n \"dir\"\n ],\n \"values\": [\n \"ltr\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 9,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 1322,\n \"char_start_idx\": 668,\n \"html_attrs\": {\n \"attrs\": [\n \"dir\"\n ],\n \"values\": [\n \"ltr\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 2194,\n \"char_start_idx\": 1323,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 2424,\n \"char_start_idx\": 2195,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 3199,\n \"char_start_idx\": 2425,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 82,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"single-context single-content\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 8,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"class\",\n \"data-url\",\n \"data-text\",\n \"data-via\"\n ],\n \"values\": [\n \"https://twitter.com/share\",\n \"twitter-share-button\",\n \"http://mythoughtson.it/dad-i-want-to-be-an-inventor/\",\n \"Dad, I want to be an inventor\",\n \"botulJB\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 7,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 8,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 10,\n \"relative_start_pos\": 9,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 12,\n \"relative_start_pos\": 11,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 13,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"ul\"\n },\n {\n \"char_end_idx\": 3200,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"social-share-title gdl-link-title gdl-title social-shares\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 14,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3731,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 21,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 3732,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-content\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 20,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3732,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-context\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 19,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3732,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-body gdl-divider\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 18,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3732,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment even thread-even depth-1\",\n \"comment-10\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 17,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3899,\n \"char_start_idx\": 3732,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 8,\n \"type\": \"local\",\n \"value\": \"p\"\n },\n {\n \"char_end_idx\": 3900,\n \"char_start_idx\": 3732,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-content\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3900,\n \"char_start_idx\": 3732,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-context\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3900,\n \"char_start_idx\": 3732,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-body gdl-divider\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3900,\n \"char_start_idx\": 3732,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"id\"\n ],\n \"values\": [\n \"comment odd alt thread-odd thread-alt depth-1\",\n \"comment-11\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 3900,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-list\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 16,\n \"type\": \"local\",\n \"value\": \"ol\"\n },\n {\n \"char_end_idx\": 3926,\n \"char_start_idx\": 3914,\n \"html_attrs\": {\n \"attrs\": [\n \"rel\",\n \"id\",\n \"href\",\n \"style\"\n ],\n \"values\": [\n \"nofollow\",\n \"cancel-comment-reply-link\",\n \"/dad-i-want-to-be-an-inventor/#respond\",\n \"display:none;\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 3926,\n \"char_start_idx\": 3914,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"small\"\n },\n {\n \"char_end_idx\": 3926,\n \"char_start_idx\": 3900,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"reply-title\",\n \"comment-reply-title\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"h3\"\n },\n {\n \"char_end_idx\": 3927,\n \"char_start_idx\": 3900,\n \"html_attrs\": {\n \"attrs\": [\n \"id\",\n \"class\"\n ],\n \"values\": [\n \"respond\",\n \"comment-respond\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3927,\n \"char_start_idx\": 3200,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"comment-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 15,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 3927,\n \"char_start_idx\": 82,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"gdl-page-float-left gdl-page-item sixteen columns mt0\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 4191,\n \"char_start_idx\": 4182,\n \"html_attrs\": {\n \"attrs\": [\n \"href\"\n ],\n \"values\": [\n \"http://mythoughtson.it/Who-Is-This-Guy/\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 4191,\n \"char_start_idx\": 3927,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"textwidget\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 4192,\n \"char_start_idx\": 3927,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"div\",\n \"id\"\n ],\n \"values\": [\n \"custom-sidebar gdl-divider widget_text\",\n \"\",\n \"text-3\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 4503,\n \"char_start_idx\": 4494,\n \"html_attrs\": {\n \"attrs\": [\n \"href\"\n ],\n \"values\": [\n \"http://mythoughtson.it/Why-My-Thoughts-On-It/\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 4503,\n \"char_start_idx\": 4192,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"textwidget\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 4504,\n \"char_start_idx\": 4192,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"div\",\n \"id\"\n ],\n \"values\": [\n \"custom-sidebar gdl-divider widget_text\",\n \"\",\n \"text-2\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5261,\n \"char_start_idx\": 5249,\n \"html_attrs\": {\n \"attrs\": [\n \"href\"\n ],\n \"values\": [\n \"http://mythoughtson.it/we-pinned-our-hopes-on-a-team-that-was-recovering-from-failure-and-we-were-right/\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5261,\n \"char_start_idx\": 4504,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"textwidget\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5262,\n \"char_start_idx\": 4504,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"div\",\n \"id\"\n ],\n \"values\": [\n \"custom-sidebar gdl-divider widget_text\",\n \"\",\n \"text-4\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5262,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"div\",\n \"id\"\n ],\n \"values\": [\n \"custom-sidebar gdl-divider widget_ns_mailchimp\",\n \"\",\n \"ns_widget_mailchimp-2\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5278,\n \"char_start_idx\": 5265,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"http://twitter.com/Steph_and_me\",\n \"Follow Steph_and_me\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5402,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 5411,\n \"char_start_idx\": 5402,\n \"html_attrs\": {\n \"attrs\": [\n \"target\",\n \"href\"\n ],\n \"values\": [\n \"_blank\",\n \"http://twitter.com/botulJB/statuses/1118384532665831430\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5411,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 5427,\n \"char_start_idx\": 5415,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"http://twitter.com/VeraGaufman\",\n \"Follow VeraGaufman\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5484,\n \"char_start_idx\": 5461,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"https://t.co/VwneuJRvLU\",\n \"https://t.co/VwneuJRvLU\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5484,\n \"char_start_idx\": 5412,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 5493,\n \"char_start_idx\": 5484,\n \"html_attrs\": {\n \"attrs\": [\n \"target\",\n \"href\"\n ],\n \"values\": [\n \"_blank\",\n \"http://twitter.com/botulJB/statuses/1116840282815746049\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5493,\n \"char_start_idx\": 5412,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 5510,\n \"char_start_idx\": 5497,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"http://twitter.com/ParkerMolloy\",\n \"Follow ParkerMolloy\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5634,\n \"char_start_idx\": 5494,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 5643,\n \"char_start_idx\": 5634,\n \"html_attrs\": {\n \"attrs\": [\n \"target\",\n \"href\"\n ],\n \"values\": [\n \"_blank\",\n \"http://twitter.com/botulJB/statuses/1116840195465236480\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5643,\n \"char_start_idx\": 5494,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 5655,\n \"char_start_idx\": 5647,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"http://twitter.com/RBReich\",\n \"Follow RBReich\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5783,\n \"char_start_idx\": 5644,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 5792,\n \"char_start_idx\": 5783,\n \"html_attrs\": {\n \"attrs\": [\n \"target\",\n \"href\"\n ],\n \"values\": [\n \"_blank\",\n \"http://twitter.com/botulJB/statuses/1116836462618505216\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5792,\n \"char_start_idx\": 5644,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 5805,\n \"char_start_idx\": 5793,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"title\",\n \"target\"\n ],\n \"values\": [\n \"http://twitter.com/v_brengarth\",\n \"Follow v_brengarth\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5901,\n \"char_start_idx\": 5793,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"span\"\n },\n {\n \"char_end_idx\": 5910,\n \"char_start_idx\": 5901,\n \"html_attrs\": {\n \"attrs\": [\n \"target\",\n \"href\"\n ],\n \"values\": [\n \"_blank\",\n \"http://twitter.com/botulJB/statuses/1116835626781855744\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 5910,\n \"char_start_idx\": 5793,\n \"html_attrs\": {\n \"attrs\": [],\n \"values\": []\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"li\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [\n \"id\"\n ],\n \"values\": [\n \"twitter_update_list\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 5,\n \"type\": \"local\",\n \"value\": \"ul\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"twitter-whole\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 5262,\n \"html_attrs\": {\n \"attrs\": [\n \"class\",\n \"div\",\n \"id\"\n ],\n \"values\": [\n \"custom-sidebar gdl-divider widget_twitter-widget\",\n \"\",\n \"twitter-widget-2\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 3927,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"five columns mt0 gdl-right-sidebar right-sidebar-wrapper gdl-divider\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 3,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 82,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"content-wrapper sidebar-included right-sidebar\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 4,\n \"relative_start_pos\": 4,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5911,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"container\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 5,\n \"relative_start_pos\": 2,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 5951,\n \"char_start_idx\": 5930,\n \"html_attrs\": {\n \"attrs\": [\n \"href\",\n \"rel\",\n \"target\"\n ],\n \"values\": [\n \"http://davidderus.com\",\n \"dofollow\",\n \"_blank\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"a\"\n },\n {\n \"char_end_idx\": 6007,\n \"char_start_idx\": 5911,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"copyright-wrapper container\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 0,\n \"relative_start_pos\": 7,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 6007,\n \"char_start_idx\": 5911,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"footer-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 1,\n \"relative_start_pos\": 6,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 6007,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"body-wrapper\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 2,\n \"relative_start_pos\": 1,\n \"type\": \"local\",\n \"value\": \"div\"\n },\n {\n \"char_end_idx\": 6007,\n \"char_start_idx\": 0,\n \"html_attrs\": {\n \"attrs\": [\n \"class\"\n ],\n \"values\": [\n \"post-template-default single single-post postid-130 single-format-standard\"\n ]\n },\n \"key\": \"html\",\n \"relative_end_pos\": 3,\n \"relative_start_pos\": 0,\n \"type\": \"local\",\n \"value\": \"body\"\n }\n]"},"text":{"kind":"string","value":"— Main Menu —Home Categories - On the settee - Marketing - Mobile - News Archives\nFor the past few years, my son has been repeating that he wants to be an inventor, and he’s been coming up with all kinds of crazy ideas – like many kids do. What’s great about childhood, is that all your ideas work instantly – because kids can’t quite tell the difference between dreams, ideas and reality. But my son is now 11, and he is starting to put his ideas to work, and “real reality” kicks in. Paper airplanes fly, but they’re not real enough anymore. He tried cardboard, but they are too wobbly. When he makes them out of wood, they’re too heavy. Either way, they don’t fly.\nMany people, not just kids, have this misconception that success comes from having a brilliant idea. I have been lucky enough to talk to many founders of successful (and not so successful) start-ups. I don’t know too many who were successful with their original idea. And in many cases, their success isn’t this super original idea either. Apple did not invent the mouse, Google did not invent the search engine, YouTube did not invent video sharing on the web. What these three companies did is they made something much better than before, thanks to not one, but a myriad of good ideas – and they judiciously abandoned many not so good ideas on the way.\nThat’s why innovating isn’t so much about ideas but about iterations, failures, and learning fast from failures. Regularly, someone external approaches me to sell me their “idea”. I’ve seen some people sending me a 40 page document describing their idea. I’m not interested in buying ideas. We have far too many ideas already that we’ll never have the time to try, and I doubt any idea, even a 40 page idea, would work as is. There’s a reason Thomas Edison said: “Genius is one percent inspiration and ninety-nine percent perspiration”. What I value is teams of people who have achieved something. Because that’s where the value of innovation lies – in the perspiration – in the wonderful journey of getting out there, testing something, observing, making decisions, rallying the team around these sometimes hard decisions, and executing fast to release the next version.\nSon, if you want to be an inventor, don’t be shy, try your ideas, observe what works and what doesn’t, fix or drop what’s broken, improve what works, and don’t give up. Your plane will fly one day, and it’ll be a heck of a plane!\nEric is Product Management Director at Google, currently in charge of the Merchant experience for Google Shopping. Previously, he has worked on or lead a number of Google products, including Gmail, YouTube, Google Apps, Google Cloud Platform, Google Wallet. Earlier on, he also worked on the Palm Treo, the Handspring Visor, and GSM networks (at a time when the most optimistic forecasts were betting on 25% adoption!). Eric is passionate about great product design and innovation, particularly in the high tech sector. When he isn’t at Google or spending time with his wife and three children, he likes to travel and build smart homes. Eric has studied & lived in France, the Silicon Valley, Germany and Switzerland, and published a few books on telecommunications & music.\nYour article struck a cord, as a child I would imagine being an inventor. As an adult I still love it when an insight to a new product or process reveals itself . My issue has always been bringing these inspirations to market or the right team to develop them. I currently have an insight related to mobile phones. A solution to a problem that currently no one is talking about. It would create a market were currentky there is none. If you are interested in guiding/mentoring/colaborating please feel free to contact me via email.\nI agree Frank and that’s my point in this post: the challenge isn’t the idea, it’s building the team and executing it. I’ll contact you separately regarding your idea.\nLeave a Reply Cancel reply\nGilles is the CEO & Founder of News Republic, publisher of news application for smartphones, tablets, and TV. Federating more than 1,000 publishers worldwide such as Reuters, Associated Press, The Independent, CNN International, Al Jazeera, and Gizmodo …\nRead More\nRunning a media company, working directly with more than 1,000 news publishers from regions all over the world, having lived and worked on three continents, after three start ups and 20 years of experience in digital content and mobile technology, many success and mistakes, and wrong interpretations…\nRead More\nBack in the nineties, Cyril started his career as an architect of embedded software. At the turn of the millennium, he created Alcatel’s first WiFi product line in partnership with the Israeli startup Alvarion. He filed three patents in the digital modulation domain. \nAfter an MBA at INSEAD in 2001, he started a new life as an early stage investor, first for a Silicon Valley VC fund (Telesoft Partners), which taught him the underpinnings of the Venture world, and then for a German VC fund (Munich-based DVCG), where he focused on software and mobility. He joined XAnge in Paris in 2007 as a Partner and member of the Executive Committee. \nCyril holds a Masters’ degree in Engineering from Telecom Paris Tech as well as an MBA from INSEAD. \nRead more...\nRT @Steph_and_me: Greetings from Strasbourg. So proud to meet Ms. Mairead Maguire, 1976 Nobel peace prize who gave the best talk ever at th…yesterday\nRT @VeraGaufman: Ça coûte cher la tête d’Assange https://t.co/VwneuJRvLU5days ago\nRT @ParkerMolloy: Since the president is tweeting out 9/11 footage, here’s a clip of him *ON* 9/11 talking about how now he owned the talle…5days ago\nRT @RBReich: JP Morgan CEO Jamie Dimon made more than $31 million last year, but many of his employees can barely make ends meet. Kudos to…5days ago\n@v_brengarth Et pas les personnes qui ont commis des actes immoraux....me monde n est pas droit sur ce sujet5days ago\n© Gilles Raymond — Design by David Dérus\nMedia, Digital and Mobile Business in a Global Economy\n"},"html_footer":{"kind":"list like","value":[],"string":"[]"},"html_head":{"kind":"list like","value":["
\n
\n\t
\n\tMy Thoughts On It » Dad, I want to be an inventor
\n\t
\n\t
\n
\n\t
\n
\n\t
\n\t
\n\t\t\t\t
\n\t\t
\n\t\t\t
\n\t\t
\n\t
\n\t\t
\n
\n\t\t
\n\t\n\n\n\n\n\t\t\n\t\t\n\n\n\n\n\\n\\t\\t\\n\\n\\n\\n\\n