Skip to content

Instantly share code, notes, and snippets.

View rajadain's full-sized avatar

Terence Tuhinanshu rajadain

View GitHub Profile
@rajadain
rajadain / haskellbook-chapter-13-hangman.hs
Created September 19, 2017 01:44
Haskell Book Chapter 13
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
@rajadain
rajadain / bigcz-differing-dates.ipynb
Last active September 28, 2017 14:02
Notebook showing differing dates from CUAHSI
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rajadain
rajadain / bigcz-cocorahs-fail.ipynb
Created October 29, 2017 19:20
Demo of ULMO failure when fetching data for CoCoRAHS service
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.
@rajadain
rajadain / mmw-cli.py
Created November 14, 2017 17:53
MapShed CLI Test Query
from __future__ import print_function
import time
import requests
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
@rajadain
rajadain / haskellbook-chapter-22-exercises.hs
Last active December 20, 2017 22:31
Notes and exercises for Haskell Book Chapter 22: Reader
module ExerciseChapter22 where
import Control.Applicative
import Data.Maybe
x = [1, 2, 3]
y = [4, 5, 6]
z = [7, 8, 9]
xs :: Maybe Integer
@rajadain
rajadain / README.md
Last active September 4, 2018 17:52
subbasin-diff

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

@rajadain
rajadain / README.md
Created January 2, 2019 16:51
JSX Ternary Conditional Assignment

JSX Ternary Conditional Assignment

Straight

const legend = isCropLayerActive ? (
    <div
        className="layercontrol__legend"
        onMouseOver={disableMapZoom}
 onFocus={disableMapZoom}
@rajadain
rajadain / README.md
Last active February 18, 2019 23:05
MMW UtfGrid Visualizer

MMW UtfGrid Visualizer

Instructions

Have MMW running locally. Open this page. Hover over the map to highlight UTFGrid blocks.

Credits

Pieced together with ideas from:

@rajadain
rajadain / rename-s10-to-dropbox.ps1
Created October 13, 2019 12:51
Renames .MP4 files from Samsung Galaxy S10 filename style to Dropbox "Camera Upload" filename style
Get-ChildItem "." -Filter "*.mp4" | Foreach-Object {
$year = $_.BaseName.Substring(0, 4)
$month = $_.BaseName.Substring(4, 2)
$day = $_.BaseName.Substring(6, 2)
$hour = $_.BaseName.Substring(9, 2)
$minute = $_.BaseName.Substring(11, 2)
$second = $_.BaseName.Substring(13, 2)
$newName = "$($year)-$($month)-$($day) $($hour).$($minute).$($second)"