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
import { Injectable, OnDestroy } from '@angular/core'; | |
import { environment } from '@environments/environment'; | |
import * as LaunchDarkly from 'launchdarkly-js-client-sdk'; | |
import { LDFlagValue } from 'launchdarkly-js-client-sdk'; | |
import { Observable, Subject } from 'rxjs'; | |
import { map } from 'rxjs/operators'; | |
@Injectable({ | |
providedIn: 'root' | |
}) |
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
use std::env; | |
use std::error::Error; | |
use std::process; | |
use csv::Reader; | |
use serde::Deserialize; | |
#[derive(Debug, Deserialize)] | |
enum PassholderType { | |
Indego30, |
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
#!/bin/bash | |
# Key Me | |
# Author: Dave Russell (drussell393) | |
SSH_KEY='\n# --- LINODE PROFESSIONAL SERVICES ---\n | |
# jfred \n | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAEAQDvtG2CCNni8uQphPJ1n6K7+NwDTMMvvT7QMxWB5jYkx8LR4rKme8J7TyYlPKSUviiXzMFppuc0mroadEj95TTjCmHDloAMJOoeCnm15PTq1ApRInH4mzD06W3aNpgbQohCWGdpOnchG2t8LwAlP6gxvIGxq9Ttvh5YZ6U7T2XTTWXwFgE9iBfEygh0WwN5HqEL9gQV6P9MKFyiuCn0M5AOJd2b5+A7iBcREgI1+WSrEl6u54Hyvcrs5qsMyonSoGDk8gRuoXCp9yFvYZsEjqnL5nF1OesdsSbTZGwWUlrK97hyvBdRA8gOvU97mqh/s1wXxkyyGjIk0aq5qaBv6AprnV7OS6r8vO7h16P4zON5/WvQDhM4n2gd8nVOAsrge47jZSPvh9PlOwBRfnjiXD5ZYQXBWPJWG/eysIMfubdLEgAvzY3pEqJflsiGSFZBA6vF+TgiMA3kbVvCrVF9iR4zlq9KLvEiyVtT4cazTkvwb0UFqwiIWlXggjHyKZV+ZCRseFNa0owG95DALTXbcFrBkUiGqRZoWUizfxqvwWdgxs4czDDsWiU1eQLrb0B1aNM8GUgqCiio0hAHr4f7c0ib8JxhaQDhpUtAA6ew7mbtkvJfJ0ce97zP+D2WNLi14mZ1NvubTOGq5Tb9EpbLubu+Fdg6ZyA8Kv20t8B+9pIe/ZmzrmiG9Wx5tBrySQkIKcAAKy5ro5rmpCzngiLosPAEeUWYANmUQBLTRKaKmzvkrQ6fNbgOncCvVtAP6THf3HrU/OM2qL3sO2wvx0Wl98HrFt/zSck6wCG4HE4ieqIV5UTIw7OL/WlmGenNKOrB1Sq3k0jG92nCyDfbCEyfQl1Vn5GIw5czEg |
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
BIN = ./node_modules/.bin | |
SRC = $(wildcard src/*.coffee) | |
LIB = $(SRC:src/%.coffee=lib/%.js) | |
build: $(LIB) | |
lib/%.js: src/%.coffee | |
@mkdir -p $(@D) | |
@$(BIN)/coffee -bcp $< > $@ |