- du -sk
This file contains 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
"data": { | |
"item1": { | |
"inventoryLevel": { | |
"available": 25 | |
}, | |
"userErrors": [] | |
}, | |
"item2": { | |
"inventoryLevel": { |
This file contains 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
mutation { | |
inventoryBulkAdjustQuantityAtLocation( | |
locationId: "gid://shopify/Location/1", | |
inventoryItemAdjustments: [ | |
{inventoryItemId: "gid://shopify/InventoryItem/1", availableDelta: 1}, | |
{inventoryItemId: "gid://shopify/InventoryItem/2", availableDelta: 10} | |
]) { | |
inventoryLevels { | |
available |
This file contains 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
Duplicated Merchant Bookings | |
#triggers | |
on new booking creation | |
for any duplicated bookings that occurs within an hour since new booking cr | |
eation | |
✓ marks previous booking as duplicated | |
✓ marks booking of `task_type` = `GoMessenger` | |
✓ marks booking that is of same `comment` | |
✓ marks booking that is of same `poi_id` |
This file contains 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
export const Permissions = { | |
ActiveEnergyBurned: "ActiveEnergyBurned", | |
AppleExerciseTime: "AppleExerciseTime", | |
BasalEnergyBurned: "BasalEnergyBurned", | |
BiologicalSex: "BiologicalSex", | |
BloodGlucose: "BloodGlucose", | |
BloodPressureDiastolic: "BloodPressureDiastolic", | |
BloodPressureSystolic: "BloodPressureSystolic", | |
BodyFatPercentage: "BodyFatPercentage", | |
BodyMass: "BodyMass", |
This file contains 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
brew cleanup --prune=0 | |
rm -rf /var/folders/* | |
See also: `brew cleanup --prune=0` to reclaim disk space. | |
And `rm -rf /var/folders/*` to remove orphaned temp files. |
- du -sk
- To download vgo
$ go get -u golang.org/x/vgo
- To build lockfile
$ vgo build ./...
This file contains 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
type errTwo struct{} | |
func (errTwo) Error() string { | |
return "errTwo" | |
} | |
type errOne struct{} | |
func (errOne) Error() string { | |
return "errOne" |
This file contains 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
type errTwo struct{} | |
func (errTwo) Error() string { | |
return "errTwo" | |
} | |
type errOne struct{} | |
func (errOne) Error() string { | |
return "errOne" |