const legend = isCropLayerActive ? (
<div
className="layercontrol__legend"
onMouseOver={disableMapZoom}
onFocus={disableMapZoom}Diff in Subbasin results of "South Branch Rancocas Creek, HUC-10 Watershed ID 0204020202" between baseline (production) and post-land use change in WikiWatershed/model-my-watershed#2944
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
| module ExerciseChapter22 where | |
| import Control.Applicative | |
| import Data.Maybe | |
| x = [1, 2, 3] | |
| y = [4, 5, 6] | |
| z = [7, 8, 9] | |
| xs :: Maybe Integer |
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
| from __future__ import print_function | |
| import time | |
| import requests | |
| class bcolors: | |
| HEADER = '\033[95m' | |
| OKBLUE = '\033[94m' | |
| OKGREEN = '\033[92m' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| module Main where | |
| import Control.Monad (forever) | |
| import Data.Char (toLower) | |
| import Data.Maybe (isJust) | |
| import Data.List (intersperse, nub) | |
| import System.Exit (exitSuccess) | |
| import System.Random (randomRIO) | |
| import System.IO |
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
| -- 11-exercise-phone.hs | |
| module ExercisePhone where | |
| import Data.Char | |
| import Data.List | |
| import Data.Maybe | |
| type Key = Char | |
| type Presses = Int |
Notes and Exercises from Chapter 10 of Haskell Book
[1, 2, 3] ++ undefined :