Skip to content

Instantly share code, notes, and snippets.

View FergusDevelopmentLLC's full-sized avatar

Will Carter FergusDevelopmentLLC

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.3.1/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.3.1/mapbox-gl.css' rel='stylesheet' />
<style>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
longitude latitude name address
-73.957604 40.970705 Target - Closter, 29 Vervalen St,Closter,NJ,07624 ,#3235,,(201) 367-1405
-73.984204 40.813341 Target - Edgewater, 543 River Rd,Edgewater,NJ,07020 ,#1263,(201) 402-0252
-74.034421 40.732154 Target - Jersey City, 100 14th St,Jersey City,NJ,07310 ,#1886,(201) 499-0017
-74.020897 40.803218 Target - North Bergen Commons, 7101 Tonnelle Ave,North Bergen,NJ,07047 ,#1865,(201) 520-1701
-74.040189 40.898616 Target - Hackensack, 630 Main St,Hackensack,NJ,07601 ,#1330,(201) 678-0599
-74.055815 40.915021 Target - Paramus, 900 Bergen Town Ctr,Paramus,NJ,07652 ,#2381,(201) 881-7660
-77.080696 38.948693 Target - Tenleytown, 4500 Wisconsin Ave NW,Washington,DC,20016 ,#3351,(202) 292-5573
-77.032761 38.928854 Target - Columbia Heights, 3100 14th St NW,Washington,DC,20010 ,#2259,(202) 777-3773
-77.026947 38.984516 Target - Georgia and Eastern, 7828 Georgia Ave NW,Washington,DC,20012 ,#3328,(202) 892-1305
We can't make this file beautiful and searchable because it's too large.
longitude,latitude,name,address
-149.74033,61.230989,"SUBWAY-Anchorage,AK","1118 N Muldoon Rd| [Tikahtnu Commons SC]| Anchorage,AK 99504|907-770-1167| Restaurant #39626"
-149.908322,61.195421,"SUBWAY-Anchorage,AK","1307 W Northern Lights, Anchorage,AK 99503|907-274-7827, Restaurant #14372"
-149.857713,61.108509,"SUBWAY-Anchorage,AK","1330 Huffman Rd, Anchorage,AK 99515|907-345-5711, Restaurant #4802"
-149.830095,61.181119,"SUBWAY-Anchorage,AK","2715 E Tudor Road, Anchorage,AK 99508|907-563-7827, Restaurant #19135"
-149.827845,61.209778,"SUBWAY-Anchorage,AK","2801 DeBarr Rd [Alaska Regional Hospital], Anchorage,AK 99508|907-222-6754, Restaurant #27668"
-149.868494,61.192206,"SUBWAY-Anchorage,AK","3104 Seward Hwy, Anchorage,AK 99503|907-258-7827, Restaurant #3379"
-149.887888,61.217433,"SUBWAY-Anchorage,AK","320 W 5th Ave [5th Ave Mall-roomVC2], Anchorage,AK 99501|907-222-1542, Restaurant #23397"
longitude latitude name address
-86.148735 39.687542 123 Barbershop 7 Salon 5425 S East Street, Indianapolis IN
-85.991033 39.824812 2nd Chance Barbershop 3726 N Mitthoefer Road, Indianapolis IN
-86.198016 39.860362 421 Barber Shop 5870 Michigan Road, Indianapolis IN
-86.011137 39.833358 42nd Barber 8944 E 42nd Street, Indianapolis IN
-86.10947 39.911718 4 59 Barber Lounge 3407 E 86th Street, Indianapolis IN
-87.275549 38.048852 4-B Barber Shop 212 S 2nd Street, Boonville IN
-85.299393 41.02926 A 1 Barber Lounge 12016 Blaceberry Drive, Fort Wayne IN
-86.244408 39.858389 A-1 Cuttz 5758 Big Oak Drive, Indianapolis IN
-86.238929 39.816669 A1 Cutz 4715 W 34th Street, Indianapolis IN
@FergusDevelopmentLLC
FergusDevelopmentLLC / quickSort.js
Last active March 19, 2021 07:18
quickSort.js
const quickSort = (targetArray, lowIndex, highIndex) => {
const swap = (targetArray, lowIndex, highIndex) => {
let temp = targetArray[lowIndex]
targetArray[lowIndex] = targetArray[highIndex]
targetArray[highIndex] = temp
}
//pivotElement will be the value of the element closest to the middle of the array
let pivotElement = targetArray[Math.floor((highIndex + lowIndex) / 2)]//middle element
longitude latitude
-149.858384 61.21755
-149.85796 61.108444
-149.732706 61.221371
-149.832372 61.181187
-149.823633 61.219353
-149.732719 61.192846
-149.88113 61.192426
-149.950832 61.137056
-149.936781 61.181524
longitude latitude name
-121.225442 38.185269 Elaine Mary Dornton Dvm
-121.133995 38.213676 Pioneer Equine Hospital Inc
-118.161607 34.490262 Cindy R & Don J Scholten
-118.197207 34.469054 Reid R Loken Dvm
-118.223169 34.495733 Animal Acres
-118.753117 34.144485 Country Hills Pet Hospital
-118.758002 34.152187 Keith Berry Dvm
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>U.S. Congressional Districts</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/2.1.1/mapbox-gl.js'></script>
<link href='https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/2.1.1/mapbox-gl.css' rel='stylesheet' />
<style>
body {
margin: 0;