Ægir Örn Símonarson
Ægir Örn Símonarson
I had the same result the first time I tried to add a custom menu to Electron and for the life of me could not figure out what was causing...
Same here for a fresh svelte-kit app with tailwindcss added to it with [svelte-add](https://github.com/svelte-add/tailwindcss) but I have the default config and a tailwind.config.cjs
@pyromaniac Person.find("0320cdfa-04d2-11e1-a1a1-14dae903e06a") dose not work with the current released version. I have tryed it withe mysql and sqlite.
**db/migrate/20140817181933_create_products.rb** ``` ruby class CreateProducts < ActiveRecord::Migration def change create_table :products, :id => false do |t| t.uuid :id, :primary_key => true t.string :name t.timestamps end end end ``` **app/models/product.rb** ```...
@brrd I see your point. What about validating if a link is properly defined? Like when you for get to define the link and only have `[link]` or `[link text][link]`...
Now I think it is time to add support for [setImmediate](https://nodejs.org/api/timers.html#timers_setimmediate_callback_args) sine node.js seem to have a stable version of it.
Not to bash on anyone. And I know it is tough to maintain a project like this and compete with FB.com and all the other big boys. But I feel...
When I added `testEnvironment: 'node'` as @shayneo suggested to a new project. I got the tests running but the following error. ```shell > [email protected] test /home/agirorn/code-play/vue-webpack > npm run unit...
Thanks, @epoberezkin for the fast feedback, but I have not gotten this to work either so I created a sample project that demonstrates the issue when I try to use...
You can turn it off with this ``` javascript mockery.enable({ warnOnUnregistered: false }); ```