One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| var express = require('express'); | |
| var session = require('express-session'); | |
| var cookieParser = require('cookie-parser'); | |
| var flash = require('connect-flash'); | |
| var app = express(); | |
| app.use(cookieParser('secret')); | |
| app.use(session({cookie: { maxAge: 60000 }})); | |
| app.use(flash()); |
| D/CordovaActivity(18223): onMessage(onPageStarted,file:///#!/sites) | |
| D/CordovaLog(18223): file:///#!/sites: Line 1 : Uncaught ReferenceError: start is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 2 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 3 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 4 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 5 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 6 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 7 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 8 : Uncaught ReferenceError: addRow is not defined | |
| D/CordovaLog(18223): file:///#!/sites: Line 9 : Uncaught ReferenceError: addRow is not defined |
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
| // This will only work in environments that support ES6 Proxies. | |
| // As of right now, that's pretty much only Firefox. | |
| function Refrigerator(foods) { | |
| this.foods = foods; | |
| return new Proxy(this, { | |
| get: function (receiver, name) { | |
| if (name in receiver) { |
| ::-moz-placeholder { | |
| color: red; | |
| font-weight: 300; | |
| padding-top: 5px; | |
| } | |
| ::-webkit-input-placeholder { | |
| color: red; | |
| font-weight: 300; | |
| padding-top: 5px; |
| describe('Test', function() { | |
| beforeEach(function() { | |
| module('App', function($provide) { | |
| $provide.constant('CSRF_TOKEN', 'MOCK_CONSTANT'); // <= mock your constant | |
| }); | |
| }); | |
| // Tests go here |
| gem install puma -- --with-cppflags=-I/usr/local/opt/openssl/include --with-ldflags=-L/usr/local/opt/openssl/lib |
| class AccountDictionary | |
| QUERY = "Select Id, Name from Account".freeze | |
| def initialize data_store | |
| @redis = Ost.redis | |
| @key = "accounts:#{data_store.id}" | |
| @sf_api = data_store.owner.credential_for(data_store.id).api # Angelica!!! | |
| end | |
| import Vex from 'vexflow'; | |
| import React, {Component} from 'react'; | |
| const { | |
| Accidental, | |
| Formatter, | |
| Stave, | |
| StaveNote, | |
| Renderer, |