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
# This formula can be used in Excel to calculate KWSP/EPF 2024 Employer and Employee | |
A B C | |
Salary Majikan Pekerja | |
6000 720.00 660.00 | |
A2 | |
Enter salary |
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
1) Play with dockers | |
2) ssh and transfer *PS.pdf files | |
3) docker run -v $(pwd):/work mnuessler/pdftk | |
4) | |
docker run -v $(pwd):/work mnuessler/pdftk 213-Haslina-PS.pdf output 213-Haslina-PS-enc.pdf owner_pw xxxx user_pw yyyyy allow printing | |
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 java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Arrays; | |
import java.util.Date; | |
import java.util.HashMap; | |
class Solution { | |
/** |
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 | |
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
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
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 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
#!/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
/*==============================================================================*/ | |
/* 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'); |
NewerOlder