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 | |
# Forticlient SSL VPN Client / expect | |
# -------------------------------------------- | |
# CONFIGURATION | |
FORTICLIENT_PATH="" |
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
# run openemr from dockers - play-with-docker.com | |
# to run : http://play-with-docker.com/?stack=https://gist.githubusercontent.com/azizasm/a20ed88c2ce078417d167264908f1f3d/raw/1152b4083089cd1c8065538d81be3e58c52eaaa5/docker-compose.yml | |
# Use root/example as user/password credentials | |
version: '3.1' | |
services: | |
mysql: | |
restart: always | |
image: mysql |
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
# run tensorflow from dockers - play-with-docker.com | |
# to run : http://play-with-docker.com/?stack=https://gist.githubusercontent.com/azizasm/2e8ba3c81a3ba1811f17d48275d6d2b8/raw/docker-compose.yml | |
# Use root/example as user/password credentials | |
version: '3.1' | |
services: | |
tensorflow: | |
restart: always |
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
/*==============================================================================*/ | |
/* Casperjs script to extract / automate maybank2u transaction view */ | |
/* Requiremnt : Install casperjs from http://casperjs.org/ and PhantomJS */ | |
/* Requiremnt : Update maybank2u username and password below */ | |
/* To run : casperjs test mbb.js */ | |
/*==============================================================================*/ | |
var fs = require('fs'); |
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 | |
interactive= | |
filename=~/removePdfWatermark-WSJ2.sh | |
bfile=$(basename $1) | |
#cd /home/osboxes/ZysProj/pdf |
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
VERSION BUILD=9030808 RECORDER=FX | |
TAB T=1 | |
SET !EXTRACT_TEST_POPUP NO | |
URL GOTO=https://www.maybank2u.com.my/mbb/m2u/common/M2ULogin.do?action=Login | |
FRAME F=1 | |
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:loginForm ATTR=ID:input-rounded CONTENT=username123 | |
WAIT SECONDS=3 | |
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:loginForm ATTR=ID:replacement-4 |
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
version: '3.1' | |
services: | |
tensorflow: | |
restart: always | |
image: cloudera/quickstart:latest | |
# container_name : zys | |
ports: | |
- 8020:8020 | |
# environment: | |
# MYSQL_ROOT_PASSWORD: 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
version: '3.3' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: somewordpress |
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
# run tensorflow from dockers - play-with-docker.com | |
# to run : http://play-with-docker.com/?stack=https://gist.githubusercontent.com/azizasm/42e1e8d2330b4e347d39831ea5db15a9/raw/raw/docker-compose.yml | |
# Use root/example as user/password credentials | |
version: '3.1' | |
services: | |
tensorflow: | |
restart: always |
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
git clone https://github.com/spring-guides/gs-spring-boot-docker.git | |
cd gs-spring-boot-docker/initial | |
docker run -it --rm -v "$(pwd)":/opt/maven -w /opt/maven maven:3.6.0-jdk-8 ./mvnw package | |
docker run -it --rm -v "$(pwd)":/opt/maven -w /opt/maven maven:3.6.0-jdk-8 java -jar target/gs-spring-boot-docker-0.1.0.jar | |
cp target/gs-spring-boot-docker-0.1.0.jar app.jar | |
OlderNewer