Browsing projects by Tag(s)

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

Showing page 1 of 1

简介本项目主要目的是让我们可以 高效地 从 IP 数据库 中获取到某个IP对应的行政区划信息。 该项目主要有以下特点: 高效性: 运行时,将数据加载到内存中(MMAP),加快检索速度 可靠性: ... [More] 数据索引会保存在文件中,即使系统down,索引数据不会丢失 采用New BSD Licence 目前我只在Linux && php5.2下编译通过,如果你需要在别的平台上编译,并且遇到问题的话可以联系: gxd305@gmail.com 关于编译方法,请参看 使用说明 关于API, 请参看 API 关于数据IP 数据来自 http://www.cz88.net/ 行政区划数据来自 http://www.koubei.com [Less]

0
 
  0 reviews  |  0 users  |  20,112 lines of code  |  0 current contributors  |  Analyzed about 14 hours ago
 
 

Hide/Show a theme region by given regexp pattern, inspired on Block Assign.

0
 
  0 reviews  |  0 users  |  589 lines of code  |  0 current contributors  |  Analyzed 8 months ago
 
 
Compare

BWTA 1.6.3 has been releasedDownload link is on the right. Built for BWAPI Beta 2.6.1. Broodwar Terrain Analyzer (BWTA) is a add-on for BWAPI which analyzes the current starcraft map and returns the set of expansion locations, regions, and choke points. To make a BWAPI AI Module using BWTA, you ... [More] will need both the zips on the right. Documentation: http://code.google.com/p/bwta/wiki/BWTAManual Lost temple divided into regions. Choke points are located between adjacent regions: BWTA was created by Luke Perkins (lowerlogic). [Less]

0
 
  0 reviews  |  0 users  |  5,706 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

This is a VS2008 Add-in for javascript coding, This tool include follow features: Automatic Beautify/formatting javascript code,and you can choice custom code style,Clean up the extra blank lines; Region code using statement://##...//#end,Similar to VS C# code region feature Description for ... [More] Chinese: 该插件目前针对:VS2008 js格式化工具 1.添加折叠区域,右键添加选中到折叠区域 2.格式化:格式化选择的代码、格式化整个文档,支持}提交 3.代码清理,清除多余的空行 TODO: 1.html中提取script 2.折叠区域做成类似C#风格的 Bug fix: 09-3-27 修复了case语句,后面有注释的情况 [Less]

0
 
  0 reviews  |  0 users  |  73,193 lines of code  |  2 current contributors  |  Analyzed about 8 hours ago
 
 

Small tool to extract an region for the gadget-2 format file. It is based on Boost program_options to be able to parse the ini file and command line arguments.

0
 
  0 reviews  |  0 users  |  2,853 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

a dopo

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 6 days ago
 
 

Ground Truthing tool for Color Images with TextIn the research of algorithms that extract text from color images a set of files with the exact location of the text is needed to avoid inefficient and tedious visual checks of the results. This Ground Truth information saves enormous time and gives ... [More] accuracy. For this the gttext project helps to create fast and quality Ground Truthed data-sets from color text images. The basic level of work is at a pixel detection, making possible to group regions to form the glyph or even use a direct editing to get the choice. This computer engineering project was the result of a degree requirement and it is offered to the open source community. Under GNU License, this project is open to improvements and to accept developers that may want to give a positive change. Enjoy. Update 1.1.2 Faster performance New mode of region selection Higher scalability for up to 70MP Compressed Ground Truth data definition Information stored as runs (x,y,r) instead than single pixels (x,y) definition_sample Update 1.2.1 Improved pixel edition tool New Update 1.2.2 More details at Versions List Latest Developer Update 1.2.6 FileBuzz.com has agreed to host a link to this project and has awarded it with 5 stars Thank you! Thank you very much also to [Less]

0
 
  0 reviews  |  0 users  |  10,526 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

Open World Database Service alphaThis database has multi languages country names, region names, city names and they's latitude and longitude number and country's alpha2 code .. countriesregionscities 246 rows4151 rows103818 rows TABLES locales countriesregioncities ... [More] countryNamesregionNamescityNames localesCREATE TABLE `locales` ( `locale` char(5) NOT NULL, `name` varchar(50) NOT NULL, `fullname` varchar(50) NOT NULL, PRIMARY KEY (`locale`), UNIQUE KEY `locale` (`locale`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;countriesCREATE TABLE `countries` ( `code` char(2) NOT NULL, `url` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `latitude` double NOT NULL, `longitude` double NOT NULL, `regions` int(2) NOT NULL, PRIMARY KEY (`code`), UNIQUE KEY `name` USING BTREE (`name`), UNIQUE KEY `url` USING BTREE (`url`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;countryNamesCREATE TABLE `countryNames` ( `code` char(2) NOT NULL, `locale` char(5) NOT NULL, `name` varchar(60) NOT NULL, `fullname` varchar(60) NOT NULL, UNIQUE KEY `code` (`code`,`locale`), KEY `locale` (`locale`), CONSTRAINT `countryNames_ibfk_1` FOREIGN KEY (`code`) REFERENCES `countries` (`code`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `countryNames_ibfk_2` FOREIGN KEY (`locale`) REFERENCES `locales` (`locale`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;regionsCREATE TABLE `regions` ( `ID` int(4) unsigned NOT NULL auto_increment, `country` char(2) NOT NULL, `code` char(3) NOT NULL, `url` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `latitude` double NOT NULL, `longitude` double NOT NULL, `cities` int(4) unsigned NOT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `unique` USING BTREE (`country`,`code`), UNIQUE KEY `unique2` USING BTREE (`country`,`name`), UNIQUE KEY `unique3` USING BTREE (`country`,`url`), KEY `country` USING BTREE (`country`), KEY `code` (`code`), CONSTRAINT `regions_ibfk_1` FOREIGN KEY (`country`) REFERENCES `countries` (`code`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;regionNamesCREATE TABLE `regionNames` ( `ID` int(4) unsigned NOT NULL, `locale` char(5) NOT NULL, `name` varchar(60) NOT NULL, `fullname` varchar(60) NOT NULL, UNIQUE KEY `ID` USING BTREE (`ID`,`locale`), KEY `locale` (`locale`), CONSTRAINT `regionNames_ibfk_2` FOREIGN KEY (`locale`) REFERENCES `locales` (`locale`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `regionNames_ibfk_3` FOREIGN KEY (`ID`) REFERENCES `regions` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;citiesCREATE TABLE `cities` ( `ID` int(8) unsigned NOT NULL auto_increment, `country` char(2) NOT NULL, `region` char(3) NOT NULL, `url` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `latitude` double NOT NULL, `longitude` double NOT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `unique` USING BTREE (`country`,`region`,`name`), UNIQUE KEY `unique2` USING BTREE (`country`,`region`,`url`), KEY `country` USING BTREE (`region`,`country`), CONSTRAINT `cities_ibfk_1` FOREIGN KEY (`country`) REFERENCES `countries` (`code`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `cities_ibfk_2` FOREIGN KEY (`region`) REFERENCES `regions` (`code`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;cityNamesCREATE TABLE `cityNames` ( `ID` int(8) unsigned NOT NULL, `locale` char(5) NOT NULL, `name` varchar(60) NOT NULL, `fullname` varchar(60) NOT NULL, UNIQUE KEY `ID` (`ID`,`locale`), KEY `locale` (`locale`), CONSTRAINT `cityNames_ibfk_3` FOREIGN KEY (`ID`) REFERENCES `cities` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `cityNames_ibfk_2` FOREIGN KEY (`locale`) REFERENCES `locales` (`locale`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 7 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.