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
import {Cookie} from 'cookie'; | |
export class HttpUtility { | |
constructor() { | |
} | |
standardConfiguration(config) { | |
config |
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
#!/bin/bash | |
YELLOW='\033[0;33m' | |
YELLOW_BOLD='\033[1;33m' | |
BLUE='\033[0;34m' | |
BLUE_BOLD='\033[1;34m' | |
NC='\033[0m' # No Color | |
USER="thatuser" | |
IP="999.999.999.999" |
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
{ | |
"name": "bootstrap", | |
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", | |
"version": "4.0.0-alpha.2", | |
"keywords": [ | |
"css", | |
"sass", | |
"mobile-first", | |
"responsive", | |
"front-end", |
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
import {ValidationViewStrategy} from 'aurelia-validation/validation-view-strategy'; | |
export class CustomValidationViewStrategyBase extends ValidationViewStrategy { | |
constructor(containerClass, containerSuccessClass, containerErrorClass, appendClass, appendActiveClass) { | |
super(); | |
this.containerClass = containerClass; // The class for the container. | |
this.containerErrorClass = containerErrorClass; // What's the error class for the container | |
this.containerSuccessClass = containerSuccessClass; // What's the error class for the container | |
this.appendClass = appendClass; // Where we're appending the message |
NewerOlder