- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
-
This shows the steps needed to get Ember Simple Auth to work with Ember Engines as if they are the same application
-
Things to note
- engine login page needs to
transitionToExternal('login')
- login has to be passed in as an external route to the engine
- session and cookie services both need to be passed into engine
- sessionAuthenticated function needs to be overwritten in the Application Controller of the Engine
- engine login page needs to
-
in /app/app.js add to const engines object { [Engine Name]: dependencies }
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
Use Python to:
- send a plain text email
- send an email with attachment
- receive and filter emails according to some criteria
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'section', | |
classNames: [ 'i18n-demo' ], | |
i18n: Ember.inject.service(), | |
beenClicked: false, | |
text: Ember.computed('i18n.locale', function() | |
{ |
Service Worker - offline support for the web
- Service Worker - Revolution of the Web Platform
- The Service Worker is Coming - Look Busy (vid)
- Service Workers: Dynamic Responsive Images using WebP Images
- Is Service Worker ready?
Progressive apps - high-res icon, splash screen, no URL bar, etc.
This is a list of Ember components that can hopefully inspire your own solution to handle some really common cases. Please let me know of more.
Ember.LOG_BINDINGS = true; | |
var App = window.App = Ember.Application.create({ | |
LOG_STACKTRACE_ON_DEPRECATION : true, | |
LOG_TRANSITIONS : true, | |
LOG_TRANSITIONS_INTERNAL : true, | |
LOG_VIEW_LOOKUPS : true, | |
LOG_ACTIVE_GENERATION : true | |
}); |
/** | |
* `Ember.MergedArray` is an array that observes multiple other arrays (called source arrays) for changes and includes | |
* all items from all source arrays in an efficient way. | |
* | |
* Usage: | |
* | |
* ```javascript | |
* var obj = Ember.Object.create({ | |
* people: [ | |
* { |