Peter Richards
Peter Richards
it runs the command in bash which may make some of the commands fail and you just see "error". This fixed it for me, after much struggle to get a...
What's the point of the ```cast_attatchements``` helper? I want to be able to do some stuff with the file in my changeset. Right now, purely by having my schema as...
My routes work fine unless they are nested more than one level deep. If I have this: ``` ... ``` I get errors on that page: ``` The script from...
I don't see any docs on creating a subscription request, but I followed the same pattern as query/mutations (which are both working, so it's not a server issue). Here's my...
Not sure why, but it adds a `\` to the beginning if the css selector in the CSS file. It'll turn: ``` .something {} ``` into ``` \.something {} ```...
## Lapce Version 0.2.6 ## System information MacOS 13.2 (22D49) M1 16GB Ram ## Describe the bug Because there's no `lapce path/to/project` command line tool, I found the file in...
Here is an example of how I would think to set this up. ``` class User: CoreStoreObject { @Field.Stored("username") var username: String = "" @Field.Relationship("postLikes", inverse: \.$user) var postLikes: [PostLike]...
``` extension Defaults.Keys { static let foo = Key("foo", default: 1) } ``` Here I have some option that defaults to 1, but is optional. ``` Defaults[.foo] // => 1...
**Describe the bug** This is probably a very low urgency thing, and I only noticed it because I was playing around with invisible characters. It puts the repl in an...
I'm using this JS lib to add an emoji picker. `https://github.com/joeattardi/emoji-button` I want you use this Elixir lib to validate the emoji being send is an emoji, and only a...