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
| root@ip-172-31-6-203:/var/lib/docker# cat repositories-aufs | |
| {"Repositories":{}} | |
| root@ip-172-31-6-203:/var/lib/docker# cat repositories-devicemapper | |
| {"Repositories":{"freevision/phantomjs":{"latest":"596c486eb6cdc0a05b9911b2f0c07c3ef9827871513a5e798cb248e0190b01eb"}}} | |
| root@ip-172-31-6-203:/var/lib/docker# docker images -a | |
| REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE |
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
| <?xml version="1.0" ?> | |
| <device> | |
| <deviceProtocol>SIP</deviceProtocol> | |
| <sshUserId>root</sshUserId> | |
| <sshPassword>cisco</sshPassword> | |
| <devicePool> | |
| <dateTimeSetting> | |
| <dateTemplate>M/D/YA</dateTemplate> | |
| <timeZone>Central Standard/Daylight Time</timeZone> | |
| <ntps> |
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
| group 'sk.freevision.myservice' | |
| version '1.0.0-SNAPSHOT' | |
| apply plugin: 'java' | |
| sourceCompatibility = 1.8 | |
| repositories { | |
| mavenCentral() | |
| } |
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
| package sk.freevision.probase.config; | |
| import org.springframework.context.annotation.Configuration; | |
| @Configuration | |
| //@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class}) | |
| public class Config { | |
| // @Bean(name = "metaDataSource") | |
| // @Primary |
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
| const _ = require('lodash'); | |
| function printKeys(key, obj, parentKeyPath = '') { | |
| const keyPath = `${parentKeyPath}.${key}`; | |
| console.log(keyPath); | |
| if (_.isArray(obj) && !_.isEmpty(obj)) { | |
| printKeys(key, _.head(obj), keyPath); | |
| } else if (_.isObject(obj)) { | |
| const firstKey = _.head(_.keys(obj)); |
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
| apiVersion: v1 | |
| kind: PersistentVolume | |
| metadata: | |
| name: test-volume | |
| spec: | |
| capacity: | |
| storage: 1Gi | |
| accessModes: | |
| - ReadWriteOnce | |
| hostPath: |
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
| class Throttler | |
| attr_reader :period | |
| attr_reader :value | |
| attr_reader :block | |
| def initialize(period) | |
| @period = period | |
| @first_time = nil | |
| @value = nil | |
| @block = proc { } |
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
| set $session_check_ssi off; | |
| set $session_secret Eeko7aeb6iu5Wohch9Loo1aitha0ahd1; | |
| set $session_storage cookie; | |
| access_by_lua_block { | |
| local opts = { | |
| redirect_uri_path = "/auth", | |
| discovery = "https://keycloak.freevision.sk/auth/realms/rancher-elk/.well-known/openid-configuration", | |
| client_id = "nginx", | |
| client_secret = "2cfde6f9-4283-456a-9f13-1b803482db9a" |
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
| /* | |
| Usage: | |
| CustomRoute(page: SomewPage, transitionsBuilder: CustomTransitions.withoutShadow) | |
| */ | |
| import 'dart:ui'; | |
| import 'package:flutter/foundation.dart'; |
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
| { | |
| "dependencies": { | |
| "@tailwindcss/aspect-ratio": "^0.2.0", | |
| "@tailwindcss/forms": "^0.2.1", | |
| "@tailwindcss/typography": "^0.3.1", | |
| "autoprefixer": "^10.1.0", | |
| "postcss": "^8.2.2", | |
| "tailwindcss": "^2.0.1-compat" | |
| }, | |
| "devDependencies": {} |