Skip to content

Instantly share code, notes, and snippets.

View denzveloper's full-sized avatar
🎯
Focusing

init.DzEN denzveloper

🎯
Focusing
View GitHub Profile
@denzveloper
denzveloper / ZTE-F609.md
Created September 3, 2025 02:27 — forked from ndunks/ZTE-F609.md
Manual help untuk Modem Indihome TELNET ZTE F609

Telnet Manual Modem Indihome

Saya sering lupa, jadi tulis aja di gist.

Login Root via Telnet

telnet 192.168.1.1
login: root

pass : Zte521

@denzveloper
denzveloper / clone_root_disk.md
Created March 3, 2025 13:05 — forked from keilmillerjr/clone_root_disk.md
Cloning a Root Disk (Linux)

Cloning a Root Disk (Linux)

Preface

You need to create a bootable live disk to clone your disk. You can not copy a partition that is mounted. If you do not have internet access, use gparted. Otherwise, it might be better to use your operating systems live installer, such as Manjaro. We can download gparted and still have things like a web browser incase we get stuck. We will be using the Manjaro live disk for this guide.

Create a bootable live disk

  1. Download Manjaro.
  2. Insert USB disk.
@denzveloper
denzveloper / [Pi-Hole_Docker]docker-compose.yml
Last active January 8, 2025 08:44
Pi-Hole Docker Compose
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
- "8080:80/tcp"
@denzveloper
denzveloper / InstallingXRDP.md
Created September 1, 2023 10:51 — forked from valorad/InstallingXRDP.md
Installing xrdp

Ubuntu:

sudo apt install xrdp 
sudo adduser xrdp ssl-cert 
sudo systemctl restart xrdp

Fedora:

#!/usr/bin/env bash
#
# Neofetch config file
# https://github.com/dylanaraps/neofetch
# See this wiki page for more info:
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
print_info() {
prin "$(color 5)>>$(color 12) デンデイー オクタビアン $(color 5)<<"
<?php
header('Content-Type: application/json'); // Jadiin html format dokumen JSON
// Allow from any origin
//CORS --first
if (isset($_SERVER['HTTP_ORIGIN'])) {
// should do a check here to match $_SERVER['HTTP_ORIGIN'] to a
// whitelist of safe domains
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
{
"info": {
"_postman_id": "12267d94-9900-4bf4-a6ee-6dc6875299de",
"name": "Magang - 001 Copy",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Android (1) - Register",
"request": {
@denzveloper
denzveloper / index.md
Created April 24, 2019 16:22
Creating Login, Register page with Ionic

Create new Ionic project with blank template

ionic start login blank
cd login
ionic g provider authService
ionic g page register
ionic g page login
@denzveloper
denzveloper / x.sh
Created April 23, 2019 12:55 — forked from danharper/x.sh
building an ionic/cordova android app on ubuntu. actually using circle, but needed to test something out on a fresh box
# starting with a Ubuntu 14 box on AWS
# increase swap
# https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
sudo fallocate -l 4G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
ls -lh /swapfile
sudo mkswap /swapfile