Peter Schilling

Results 26 comments of Peter Schilling

@drewdecarme appreciate the tip! that worked for me as well

oh wow, thanks so much for adding this! for anyone looking to add a keyboard shortcut, i expect it will work with this setup that works for me on chrome...

loses typing, but the `any` type will allow you to store nested data if you need to ```ruby typed_store :settings do |s| s.boolean :new_msg, default: true, null: false s.boolean :some_settings,...

@benlandsberg that is disappointing! i still have pocket setup with a keyboard shortcut: and if it's useful to you, and after some digging, i found this in my `defaults`: ```bash...

@benlandsberg oh interesting – i'm running macos ventura 13.0 (22A380) note that my "app shortcuts" doesn't list anything

@benlandsberg ah, i see now that you're using safari. yeah i have same issue as you do there. chrome and firefox still let me share as i demonstrated in my...

is it possible to use these changes before this is merged? i.e. by adding something to remix.config.js? or do i need to run a fork of remix until this is...

@machour thanks so much for this info! with [this patch](https://gist.github.com/schpet/9b74730b54eb5151173ce4e9c759ed2a) i was able to successfully get react-markdown working on remix deployed to cloudflare pages (and locally via wrangler)

i'm using astro and their [image service api with markdown files](https://docs.astro.build/en/guides/images/#images-in-markdown-files). to use the image service api images need to be stored in `src/content` and the markdown links to be...

i ended up getting this working by setting tina up to upload to src/assets ```ts // tina/config.ts export default defineConfig({ media: { tina: { mediaRoot: "src/assets", publicFolder: "", }, },...