I hereby claim:
- I am jameshenry on github.
- I am jameshenry (https://keybase.io/jameshenry) on keybase.
- I have a public key ASBRbGY2oH7HHVhFJa2mSPxt5C6czJrN8pejQn4tGVmkUgo
To claim this, I am signing this object:
| //Menu: Convert HEIC Images to JPEG or PNG | |
| const FileType = await npm('file-type'); | |
| const convert = await npm('heic-convert'); | |
| // Seems to be no way to get this from the env... | |
| const SCRIPT_NAME = 'convert-heic'; | |
| const SCRIPT_KIT_OUTPUTS_DIR = '/Users/james/ScriptKit Outputs'; | |
| // NOTE: Not rendering custom placeholder, reported here: https://github.com/johnlindquist/kit/discussions/332#discussioncomment-960487 |
| //Menu: Convert HEIC Images to JPEG or PNG | |
| const FileType = await npm('file-type'); | |
| const convert = await npm('heic-convert'); | |
| // Seems to be no way to get this from the env... | |
| const SCRIPT_NAME = 'convert-heic'; | |
| const SCRIPT_KIT_OUTPUTS_DIR = '/Users/james/ScriptKit Outputs'; | |
| // NOTE: Not rendering custom placeholder, reported here: https://github.com/johnlindquist/kit/discussions/332#discussioncomment-960487 |
| //Menu: Convert HEIC Images to JPEG or PNG | |
| const FileType = await npm('file-type'); | |
| const convert = await npm('heic-convert'); | |
| // Seems to be no way to get this from the env... | |
| const SCRIPT_NAME = 'convert-heic'; | |
| const SCRIPT_KIT_OUTPUTS_DIR = '/Users/james/ScriptKit Outputs'; | |
| // NOTE: Not rendering custom placeholder, reported here: https://github.com/johnlindquist/kit/discussions/332#discussioncomment-960487 |
| /** @type {import("@johnlindquist/kit")} */ | |
| // Menu: Say Hello World Shortcut | |
| // Description: Trigger macOS Monterey Shortcut from Script Kit | |
| // Author: James Henry | |
| // Twitter: @MrJamesHenry | |
| /** | |
| * I have created a Shortcut on my Mac running macOS Monterey called | |
| * "Say Hello World". |
| /** @type {import("@johnlindquist/kit")} */ | |
| // Menu: Say Hello World Shortcut | |
| // Description: Trigger macOS Monterey Shortcut from Script Kit | |
| // Author: James Henry | |
| // Twitter: @MrJamesHenry | |
| /** | |
| * I have created a Shortcut on my Mac running macOS Monterey called | |
| * "Say Hello World". |
I hereby claim:
To claim this, I am signing this object:
| import { Injectable } from 'ng-metadata/core' | |
| import { Action } from '@ngrx/store' | |
| interface SomePayload { | |
| baz: string | |
| } | |
| /** | |
| * Instead of passing around action string constants and manually recreating | |
| * action objects at the point of dispatch, we create services encapsulating |
| import { Component } from 'ng-metadata/core'; | |
| @Component({ | |
| selector: 'my-app', | |
| template: '<h1>My First Angular 1 App <small>with ng-metadata!</small></h1>' | |
| }) | |
| export class AppComponent { } |