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
6058 POMPANO ST , JUPITER,FL 33458 668bfd7585d388f9c552a505 | |
{ | |
"property_lat": 26.89557, | |
"property_lng": -80.128834, | |
"lat": 26.89557, | |
"lng": -80.128834, | |
"lng_match": true, | |
"lat_match": true | |
} | |
Updated coordinates for property 668bfd7585d388f9c552a505 to [-80.128834, 26.89557] |
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
{ | |
"results": [ | |
{ | |
"query": "18651 limestone creek rd, unincorporated, fl 33458", | |
"response": { | |
"input": { | |
"address_components": { | |
"number": "18651", | |
"street": "Limestone Creek", | |
"suffix": "Rd", |
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 align="center"> | |
<button onclick="runTests();">Run Tests</button> | |
| |
<button onclick="runBenchmark();">Run Benchmark</button> | |
</div> | |
<script src="testData.js"></script> | |
<script> | |
/** |
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
array:213 [ | |
0 => array:3 [ | |
"query" => "select count(*) as aggregate from `order_items` where `status` = ? and `order_items`.`deleted_at` is null" | |
"bindings" => array:1 [ | |
0 => "new" | |
] | |
"time" => 27.15 | |
] | |
1 => array:3 [ | |
"query" => "select * from `order_items` where `status` = ? and `order_items`.`deleted_at` is null order by `id` asc limit 40 offset 0" |
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
<mvt:item name="html_profile" /><head> | |
<title>&mvt:category:name; - DuskyOnline.com</title> | |
<base href="&mvt:global:baseurl;"> | |
<mvt:item name="head" param="head_tag" /> | |
</head> | |
<mvt:item name="body"> | |
<mvt:item name="toolkit" param="ctgyproduct_list|1000|brand.desc|1" /> | |
<mvt:item name="toolkit" param="trim" /> | |
<mvt:item name="toolkit" param="lasturl|url|http://www.duskyonline.com/mm5/merchant.mvc" /> |
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
require "rspec/autorun" | |
class MyHash < Hash | |
undef_method :fetch | |
# Implement the method fetch without using `super` | |
# HINT: replace star with the argument(s) you want | |
def fetch(key, value=NameError, &block) | |
(has_key?(key))? self[key] : return_value_or_raise_exception(value, &block) | |
end |
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
require "rspec/autorun" | |
class MyHash < Hash | |
undef_method :fetch | |
# Implement the method fetch without using `super` | |
# HINT: replace star with the argument(s) you want | |
def fetch(key, set_value=NameError, &block) | |
if has_key?(key) | |
self[key] |
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
require "rspec/autorun" | |
class MyHash < Hash | |
undef_method :fetch | |
# Implement the method fetch without using `super` | |
# HINT: replace star with the argument(s) you want | |
def fetch(key, set_value='', &block) | |
if self.has_key?(key) | |
self[key] |
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
require "rspec/autorun" | |
class MyHash < Hash | |
undef_method :fetch | |
# Implement the method fetch without using `super` | |
# HINT: replace star with the argument(s) you want | |
def fetch(key, set_value='') | |
if self.has_key?(key) | |
self[key] |
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
require "rspec/autorun" | |
class MyHash < Hash | |
undef_method :fetch | |
# Implement the method fetch without using `super` | |
# HINT: replace star with the argument(s) you want | |
def fetch(key, set_value=nil) | |
if key && self[key] | |
self[key] |
NewerOlder