Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 2

A simple, developer-oriented, object-oriented, library for rapid Twitter integration.

4.7
   
  1 review  |  79 users  |  178,036 lines of code  |  8 current contributors  |  Analyzed 7 days ago
 
 

Open source application programming interface to ease the creation of programs interacting with the client of the massive multiplayer online roleplaying game Tibia.

4.5
   
  0 reviews  |  8 users  |  74,393 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

This software extends the TibiaAPI open source library and its purpose is to make even easir to make programs that interact with the Tibia client. It's fully open source and the code follow object-oriented principles. Latest version should be avaliable on the downloads page. You may also want to compile it yourself.

5.0
 
  1 review  |  3 users  |  3,697 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

Flex/Flash Remoting, Flex Data Services and real-time messaging functionality for the .NET framework Features Flex, Flash Remoting (RPC), Flex AMF Polling Flex Messaging Flex Data Services (partial) Supports AMF0, AMF3 and RTMP, RTMPT protocols Service Browser Template based code generator ... [More] (ASP.NET like syntax) Real-time Messaging, Remote SharedObject support, Video streaming MSMQ integration Easily integrate rich Internet applications with .NET backend Easily integrate with Adobe Integrated Runtime (Adobe AIR™) Ajax Integration .NET and Silverlight client library [Less]

0
 
  0 reviews  |  1 user  |  168,780 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 

This C# Library gives your application the power to interactive update its content. The Aim of this Library is performance and reusability of the implemented methods to ensure a fast and easy framework. Target .NET Framework 4.0 GERMAN: Das Ziel vom Up2Date Framework ist es auf einfachste ... [More] und effektivste Weise große Mengen von Dateien zu vergleichen und bei Bedarf zu Komprimieren / Aktualisieren. Das Framework dient als Schnittstelle für andere Entwickler die die Funktionen schnell und unkompliziert in Ihre eigenen Projekte integrieren möchten. [Less]

5.0
 
  0 reviews  |  1 user  |  2,036 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 

PDF Document Storage for Small or Home Office PDFKeeper is a free, open source PDF document storage system that provides storage, indexing, and retrieval using the free Oracle Database Express Edition (Oracle Database XE). PDFKeeper is perfect for anyone who wants to implement a low cost PDF ... [More] document storage system in a small or home office. It can be implemented for use on a single user system or in a workgroup. [Less]

5.0
 
  0 reviews  |  1 user  |  5,489 lines of code  |  1 current contributor  |  Analyzed 1 day ago
 
 

TibiaTek Bot is an application of the TibiaTek Projects family that makes playing Tibia® easier. It contains features such as: macros (auto eat, spell caster, fishing, cavebot), informative tools, fun tools, and a lot more. You can find the complete features list here. It is written in ... [More] Visual Basic .NET®. ApplicationsProgrammerATTENTION: We are looking for programmers for the TibiaTek Development Team. If you are interested read further. RequirementsKnowledge of at least one of the following programming languages with at least Intermediate skills: VB.NET, C/C++, VB6, Delphi. Knowledge of the English language. You must be able to interact with other people only in English. Considerations (Not Required but preferred)Previously programmed cheats for Tibia. Understanding of code inj [Less]

0
 
  0 reviews  |  1 user  |  65,590 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

A regular expression evaluator that can handle multiple contexts. The initial version supports both C# and Javascript regular expression engines.

0
 
  0 reviews  |  0 users  |  629 lines of code  |  1 current contributor  |  Analyzed 8 months ago
 
 

NSDuctTape provides a relatively frictionless (from the developer's perspective) way to interoperate between the Mono runtime and Apple's Objective C runtime. This is particularly useful because it allows GUIs defined in Cocoa to access classes defined as .NET classes. Currently, the ... [More] interoperation is primarily one way from Objective C to .NET, but this arrangement is surprisingly functional due to the flexibility of applications like Interface Builder. [Less]

0
 
  0 reviews  |  0 users  |  3,372 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 

two new features published in Source,support mssqlserver2000 database and Mysql database 中文手册 What is Query2ObjectIt's a DAL Component.We don't care the relationship between the entity object,it just make a strong typed query and translate the result list to a strong typed ... [More] list,it also can update some property of the entity object to many records in database if the records match the query conditions,and it also can do delete action like this. we all kown that,to use database,we must use sql.there are many way for us to write sql query. for exp: select * from [tablename] where xx=xx or yy=yy order by xx desc update [tablename] set xx=xx where xx=xx or yy=yy delete from [tablename] where xx=xx or yy=yyin upper sql querys we must focus on the point:query. yes,In fact,we search,update,delete data all dependent on how to find the data row,In other words,we can say they all dependent on query-the part where section of sql query. for exp: where xx=xx or yy=yy Query2Object is a Data Access Component whitch abstract the querys.if we want to get an object list, for exp: Db.DataBaseUser user = new Db.DataBaseUser(); List rs = null; using (ISession session = ctx.GetSession()) { rs = session.GetQuery(user).OrderBy(Db.DataBaseUser.USERID, Direction.DESC).GetList(); }how to use Query2Object?first stepedit config file 1.Add a Refference to Query2Object.dll in VS.net 2.add a Node for exp: 3.add a Config Section after Node or other part inner node for exp: there are at least one add node in ,one node to one Database Connection,there can be hold many connections in Object2Query. Secent StepComplie,write code and Run 1.if you use WebSite,you must edit the web.config file for exp: then create a directory named app_code.put a empty file named xx.dbconfig in app_code directory. at last complie the site,then you will get the entity class. 2.if you use Web Application or Win form you can use CodeG.exe to generate entity code.generate the .cs file and add it in solution project. 3. write code and run...... I.get dbContext: IDbContext ctx = dbContext.Current().GetContext("Db"); //Db is the Name of connection config II.get Session: using (ISession session = ctx.GetSession()) { //Session handle the resource of data connection so must use using to make sure Garbage collection III.write data access code here 1). if control single object for exp,Get single object,edit it,delete it: -------------------------get single object---------------------------------------- Db.DataBaseUser user = new Db.DataBaseUser(); user.UserID = "123"; session.GetSingle(user); -------------------------update single object------------------------------------- user.UserName="Alex"; session.Update(user); -------------------------delete single object------------------------------------- session.Delete(user); -------------------------insert single object------------------------------------- session.Create(user); 2). if control multiobject for exp,select,update.delete from a query: ------------------------make a query---------------------------------------------- IQuery query = session.GetQuery(user); query = query.Where(Db.DataBaseUser.ISACTIVE.EqulesExp(1).AND(Db.DataBaseUser.CREATEDATE.Between(DateTime.Now, DateTime.Now.AddDays(5)))); ------------------------select from the query------------------------------------- rs = query.GetList(); ------------------------update the query------------------------------------------ query.SetUpdateProperty(Db.DataBaseUser.USERPASSWORD); query.Update(); ------------------------delete the query----------------------------------------- query.Delete(); } [Less]

0
 
  0 reviews  |  0 users  |  7,898 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.