GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.
| package main | |
| import ( | |
| "fmt" | |
| "sync" | |
| ) | |
| var wg sync.WaitGroup | |
| func first(wait <-chan struct{}) { |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/awalterschulze/gographviz" | |
| ) | |
| func main() { | |
| g := gographviz.NewGraph() |
| ffmpeg -i input.mp4 -b:v 1M -vf chromakey=0x00FF00:0.2:0.2 -c:v libx264 -pix_fmt yuva420p -metadata:s:v:0 alpha_mode="1" -auto-alt-ref 0 output.webm |
| /** | |
| * Prints all possible combinations of values that could appear after rolling the dice. | |
| */ | |
| function diceRoll(dice: number, chosen: number[]) { | |
| if (dice == 0) { | |
| // Base case, print. | |
| console.log(chosen); | |
| } else { | |
| for (let i = 1; i <= 6; i++) { |
| package main | |
| import ( | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "strings" | |
| ) |
GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.
| { | |
| "search": [ | |
| { | |
| "prefix": "g", | |
| "search_url": "https://google.com/search?q={0}" | |
| }, | |
| { | |
| "prefix": "ado", | |
| "search_url": "https://dev.azure.com/msft-twc/?search={0}" | |
| } |
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |