Page Time: 0.0827s

Memory: 10.5832 MB (Peak: 11.8375 MB)

Queries (13, time: 0.0087s, 10.5%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.000778
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000152
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000142
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000125
  5. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: eb4bd04319559f83e061c7718899702b, 1715943764
    Run Time: 0.000329
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_sessionconstPRIMARY,expiry_datePRIMARY34const1 
  6. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000157
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  7. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 34406
    Run Time: 0.000461
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  8. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 25
    Run Time: 0.000563
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 34406
    Run Time: 0.002029
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  10. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 34406
    Run Time: 0.000092
  11. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = 'eb4bd04319559f83e061c7718899702b')
    Params: 1715947364
    Run Time: 0.000718
  12. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=34406, 1715943764,
    Run Time: 0.000110
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 34988, a:25:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:3:{i:0;s:6:"感谢";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:24:"http://www.leiphone.com/";s:8:"original";a:2:{i:0;s:32:"[URL='http://www.leiphone.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"雷锋网";}}i:2;s:9:"的投递";}}i:1;s:473:" 最近微软一反常态允许20名科技记者进入其高度保密空间Store Zero,本文作者Matt Buchanan就是其中一员。当天微软详细地向记者们介绍了Surface是如何设计、如何制造、 微软为它发明了什么新技术、为什么他们相信500美元的Surface能够卖出去?微软之所以向这些科技记者公开这个秘密基地,是因为Surface真的对它很重要,或者说这是一场只能成功不能失败的战斗! ";i:2;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:48:"一. Surface搭载的Windows 8意味着什么?";}}}}}}i:3;s:1029:" 人们都认为计算世界的未来是关于智能手机、iPad或者Google Glass之流,曾经最大的科技公司微软却被撇在一边,而且世人还觉得无关重要,这时微软开始醒悟。 要 知道,当微软做Windows Mobile的时候还没有iOS,也没有Android,但微软却错误地估计了移动大潮到来的速度,被iOS和Android后来居上,到今天只能为了成 为iOS和Android之后的第三种力量而努力。彻底反思后的、重新设计的Windows 8(不同于微软往常刚性的、迭代的升级),尝试着建立一个衔接过去、现在、未来的东西,它能包容以前的微软软件、它像平板、也像计算机,它能够借助桌面的 优势带动平板,然后再带动手机和家庭娱乐设备,它就是微软的全部,而且肩负起与Xbox、Kinect、Windows Phone 携手扭转Microsoft命运的职责。 简单的说,如果Windows 8失败了,虽然微软不会一夜之间关门,但对微软来说,却意味着失去了未来。 ";i:4;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:79:"http://rssdiy.com/?i=http://img.cnbeta.com/newsimg/121023/09544601986449206.jpg";}}}}}}i:5;s:1:" ";i:6;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:15:"二. Surface:";}}}}}}i:7;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:30:"微软在下一盘很大的棋";}}}}}}i:8;s:1477:" 所 以微软做了Surface,一种Windows 8的扩展。Windows 8 太重要了以至于不能让其他劣等制造商搞砸。作为微软近40年来生产的第一台PC硬件,其在研发、设备、架构、技术、人力资源上都投入了巨大的心血,并把它 当做微软的转型之作。它要打消人们觉得Xbox的成功只是偶然的置疑,它要开拓微软自己的硬件王国,所以Surface不是微软某个新业务部门,而是一个 新领域的开始。 接待我们的是WIndows 8项目主管Steven Sinofsky以及Surface的主要负责人Panay。Steven Sinofsky是微软继鲍尔默之后最重要的人,业界眼中的下一任微软CEO,在微软曾经开发出了IE、Office和Win7等明星产品,他在做 Office2007-2010系列的时候冒险做了Ribbon UI的大变动,最终得以在微软得以全面应用。 他表示,Surface的由 来并非偶然,当时苹果想在设计和精密硬件上垄断市场的时候,微软看在心里并决意要改变这个格局。(雷锋网注:在之前的《创新在微软:Courier Tablet非典型死亡背后的典型故事》一文中,雷锋网曾经介绍过微软的一款双屏平板项目Courier与Windows项目团队的争端,最终微软CEO Steve Ballmer选择了支持Steven Sinofsky的Windows团队而放弃了在当时看来富有创新力的Courier,这在当时被视为对Sinofsky的信任,现在看来,微软和 Sinofsky在下一盘很大的棋。) ";i:9;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:12:"三. Surface";}}}}}}i:10;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:30:"是如何设计和制作的?";}}}}}}i:11;s:449:" 微软向记者们介绍了许多Surface开发过程中不为人知的细节: Surface键盘折向后面时固定的的角度22度是特意设计的; Surface做成成品历经了180个步骤和200多个自定义部件设计; Touch Cover的字母是采用蚀刻技术的,当时只看见一台机器啪啪啪的在上面“打印” 字母就出来了; 顶层那层微软特制的彩色聚氨酯材料在焚烧后会露出白色的材料; ";i:12;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:79:"http://rssdiy.com/?i=http://img.cnbeta.com/newsimg/121023/09544611281378349.jpg";}}}}}}i:13;s:479:" 触摸屏是微软新设计的触摸传感器技术,有点类似iPhone的In-cell技术,但从未对外公布过组成细节; Surface最顶部的RF层面是采用的一种矿产“难得素”材质,跟一般的喷射镁技术不同; Surface的表面骨架是由数控机床雕刻出来的(该数控机床品牌也负责雕刻MacBook Pro机身)……直到最后这个柏拉图式的平板现身,所以你现在明白这绝不是一个平板那么简单的事。 ";i:14;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:38:"四. 显示屏与Touch Cover:Surface";}}}}}}}}i:15;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:15:"的另一重心";}}}}}}}}i:16;s:483:" 10.6 英寸的Surface分辨率 1366×768,像素密度为148 PPI(pixels per inch),显然比iPad的2048×1536 retina显示屏,264ppi像素密度低;但微软认为这个分辨率已经够用了,再高对于显示网页于人眼也没什么感觉,所以没必要为了提高分辨率把 Surface显示屏做得又厚又重;另外超薄、单层的显示屏意味着更少的反光,旁人偷窥你屏幕的可能性就会降低很多,这也是它的优点之一。 ";i:17;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:79:"http://rssdiy.com/?i=http://img.cnbeta.com/newsimg/121023/09544621664227571.jpg";}}}}}}}}i:18;s:568:" 此 外不得不说的是Touch Cover,这是Surface宣传时的重心,也是它区别于其他平板或PC的东西,更是Sinofsky大声宣布这是最好的平板也是最好的笔记本的原因。 这个Touch Cover你用了就会知道,4-5天后就可以达到你在普通键盘上的打字速度,完全不用担心在屏幕上用光标编辑的不适。所以微软声明这个Touch Cover额外购买需要120美元、将7层材质压缩成3mm的厚度时你就该预料到它的无价就是因为这其中神奇的魔法,而魔法恰恰是无价的。 ";i:19;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:48:"五. 微软凭什么让用户掏钱买下Surface";}}}}}}i:20;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:3:"?";}}}}}}i:21;s:1027:" 在 Surface和Windows 8发布之前微软有个巨大的心里阴影:Windows Phone, 作为微软移动计划的第一步,它最终只以美国3.9%的市场份额收手,不过却花了连同微软、运营商、硬件商数亿美元的营销费用,而3年前发布的Zune HD作为微软的首个高集成度产品在市场上也全军覆没。而且关键是,这些产品都不赖,但就是没人买,所以眼下 Sinofsky 最关心的就是微软怎么让用户掏钱买Surface? Sinofsky 表示有信心这个先上市的RT版将会吸引人们的购买欲,而且到时不用打着Windows 8 的广告,只用Surface就可以,因为在这之前用户已经随处看到Windows 8的广告而且希望拥有它,不过他的说法是对是错还待市场验证。 此次Surface将只在微软的30家商店里销售,另外就是微软的30网店,所以可以严格控制Surface的销售,获得Surface的任何反馈,争取成为下一个微软销售史上的Kinect——卖得最快的微软设备。 ";i:22;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"16px";s:8:"original";a:2:{i:0;s:11:"[SIZE=16px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:39:"最后,微软的将来会怎么样?";}}}}}}i:23;s:258:"如果Surface和Windows 8 全面开花,微软这个名词将会被冠上全新的含义,但当我走出Store Zero的时候,我唯一的念头就是,Surface将是为微软史上的一段特别的历史,而且结局已经注定了:必须赢! Via ";i:24;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:81:"http://www.buzzfeed.com/mattbuchanan/why-microsoft-is-acting-so-freaked-right-now";s:8:"original";a:2:{i:0;s:89:"[URL='http://www.buzzfeed.com/mattbuchanan/why-microsoft-is-acting-so-freaked-right-now']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"buzzfeed";}}}, 1621686945, 1715943764
    Run Time: 0.002997

Included Files (107, XenForo Classes: 61)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenResource/Listener/Template.php
  83. library/XenForo/ViewRenderer/HtmlPublic.php
  84. library/XenForo/ViewRenderer/Abstract.php
  85. library/XenForo/Template/Public.php
  86. library/XenForo/Template/Abstract.php
  87. library/XenForo/ViewPublic/Thread/View.php
  88. library/XenForo/ViewPublic/Base.php
  89. library/XenForo/View.php
  90. library/XenForo/BbCode/Parser.php
  91. library/XenForo/BbCode/Formatter/Base.php
  92. library/XenForo/ViewPublic/Helper/Message.php
  93. library/XenForo/BbCode/TextWrapper.php
  94. library/WhoHasVisited/Listener.php
  95. library/XenForo/Route/Prefix/Members.php
  96. library/XenForo/Template/FileHandler.php
  97. library/XenForo/Helper/File.php
  98. internal_data/templates/S.1,L.7,thread_view.php
  99. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  100. library/XenForo/Route/Prefix/Posts.php
  101. library/XenForo/Model/Avatar.php
  102. library/XenForo/Helper/Criteria.php
  103. library/XenForo/Debug.php
  104. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  105. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  106. internal_data/templates/S.1,L.7,resources_tab_links.php
  107. library/XenForo/ViewRenderer/Json.php