Build | Buy | |
---|---|---|
Pro |
|
|
Con | High opportunity costs to buildHigh maintenance costsGenerally poor user experienceTakes months to build rightHigh risks for incorrect resultsHave to build trustNo self-service front end testingEngineering often required to implement tests | Ongoing subscription costs - some platforms can be expensiveLimited integration with code baseYet another |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Welcome to Growth Book - Sign in or register</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(config && "internalOptions" in config) { | |
var leeway = config.internalOptions.leeway; | |
if (leeway) { | |
var convertedLeeway = parseInt(leeway); | |
if (!isNaN(convertedLeeway)) { | |
config.internalOptions.leeway = convertedLeeway; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Author: Jan Kassens | |
* | |
* Guess the results and run it in Firebug | |
* If you got all right with the first try you're a JS Samurai (Ninja is overused) | |
*/ | |
var tasks = { | |
'try/finally': function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var PrettyForms = new Class({ | |
Implements: [Options, Events], | |
options: { | |
parentId: 'articlepoll', //only look within this element | |
initClass: 'fancyform', //check for this class on input elements (radio only so far) | |
listenClass: 'pollrow', //the class on the element on which to attach the click event (ie, the row, or label) | |
//the following are for making the UE prettier: classes or colors to add/fade to when events happen (* note, the colors here could be replaced morphing from one class to another, but I assumed that is slow- though might not be *) | |
listenHoverClass: 'rowhover', // class to add to the listen element on hover | |
listenCheckedClass: 'rowchecked', // class to add to the listen element when radio is checked. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Flext - A Mootools Based Flexible TextArea Class | |
* version 1.0 - for mootools 1.2 | |
* by Graham McNicoll | |
* | |
* Copyright 2008-2009 - Education.com | |
* License: MIT-style license. | |
* | |
* Features: | |
* - Grows text areas when needed |