Skip to content

Instantly share code, notes, and snippets.

View Dareh123's full-sized avatar

Dar Dareh123

View GitHub Profile
@Dareh123
Dareh123 / permissions.txt
Created November 27, 2025 04:56 — forked from Arinerron/permissions.txt
A list of all Android permissions...
android.permission.ACCESS_ALL_DOWNLOADS
android.permission.ACCESS_BLUETOOTH_SHARE
android.permission.ACCESS_CACHE_FILESYSTEM
android.permission.ACCESS_CHECKIN_PROPERTIES
android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY
android.permission.ACCESS_DOWNLOAD_MANAGER
android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED
android.permission.ACCESS_DRM_CERTIFICATES
android.permission.ACCESS_EPHEMERAL_APPS
android.permission.ACCESS_FM_RADIO
@Dareh123
Dareh123 / Install Windows Subsystem for Android on any Edition of Windows 11 non Insider.md This Guide will show you how to Install Windows Subsystem for Android or WSA on any Edition of Windows 11 non Insider release.

Install Windows Subsystem for Android on Windows 11 non Insider

WSA or Windows Subsystem for Android is a Tool that allows Windows to run Android Apps directly without using any emulator. The problem is Windows Subsystem for Android is currently only available through preview via the Beta Channel of the Windows Insider Program. But if you follow this guide, you don't have to be in Windows Insider Program to try it out. The only thing you need is Windows 11 installed and some patience.

Prerequisites:

  • A Device with any version and Edition of Windows 11 installed.
  • Internet Connection.
  • Hyper-V enabled.

Enable Hyper-V:

@Dareh123
Dareh123 / gist:7b4b7ff04e0d8b1238a0cec9d25cc066
Created November 25, 2025 07:29 — forked from Tomer-EVM/gist:9a93a782fd20099d26965e435308e0b7
Deploy Private GitHub repo of Express, React or Django app in AWS EC2 with Domain and free SSL

Comprehensive Guide for Deploying Express, React, and Django Apps on AWS EC2 with SSL (Using Deploy Keys and PM2 for Express)

1. Launch an EC2 Instance

  1. Launch an EC2 instance on AWS with an appropriate configuration (Ubuntu, t2.micro, etc.) and ensure it is publicly accessible.
  2. Configure Security Groups:
    • Open ports 22 (SSH), 80 (HTTP), and 443 (HTTPS) to allow web traffic.
@Dareh123
Dareh123 / .vimrc
Created October 10, 2025 14:25 — forked from jakergrossman/.vimrc
Minimal CSV highlighting
func! s:init_groups_from_colors()
let colors = [ 'red', 'green', 'blue', 'magenta', 'NONE', 'darkred', 'darkblue', 'darkgreen', 'darkmagenta', 'darkcyan' ]
for ci in range(len(colors))
let cmd = 'highlight column%d ctermfg=%s guifg=%s'
exe printf(cmd, ci, colors[ci], colors[ci])
let cmd = 'highlight escaped_column%d ctermfg=%s guifg=%s'
exe printf(cmd, ci, colors[ci], colors[ci])
endfor
endfunc
@Dareh123
Dareh123 / andronix.md
Last active November 25, 2025 07:14 — forked from BenjaminWegener/andronix.md
install xfce debian in termux android
@Dareh123
Dareh123 / install_vino_ubuntu.md
Created July 27, 2025 20:10 — forked from boublinux/install_vino_ubuntu.md
Vino Installation (Vino is a GNOME Remote Desktop) Like vnc

source

Installation

GNOME

Install the vino package.

You need to restart GNOME so that vino-server is started automatically when enabling the remote desktop feature. The remote desktop feature can usually be enabled in Settings > Sharing, however this only seems to be functional when NetworkManager is installed and functional. Alternative Desktop Environments

@Dareh123
Dareh123 / Start your Docker
Created July 15, 2025 22:41 — forked from bargitta/Start your Docker
a step by step guide for kubernetes begineers
Hello! This guide is to help you start using kubernetes.
First, install the official docker on your OS. Take Ubuntu 17.04 as an example.
1. Add GPG key of the official docker repo to your system
#curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
2. Add docker repo to you APT source
#sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
3. Update your packages
{
"basics": {
"name": "Himprakash Deka",
"label": "AWS & Back-end Engineer",
"picture": "https://avatars.githubusercontent.com/u/61367380",
"email": "[email protected]",
"phone": "+91 8822884673",
"website": "https://himdek.com",
"summary": "A result-oriented AWS and Back-End Engineer with solid foundations in Python, Dart, C/C++, and C#. Capable of building scalable and optimized solutions for complex business problems. Experience with Full Stack Development, Cloud Computing, Mobile Application Development, and continuous integration tools. Actively seeking opportunities to grow and apply learned skills.",
"location": {
@Dareh123
Dareh123 / GitConfigHttpProxy.md
Created July 15, 2025 21:49 — forked from evantoli/GitConfigHttpProxy.md
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@Dareh123
Dareh123 / dump_wallet_addresses.py
Created July 4, 2025 09:38 — forked from provegard/dump_wallet_addresses.py
Python script for dumping wallet addresses and private keys
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------
# This software is in the public domain, furnished "as is", without technical
# support, and with no warranty, express or implied, as to its usefulness for
# any purpose.
#
# Usage:
# ./dump_wallet_addresses.py <wallet binary>
#