首页 新闻 论坛 群组 Blog 文档 下载 读书 Tag 网摘 搜索 .NET Java 游戏 视频 人才 外包 数据库 第二书店 程序员

Tag/ 


共39个网摘 [ 1  2 ]  下一页  |  

解读开源软件七种盈利模式

hxcowboy收录,使用标签:open, source, 盈利模式,时间:2008-7-18 13:05:29 | 相关网摘我也收藏

。在开源软件领域中,常见的盈利模式一共有7种。下面,让我们来逐一列举和分析。


ApexDC - The Pinnacle of File-Sharing

AppZ收录,使用标签:p2p, learn, collect, source,时间:2008-6-11 12:32:26 | 相关网摘我也收藏

Current Version:1.1.0

Welcome to ApexDC.net, the home of an innovative Direct Connect client based on the StrongDC++ modification. ApexDC++ is actively developed and provides a user-friendly interface, unique features, unlimited customisation and a dedicated support team.

ApexDC++ is, and always will be, free from all forms of malware. The project is managed and developed by veterans of the P2P scene and as such we feel we are in touch with the opinions, wishes and requirements of our users.


以后别写程序了,65个源码网站奉献给大家

JavaMarker收录,使用标签:source, code, 源码,时间:2008-5-9 12:16:37 | 相关网摘我也收藏

优秀网站源码、编程源码下载网站大集中
1.51源码:http://www.51aspx.com/

2.源码之家:http://www.codejia.com/

3.源码网:http://www.codepub.com/

4.虾客源码:http://www.xkxz.com/

5.多多源码:http://www.morecode.net/

6.洪越源代码:http://www.softhy.net/

7.锋网源码:http://www.fwvv.net/

8.代码爱好者:http://www.codefans.com/

9.爱源码:http://www.aiyuanma.com/

10.酷源码:http://www.kyuanma.com/

11.搜源码:http://www.soucode.com/

12.拉基源码:http://www.lajicode.com/

13.源码开发网:http://www.codedn.com/

14.源码天空:http://www.codesky.net/

15.源码吧:http://www.asp88.net/

16.绿色源码:http://code888.cn/

17.9号源码中心:http://www.9code.com/

18.网馨源码:http://www.asppsa.com/

20.源码天下:http://www.pccode.net/

21.需要源码:http://www.needcode.cn/

22.华夏源码:http://www.haocpu.com/

23.天新网:http://codes.21tx.com/

24.源码网:http://www.yuanma5.com/

25.无忧源码:http://www.5uym.com/

26.中国下载站:http://www.cnz.cc/

27.资源吧:http://www.ziyuan8.com/

28.启明星源码:http://www.codewww.com/

29.我要源码:http://www.xia51.com/

30.清秋源码:http://www.asp678.com/

……

累死了,需要一个个加链接,不加了,凑合吧~


30 useful as3 open source projects - Ntt.cc

stickyman收录,使用标签:ActionScript, AS3, open, source,时间:2008-4-9 23:06:22 | 相关网摘我也收藏

Isn’t driving you crazy when you realize amazing effect about ActionScript 3 what you want. Don’t you spend much time to do it? Why don’t you reference following open source projects before you begin? Maybe there are something what you need.


the list of Open Source realtime 3D engine for Flash - Ntt.cc

stickyman收录,使用标签:3d, Engine, Flash, open, source,时间:2008-4-2 23:46:27 | 相关网摘我也收藏

I don’t konw why the Flash plugin is non-open source, but we can found so many perfect open source projects like previous article open source Flex project list.

And for some projects do you need a very good interactive realtime 3D engine? OK,the following is a list of Open Source realtime 3D engine for Flash in actionscript.I like open source! Enjoy!


Flex中利用CheckBox对DataGrid控件中的项目进行过滤的例子下面 - 全文检索博客

stickyman收录,使用标签:ArrayCollection, DataGrid, filterFunction, Flex, length, refresh, source,时间:2008-3-13 23:58:00 | 相关网摘我也收藏

下面的例子展示了Flex中如何利用一个CheckBox控件以及ArrayCollection类的filterFunctio属性,对DataGrid控件中的项目进行过滤。


4 ways to dynamically load external JavaScript(with source) - Ntt.cc

stickyman收录,使用标签:asynchronous, dynamically, Firefox, JavaScript, opera, Safari, Source, synchronization,时间:2008-2-10 23:49:11 | 相关网摘我也收藏

Most of the time, Firefox, Safari and Opera work without much effort and differences between the 3. However, throw IE into the mix and you’re in a whole different world.


如何保存网摘

