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
function text_replace() { | |
case "${OSTYPE}" in | |
darwin*) PLATFORM="OSX" ;; | |
linux*) PLATFORM="LINUX" ;; | |
bsd*) PLATFORM="BSD" ;; | |
*) PLATFORM="UNKNOWN" ;; | |
esac | |
if [[ "${PLATFORM}" == "OSX" || "${PLATFORM}" == "BSD" ]]; then | |
find $1 -type f -name $2 -exec sed -i "" "s/$3/$4/g" {} + |
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/sh | |
[[ -n $DEBUG ]] && set -x | |
set -eou pipefail | |
usage() { | |
cat <<"EOF" | |
USAGE: | |
kubetool : show this message | |
kubetool ctx get : gets the current context |
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
/// <summary> | |
/// More information on cache headers can be found here: | |
/// | |
/// https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching | |
/// | |
/// The important ones: | |
/// | |
/// no-store: | |
/// | |
/// The cache should not store anything about the client request |
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
public static class Tests | |
{ | |
public const string Integration = "IntegrationTests"; | |
} | |
public class IntegrationTestApplicationFactory : WebApplicationFactory<Startup> | |
{ | |
protected override IWebHostBuilder CreateWebHostBuilder() | |
{ | |
return new WebHostBuilder() |
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
function text_replace() { | |
case "${OSTYPE}" in | |
darwin*) PLATFORM="OSX" ;; | |
linux*) PLATFORM="LINUX" ;; | |
bsd*) PLATFORM="BSD" ;; | |
*) PLATFORM="UNKNOWN" ;; | |
esac | |
if [[ "${PLATFORM}" == "OSX" || "${PLATFORM}" == "BSD" ]]; then | |
find artifacts/ -type f -name "*.yml" -exec sed -i "" "s/$1/$2/g" {} + |
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
/** | |
* Determines if the the current window is within an iframe | |
* in a safe cross browser model. | |
* | |
* @returns {Boolean} True if in an iframe, else false. | |
*/ | |
inIframe() { | |
try { | |
return window.self !== window.top; | |
} catch (e) { |
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
export interface IanaTimezone { | |
group: string; | |
timezone: string; | |
label: string; | |
} | |
export const IANA_TIMEZONES = [ | |
// UTC+14:00 | |
{ group: 'UTC+14:00', timezone: 'Pacific/Kiritimati', label: 'Pacific/Kiritimati (+14)' }, | |
// UTC+13:00 |
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
/** | |
* Regex source: https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address | |
*/ | |
const EMAIL_REGEX = /[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*/g; | |
/** | |
* Parse a list of valid emails from the specified text. | |
* | |
* @param {String} text The string of email addresses to parse. | |
* @returns {[{email: String, name: String}]} |
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
kind: Ingress | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: redirect-ingress | |
annotations: | |
ingress.kubernetes.io/configuration-snippet: | | |
if ($host ~ ^(.+)\.somedomain\.io$) { | |
return 301 https://$1.domain.io$request_uri; | |
} | |
spec: |
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 { ISecurityService } from './security'; | |
import * as moment from 'moment-timezone'; | |
const UTC_DATE_PARSE: string = 'YYYY-MM-DD'; | |
export const DEFAULT_TIMEZONE: string = 'UTC'; | |
/** | |
* Provides time zone, date conversion and formatting support | |
* based on the user's preferences. | |
*/ |