这是别处看来转载到此处,原网址已找不到Symbols+plus/'pl?s/-minus/'ma?n?s/±plusorminus/'pl?s?:'ma?n?s/xmultipliedby/'m?lt?pla?dba?//over;dividedby/'??v?//d?'va?d?d/÷divide...
分类:
其他好文 时间:
2014-11-24 20:50:25
阅读次数:
305
在实际的项目中,需要storm从metaq中读取数据,一开始就有日志问题,查到是storm/lib中的log4j-over-slf4j和slf4j-api.jar包的不兼容导致的,这些日志包使用时必须版本一致,只有又产生了java.lang.IncompatibleClassChangeError:...
分类:
Web程序 时间:
2014-11-24 18:52:08
阅读次数:
360
Generators in ECMAscript 6 are first-class coroutines that produce encapsulated suspended execution(暂停执行) contexts.Yield values and iterate over them ...
分类:
其他好文 时间:
2014-11-23 21:41:42
阅读次数:
266
严重的呼叫质量和性能管理问题会影响VoIP (Voice over IP)系统的运作。网络管理员等人需要理解基本的呼叫质量测量技术才能很好地监测、管理和诊断在VoIP中出现的这些问题。本文介绍了常用的几种呼叫质量测量方法,联系实际对这些方法进行了解释,并描述了VoIP网络服务中的用户可接受的话音质量...
分类:
其他好文 时间:
2014-11-23 00:33:39
阅读次数:
372
ECMAscript 6 lets us use string templates to gain a lot more control over strings in JavaScript.var salutation = "Hello";var place = "New York";var gr...
分类:
其他好文 时间:
2014-11-22 20:09:05
阅读次数:
162
From Oracle
The UTL_HTTP package makes Hypertext Transfer Protocol (HTTP) callouts from SQL and PL/SQL. You
can use it to access data on the Internet over HTTP.
When the package fetches data f...
分类:
数据库 时间:
2014-11-20 18:52:06
阅读次数:
501
ash是非常有效的监控工具之一,1秒抓一次
select max(sample_time)over(),min(sample_time)over() from dba_hist_active_sess_history; --8天
select max(sample_time)over(),min(sample_time)over() from v$active_session_histor...
分类:
其他好文 时间:
2014-11-20 18:52:03
阅读次数:
251
with as 短语,也叫做子查询部分(subquery factoring)公用表达式(CTE)。使用范围:sql2005及以上版本有效。作用:1、提高可读性-- 表名v_OrdersWITH tableBase AS (SELECT ROW_NUMBER() OVER (ORDER BY Id)...
分类:
其他好文 时间:
2014-11-20 11:59:02
阅读次数:
179
查询各部门中薪水分布处于25%、50%、75%位置的人的薪水,percent_rank()是确定排行中的相对位置。
SQL> select e.ename,e.sal,e.deptno,
percent_rank() over(partition by deptno order by sal desc) p_rank,
PERCENTILE_CONT(0) w...
分类:
数据库 时间:
2014-11-19 18:48:04
阅读次数:
595
让ios程序一直保持在后台运行。首先我在xx-info.plist 里的 "Required background modes" 里加入"App provides Voice over IP services"
然后在delegate里加入以下代码,原理是进入后台时程序会在600秒那样结束任务,我做的就是在结束任务前新开一个任务,再结束旧任务,这样就一直的在后台运行,希望可能帮助到更多的人,我也查了很久才找到这个方法的。...
分类:
移动开发 时间:
2014-11-19 16:04:52
阅读次数:
294