yong_ly收录,使用标签:abap, to, search, for, strings, in, ABAP, source, code, includes.,时间:2008-2-10 8:46:56 | 相关网摘我也收藏

Author: Thomas Schulz
Submitted: April 2, 2007

This report can be used to search for strings in ABAP source code includes.

REPORT Z_FIND line-size 300 NO STANDARD PAGE HEADING. "#EC *

tables:
trdir.

types:
begin of SSrcTab,
Line(256) type c,
end of SSrcTab,

begin of SDynPro,
Prog like d020S-Prog,
DNum like d020S-DNum,
end of SDynPro.

parameters:
Find_Str(256) type c default '*test*'. "#EC *

select-options:
Includes for trdir-name default 'Z*' option CP sign I. "#EC *

data:
gs_DynHeader type d020s, "#EC NEEDED
gt_DynFields type table of d021s, "#EC NEEDED
gt_DynLines type table of d022s,
gt_DynParams type table of d023s, "#EC NEEDED
gs_DynPro type SDynPro,
gv_Exit type boolean,
gt_SrcCode type SSrcTab occurs 0 with header line,
gv_SrcLine(8) type c,
gv_RepName like trdir-name,
gt_RepName type table of ProgName,
gv_DynNum type sydynnr,
gv_DbCount type i,
gv_NumLines type i,
gv_NumLines2 type i,
gv_NumFiles type i,
gv_NumDynPros type i,
gv_NumFiles2 type i,
gv_NumBytes type p,
gv_SomethingFound type c,
gv_DisplayOnly type c,
gv_LineNum type i,
gv_ScrollPos type i,
gv_Index type i,
gv_NumNames type i,
gv_Mod type i,
gv_Progress type i.

AUTHORITY-CHECK OBJECT 'S_DEVELOP'
ID 'DEVCLASS' FIELD '* '
ID 'OBJTYPE' FIELD 'PROG '
ID 'OBJNAME' FIELD '* '
ID 'P_GROUP' FIELD '* '
ID 'ACTVT' FIELD '03 '.
if sy-subrc <> 0.
exit.
endif.

AUTHORITY-CHECK OBJECT 'S_DEVELOP'
ID 'DEVCLASS' FIELD '* '
ID 'OBJTYPE' FIELD 'XSLT '
ID 'OBJNAME' FIELD '* '
ID 'P_GROUP' FIELD '* '
ID 'ACTVT' FIELD '03 '.
if sy-subrc <> 0.
exit.
endif.

if Find_Str is initial.
Find_Str = 'never find this'.
endif.

select count(*) from trdir where Name in Includes.
gv_NumNames = sy-dbcnt.

select count(*) from d020s where Prog in Includes.
gv_NumNames = gv_NumNames + sy-dbcnt.

select Name from trdir into gv_RepName where Name in Includes.
append gv_RepName to gt_RepName.
endselect.

sort gt_RepName.

loop at gt_RepName into gv_RepName.
if not gv_Exit is initial.
exit.
endif.
perform. FindIt.
endloop.

select Prog DNum from d020s into (gv_RepName, gv_DynNum) where Prog in Includes.
if not gv_Exit is initial.
exit.
endif.
perform. FindIt.
endselect.

write: / gv_NumFiles2, ' includes found = ', gv_NumLines2, ' lines'.
write: / gv_NumFiles , ' includes read = ', gv_NumLines , ' lines', gv_NumBytes , ' characters'.
write: / gv_NumDynPros, ' screen flow logics read'.
write: /.

form. FindIt.
gv_DbCount = gv_DbCount + 1.
if not gv_RepName is initial.
if gv_NumNames > 100.
gv_Mod = gv_DbCount mod ( gv_NumNames / 100 ).
if gv_Mod = 0.
gv_Progress = gv_Progress + 1.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = gv_Progress.
endif.
endif.
perform. Find.
endif.
endform.


form. Find.
data:
lv_FirstTime type c,
lv_RepAndDynNum type char64.

