A collection of docker online resources. Source
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
{ | |
"CODE": 200, | |
"STATUS": "SUCCESS" | |
"MESSAGE": ** | |
"TOTAL_RECORDS": 18, | |
"RESPONSE":[ | |
"UNIQUE_QUERY_ID": "2012487827", | |
"QUERY_TYPE": "W", | |
"QUERY_TIME": "2021-12-08 12:47:25", | |
"SENDER_NAME": "Arun", |
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 | |
# This script belongs in /usr/lib/udev/bluetooth and should be executable | |
PA_SINK='alsa_output.platform-bcm2835_AUD0.0.analog-stereo' | |
LOG_FILE=/var/log/bluetooth_a2dp | |
MAC=$(echo "$NAME" | sed 's/:/_/g' | sed 's/\"//g') | |
# Set the user you want to run as, 'pi' would be fine for most. | |
BT_USER=btaudio |
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 | |
IMG_PHP="tutum/apache-php:latest" | |
IMG_DB="mysql:latest" | |
CONT_DB="mysql_container" | |
CONT_PHP="php_container" | |
PASS_DB="clavedatabase" | |
DIR_SRC=$PWD"/src" | |
DB_DIR=$PWD"/data" | |
DB_NAME="database_name" |
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
<!DOCTYPE HTML> | |
<!-- | |
/* | |
* Remote File Copy Demo 1.0 | |
* | |
* Copyright 2012, Sebastian Tschan | |
* https://blueimp.net | |
* | |
* Licensed under the MIT license: | |
* http://www.opensource.org/licenses/MIT |
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
var tracer = {}; | |
(function() { | |
tracer.levels = {}; | |
tracer.levels.DEBUG = 1; | |
tracer.levels.INFO = 2; | |
tracer.levels.WARN = 3; | |
tracer.levels.ERROR = 4; | |
tracer.levels.OFF = 5; | |
tracer.allTracers = []; |