This file contains hidden or 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
| map = new google.maps.Map(document.getElementById('map'), { | |
| zoom: 8, | |
| center: new google.maps.LatLng(43.946515, -72.677099), | |
| mapTypeId: 'roadmap', | |
| mapTypeControl: false, | |
| streetViewControl: false, | |
| fullscreenControl: false, | |
| gestureHandling:'cooperative', | |
| styles: [ | |
| { |
This file contains hidden or 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
| state | plusminus2014 | |
|---|---|---|
| Mississippi | -13.3 | |
| Arkansas | -12.5 | |
| Alabama | -12.2 | |
| South Dakota | -12.0 | |
| Kentucky | -11.3 | |
| West Virginia | -11.1 | |
| Ohio | -10.7 | |
| Missouri | -10.6 | |
| Oklahoma | -9.9 |
This file contains hidden or 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
| def isLeapYear(year): | |
| if year % 4 == 0: | |
| if year % 100 == 0 and year % 400 != 0: | |
| return False | |
| else: | |
| return True | |
| else: | |
| return False |
This file contains hidden or 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
| def isLeapYear(year): | |
| if year % 4 == 0: | |
| if year % 100 == 0 and year % 400 != 0: | |
| return False | |
| else: | |
| return True | |
| else: | |
| return False |
This file contains hidden or 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> | |
| <meta charset="utf-8"> | |
| <head> | |
| <link rel="stylesheet" href="vtOverdoses.css" type="text/css" charset="utf-8"> | |
| <script src="https://d3js.org/d3.v3.min.js"></script> | |
| <script src = "https://code.jquery.com/jquery-3.1.0.min.js"> | |
| </script> | |
| </head> |
This file contains hidden or 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
| delegate | num | note | |
|---|---|---|---|
| district delegates | 11 | Allegiances decided in March 1 primaries | |
| super delegates | 10 | Vote for whomever they choose | |
| additional delegates | 5 | Chosen by the district delegates at a June 11 meeting |
This file contains hidden or 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
| State | milPounds | |
|---|---|---|
| California | 42337 | |
| Wisconsin | 27795 | |
| Idaho | 13873 | |
| New York | 13733 | |
| Pennsylvania | 10683 | |
| Texas | 10310 | |
| Michigan | 9609 | |
| Minnesota | 9127 | |
| New Mexico | 8105 |
This file contains hidden or 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> | |
| <meta charset="utf-8"> | |
| <title>USA Map</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| background-color: rgb(0, 9, 129); | |
| font-family: serif; | |
| } |
This file contains hidden or 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 lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>U.S. Regional Milk Production, 1970-2014</title> | |
| <script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
| <style type="text/css"> | |
| body { | |
| margin: 0; |
This file contains hidden or 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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="description" content="$1"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Books per Capita at Vermont Libraries</title> | |
| <script type="text/javascript" src="http://d3js.org/d3.v3.js"></script> | |
| <style type="text/css"> | |
| body { |