Skip to content

Instantly share code, notes, and snippets.

View dhenandi's full-sized avatar

mdhenandi dhenandi

View GitHub Profile
pip install tensorflow==2.4.0
pip install opencv-python
pip install keras
pip install imageAI
from imageai.Detection import ObjectDetection
@dhenandi
dhenandi / pfdel
Created January 16, 2020 16:53
This is pfdel for delete queue on postfix or zimbra
#!/usr/bin/perl -w
#
# pfdel - deletes message containing specified address from
# Postfix queue. Matches either sender or recipient address.
#
# Usage: pfdel <email_address>
#
use strict;
# use warnings;
@dhenandi
dhenandi / change-logo-zimbra.yml
Last active August 30, 2019 02:18
Ansible Playbook untuk Mengubah Logo Zimbra OSE
- hosts: mailbox-server
become: yes
remote_user: ubuntu
tasks:
- name: Buat direktori jika belum ada
file:
path: /opt/zimbra/jetty/webapps/zimbra/logos/
state: directory
owner: zimbra
group: zimbra
@dhenandi
dhenandi / Tunnelling OpenVPN.adoc
Last active July 29, 2019 15:57
Tutorial OpenVPN untuk Tunneling

Tunnelling OpenVPN.adoc

Berikut adalah topologi dari Lab:

Internet --------VPN Server (172.104.182.135) -----DIAL----- Web Server Lokal
@dhenandi
dhenandi / docker-compose.yml
Created November 28, 2018 14:11
Docker Compose File to Run MariaDB and phpMyAdmin
version: "2"
services:
db:
container_name: mariadb
hostname: mariadb
image: mariadb
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: testDB
@dhenandi
dhenandi / docker-compose.yml
Last active November 28, 2018 13:59
Docker Compose File to run MySQL and phpMyAdmin
version: "2"
services:
db:
container_name: mysql
hostname: mysql
image: mysql
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: testDB