如何通过其功能搜索github项目?

时间:2018-09-05 01:35:08

标签: github open-source

我正在寻找有趣的GitHub项目来进行工作,例如,我对摄影和延时摄影感兴趣,并且正在寻找mac或Windows桌面开源应用程序,这些程序将允许我制作延时剪辑。

在GitHub上似乎没有一个高级功能可以让您按项目功能进行搜索,它仅允许您按看起来像通过关键字搜索项目,或者允许您浏览流行的时尚项目。

是否存在可以满足我所寻找需求的查询?

1 个答案:

答案 0 :(得分:0)

没有这样的功能概念。

您最好的期望是在项目的<?php $len = count($category_tbl_data); foreach($category_tbl_data as $i => $row) { if ($i == 0) { // first element working fine } if ($i == $len - 1) { // last element working fine } $len2 = count($services); $first = -1; $last = -1; foreach($services as $j => $s) { if($row['category']['cat_id'] == $s['Service']['category_id']) { if($first < 0) { $first = $j; } $last = $j; } } foreach($services as $j => $s){ if($row['category']['cat_id'] == $s['Service']['category_id']) { if ($j == $first) { // first element } if ($j == $last) { // last element } } } } ?> 或它的描述中提及所述功能。

请参见“ Search by repository name, description, or contents of the README file”及其限定符READMEin:readme
例如:

https://github.com/search?q=jquery+in%3Areadme&type=Repositories

这将匹配在其in:description文件中提及“ jquery”的存储库。