- Two 96 7/8" x 25 5/8" Logan Counter Tops
- Eight 8" Corner Braces
- One 3/4" Plain Steel Square Tube
- Eight 1/4" x 5 1/2" Hex Bolts
- Eight 1/4" Fender Washers
- Eight Flush Screw in Bolts? (Couldn't find on HomeDepot website, but they are in the specialty hardware section…)
- Lots of screws to fit the Corner Braces
- 3 Packs of round Magnets
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
/** | |
* Forge Layout | |
* - - - - - - - | |
* First, let's explore some names: | |
* - Layout: This would be good for a top level, but not for lower level components | |
* - Container: Feels heavy handed | |
* - Box: Short and sweet. | |
* - Grid: Sounds like CSS Grid | |
* - Flex: Sounds like CSS Flex | |
* - Flow: I do like this option, but is it confused with `flex`? |
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
<?php | |
/** | |
* FollowUpBoss: Real Estate Lead Management Software. | |
* | |
* @author Gerald Leenerts | |
* @copyright Copyright (c) 2022, Enchant LLC. | |
* @license Property of Enchant LLC. All rights reserved. | |
* @prettier | |
*/ |
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
uploadFile () { | |
// CSV File | |
const csv = this.get("csv"); | |
// Data to pass to the server | |
let data; | |
// Option 1) Use FormData (preferred) | |
data = new FormData(); | |
data.append("csv", csv, "csv"); |
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
/* * * | |
* Just a quick tester to help with Rx testing... | |
* - - - | |
* Be sure to include in the jest config... | |
* "setupTestFrameworkScriptFile": "<rootDir>/{pathTo}/customMatchers.js", | |
* "testRunner": "<rootDir>/../node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js" | |
* - - - | |
* Usage...should be something similar to what is below (untested) | |
* | |
* const subject = new Rx.Subject(); |
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
import _ from 'lodash'; | |
import { Observable } from 'rx'; | |
import React, { PropTypes } from 'react'; | |
/* Connect Rx Stream to React Component | |
* - - - - - - - - - - - - - - - - - - - | |
* @param {func} | |
* | |
* @return {func} | |
* - @param {ReactComponent} |
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
// Run tests | |
function run_test(func) { | |
var j, s = 'asdfasdfasdf', name = func.name; | |
console.time(name); | |
for(j = 0; j <= 10000; j++) { | |
func(s); | |
} | |
console.timeEnd(name); | |
} |
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
=btn_color($primary) | |
$secondary: adjust-saturation(adjust-lightness($primary, 9), 37) | |
$tertiary: adjust-saturation(adjust-lightness($primary, 22), 5) | |
color: #ffffff | |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) | |
background-color: $primary | |
*background-color: $tertiary | |
+background-image(linear-gradient(top, $secondary, $primary)) | |
background-repeat: repeat-x |
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
casperjs google_search_location.js pizza 'phoenix, az' |
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
<div id="some_id" class="window"> | |
<!-- Some Html here... --> | |
<a href="#" class="close">Cancel</a> | |
</div> | |
<div id="mask"></div> |
NewerOlder