This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package matcher_test | |
import ( | |
"fmt" | |
"github.com/golang/mock/gomock" | |
. "github.com/onsi/ginkgo" | |
. "github.com/onsi/gomega" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { google } = require('googleapis'); | |
const config = { | |
auth_scopes: [ | |
'https://www.googleapis.com/auth/drive.activity.readonly', | |
], | |
} | |
async function activity_for({ ancestorName, itemName }) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
type Loc struct { X, Y int } | |
func (l Loc) Neighbors() []Loc { | |
neighbors := make([]Loc, 0, 8) |
OlderNewer