github重新(或一直)维护的项目(D2)
betty_betty2008
2011-11-30
Added on March 9,2012:
xmlp: https://launchpad.net/d2-xml Plot2Kill: https://github.com/dsimcha/Plot2kill PyD: https://bitbucket.org/ariovistus/pyd Added on Feb 28,2012: D2 library for games, network applications etc. https://github.com/CyberShadow/ae ---- DFL: 1.https://github.com/Rayerd/dfl if not working,then 2.https://github.com/JesseKPhillips/dfl/tree/acceptPulls DWT for D2: https://github.com/d-widget-toolkit wxD https://github.com/afb/wxd/tree/ Juno for D2: https://github.com/JesseKPhillips/Juno-Windows-Class-Library curld: https://github.com/jcd/phobos/tree/curl-wrapper/etc Orange: https://github.com/jacob-carlborg/orange Tango-D2 https://github.com/SiegeLord/Tango-D2 Adam Ruppe 的misc,包括 web,sqlite,mysql,sha,sound,cgi,characterencodings,csv,curl,database,dom,html,http,mssql,png,postgres,rtud,simpledisplay https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff Readme: This is a collection of modules I find generally useful. Modules are usually independent; you don't need this whole directory but it doesn't hurt to grab it all either. Read more about the modules at these links (docs are still works in process): cgi.d info: http://arsdnet.net/web.d/cgi.d.html web.d info: http://arsdnet.net/web.d/web.d.html Recent bigger changes: web.d can now accept file uploads via hackish thing - make a param with type "Cgi.UploadedFile" Currently included are: Web related ================ cgi.d - base module for making webapps in D dom.d - an xml/html DOM based on what Javascript provides in browsers web.d - a fancier way to write web apps. Uses reflection to make functions accessible via url with minimal boilerplate in your code Database related ================ database.d - main interface to databases. Includes DataObject mysql.d - a mysql engine for database.d (most mature of the three) postgres.d - a postgres engne for database.d sqlite.d - a sqlite engine for database.d mssql.d - a (super crappy) mssql engine for database.d (uses ODBC) Desktop app stuff ================ simpledisplay.d - gives quick and easy access to a window for drawing simpleaudio.d - gives minimal audio output Other ================ sha.d - implementations of the SHA1 and SHA256 algorithms png.d - provides some png read/write support curl.d - a small wrapper around the curl library csv.d - gives read support to csv files http.d - a lighterweight alternative to curl.d Things I might add once I clean up the files (this can be expedited upon request, to an extent): httpd.d - an embedded web server oauth.d - client/server stuff for oauth1 html.d - a bunch of dom translation functions. Think unobstructive javascript on the server side browser.d - a very small html widget netman.d - handles net connections (required by httpd.d) imagedraft.d - (temporary name) has algorithms for images bmp.d - gives .bmp read/write dws.d - a draft of my D windowing system (also includes some Qt code) wav.d - reading and writing WAV files midi.d - reading and writing MIDI files Authors: Thanks go to Nick Sabalusky, Trass3r, and Stanislav Blinov for input and patches. |
|
hqs7636
2011-11-30
betty_betty2008 写道 Database related ================ database.d - main interface to databases. Includes DataObject mssql.d - a (super crappy) mssql engine for database.d (uses ODBC) ================ 好东西,这两个就能访问sqlserver了是吧 |
|
liyicun
2011-12-03
|
|
hqs7636
2011-12-06
面向数学编程的图形库:
https://bitbucket.org/dav1d/gl3n |
|
betty_betty2008
2011-12-07
差不多齐活了。
Juno for D2.056全部能用了,所有的examples 都通过编译也能正常运行了。 |
|
hqs7636
2011-12-07
SCons is a Python-based build tool to replace Make and much of the
Autotools functionality. It has D support as part of the core. This support is though in need of development. https://bitbucket.org/russel/scons_dmd_new http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=151046 |
|
hqs7636
2011-12-11
MakefileForD
https://github.com/bioinfornatics/MakefileForD this build system support ldc, gdc, dmd generate tag for geany .pc file for pkg-config Show more more in README Is very easy to use it just set some var and it is done |
|
hqs7636
2011-12-24
这里还一个sqlie,最后更新是12月:
https://github.com/bioinfornatics/DSQLite/tree/master/src/sqlite 这个最后更新是4月: https://github.com/bayun/SQLite3-D 哪个好点? |
|
hqs7636
2011-12-26
betty_betty2008 写道 Database related ================ database.d - main interface to databases. Includes DataObject mysql.d - a mysql engine for database.d (most mature of the three) postgres.d - a postgres engne for database.d sqlite.d - a sqlite engine for database.d mssql.d - a (super crappy) mssql engine for database.d (uses ODBC) 这东东用过吗?sqlite ,mssql 这个库好像是最新的 |