David Alm
David Alm
Is it wise to do this: ```elixir schema "users" do # fields omitted has_many :posts, Posts.Post end ``` and ``` elixir def create_post(user, attrs \\ %{}) do Ecto.build_assoc( user, :posts,...
Greetings, Is this considered secure enough to let a random customer have a editor access? Or is the use case more of internal employee? I have not yet looked at...
Is there a way to let que know to ignore the :mnesia :dir config that I set for a different process? I had que working fine along with [Pow auth...
will flutter_crashlytics work with `flutter build appbundle` ? Thanks. Wasn't sure where to ask this.
**Is your feature request related to a problem? Please describe.** I'm looking for a couchdb (*not* couchbase) client for flutter, but I assume that fluttercouch will not work (because it's...
I just installed the plugin and (without reading instructions) used command --> word count..., and didn't notice that my cursor was in an existing note. So, it deleted the contents...
Could you please add a sentence to your Readme.md, (or send me a a reply) about why someone might want to choose Bow over Arc, or vice versa? Thanks.
Hi, is this being used anywhere in production? Thanks, David Alm
As far as I can tell, `fn spawn()` in `std.process.Child` uses (for Windows) essentially an internal STARTUPINFO object and populates it with some constants. For example, `spawn()` sets ` .wShowWindow...
I'm using [Milkdown](https://github.com/Milkdown/milkdown), which combines [remark, for markdown](https://github.com/remarkjs/remark/tree/main), with ProseMirror. Remark allows custom directives to add nodes, and I am adding `` and `` tags using directive like: ``` ::audio{src="/some/audio_file.wav"...