Kim T

Results 102 comments of Kim T

Thanks Chris, glad the project is useful! I wasn't aware of Reflection functionality but found the documentation: _"The primary usecase for server reflection is to write (typically) command line debugging...

No problem! If I have time I will definitely investigate this though, seems like it could be a useful feature. The docker compose file makes it really quick and portable!...

I didn't try auth with it yet. If I have some time I will investigate!

Found this example using Ionic: https://medium.com/@christophewillemsen/voice-driven-mobile-apps-with-ionic-and-the-speech-recognition-cordova-plugin-8aa64ad5edcb https://github.com/ikwattro/ionic-speechy

This is a high warning, needs fixing!!

I forked this repo and added sass-loader support: https://github.com/kmturley/create-react-app-typescript/commit/896190a709b4dff393067ac30f63ae3b5bd23693 I pushed to npm as: https://www.npmjs.com/package/react-scripts-scss-ts Which means you can start apps using: `npx create-react-app react-typescript-scss-new --scripts-version=react-scripts-scss-ts`

One potential approach would be to create: * all.yml * linux.yml * macos.yml * window.yml Then put the create release only in the all.yml ``` name: All platforms on: push:...

Another approach is mentioned in this blog post: https://dev.to/eugenebabichenko/automated-multi-platform-releases-with-github-actions-1abg I got it to work for building a single release containing multiple binaries: ``` name: Release on: push: tags: - "v*"...

Looks like it might be possible using this third-party action: https://github.com/marketplace/actions/publish-release ``` jobs: release: runs-on: ubuntu-latest steps: - name: Create Draft Release id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN...

And another potential approach here: https://github.com/actions/virtual-environments/actions/runs/197846688/workflow ``` name: Update release on: repository_dispatch: types: [update-github-release] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Update release for ${{ github.event.client_payload.ReleaseBranchName }}...