Hey Sayra!
Everything is working to perfection. Here’s what you have:
Top left
- Coda with
landing.view.html
andlanding.less
opened as tabs - File sidebar open to
Sayra/SquareknotWorkspace/Patrick/public_html/app/subapps/landing
Bottom left
Hey Sayra!
Everything is working to perfection. Here’s what you have:
Top left
landing.view.html
and landing.less
opened as tabsSayra/SquareknotWorkspace/Patrick/public_html/app/subapps/landing
Bottom left
Reference: https://help.github.com/articles/generating-ssh-keys/
Make sure you have an SSH key for your development machine.
# Confirm that "~/.ssh" exists and you see "id_rsa" and "id_rsa.pub" inside it
ls ~/.ssh/
# If .ssh doesn't exist or does not contain id_rsa/id_rsa.pub, then generate them:
ssh-keygen -t rsa -C "[email protected]"
define(function (require, exports, module) { | |
var Radio = require('backbone.radio'); | |
var logger = require('lib/util/logger')(module); | |
// Supports a declarative channelName and semi-custom channelEvents hash. | |
// Example: | |
// channelName: 'notify' | |
// channelEvents: { | |
// 'error': ['on', 'onError'], | |
// 'show:message': ['comply', 'showMessage'] |
var httpPatcher = function (http) { | |
// Patch http request() method to capture request | |
var originalRequestFn = http.request; | |
http.request = function (options, requestCb) { | |
console.log('>>> HTTP request >>>\n ' + options.method + ' ' + | |
(options.port === 443 ? 'https' : 'http') + '://' + options.host + options.path); | |
// Patch http request() callback to capture response | |
var originalRequestCb = requestCb; |
var RSVP = require('rsvp'); | |
var jQuery = require('jquery'); | |
// Log uncaught errors (important) | |
RSVP.on('error', function (reason) { | |
console.error((reason && reason.stack) || reason || 'Error'); | |
}); | |
// Shim the browser window with ES6 Promise | |
window.Promise = RSVP.Promise; |
state-domain-mn-architecture.js
is one approach to separating application state mangement from view state. Application state is maintainted centrally by "Domain Controllers" linked to an event bus that each manage a model or collection. Application state models are then passed into the view hierarchy. Views can use Marionette.State to express their own data needs and "sync" what they need from application state. A Marionette.State instance, in this approach, lives and dies with its View and also handles view events to establish uni-directional, closed-loop management of local view state.
For a more digestable view of Marionette.State's utility in terms of views, see the following JSBin, which addresses the utility of Marionette.State without an opinion about greater application state architecture. It is a working, slimmed-down example of a view spawning its own State instance that serves to consolidate what it needs from global application state models.
function testBoolean(boolean) { | |
var booleanCharArray = (function (str){ | |
var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char | |
var bufView = new Uint16Array(buf); | |
for (var i=0, strLen=str.length; i<strLen; i++) { | |
bufView[i] = str.charCodeAt(i); | |
} | |
return buf; | |
}(String(!!!!!!!boolean))); |
.user-list { | |
border: 1px solid grey; | |
padding: 20px; | |
} | |
.user-list__user { | |
align-content: space-around; | |
margin-top: 5px; | |
} |
function isPalindromePermutation(string) { | |
let counter = 0; | |
for (let i = 0; i < string.length; i++) { | |
const char = string[i]; | |
if (char === ' ') { | |
continue; | |
} | |
const charCodeNormalized = char.toLowerCase().charCodeAt(0) - 'a'.charCodeAt(0); |
{ | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"surname": { | |
"type": "string" | |
} | |
}, |