Michal Bryxí
Michal Bryxí
Current behaviour: When user clicks on "download project", they will get 1:1 copy of the twiddle which outside of the twiddle app does nothing. Expected behaviour: After downloading & unpacking...
I noticed that [somewhere around v3.14](https://github.com/ember-learn/guides-source/search?q=Contextual+Components&unscoped_q=Contextual+Components) the note about "Contextual components" has moved from "Wrapping content in a component" and in v3.19 it lives in section called [Patterns for Components](https://guides.emberjs.com/v3.19.0/in-depth-topics/patterns-for-components/)....
I noticed that [somewhere around v3.14](https://github.com/ember-learn/guides-source/search?q=Contextual+Components&unscoped_q=Contextual+Components) the note about "Contextual components" has moved from "Wrapping content in a component" and in v3.19 it lives in section called [Patterns for Components](https://guides.emberjs.com/v3.19.0/in-depth-topics/patterns-for-components/)....
I'm trying to user devise authenticator from ember-simple-auth together with [devise-token-auth](https://devise-token-auth.gitbook.io/devise-token-auth/config). The problem is that ember-simple-auth sends the data during `sign_in` namespaced according to set `resourceName` (default is `user`). So...
### Description Looking at the docs of [MachineOptions](https://xstate.js.org/docs/packages/xstate-fsm/#machine-options) and it mentions only `actions`. But from the [Configuring services](https://xstate.js.org/docs/guides/communication.html#configuring-services) part of the guides ```js const userMachine = createMachine( { // ......
**Description** Assume following machine: ```js import { createMachine } from 'xstate'; const machine = createMachine( { id: 'doorman', initial: 'idle', states: { idle: { on: { ACTIVE_MEETING: 'working', }, },...
As a project developer, I want to provide changelog to other developers (by convention in English) and to clients/end consumers (in their own native language). So that both developers and...
Consider following service: ```js var cachedFoo = null; export default Service.extend({ fetchFoo(count) { if(!cachedFoo) { fetch(`./api/?results=${count}`).then(function(response) { cachedFoo = response; }); } } getFoo() { return cachedFoo; } }); ```...
There is a section on [sorting](https://opensource.addepar.com/ember-table/docs/guides/header/sorting) and technical API doc on [ember-th/sort-indicator](https://opensource.addepar.com/ember-table/docs/api/components/ember-th/sort-indicator). From the composability perspective and utility frameworks (like tailwindcss) I think it would be good to have an...
1. Go to http://semantic-ui-forest.com/themes/ 2. Click on Download at *sandstone*, which reads: *semantic.sandstone.min.css* 3. Be redirected to https://github.com/semantic-ui-forest/forest-themes/blob/master/dist/bootswatch/semantic.sandstone.min.css, which is currently a 404 I believe this works with all the...