Total searches: 688
This is a list of prebuilt searches on Github. These searches are useful for finding code, commits, issues, pull requests, packages and repositories.
You can modify the search to narrow down the results to what you are looking for.
For example:
language:python "if "
- Search
I want to find python code that has an if statement with a input( on it so I modify the search to:
language:python "if input("
- Search
Now I get a list of python code that has an if statement with a input(
on it.
- Code
- Programming Languages
- ABAP
- Ada
- ASP
- Assembly
- AppleScript
- Bash
- BASIC
- Batchfile
- C
- C++
- C#
- Ceylon
- Chapel
- Cirru
- Clojure
- COBOL
- CoffeeScript
- CSS
- D
- Dart
- DataWeave
- E
- Elixir
- EJS
- F#
- F*
- Fortran
- Go
- Groovy
- Haskell
- HTML
- J
- Java
- JavaScript
- Julia
- Jupyter Notebook
- Kotlin
- LFE
- Lisp
- Lua
- LLVM
- OCaml
- Objective-C
- Perl
- PHP
- PowerShell
- Python
- R
- RAML
- Ruby
- Rust
- SAS
- SASS
- Scala
- SQF
- Swift
- TypeScript
- Vala
- Vim script
- Visual Basic
- Vue
- WebAssembly
- Wollok
- xBase
- XQuery
- YARA
- Zig
- Build Scripts
- Containers
- Configuration and Data
- Documentation
- Comment Annotations
- Dotfiles
- Programming Languages
- Repositories
- Issues
- Pull Requests
- Packages
- Commits
Here are some searches for code on github.
-
language:ABAP path:*.abap
- Find repositories with a ABAP file. Search -
language:ABAP path:*.abap "*"
- Find repositories with a ABAP file that have a comment. Search -
language:ABAP path:*.abap "PUBLIC"
- Find repositories with a ABAP file that have a PUBLIC keyword. Search -
language:ABAP path:*.abap "CLASS"
- Find repositories with a ABAP file that have a CLASS keyword. Search
-
language:Ada path:*.adb OR path:*.ads
- Find repositories with a Ada file. Search -
language:Ada path:*.adb OR path:*.ads "'-- "
- Find repositories with a Ada file that have a comment. Search -
language:Ada path:*.adb OR path:*.ads "function "
- Find repositories with a Ada file that have a function keyword. Search -
language:Ada path:*.adb OR path:*.ads "procedure "
- Find repositories with a Ada file that have a procedure keyword. Search -
language:Ada path:*.adb OR path:*.ads "if "
- Find repositories with a Ada file that have a if keyword. Search -
language:Ada path:*.adb OR path:*.ads "case "
- Find repositories with a Ada file that have a case keyword. Search -
language:Ada path:*.adb OR path:*.ads "declare"
- Find repositories with a Ada file that have a declare keyword. Search -
language:Ada path:*.adb OR path:*.ads "loop"
- Find repositories with a Ada file that have a loop keyword. Search
-
language:ASP path:*.asp
- Find repositories with a ASP file. Search -
language:ASP path:*.asp "' "
- Find repositories with a ASP file that have a comment. Search -
language:ASP path:*.asp "Response.Write"
- Find repositories with a ASP file that have a Response.Write instruction. Search -
language:ASP path:*.asp "Request.Form"
- Find repositories with a ASP file that have a Request.Form instruction. Search -
language:ASP path:*.asp "Request.QueryString"
- Find repositories with a ASP file that have a Request.QueryString instruction. Search -
language:ASP path:*.asp "Request.ServerVariables"
- Find repositories with a ASP file that have a Request.ServerVariables instruction. Search -
language:ASP path:*.asp "Request.Cookies"
- Find repositories with a ASP file that have a Request.Cookies instruction. Search -
language:ASP path:*.asp "if "
- Find repositories with a ASP file that have a if statement. Search -
language:ASP path:*.asp "for "
- Find repositories with a ASP file that have a for statement. Search -
language:ASP path:*.asp "while "
- Find repositories with a ASP file that have a while statement. Search -
language:ASP path:*.asp "do "
- Find repositories with a ASP file that have a do statement. Search -
language:ASP path:*.asp "switch "
- Find repositories with a ASP file that have a switch statement. Search
-
language:assembly path:*.asm
- Find repositories with a Assembly file. Search -
language:assembly path:*.asm ";"
- Find repositories with a Assembly file that have a comment. Search -
language:assembly path:*.asm "mov"
- Find repositories with a Assembly file that have a mov instruction. Search -
language:assembly path:*.asm ".global"
- Find repositories with a Assembly file that have a global instruction. Search -
language:assembly path:*.asm ".extern"
- Find repositories with a Assembly file that have a extern instruction. Search -
language:assembly path:*.asm ".section"
- Find repositories with a Assembly file that have a section instruction. Search
-
language:AppleScript path:*.applescript
- Find repositories with a AppleScript file. Search -
language:AppleScript path:*.applescript "--" OR "(*"
- Find repositories with a AppleScript file that have a comment. Search -
language:AppleScript path:*.applescript "set "
- Find repositories with a AppleScript file that have a set instruction. Search -
language:AppleScript path:*.applescript "if "
- Find repositories with a AppleScript file that have a if statement. Search -
language:AppleScript path:*.applescript "repeat "
- Find repositories with a AppleScript file that have a repeat statement. Search -
language:AppleScript path:*.applescript "tell "
- Find repositories with a AppleScript file that have a tell statement. Search -
language:AppleScript path:*.applescript "try"
- Find repositories with a AppleScript file that have a try statement. Search -
language:AppleScript path:*.applescript "with "
- Find repositories with a AppleScript file that have a with statement. Search -
language:AppleScript path:*.applescript "on "
- Find repositories with a AppleScript file that have a on statement. Search -
language:AppleScript path:*.applescript "end "
- Find repositories with a AppleScript file that have a end statement. Search -
language:AppleScript path:*.applescript "return "
- Find repositories with a AppleScript file that have a return statement. Search -
language:AppleScript path:*.applescript "script "
- Find repositories with a AppleScript file that have a script statement. Search
-
language:Bash path:*.bash
- Find repositories with a Bash file. Search -
language:Bash path:*.bash "#"
- Find repositories with a Bash file that have a comment. Search -
language:Bash path:*.bash "echo "
- Find repositories with a Bash file that have a echo instruction. Search -
language:Bash path:*.bash "function " OR "() {"
- Find repositories with a Bash file that have a function. Search -
language:Bash path:*.bash "if "
- Find repositories with a Bash file that have a if statement. Search -
language:Bash path:*.bash "for "
- Find repositories with a Bash file that have a for statement. Search -
language:Bash path:*.bash "while "
- Find repositories with a Bash file that have a while statement. Search -
language:Bash path:*.bash "until "
- Find repositories with a Bash file that have a until statement. Search
-
language:BASIC path:*.bas
- Find repositories with a BASIC file. Search -
language:BASIC path:*.bas "REM " OR "' "
- Find repositories with a BASIC file that have a comment. Search -
language:BASIC path:*.bas "PRINT "
- Find repositories with a BASIC file that have a print instruction. Search -
language:BASIC path:*.bas "GOTO "
- Find repositories with a BASIC file that have a goto statement. Search -
language:BASIC path:*.bas "IF "
- Find repositories with a BASIC file that have a if statement. Search -
language:BASIC path:*.bas "FOR "
- Find repositories with a BASIC file that have a for statement. Search
-
language:Batchfile path:*.bat OR path:*.cmd
- Find repositories with a Batchfile file. Search -
language:Batchfile path:*.bat OR path:*.cmd "@rem " OR language:Batchfile path:*.bat OR path:*.cmd ":: "
- Find repositories with a Batchfile file that have a comment. Search -
language:Batchfile path:*.bat OR path:*.cmd "echo "
- Find repositories with a Batchfile file that have a echo instruction. Search -
language:Batchfile path:*.bat OR path:*.cmd "if "
- Find repositories with a Batchfile file that have a if statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "for "
- Find repositories with a Batchfile file that have a for statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "while "
- Find repositories with a Batchfile file that have a while statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "goto "
- Find repositories with a Batchfile file that have a goto statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "call "
- Find repositories with a Batchfile file that have a call statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "set "
- Find repositories with a Batchfile file that have a set statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "exit "
- Find repositories with a Batchfile file that have a exit statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "pause "
- Find repositories with a Batchfile file that have a pause statement. Search -
language:Batchfile path:*.bat OR path:*.cmd "choice "
- Find repositories with a Batchfile file that have a choice statement. Search
-
language:c path:*.c
- Find repositories with a C file. Search -
language:c path:*.h
- Find repositories with a C header file. Search -
language:c path:*.c "#include<stdio.h>"
- Find repositories with a C file that use stdio. Search -
language:c path:*.c "#include<HEADER>"
- Find repositories with a C file that use a header replace HEADER with the header you want to search for e.g.#include<math.h>
or#include<time.h>
-
language:c path:*.c "int main("
- Find repositories with a C file that use a main function. Search -
language:c path:*.c "/*<COMMENT>*/" OR "//<COMMENT>"
- Find repositories with a C file that use a comment replace COMMENT with the comment you want to search for e.g./*<COMMENT>*/
or//<COMMENT>
-
language:c path:*.c "struct"
- Find repositories with a C file that use a struct. Search -
language:c path:*.c "typedef"
- Find repositories with a C file that use a typedef. Search -
language:c path:*.c "if (" OR "if("
- Find repositories with a C file that use an if statement. Search -
language:c path:*.c "for (" OR "for("
- Find repositories with a C file that use a for loop. Search -
language:c path:*.c "while (" OR "while("
- Find repositories with a C file that use a while loop. Search -
language:c path:*.c "switch (" OR "switch("
- Find repositories with a C file that use a switch statement. Search -
language:c path:*.c "@param"
- Find repositories with a C file that use a docxygen param. Search -
language:c path:*.c "@return" OR "@returns"
- Find repositories with a C file that use a docxygen return. Search -
language:c path:*.c "@brief"
- Find repositories with a C file that use a docxygen brief. Search -
language:c path:*.c "@see"
- Find repositories with a C file that use a docxygen see. Search -
language:c path:*.c "@note"
- Find repositories with a C file that use a docxygen note. Search
-
language:cpp path:*.cpp
- Find repositories with a C++ file. Search -
language:cpp path:*.h
- Find repositories with a C++ header file. Search -
language:cpp path:*.cpp "#include<iostream>"
- Find repositories with a C++ file that use iostream. Search -
language:cpp path:*.cpp "#include<HEADER>"
- Find repositories with a C++ file that use a header replace HEADER with the header you want to search for e.g.#include<math.h>
or#include<time.h>
-
language:cpp path:*.cpp "int main("
- Find repositories with a C++ file that use a main function. Search -
language:cpp path:*.cpp "/*<COMMENT>*/" OR "//<COMMENT>"
- Find repositories with a C++ file that use a comment replace COMMENT with the comment you want to search for e.g./*<COMMENT>*/
or//<COMMENT>
-
language:cpp path:*.cpp "class"
- Find repositories with a C++ file that use a class. Search -
language:cpp path:*.cpp "class <CLASSNAME>"
- Find repositories with a C++ file that use a class replace CLASSNAME with the class you want to search for e.g.class MyClass
orclass MyClass: public BaseClass
-
language:cpp path:*.cpp "namespace"
- Find repositories with a C++ file that use a namespace. Search -
language:cpp path:*.cpp "namespace <NAMESPACE>"
- Find repositories with a C++ file that use a namespace replace NAMESPACE with the namespace you want to search for e.g.namespace MyNamespace
ornamespace MyNamespace::MySubNamespace
-
language:cpp path:*.cpp "using"
- Find repositories with a C++ file that use a using. Search -
language:cpp path:*.cpp "using <NAMESPACE>"
- Find repositories with a C++ file that use a using replace NAMESPACE with the namespace you want to search for e.g.using MyNamespace
orusing MyNamespace::MySubNamespace
-
language:cpp path:*.cpp "struct"
- Find repositories with a C++ file that use a struct. Search -
language:cpp path:*.cpp "typedef"
- Find repositories with a C++ file that use a typedef. Search -
language:cpp path:*.cpp "if (" OR "if("
- Find repositories with a C++ file that use an if statement. Search -
language:cpp path:*.cpp "for (" OR "for("
- Find repositories with a C++ file that use a for loop. Search -
language:cpp path:*.cpp "while (" OR "while("
- Find repositories with a C++ file that use a while loop. Search -
language:cpp path:*.cpp "switch (" OR "switch("
- Find repositories with a C++ file that use a switch statement. Search -
language:cpp path:*.cpp "try {" OR "try{"
- Find repositories with a C++ file that use a try statement. Search -
language:cpp path:*.cpp "catch (" OR "catch("
- Find repositories with a C++ file that use a catch statement. Search -
language:cpp path:*.cpp "@param"
- Find repositories with a C++ file that use a doxygen param. Search -
language:cpp path:*.cpp "@return" OR "@returns"
- Find repositories with a C++ file that use a doxygen return. Search -
language:cpp path:*.cpp "@brief"
- Find repositories with a C++ file that use a doxygen brief. Search -
language:cpp path:*.cpp "@see"
- Find repositories with a C++ file that use a doxygen see. Search -
language:cpp path:*.cpp "@note"
- Find repositories with a C++ file that use a doxygen note. Search
-
language:C# path:*.cs
- Find repositories with a C# file. Search -
language:C# path:*.cs "using System;"
- Find repositories with a C# file that use System. Search -
language:C# path:*.cs "using <NAMESPACE>;"
- Find repositories with a C# file that use a namespace replace NAMESPACE with the namespace you want to search for e.g.using System;
orusing System.IO;
-
language:C# path:*.cs "class <CLASSNAME>"
- Find repositories with a C# file that use a class replace CLASSNAME with the class you want to search for e.g.class Program
orclass MyClass
-
language:C# path:*.cs "/*<COMMENT>*/" OR "//<COMMENT>"
- Find repositories with a C# file that use a comment replace COMMENT with the comment you want to search for e.g./*<COMMENT>*/
or//<COMMENT>
-
language:C# path:*.cs "static void Main"
- Find repositories with a C# main function Search -
language:C# path:*.cs "// TODO:" OR "/* TODO:"
- Find repositories with a C# file that have a TODO comment Search -
language:C# path:*.cs "///<summary>"
- Find repositories with a C# file that have a summary Search
-
language:Ceylon path:*.ceylon
- Find repositories with a Ceylon file. Search -
language:Ceylon path:*.ceylon "//" OR "/*"
- Find repositories with a Ceylon file that have a comment. [Search](https://github.com/search?q=language%3ACeylon+path%3A*.ceylon+%22%2F%2F%22+OR+%22%2F*%22&type=code -
language:Ceylon path:*.ceylon "import "
- Find repositories with a Ceylon file that have a import. [Search](language:Ceylon path:*.ceylon "import ") -
language:Ceylon path:*.ceylon "class "
- Find repositories with a Ceylon file that have a class. Search -
language:Ceylon path:*.ceylon "interface "
- Find repositories with a Ceylon file that have a interface. [Search](language:Ceylon path:*.ceylon "interface ") -
language:Ceylon path:*.ceylon "shared "
- Find repositories with a Ceylon file that have a shared. Search -
language:Ceylon path:*.ceylon "void "
- Find repositories with a Ceylon file that have a void. Search -
language:Ceylon path:*.ceylon "function "
- Find repositories with a Ceylon file that have a function. Search
-
language:Chapel path:*.chpl
- Find repositories with a Chapel file. Search -
language:Chapel path:*.chpl "//" OR "/*"
- Find repositories with a Chapel file that have a comment. Search -
language:Chapel path:*.chpl "use "
- Find repositories with a Chapel file that have a use. Search -
language:Chapel path:*.chpl "proc "
- Find repositories with a Chapel file that have a proc. Search -
language:Chapel path:*.chpl "class "
- Find repositories with a Chapel file that have a class. Search -
language:Chapel path:*.chpl "record "
- Find repositories with a Chapel file that have a record. Search -
language:Chapel path:*.chpl "module "
- Find repositories with a Chapel file that have a module. Search -
language:Chapel path:*.chpl "config "
- Find repositories with a Chapel file that have a config. Search
-
language:Cirru path:*.cirru
- Find repositories with a Cirru file. Search -
language:Cirru path:*.cirru ";;"
- Find repositories with a Cirru file that have a comment. Search -
language:Cirru path:*.cirru "println "
- Find repositories with a Cirru file that have a println. Search -
language:Cirru path:*.cirru "def "
- Find repositories with a Cirru file that have a def. Search -
language:Cirru path:*.cirru "fn "
- Find repositories with a Cirru file that have a fn. Search -
language:Cirru path:*.cirru "if "
- Find repositories with a Cirru file that have a if. Search -
language:Cirru path:*.cirru "do "
- Find repositories with a Cirru file that have a do. Search -
language:Cirru path:*.cirru "let "
- Find repositories with a Cirru file that have a let. Search -
language:Cirru path:*.cirru "loop "
- Find repositories with a Cirru file that have a loop. Search -
language:Cirru path:*.cirru "return "
- Find repositories with a Cirru file that have a return. Search
-
language:Clojure path:*.clj
- Find repositories with a Clojure file. Search -
language:Clojure path:*.clj ";;"
- Find repositories with a Clojure file that have a comment. Search -
language:Clojure path:*.clj "def "
- Find repositories with a Clojure file that have a def. Search -
language:Clojure path:*.clj "defn "
- Find repositories with a Clojure file that have a defn. Search -
language:Clojure path:*.clj "if "
- Find repositories with a Clojure file that have a if. Search -
language:Clojure path:*.clj "do "
- Find repositories with a Clojure file that have a do. Search -
language:Clojure path:*.clj "let "
- Find repositories with a Clojure file that have a let. Search -
language:Clojure path:*.clj "loop "
- Find repositories with a Clojure file that have a loop. Search -
language:Clojure path:*.clj "return "
- Find repositories with a Clojure file that have a return. Search -
language:Clojure path:*.clj "println "
- Find repositories with a Clojure file that have a println. Search
-
language:COBOL path:*.cbl
- Find repositories with a COBOL file. Search -
language:COBOL path:*.cbl "*"
- Find repositories with a COBOL file that have a comment. Search
-
language:CoffeeScript path:*.coffee
- Find repositories with a CoffeeScript file. Search -
language:CoffeeScript path:*.coffee "#"
- Find repositories with a CoffeeScript file that have a comment. Search -
language:CoffeeScript path:*.coffee "import "
- Find repositories with a CoffeeScript file that have a import. Search -
language:CoffeeScript path:*.coffee "require "
- Find repositories with a CoffeeScript file that have a require. Search -
language:CoffeeScript path:*.coffee "class "
- Find repositories with a CoffeeScript file that have a class. Search -
language:CoffeeScript path:*.coffee "extends "
- Find repositories with a CoffeeScript file that have a extends. Search -
language:CoffeeScript path:*.coffee "module "
- Find repositories with a CoffeeScript file that have a module. Search -
language:CoffeeScript path:*.coffee "return "
- Find repositories with a CoffeeScript file that have a return. Search
-
language:CSS path:*.css
- Find repositories with a CSS file. Search -
language:CSS path:*.css "import "
- Find repositories with a CSS file that have a import. Search -
language:CSS path:*.css "import " <PACKAGE>
- Find repositories with a CSS file that have a import replace package with the package you want to search for e.g.package:flutter/material.dart
orpackage:provider/provider.dart
-
language:CSS path:*.css "/*"
- Find repositories with a CSS file that have a comment. Search
-
language:D path:*.d
- Find repositories with a D file. Search -
language:D path:*.d "//" OR "/*"
- Find repositories with a D file that have a comment. Search -
language:D path:*.d "import "
- Find repositories with a D file that have a import. Search -
language:D path:*.d "extern "
- Find repositories with a D file that have a extern. Search -
language:D path:*.d "class "
- Find repositories with a D file that have a class. Search -
language:D path:*.d "struct "
- Find repositories with a D file that have a struct. Search -
language:D path:*.d "enum "
- Find repositories with a D file that have a enum. Search -
language:D path:*.d "return "
- Find repositories with a D file that have a return. Search
-
language:dart path:*.dart
- Find repositories with a Dart file. Search -
language:dart path:*.dart "import "
- Find repositories with a Dart file that have a import. Search -
language:dart path:*.dart "import " <PACKAGE>
- Find repositories with a Dart file that have a import replace package with the package you want to search for e.g.package:flutter/material.dart
orpackage:provider/provider.dart
-
language:dart path:*.dart "//" OR "/*"
- Find repositories with a Dart file that have a comment. Search
-
language:DataWeave path:*.dwl
- Find repositories with a DataWeave file. Search -
language:DataWeave path:*.dwl "//" OR "/*"
- Find repositories with a DataWeave file that have a comment. Search -
language:DataWeave path:*.dwl "import "
- Find repositories with a DataWeave file that have a import. Search -
language:DataWeave path:*.dwl "output "
- Find repositories with a DataWeave file that have a output. Search -
language:DataWeave path:*.dwl "var "
- Find repositories with a DataWeave file that have a var. Search -
language:DataWeave path:*.dwl "fun"
- Find repositories with a DataWeave file that have a function. Search
-
language:E path:*.e
- Find repositories with a E file. Search -
language:E path:*.e "//" OR "/*"
- Find repositories with a E file that have a comment. Search -
language:E path:*.e "import "
- Find repositories with a E file that have a import. Search -
language:E path:*.e "extern "
- Find repositories with a E file that have a extern. Search -
language:E path:*.e "class "
- Find repositories with a E file that have a class. Search -
language:E path:*.e "struct "
- Find repositories with a E file that have a struct. Search
-
language:Elixir path:*.ex OR path:*.exs
- Find repositories with a Elixir file. Search -
language:Elixir path:*.ex OR path:*.exs "import "
- Find repositories with a Elixir file that have a import. Search
-
language:EJS path:*.ejs
- Find repositories with a EJS file. Search -
language:EJS path:*.ejs "<%"
- Find repositories with a EJS file that have a <% . Search
-
language:F# path:*.fs
- Find repositories with a F# file. Search -
language:F# path:*.fs "open "
- Find repositories with a F# file that have a open. Search -
language:F# path:*.fs "open " <PACKAGE>
- Find repositories with a F# file that have a open replace package with the package you want to search for e.g.package:flutter/material.dart
orpackage:provider/provider.dart
-
language:F# path:*.fs "//" OR "/*"
- Find repositories with a F# file that have a comment. Search
-
language:F* path:*.fst
- Find repositories with a F* file. Search -
language:F* path:*.fst "module "
- Find repositories with a F* file that have a module. Search -
language:F* path:*.fst "open "
- Find repositories with a F* file that have a open. Search -
language:F* path:*.fst "(*" OR "///"
- Find repositories with a F* file that have a comment. Search -
language:F* path:*.fst "let "
- Find repositories with a F* file that have a let. Search -
language:F* path:*.fst "val "
- Find repositories with a F* file that have a val. Search -
language:F* path:*.fst "type "
- Find repositories with a F* file that have a type. Search -
language:F* path:*.fst "assume "
- Find repositories with a F* file that have a assume. Search -
language:F* path:*.fst "assert "
- Find repositories with a F* file that have a assert. Search -
language:F* path:*.fst "exception "
- Find repositories with a F* file that have a exception. Search
-
language:Fortran path:*.f*
- Find repositories with a Fortran file. Search -
language:Fortran path:*.f* "!"
- Find repositories with a Fortran file that have a comment. Search -
language:Fortran path:*.f* "print "
- Find repositories with a Fortran file that have a print. Search -
language:Fortran path:*.f* "return "
- Find repositories with a Fortran file that have a return. Search
-
language:go "import ("
- Find Go files that use a import. Search -
language:go "import (<PACKAGE>"
- Find Go files that use a import. Replace with a package name. -
language:go "func"
- Find Go files that use a function. Search -
language:go "func <NAME>"
- Find Go files that use a function with a name of . Replace with a package name. -
language:go "// <COMMENT>"
- Find Go files that use a comment. Replace with a comment. -
language:go "// TODO:" OR "// BUG:" OR "// FIXME:" OR "// XXX:"
- Find Go files that have a TODO, BUG, FIXME or XXX comment. Search
-
language:Groovy path:*.groovy
- Find repositories with a Groovy file. Search -
language:Groovy path:*.groovy "import "
- Find repositories with a Groovy file that have a import. Search -
language:Groovy path:*.groovy "//" OR "/*"
- Find repositories with a Groovy file that have a comment. Search -
language:Groovy path:*.groovy "println "
- Find repositories with a Groovy file that have a println. Search -
language:Groovy path:*.groovy "def "
- Find repositories with a Groovy file that have a def. Search -
language:Groovy path:*.groovy "class "
- Find repositories with a Groovy file that have a class. Search -
language:Groovy path:*.groovy "interface "
- Find repositories with a Groovy file that have a interface. Search -
language:Groovy path:*.groovy "trait "
- Find repositories with a Groovy file that have a trait. Search
-
language:Haskell path:*.hs
- Find repositories with a Haskell file. Search -
language:Haskell path:*.hs "import "
- Find repositories with a Haskell file that have a import. Search -
language:Haskell path:*.hs "import " <PACKAGE>
- Find repositories with a Haskell file that have a import replace package with the package you want to search for. -
language:Haskell path:*.hs "{-" OR "--"
- Find repositories with a Haskell file that have a comment. Search -
language:Haskell path:*.hs "putStrLn "
- Find repositories with a Haskell file that have a putStrLn. Search -
language:Haskell path:*.hs "if "
- Find repositories with a Haskell file that have a if. Search
-
language:HTML path:*.html
- Find repositories with a HTML file. Search -
language:HTML path:*.html "<script"
- Find repositories with a HTML file that have a script tag. Search -
language:HTML path:*.html "<css"
- Find repositories with a HTML file that have a css tag. Search -
language:HTML path:*.html "<meta"
- Find repositories with a HTML file that have a meta tag. Search
-
language:J path:*.ijs
- Find repositories with a J file. Search -
language:J path:*.ijs "load "
- Find repositories with a J file that have a load. Search -
language:J path:*.ijs "NB. "
- Find repositories with a J file that have a comment. Search -
language:J path:*.ijs "=: "
- Find repositories with a J file that have a variable. Search
-
language:java path:*.java
- Find repositories with a java file. Search -
language:java path:*.java "import "
- Find repositories with a java file that use a import. Search -
language:java path:*.java "import " <PACKAGE>
- Find repositories with a java file that use a import replace package with the package you want to search for e.g.java.util
orjava.io
-
language:java path:*.java "public class"
- Find repositories with a java file that use a class. Search
-
language:javascript path:*.js
- Find repositories with a javascript file. Search -
language:javascript path:*.js "require("
- Find repositories with a javascript file that use a package. Search -
language:javascript path:*.js "require(" <PACKAGE>
- Find repositories with a javascript file that use a package replace package with the package you want to search for e.g.express
orreact
-
language:javascript path:*.js "import "
- Find repositories with a javascript file that use a import. Search -
language:javascript path:*.js "import " <PACKAGE>
- Find repositories with a javascript file that use a import replace package with the package you want to search for e.g.express
orreact
-
language:javascript "//<COMMENT>"
- Find repositories with a javascript file that use a comment replace COMMENT with the comment you want to search for. -
language:javascript "console.log("
- Find repositories with a javascript file that use a console.log. Search -
language:javascript "console.warn("
- Find repositories with a javascript file that use a console.warn. Search -
language:javascript "console.error("
- Find repositories with a javascript file that use a console.error. Search -
language:javascript "console.table("
- Find repositories with a javascript file that use a console.table. Search -
language:javascript "function "
- Find repositories with a javascript file that have a function. Search -
language:javascript "function " <FUNCTION>
- Find repositories with a javascript file that have a function replace FUNCTION with the function you want to search for. -
language:javascript "async function "
- Find repositories with a javascript file that have a asynconous function. Search -
language:javascript "async function " <FUNCTION>
- Find repositories with a javascript file that have a asynconous function replace FUNCTION with the function you want to search for e.g.async function <FUNCTION>
-
language:javascript "let "
- Find javascript files that use a let statement. Search -
language:javascript "let " <VARIABLE>
- Find javascript files that use a let statement replace VARIABLE with the variable you want to search for. -
language:javascript "const "
- Find javascript files that use a const statement. Search -
language:javascript "var "
- Find javascript files that use a var statement. Search -
language:javascript "var " <VARIABLE>
- Find javascript files that use a var statement replace VARIABLE with the variable you want to search for. -
language:javascript "if("
- Find javascript files that use a if statement. Search -
language:javascript "if(" <CONDITION>
- Find javascript files that use a if statement replace CONDITION with the condition you want to search for. -
language:javascript "for("
- Find javascript files that use a for statement. Search -
language:javascript "for(" <CONDITION>
- Find javascript files that use a for statement replace CONDITION with the condition you want to search for. -
language:javascript "while("
- Find javascript files that use a while statement. Search -
language:javascript "while(" <CONDITION>
- Find javascript files that use a while statement replace CONDITION with the condition you want to search for.
-
language:Julia path:*.jl
- Find repositories with a Julia file. Search -
language:Julia path:*.jl "#"
- Find repositories with a Julia file that have a comment. Search -
language:Julia path:*.jl "using"
- Find repositories with a Julia file that have a using. Search -
language:Julia path:*.jl "using " <PACKAGE>
- Find repositories with a Julia file that have a using replace package with the package you want to search for. -
language:Julia path:*.jl "import"
- Find repositories with a Julia file that have a import. Search -
language:Julia path:*.jl "import " <PACKAGE>
- Find repositories with a Julia file that have a import replace package with the package you want to search for.
-
language:"Jupyter Notebook" path:*.ipynb
- Find repositories with a Jupyter Notebook file. Search -
language:"Jupyter Notebook" path:*.ipynb "cell_type" "code"
- Find repositories with a Jupyter Notebook file that code cells. Search -
language:"Jupyter Notebook" path:*.ipynb "cell_type" "markdown"
- Find repositories with a Jupyter Notebook file that markdown cells. Search -
language:"Jupyter Notebook" path:*.ipynb "source"
- Find repositories with a Jupyter Notebook file sources. Search
-
language:kotlin path:*.kt
- Find repositories with a Kotlin file. Search -
language:kotlin path:*.kt "import "
- Find repositories with a Kotlin file that have a import. Search -
language:kotlin path:*.kt "import " <PACKAGE>
- Find repositories with a Kotlin file that have a import replace package with the package you want to search for e.g.androidx.appcompat.app.AppCompatActivity
orandroidx.recyclerview.widget.RecyclerView
-
language:kotlin path:*.kt "fun"
- Find repositories with a Kotlin file that have a function. Search -
language:kotlin path:*.kt "fun " <NAME>
- Find repositories with a Kotlin file that have a function with a name of . Replace with a package name. -
language:kotlin path:*.kt "// <COMMENT>"
- Find repositories with a Kotlin file that have a comment. Replace with a comment.
-
language:LFE path:*.lfe
- Find repositories with a LFE file. Search -
language:LFE path:*.lfe ";"
- Find repositories with a LFE file that have a comment. Search -
language:LFE path:*.lfe "defun "
- Find repositories with a LFE file that have a defun. Search -
language:LFE path:*.lfe "let "
- Find repositories with a LFE file that have a let. Search
-
language:Lisp path:*.lisp
- Find repositories with a Lisp file. Search -
language:Lisp path:*.lisp ";"
- Find repositories with a Lisp file that have a comment. Search -
language:Lisp path:*.lisp "require "
- Find repositories with a Lisp file that have a require. Search -
language:Lisp path:*.lisp "defun "
- Find repositories with a Lisp file that have a defun. Search
-
language:Lua path:*.lua
- Find repositories with a Lua file. Search -
language:Lua path:*.lua "--"
- Find repositories with a Lua file that have a comment. Search -
language:Lua path:*.lua "require "
- Find repositories with a Lua file that have a require. Search -
language:Lua path:*.lua "require " <PACKAGE>
- Find repositories with a Lua file that have a require replace package with the package you want to search for. -
language:Lua path:*.lua "function "
- Find repositories with a Lua file that have a function. Search -
language:Lua path:*.lua "if "
- Find repositories with a Lua file that have a if statement. Search
-
language:LLVM path:*.ll
- Find repositories with a LLVM file. Search -
language:LLVM path:*.ll "; " NOT ");"
- Find repositories with a LLVM file that have a comment. Search -
language:LLVM path:*.ll "define "
- Find repositories with a LLVM file that have a define. Search -
language:LLVM path:*.ll "declare "
- Find repositories with a LLVM file that have a declare. Search -
language:LLVM path:*.ll "call "
- Find repositories with a LLVM file that have a call. Search -
language:LLVM path:*.ll "ret "
- Find repositories with a LLVM file that have a ret. Search -
language:LLVM path:*.ll "br "
- Find repositories with a LLVM file that have a br. Search -
language:LLVM path:*.ll "switch "
- Find repositories with a LLVM file that have a switch. Search -
language:LLVM path:*.ll "unreachable"
- Find repositories with a LLVM file that have a unreachable. Search -
language:LLVM path:*.ll "alloca "
- Find repositories with a LLVM file that have a alloca. Search -
language:LLVM path:*.ll "load "
- Find repositories with a LLVM file that have a load. Search -
language:LLVM path:*.ll "store "
- Find repositories with a LLVM file that have a store. Search
-
language:ocaml path:*.ml
- Find repositories with a Ocaml file. Search -
language:ocaml path:*.ml "(*"
- Find repositories with a Ocaml file that have a comment. Search -
language:ocaml path:*.ml "let "
- Find repositories with a Ocaml file that have a let. Search -
language:ocaml path:*.ml "module "
- Find repositories with a Ocaml file that have a module. Search -
language:ocaml path:*.ml "open "
- Find repositories with a Ocaml file that have a open. Search -
language:ocaml path:*.ml "type "
- Find repositories with a Ocaml file that have a type. Search -
language:ocaml path:*.ml "val "
- Find repositories with a Ocaml file that have a val. Search -
language:ocaml path:*.ml "with "
- Find repositories with a Ocaml file that have a with. Search
-
language:objective-c path:*.m
- Find repositories with a Objective-C file. Search -
language:objective-c path:*.h
- Find repositories with a Objective-C header file. Search -
language:objective-c path:*.m "typedef struct"
- Find repositories with a Objective-C file that use a struct. Search -
language:objective-c path:*.m "#import <HEADER>"
- Find repositories with a Objective-C file that use a header replace HEADER with the header you want to search for e.g.#import <Foundation/Foundation.h>
or#import <UIKit/UIKit.h>
-
language:objective-c path:*.m "int main("
- Find repositories with a Objective-C file that use a main function. Search -
language:objective-c path:*.m "/*<COMMENT>*/" OR "//<COMMENT>"
- Find repositories with a Objective-C file that use a comment replace COMMENT with the comment you want to search for e.g./*<COMMENT>*/
or//<COMMENT>
-
language:Perl path:*.pl
- Find repositories with a Perl file. Search -
language:Perl path:*.pl "#"
- Find repositories with a Perl file that have a comment. Search -
language:Perl path:*.pl "use"
- Find repositories with a Perl file that have a use. Search -
language:Perl path:*.pl "use " <MODULE>
- Find repositories with a Perl file that have a use replace module with the package you want to search for.
-
language:PHP
- Find PHP files. Search -
language:PHP "use Monolog"
Find PHP files that use the Monlog package. Search -
language:PHP "use <PACKAGE>"
Find PHP files that use a package. Replace with a package name. -
language:PHP "function"
Find PHP files that have a function. Search
-
language:PowerShell path:*.ps1
- Find repositories with a PowerShell file. Search -
language:PowerShell path:*.ps1 "#"
- Find repositories with a PowerShell file that have a comment. Search -
language:PowerShell path:*.ps1 "Import-Module "
- Find repositories with a PowerShell file that have a Import-Module. Search -
language:PowerShell path:*.ps1 "Import-Module " <PACKAGE>
- Find repositories with a PowerShell file that have a Import-Module replace package with the package you want to search for.
For configuration files, see Configuration Files/Python.
-
language:python path:*.py
- Find repositories with a python file. Search -
language:python path:*.py "#"
- Find repositories with a python file that have a comment. Search -
language:python path:*/__main__.py OR language:python path:*/main.py
- Find repositories with a main python file. Search -
language:python path:*/__init__.py
- Find repositories with an init file. Search -
language:python path:*/setup.py
- Find repositories with a setup file Search -
path:*/setup.cfg
- Find repositories with a setup config file. Search -
language:python "import <PACKAGE>"
- Find python files that use a package replace package with the package you want to search for e.g.requests
orflask
-
language:python "print(" OR language:python "print ("
- Find python files with a print statement. Search -
language:python "def "
- Find python files with a function. Search -
language:python "class "
- Find python files with a class. Search -
language:python "if "
- Find python files with a if statement. Search -
language:python "elif "
- Find python files with a elif statement. Search -
language:python "else "
- Find python files with a else statement. Search -
language:python "for "
- Find python files with a for statement. Search -
language:python "while "
- Find python files with a while statement. Search -
language:python "try:"
- Find python files with a try statement. Search -
language:python "except "
- Find python files with a except statement. Search -
language:python if __name__ == "__main__"
- Find python files with a main function. Search
-
language:R path:*.R
- Find repositories with a R file. Search -
language:R path:*.R "#"
- Find repositories with a R file that have a comment. Search
-
language:RAML path:*.raml
- Find repositories with a RAML file. Search -
language:RAML path:*.raml "#" NOT "#%RAML"
- Find repositories with a RAML file that have a comment. Search -
language:RAML path:*.raml "baseUri:"
- Find repositories with a RAML file that have a baseUri. Search -
language:RAML path:*.raml "title:"
- Find repositories with a RAML file that have a title. Search -
language:RAML path:*.raml "version:"
- Find repositories with a RAML file that have a version. Search -
language:RAML path:*.raml "schemas:"
- Find repositories with a RAML file that have a schemas. Search -
language:RAML path:*.raml "types:"
- Find repositories with a RAML file that have a types. Search -
language:RAML path:*.raml "traits:"
- Find repositories with a RAML file that have a traits. Search -
language:RAML path:*.raml "resourceTypes:"
- Find repositories with a RAML file that have a resourceTypes. Search -
language:RAML path:*.raml "securitySchemes:"
- Find repositories with a RAML file that have a securitySchemes. Search
-
language:ruby path:*.rb
- Find repositories with a ruby file. Search -
language:ruby path:*.rb "require "
- Find repositories with a ruby file that use a require. Search -
language:ruby path:*.rb "require " <PACKAGE>
- Find repositories with a ruby file that use a require replace package with the package you want to search for e.g.express
orreact
-
language:ruby path:*.rb "puts "
- Find repositories with a ruby file that use a puts. Search -
language:ruby path:*.rb "print "
- Find repositories with a ruby file that use a print. Search -
language:ruby path:Gemfile
- Find repositories with a Gemfile. Search -
language:ruby path:*.rb "def "
- Find repositories with a ruby file that use a def. Search -
language:ruby path:*.rb "def <NAME>"
- Find repositories with a ruby file that use a def with a name of . Replace with a package name.
-
language:rust "use std::io"
- Find Rust files that use the std::io package. Search -
language:rust "use <PACKAGE>"
- Find Rust files that use a package. Replace with a package name. -
language:rust "mod"
- Find Rust files that use a module. Search -
language:rust "mod <MODULE>"
- Find Rust files that use a module. Replace with a package name. -
language:java path:*.java
- Find repositories with a java file. [Search]( -
language:rust "fn"
- Find Rust files that use a function. Search -
language:rust "fn <NAME>"
- Find Rust files that use a function. Replace with a package name.
-
language:SAS path:*.sas
- Find repositories with a SAS file. Search -
language:SAS path:*.sas "/*"
- Find repositories with a SAS file that have a comment. Search -
language:SAS path:*.sas "proc "
- Find repositories with a SAS file that have a proc. Search -
language:SAS path:*.sas "data "
- Find repositories with a SAS file that have a data. Search -
language:SAS path:*.sas "run;"
- Find repositories with a SAS file that have a run. Search -
language:SAS path:*.sas "libname "
- Find repositories with a SAS file that have a libname. Search
-
language:SASS path:*.sass
- Find repositories with a SASS file. Search -
language:SASS path:*.sass "import "
- Find repositories with a SASS file that have a import. Search -
language:SASS path:*.sass "import " <PACKAGE>
- Find repositories with a SASS file that have a import replace package with the package you want to search for e.g.package:flutter/material.dart
orpackage:provider/provider.dart
-
language:SASS path:*.sass "/*"
- Find repositories with a SASS file that have a comment. Search
-
language:Scala path:*.scala
- Find repositories with a Scala file. Search -
language:Scala path:*.scala "import "
- Find repositories with a Scala file that have a import. Search -
language:Scala path:*.scala "import " <PACKAGE>
- Find repositories with a Scala file that have a import replace package with the package you want to search for. -
language:Scala path:*.scala "//" OR "/*"
- Find repositories with a Scala file that have a comment. Search
-
language:SQF path:*.sqf
- Find repositories with a SQF file. Search -
language:SQF path:*.sqf "//" OR language:SQF path:*.sqf "/*"
- Find repositories with a SQF file that have a comment. Search -
language:SQF path:*.sqf "private "
- Find repositories with a SQF file that have a private. Search -
language:SQF path:*.sqf "call "
- Find repositories with a SQF file that have a call. Search -
language:SQF path:*.sqf "#include "
- Find repositories with a SQF file that have a #include. Search -
language:SQF path:*.sqf "if "
- Find repositories with a SQF file that have a if. Search
-
language:swift path:*.swift
- Find repositories with a Swift file. Search -
language:swift path:*.swift "import "
- Find repositories with a Swift file that have a import. Search -
language:swift path:*.swift "import " <PACKAGE>
- Find repositories with a Swift file that have a import replace package with the package you want to search for e.g.UIKit
orFoundation
-
language:swift path:*.swift "func"
- Find repositories with a Swift file that have a function. Search -
language:swift path:*.swift "func " <NAME>
- Find repositories with a Swift file that have a function with a name of . Replace with a package name. -
language:swift path:*.swift "// <COMMENT>"
- Find repositories with a Swift file that have a comment. Replace with a comment.
-
language:typescript path:*.ts
- Find repositories with a typescript file. Search -
language:typescript path:*.ts "require("
- Find repositories with a typescript file that use a package. Search -
language:typescript path:*.ts "require(" <PACKAGE>
- Find repositories with a typescript file that use a package replace package with the package you want to search for e.g.express
orreact
-
language:typescript "console.log("
- Find repositories with a typescript file that use a console.log. Search -
language:typescript "console.warn("
- Find repositories with a typescript file that use a console.warn. Search -
language:typescript "console.error("
- Find repositories with a typescript file that use a console.error. Search -
language:typescript "console.table("
- Find repositories with a typescript file that use a console.table. Search -
language:typescript "function "
- Find repositories with a typescript file that have a function. Search -
language:typescript "function " <FUNCTION>
- Find repositories with a typescript file that have a function replace FUNCTION with the function you want to search for e.g.function <FUNCTION>
-
language:typescript "async function "
- Find repositories with a typescript file that have a asynconous function. Search -
language:typescript "async function " <FUNCTION>
- Find repositories with a typescript file that have a asynconous function replace FUNCTION with the function you want to search for e.g.async function <FUNCTION>
-
language:typescript "let "
- Find typescript files that use a let statement. Search -
language:typescript "let " <VARIABLE>
- Find typescript files that use a let statement replace VARIABLE with the variable you want to search for. -
language:typescript "const "
- Find typescript files that use a const statement. Search -
language:typescript "var "
- Find typescript files that use a var statement. Search -
language:typescript "var " <VARIABLE>
- Find typescript files that use a var statement replace VARIABLE with the variable you want to search for. -
language:typescript "if("
- Find typescript files that use a if statement. Search -
language:typescript "if(" <CONDITION>
- Find typescript files that use a if statement replace CONDITION with the condition you want to search for.
-
language:vala path:*.vala
- Find repositories with a vala file. Search -
language:vala path:*.vala "import "
- Find repositories with a vala file that have a import. Search -
language:vala path:*.vala "//" OR "/*"
- Find repositories with a vala file that have a comment. Search -
language:vala path:*.vala "function "
- Find repositories with a vala file that have a function. Search
-
language:vim path:*.vim
- Find repositories with a vim file. Search -
language:vim path:*.vim "call "
- Find repositories with a vim file that use a call. Search -
language:vim path:*.vim "function "
- Find repositories with a vim file that have a function. Search -
language:vim path:*.vim "let "
- Find repositories with a vim file that use a let statement. Search -
language:vim path:*.vim "const "
- Find repositories with a vim file that use a const statement. Search -
language:vim path:*.vim "var "
- Find repositories with a vim file that use a var statement. Search
-
language:"Visual Basic" path:*.vb
- Find repositories with a visual basic file. Search -
language:"Visual Basic" path:*.vb "Console.WriteLine("
- Find repositories with a visual basic file that use a console.writeline. Search -
language:"Visual Basic" path:*.vb "Imports "
- Find repositories with a visual basic file that use a import. Search -
language:"Visual Basic" path:*.vb "Dim "
- Find repositories with a visual basic file that use a Dim statement. Search -
language:"Visual Basic" path:*.vb "If "
- Find repositories with a visual basic file that use a If statement. Search -
language:"Visual Basic" path:*.vb "Case "
- Find repositories with a visual basic file that use a Case statement. Search
-
language:Vue path:*.vue
- Find repositories with a vue file. Search -
language:Vue path:*.vue "export default "
- Find repositories with a vue file that have a export default. Search -
language:Vue path:*.vue "import "
- Find repositories with a vue file that have a import. Search -
language:Vue path:*.vue "export "
- Find repositories with a vue file that have a export. Search -
language:Vue path:*.vue "<!--"
- Find repositories with a vue file that have a comment. Search -
language:Vue path:*.vue "const "
- Find repositories with a vue file that have a const. Search -
language:Vue path:*.vue "let "
- Find repositories with a vue file that have a let. Search -
language:Vue path:*.vue "var "
- Find repositories with a vue file that have a var. Search -
language:Vue path:*.vue "function "
- Find repositories with a vue file that have a function. Search -
language:Vue path:*.vue "if "
- Find repositories with a vue file that have a if. Search
-
language:WebAssembly path:*.wat
- Find repositories with a webassembly file. Search -
language:WebAssembly path:*.wat ";;"
- Find repositories with a webassembly file that have a comment. Search -
language:WebAssembly path:*.wat "(func "
- Find repositories with a webassembly file that have a function. Search -
language:WebAssembly path:*.wat "(module "
- Find repositories with a webassembly file that have a module. Search -
language:WebAssembly path:*.wat "(type "
- Find repositories with a webassembly file that have a type. Search -
language:WebAssembly path:*.wat "(import "
- Find repositories with a webassembly file that have a import. Search -
language:WebAssembly path:*.wat "(export "
- Find repositories with a webassembly file that have a export. Search -
language:WebAssembly path:*.wat "(table "
- Find repositories with a webassembly file that have a table. Search -
language:WebAssembly path:*.wat "(memory "
- Find repositories with a webassembly file that have a memory. Search -
language:WebAssembly path:*.wat "(global "
- Find repositories with a webassembly file that have a global. Search
-
language:Wollok path:*.wlk
- Find repositories with a wollok file. Search -
language:Wollok path:*.wlk "//" OR language:Wollok path:*.wlk "/*"
- Find repositories with a wollok file that have a comment. Search -
language:Wollok path:*.wlk "class "
- Find repositories with a wollok file that have a class. Search -
language:Wollok path:*.wlk "object "
- Find repositories with a wollok file that have a object. Search -
language:Wollok path:*.wlk "method "
- Find repositories with a wollok file that have a method. Search -
language:Wollok path:*.wlk "var "
- Find repositories with a wollok file that have a var. Search -
language:Wollok path:*.wlk "if "
- Find repositories with a wollok file that have a if. Search -
language:Wollok path:*.wlk "for "
- Find repositories with a wollok file that have a for. Search -
language:Wollok path:*.wlk "object "
- Find repositories with a wollok file that have a while. Search -
language:Wollok path:*.wlk "return "
- Find repositories with a wollok file that have a return. Search
-
language:xBase
- Find repositories with a xbase file. Search -
language:xBase "//" OR language:xBase "/*"
- Find repositories with a xbase file that have a comment. Search -
language:xBase "#include "
- Find repositories with a xbase file that have a include. Search -
language:xBase "#define "
- Find repositories with a xbase file that have a define. Search -
language:xBase "FUNCTION "
- Find repositories with a xbase file that have a function. Search -
language:xBase "PROCEDURE "
- Find repositories with a xbase file that have a procedure. Search -
language:xBase "CLASS "
- Find repositories with a xbase file that have a class. Search -
language:xBase "METHOD "
- Find repositories with a xbase file that have a method. Search
-
language:XQuery path:*.xq
- Find repositories with a xquery file. Search -
language:XQuery path:*.xqm
- Find repositories with a xquery module file. Search -
language:XQuery path:*.xqy
- Find repositories with a xquery xqy file. Search -
language:XQuery path:*.xql
- Find repositories with a xquery xql file. Search -
language:XQuery path:*.xq*
- Find repositories with any xquery file extension. Search -
language:XQuery path:*.xq* "declare "
- Find repositories with any xquery file extension that have a declare. Search -
language:XQuery path:*.xq* "import "
- Find repositories with any xquery file extension that have a import. Search -
language:XQuery path:*.xq* "if "
- Find repositories with any xquery file extension that have a if. Search -
language:XQuery path:*.xq* "for "
- Find repositories with any xquery file extension that have a for. Search -
language:XQuery path:*.xq* "where "
- Find repositories with any xquery file extension that have a where. Search -
language:XQuery path:*.xq* "return "
- Find repositories with any xquery file extension that have a return. Search -
language:XQuery path:*.xq* "let "
- Find repositories with any xquery file extension that have a let. Search
-
language:YARA path:*.yar
- Find repositories with a yara file. Search -
language:YARA path:*.yar "rule "
- Find repositories with a yara file that have a rule. Search -
language:YARA path:*.yar "strings:"
- Find repositories with a yara file that have a strings. Search -
language:YARA path:*.yar "condition:"
- Find repositories with a yara file that have a condition. Search -
language:YARA path:*.yar "meta:"
- Find repositories with a yara file that have a meta. Search -
language:YARA path:*.yar "import "
- Find repositories with a yara file that have a import. Search
-
language:zig path:*.zig
- Find repositories with a zig file. Search -
language:zig path:*.zig "fn "
- Find repositories with a zig file that have a function. Search -
language:zig path:*.zig "//"
- Find repositories with a zig file that have a comment. Search -
language:zig path:*.zig "pub "
- Find repositories with a zig file that have a public function. Search -
language:zig path:*.zig "pub fn "
- Find repositories with a zig file that have a public function. Search -
language:zig path:*.zig "pub const "
- Find repositories with a zig file that have a public const. Search -
language:zig path:*.zig "var "
- Find repositories with a zig file that have a var. Search -
language:zig path:*.zig "pub var "
- Find repositories with a zig file that have a public var. Search
-
language:cmake path:*/CMakeLists.txt
- Find repositories with a CMakeLists.txt. Search -
language:cmake path:*/CMakeLists.txt "find_package("
- Find repositories with a CMakeLists.txt that use a package. Search -
language:cmake path:*/CMakeLists.txt "find_package(" <PACKAGE>
- Find repositories with a CMakeLists.txt that use a package replace package with the package you want to search for e.g.Boost
orOpenCV
-
language:cmake path:*/CMakeLists.txt "find_package(Boost"
- Find repositories with a CMakeLists.txt that use Boost. Search
-
path:*.gradle
- Find repositories with a gradle file. Search -
path:*.gradle "implementation"
- Find repositories with a gradle file that use a package. Search -
path:*.gradle "implementation" <PACKAGE>
- Find repositories with a gradle file that use a package replace package with the package you want to search for e.g.com.google.android.material:material
orandroidx.appcompat:appcompat
-
path:*.gradle "plugins {"
- Find repositories with a gradle file that use a plugin. Search
-
language:make path:*/Makefile
- Find repositories with a Makefile. Search -
path:*/Makefile language:make "= g++"
- Find repositories with a Makefile that use g++. Search -
path:*/Makefile language:make "= gcc"
- Find repositories with a Makefile that use gcc. Search -
path:*/Makefile language:make "= clang"
- Find repositories with a Makefile that use clang. Search -
path:*/Makefile language:make = python3
- Find repositories with a Makefile that use python3. Search
-
path:pom.xml
- Find repositories with a pom.xml. Search -
path:pom.xml "dependency"
- Find repositories with a pom.xml that use a package. Search -
path:pom.xml "version"
- Find repositories with a pom.xml that use a version. Search -
path:pom.xml "project"
- Find repositories with a pom.xml that use a project. Search
-
path:*.ninja
- Find repositories with a ninja file. Search -
path:*.ninja "rule "
- Find repositories with a ninja file that use a rule. Search -
path:*.ninja "build "
- Find repositories with a ninja file that use a build. Search -
path:*.ninja "command "
- Find repositories with a ninja file that use a command. Search
-
path:*/Rakefile
- Find repositories with a Rakefile. Search -
path:*/Rakefile "require "
- Find repositories with a Rakefile that use a package. Search -
path:*/Rakefile "namespace "
- Find repositories with a Rakefile that use a namespace. Search -
path:*/Rakefile "task "
- Find repositories with a Rakefile that use a task. Search -
path:*/Rakefile "desc "
- Find repositories with a Rakefile that use a desc. Search -
path:*/Rakefile "rule "
- Find repositories with a Rakefile that use a rule. Search
-
path:*/SConstruct
- Find repositories with a SConstruct. Search -
path:*/SConstruct "env.Program"
- Find repositories with a SConstruct that use a package. Search -
path:*/SConstruct "config.AddVariables"
- Find repositories with a SConstruct that use a config. Search -
path:*/SConstruct "env.Append"
- Find repositories with a SConstruct that use a env. Search -
path:*/SConstruct "Platform"
- Find repositories with a SConstruct that use a Platform. Search -
path:*/SConstruct "env.Tool"
- Find repositories with a SConstruct that use a env. Search
-
language:dockerfile path:*/Dockerfile
- Find repositories with a Dockerfile. Search -
language:dockerfile path:*/Dockerfile FROM <PACKAGE>
- Find repositories with a Dockerfile that use a package replace package with the package you want to search for e.g.ubuntu:latest
orgcc:latest
-
language:dockerfile path:*/Dockerfile FROM ubuntu:
- Find repositories with a Dockerfile that use ubuntu. Search -
language:dockerfile path:*/Dockerfile FROM gcc:
- Find repositories with a Dockerfile that use gcc. Search -
language:dockerfile path:*/Dockerfile FROM node:
- Find repositories with a Dockerfile that use node. Search -
language:dockerfile path:*/Dockerfile FROM python:
- Find repositories with a Dockerfile that use python. Search
-
path:*.in "lxc" NOT language:markdown
- Find repositories with a lxc file. Search -
path:*.in "lxc" "#" NOT language:markdown
- Find repositories with a lxc file that use a comment. Search
-
language:csv path:*.csv
- Find repositories with a csv file. Search -
language:csv path:*.csv "<HEADER>"
- Find repositories with a csv file that has a header replace header with the header you want to search for e.g.name
oremail
-
language:ini path:*.ini
- Find repositories with a ini file. Search -
language:ini path:*.ini [SECTION]
- Find repositories with a ini file that has a section replace section with the section you want to search for e.g.tool
ordependencies
-
language:javascript path:package.json
- Find repositories with a package.json file. Search -
language:javascript path:package.json "\"dependencies\":"
- Find repositories with a package.json file that has dependencies. Search -
language:javascript path:package.json "\"devDependencies\":"
- Find repositories with a package.json file that has devDependencies. Search -
language:javascript path:package.json "\"scripts\":"
- Find repositories with a package.json file that has scripts. Search
-
language:json path:*.json
- Find repositories with a json file. Search -
path:.vscode/settings.json
- Find vscode settings files. Search -
path:.vscode/launch.json
- Find vscode launch files. Search -
path:package.json
- Find package.json files. Search -
language:json path:*.eslintrc
- Find eslint config files. Search -
language:json path:*.babelrc
- Find repositories with a Babel configuration file in JSON format. Search -
language:json path:*.prettierrc
- Find repositories with a Prettier configuration file in JSON format. Search -
language:json path:*.tsconfig.json
- Find repositories with a TypeScript configuration file in JSON format. Search
-
language:toml path:Pipfile
- Find repositories with a Pipfile. Search -
language:toml path:Pipfile "#"
- Find repositories with a Pipfile that use a comment. Search
-
language:toml path:pyproject.toml
- Find repositories with a pyproject.toml file. Search -
language:toml path:pyproject.toml "#"
- Find repositories with a pyproject.toml file that use a comment. Search -
language:toml path:pyproject.toml "version = \"1.0.0\""
- Find repositories with a pyproject.toml file that has a version of 1.0.0. Change the version to the version you want to search for. Search -
language:toml path:pyproject.toml "requests ="
- Find repositories with a pyproject.toml file that has requests. You can replace requests with any package you want to search for. Search
-
language:python path:requirements.txt
- Find repositories with a requirements.txt file. Search -
language:python path:requirements.txt "requests"
- Find repositories with a requirements.txt file that has requests. You can replace requests with any package you want to search for. Search
-
language:sql path:*.sql
- Find repositories with a sql file. Search -
language:sql path:*.sql "SELECT"
- Find repositories with a sql file that has a select statement. Search -
language:sql path:*.sql "SELECT" "FROM"
- Find repositories with a sql file that has a select statement and a from statement. Search -
language:sql path:*.sql "SELECT *"
- Find repositories with a sql file that has a select * statement. Search
-
language:toml path:*.toml
- Find repositories with a toml file. Search -
language:toml path:*.toml [<SECTION>]
- Find repositories with a toml file that has a section replace section with the section you want to search for e.g.tool
ordependencies
-
language:toml path:*.toml "#"
- Find repositories with a toml file that has a comment. Search -
language:toml path:*.toml "# TODO:"
- Find repositories with a toml file that has a todo comment. Search
-
language:xslt path:*.xslt OR path:*.xsl
- Find repositories with a xslt file. Search -
language:xslt path:*.xslt OR path:*.xsl "xsl:stylesheet"
- Find repositories with a xslt file that has a xsl:stylesheet tag. Search -
language:xslt path:*.xslt OR path:*.xsl "xsl:stylesheet" "xsl:template"
- Find repositories with a xslt file that has a xsl:stylesheet tag and a xsl:template tag. Search -
language:xslt path:*.xslt OR path:*.xsl "xsl:if"
- Find repositories with a xslt file that has a xsl:if tag. Search -
language:xslt path:*.xslt OR path:*.xsl "xsl:for-each"
- Find repositories with a xslt file that has a xsl:for-each tag. Search
-
language:xml path:*.xml
- Find repositories with a xml file. Search -
language:xml <?xml version="1.0" encoding="UTF-8"?>
- Find repositories with a xml file that has the xml version of 1.0 and a file encoding of UTF-8. Search
-
language:yaml path:*.yaml
- Find repositories with a yaml file. Search -
path:.github/workflows language:yaml
- find github workflow files. Search -
path:.github/workflows language:yaml "uses: actions/checkout@v3"
- find github workflows that use actions/checkout@v3. Search -
path:.github/workflows language:yaml "uses: <PACKAGE>"
- find github workflows that use a package replace package with the package you want to search for e.g.actions/checkout@v3
oractions/setup-node@v2
-
language:asciidoc path:*.adoc
- Find repositories with a asciidoc file. Search -
language:asciidoc path:README.adoc
- Find repositories with a readme file. Search
-language:asciidoc path:LICENCE.adoc
- Find repositories with a license file. Search
language:asciidoc path:CHANGELOG.adoc
- Find repositories with a changelog file. Search
-
language:tex path:*.tex
- Find repositories with a tex file. Search -
language:tex path:*.tex "documentclass"
- Find repositories with a tex file that has a documentclass. Search
-
language:markdown path:*.md
- Find repositories with a markdown file. Search -
language:markdown path:README.md
- Find repositories with a readme file. Search -
language:markdown path:LICENCE.md
- Find repositories with a license file. Search -
language:markdown path:CONTRIBUTING.md
- Find repositories with a contributing file. Search -
language:markdown path:.github/ISSUE_TEMPLATE/*.md
- Find repositories with a issue template file. Search -
language:markdown path:.github/PULL_REQUEST_TEMPLATE/*.md
- Find repositories with a pull request template file. Search -
language:markdown path:CHANGELOG.md
- Find repositories with a changelog file. Search -
language:markdown path:*.md "<!--"
- Find repositories with a markdown file that has a comment. Search
language:wikitext path:*.mediawiki
- Find repositories with a mediawiki file. Search
-
language:restructuredtext path:*.rst
- Find repositories with a restructuredtext file. Search -
language:restructuredtext path:README.rst
- Find repositories with a readme file. Search
-
path:*.rtf
- Find repositories with a rtf file. Search -
path:README.rtf
- Find repositories with a readme file. Search -
path:LICENCE.rtf
- Find repositories with a license file. Search -
path:CHANGELOG.rtf
- Find repositories with a changelog file. Search
-
language:text path:*.txt
- Find repositories with a text file. Search -
language:text path:README.txt
- Find repositories with a readme file. Search -
language:text path:LICENCE.txt
- Find repositories with a license file. Search -
language:text path:CHANGELOG.txt
- Find repositories with a changelog file. Search -
language:text path:CONTRIBUTING.txt
- Find repositories with a contributing file. Search
-
"TODO:"
- Find files with a todo comment. Search -
"FIXME:"
- Find files with a fixme comment. Search -
"XXX:"
- Find files with a xxx comment. Search -
"BUG:"
- Find files with a bug comment. Search -
"HACK:"
- Find files with a hack comment. Search -
"NOTE:"
- Find files with a note comment. Search -
"OPTIMIZE:"
- Find files with a optimize comment. Search -
"REFACTOR:"
- Find files with a refactor comment. Search -
"WIP:"
- Find files with a wip comment. Search -
"DEPRECATED:"
- Find files with a deprecated comment. Search
-
"@brief " OR "\brief "
- Find files with a brief comment. Search -
"@bug " OR "\bug "
- Find files with a bug comment. Search -
"@param " OR "\param "
- Find files with a param comment. Search -
"@return " OR "\return " OR "@returns " OR "\returns "
- Find files with a return comment. Search -
"@deprecated " OR "\deprecated "
- Find files with a deprecated comment. Search -
"@see " OR "\see "
- Find files with a see comment. Search -
"@todo " OR "\todo "
- Find files with a todo comment. Search -
"@warning " OR "\warning "
- Find files with a warning comment. Search -
"@note " OR "\note "
- Find files with a note comment. Search -
"@attention " OR "\attention "
- Find files with a attention comment. Search -
"@version " OR "\version "
- Find files with a version comment. Search -
"@date " OR "\date "
- Find files with a date comment. Search
-
language:shell path:.bashrc
- Find repositories with a bashrc file. Search -
language:shell path:.bash_profile
- Find repositories with a bash_profile file. Search -
language:shell path:.bash_logout
- Find repositories with a bash_logout file. Search -
language:shell path:.bash_aliases
- Find repositories with a bash_aliases file. Search
-
language:shell path:.config/fish/config.fish
- Find repositories with a fish config file. Search -
language:shell path:.config/fish/*
- Find repositories with a fish config file. Search
-
path:.gitignore
- Find repositories with a gitignore file. Search -
path:.gitattributes
- Find repositories with a gitattributes file. Search -
path:.gitmodules
- Find repositories with a gitmodules file. Search -
language:"Git Config" path:.gitconfig
- Find repositories with a gitconfig file. Search
-
language:vim path:.vimrc
- Find repositories with a vimrc file. Search -
language:vim path:.vim
- Find repositories with a vim file. Search -
language:vim path:.gvimrc
- Find repositories with a gvimrc file. Search -
language:vim path:.gvim
- Find repositories with a gvim file. Search
-
language:shell path:.zshrc
- Find repositories with a zshrc file. Search -
language:shell path:.zshenv
- Find repositories with a zshenv file. Search
-
language:javascript
- Find repositories that use javascript as its main language. Search -
archived:true
- Find archived repositories. Search -
license:gpl
- Find repositories with gpl licence. Search -
stars:>200
- Find repositories with more that 200 stars. Search -
CVE-20
- Find repositories that CVE exploits. Search -
awesome
- Find awesome lists repositories. Search
-
is:open
- Find open issues. Search -
is:open found vulnerabilities OR is:open found vulnerability
- Find open issues with the word vulnerabilities. Search -
is:open vulnerable package
- Find open issues with the word vulnerable package. Search -
is:open found bug OR is:open bug
- Find open issues with the word bug or found bug. Search -
is:open security issue
- Find open issues with the word security issue. Search
is:closed
- Find closed issues. Search
reason:"not planned"
- Find issues that are not planned. Search
-
is:open
- Find open pull requests. Search -
is:open found vulnerabilities OR is:open found vulnerability
- Find open pull requests with the word vulnerabilities. Search -
is:open vulnerable package
- Find open pull requests with the word vulnerable package. Search -
is:open found bug OR is:open bug
- Find open pull requests with the word bug or found bug. Search -
is:open security issue
- Find open pull requests with the word security issue. Search
-
is:closed
- Find closed pull requests. Search -
is:unmerged is:closed
- Find unmerged pull requests. Search -
is:merged is:closed
- Find merged pull requests. Search
-
package_type:docker
- Find docker packages. Search -
package_type:npm
- Find gem packages. Search -
package_type:nuget
- Find nuget packages. Search -
package_type:rubygems
- Find npm packages. Search
-
"fix" AND "bug"
- Find commits with the word fix and bug. Search -
"improvements"
- Find commits with the word improvements. Search -
"patch" AND "vulnerability"
- Find commits with the word patch and vulnerability. Search -
"merge pull request"
- Find commits that merge pull requests. Search -
"improve" OR "improvements"
- Find commits with the word improve or improvements. Search -
"fix" OR "fixes" OR "fixed"
- Find commits with the word fix, fixes or fixed. Search -
"update" OR "updates" OR "updated"
- Find commits with the word update, updates or updated. Search -
"add" OR "adds" OR "added"
- Find commits with the word add, adds or added. Search