if gv_DynNum is initial.
read report gv_RepName into gt_SrcCode.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
else.
gs_DynPro-Prog = gv_RepName.
gs_DynPro-DNum = gv_DynNum.
import dynpro gs_DynHeader gt_DynFields gt_DynLines gt_DynParams id gs_DynPro.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
gt_SrcCode[] = gt_DynLines[].
endif.
loop at gt_SrcCode where line cp Find_Str.
gv_Index = sy-tabix.
if lv_FirstTime is initial.
if not gv_DynNum is initial.
concatenate gv_RepName gv_DynNum into lv_RepAndDynNum separated by space.
write: / lv_RepAndDynNum.
else.
write: / gv_RepName.
endif.
hide gv_RepName.
hide gv_DynNum.
clear gv_DisplayOnly.
hide gv_DisplayOnly.
lv_FirstTime = 'X'.
gv_SomethingFound = 'X'.
gv_NumFiles2 = gv_NumFiles2 + 1.
endif.
gv_SrcLine = gv_Index.
if gt_SrcCode-line(1) = '*'.
write: / gv_SrcLine intensified off, gt_SrcCode-line color col_negative inverse on intensified off.
else.
write: / gv_SrcLine intensified off, gt_SrcCode-line intensified off.
endif.
hide gv_RepName.
hide gv_DynNum.
gv_DisplayOnly = 'X'.
hide gv_DisplayOnly.
gv_LineNum = gv_Index.
hide gv_LineNum.
gv_NumLines2 = gv_NumLines2 + 1.
endloop.
if not lv_FirstTime is initial.
write sy-uline(128).
endif.
loop at gt_SrcCode.
gv_NumLines = gv_NumLines + 1.
gv_NumBytes = gv_NumBytes + strlen( gt_SrcCode-line ).
endloop.
gv_NumFiles = gv_NumFiles + 1.
if not gv_DynNum is initial.
gv_NumDynPros = gv_NumDynPros + 1.
endif.
endform.


at line-selection.
if not gv_RepName is initial.
if gv_DisplayOnly is initial.
if gv_DynNum is initial.
if gv_RepName cp '*=XT'.
if gv_RepName cs '='.
gv_RepName = gv_RepName(sy-fdpos).
set parameter id 'XSLTNAME' field gv_RepName.
call transaction 'XSLT_TOOL'.
endif.
else.
set parameter id 'RID' field gv_RepName.
call transaction 'SE38'.
endif.
else.
set parameter id 'DYR' field gv_RepName.
set parameter id 'DYN' field gv_DynNum.
call transaction 'SE51'.
endif.
else.
if gv_DynNum is initial.
read report gv_RepName into gt_SrcCode.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
else.
gs_DynPro-Prog = gv_RepName.
gs_DynPro-DNum = gv_DynNum.
import dynpro gs_DynHeader gt_DynFields gt_DynLines gt_DynParams id gs_DynPro.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
gt_SrcCode[] = gt_DynLines[].
endif.
loop at gt_SrcCode.
gv_SrcLine = sy-tabix.
if gt_SrcCode-line(1) = '*'.
write: / gv_SrcLine intensified off, gt_SrcCode-line color col_negative inverse on intensified off.
else.
write: / gv_SrcLine intensified off, gt_SrcCode-line intensified off.
endif.
endloop.
if sy-lsind = 1.
gv_ScrollPos = gv_LineNum - 24.
if gv_ScrollPos < 1.
gv_ScrollPos = 1.
endif.
call function 'LIST_SCROLL_LINE_TOPMOST'
exporting
list_index = 1
list_line = gv_ScrollPos.
set cursor line gv_LineNum.
endif.
endif.
clear gv_RepName.
clear gv_DisplayOnly.
endif.


Another Open Source JavaScript Library — Facebook’s Animation - Ntt.cc

stickyman收录,使用标签:animation, facebook, FBJS, google, GWT, JavaScript, open, source, web, toolkit, yahoo, yui,时间:2008-1-19 14:25:51 | 相关网摘我也收藏

Google and Yahoo,who both have open sourced internal JavaScript libraries.Now,Facebook is following in the steps of the rival web giants.The Animation library is described as a way for developers to create “customizable animations using CSS and DOM manipulation.” It is released under a modified BSD license.


Visual Studio .Net团队开发 - ourteam的专栏 - CSDNBlog

niuchn收录,使用标签:visual, source, safe, edition,时间:2008-1-7 12:03:50 | 相关网摘我也收藏

使用vss6c和visual studio 2005团队开发的设置。


Source Insight使用教程

lp2007收录,使用标签:Source, Insight,时间:2007-12-20 16:33:21 | 相关网摘我也收藏

Source Insight使用教程


C# source

cocosoft收录,使用标签:C#, source,时间:2007-5-13 0:25:32 | 相关网摘我也收藏



共39个网摘 [ 1  2 ]  下一页

Tag/相关标签



    网站简介广告服务网站地图帮助联系方式诚聘英才English 问题报告
    北京创新乐知广告有限公司 版权所有 京 ICP 证 070598 号
    Copyright © 2000-2008, CSDN.NET, All Rights Reserved