curl --request POST \
--url https://dev-####.okta.com/api/v1/users \
--header 'authorization: SSWS <TOKEN>' \
--header 'content-type: application/json' \
--data '{
"profile": {
"firstName": "Jane",
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
dummy gist |
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
function sync() { | |
var secondaryCalIds = []; | |
secondaryCalIds.push("[email protected]"); | |
secondaryCalIds.push("[email protected]"); | |
var primaryEventTitle = "Personal Appointment"; | |
var eventBufferMinutes = 20; | |
var eventBufferMs = eventBufferMinutes * 60 * 1000; | |
var visiblity = CalendarApp.Visibility.PUBLIC; | |
var color = CalendarApp.EventColor.YELLOW; |
This script tries to make it easy to test changes in a go project by:
- Identifying what packages have been changed within your current git branch
- Finding all the packages that depend on those packages
- Merging those two lists of packages together
- Runs
go test
on those packages
This makes it easy to ensure your changes have not broken any compile-time dependencies, and that all existing tests are passing.