Wednesday, February 26, 2020

Tutorial Install DNS over TLS pada OpenWRT

DNS over TLS digunakan untuk melakukan enkripsi pada request DNS sehingga bisa mencegah serangan Man in the Middle Attack atau mencegah censorship dari pihak ISP. Notes : Tutorial ini menggunakan resolver dari cloudflare, resolver ini bisa diganti sesuai keinginan Untuk...
Share:

Iterasi date di python 3

Contoh iterasi untuk tanggal di python 3 import datetime import sys from datetime import timedelta, date def daterange(start_date, end_date):     for n in range(int ((end_date - start_date).days)):              yield start_date + timedelta(n)  #fungsi dengan perulangan diatas digunakan untuk...
Share:

Monday, February 24, 2020

Setting Printer POS58 pada Ubuntu 19.10

 Pastikan CUPS sudah terinstall  Download driver pada website http://www.zjiang.com/en/init.php/service/driver , pilih driver Linux Extract , lalu jalankan file install58 Buka halaman http://localhost:631  Pada navidagtion pilih printer...
Share:

Cara tambah user baru di mysql dan update privileges

Login sebagai root mysql -u root -p Buat username dan password  mysql baru CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'user_password'; Beri privileges ke akun yang dibuat, ada beberapa privileges untuk mysql yaitu: ALL PRIVILEGES – Grants all privileges to a user account. CREATE – The user account is allowed to create...
Share:

This Blog is protected by DMCA.com