In your browser, go to your search engines and place something like:
| Field | value |
|---|---|
| Name | Gist |
| Shortcut | @gist |
| URL with %s in place of query | https://gist.github.com/search?q=user:@me+%s&ref=opensearch |
In your browser, go to your search engines and place something like:
| Field | value |
|---|---|
| Name | Gist |
| Shortcut | @gist |
| URL with %s in place of query | https://gist.github.com/search?q=user:@me+%s&ref=opensearch |
| package main | |
| import ( | |
| "log" | |
| "os/exec" | |
| ) | |
| func main() { | |
| path, err := exec.LookPath("ls") | |
| if err != nil { |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
| /** | |
| * Saves a Blob object as a file with the specified filename. | |
| * | |
| * @param {Blob} blob - The Blob object to be saved. | |
| * @param {String} filename - The desired filename for the saved file. | |
| * @example | |
| * const foo = ` | |
| * NAME;DESCR | |
| * Foo;desc1 | |
| * bar;desc2 |