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
@w00tzenheimer
w00tzenheimer / Hyper-V in Windows 10 and Windows 11 Home Edition.md
Created October 27, 2025 22:56 — forked from HimDek/Hyper-V in Windows 10 and Windows 11 Home Edition.md
Hyper-V is supported in Pro, Enterprise and Education Edition of Windows 10 and Windows 11. This guide will show you how to enable Hyper-V in Home Editions of Windows 10 and Windows 11.

Hyper-V in Windows 10 and Windows 11 Home Edition

Hyper-V in Windows 10 and Windows 11 allows running Virtual Machine. It is supported only in Pro, Enterprise and Education Edition of Windows 10 and Windows 11 by default. But this guide will show you how to enable it in Home Editions of Windows 10 and Windows 11.

Check if virtualization is enabled:

  • Search for Command Prompt in Windows Start Menu and open it.
  • Type systeminfo and press Enter. Wait for the process to finish
  • Once the results appear, search for the Hyper-V Requirements section which is usually the last one. 11
    • If it says A hypervisor has been detected. Features required for Hyper-V will not be displayed. that means Hyper-V is already enabled and there is no reason following this guide anymore.
  • Otherwise, check for Virtualization Enabled in Firmware:.
@Dareh123
Dareh123 / andronix.md
Last active November 25, 2025 07:14 — forked from BenjaminWegener/andronix.md
install xfce debian in termux android
@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
@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 / copilot-metrics-dashboard-instructions.md
Created May 26, 2025 00:20 — forked from ayodejiayodele/copilot-metrics-dashboard-instructions.md
Setup Instructions for GitHub Copilot Metrics Power BI Dashboard

Copilot Metrics Dashboard (Power BI Version)

This guide provides step-by-step instructions for deploying the Copilot Metrics Dashboard in your environment.

English | Español |

Setup Instructions

To use this report, ensure you have Power BI Desktop installed or access to the Power BI online service.

@Tomer-EVM
Tomer-EVM / gist:9a93a782fd20099d26965e435308e0b7
Last active November 25, 2025 07:29 — forked from HimDek/gist:ebaeac76babd871c68ebd7c4162ae1ba
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.
@HimDek
HimDek / Hyper-V in Windows 10 and Windows 11 Home Edition.md
Last active December 3, 2025 12:10
Hyper-V is supported in Pro, Enterprise and Education Edition of Windows 10 and Windows 11. This guide will show you how to enable Hyper-V in Home Editions of Windows 10 and Windows 11.

Hyper-V in Windows 10 and Windows 11 Home Edition

Hyper-V in Windows 10 and Windows 11 allows running Virtual Machine. It is supported only in Pro, Enterprise and Education Edition of Windows 10 and Windows 11 by default. But this guide will show you how to enable it in Home Editions of Windows 10 and Windows 11.

Check if virtualization is enabled:

  • Search for Command Prompt in Windows Start Menu and open it.
  • Type systeminfo and press Enter. Wait for the process to finish
  • Once the results appear, search for the Hyper-V Requirements section which is usually the last one. 11
    • If it says A hypervisor has been detected. Features required for Hyper-V will not be displayed. that means Hyper-V is already enabled and there is no reason following this guide anymore.
  • Otherwise, check for Virtualization Enabled in Firmware:.
@HimDek
HimDek / Kali Linux GUI on Termux Android.md
Last active November 17, 2025 02:07
This Guide will help you install Kali Linux in Android, that too with a GUI Desktop Environment within Android. It uses Termux to run Kali Linux in Android with XFCE4 Desktop Environment and a Tight VNC Server, which we connect to using a VNC Viewer app in Android.

How to install Kali Linux GUI Desktop in Android using Termux:

This Guide will help you install Kali Linux in Android, that too with a GUI Desktop Environment within Android. It uses Termux to run Kali Linux in Android with XFCE4 Desktop Environment and a Tight VNC Server, which we connect to using a VNC Viewer app in Android.

Just Follow these steps to install Kali Linux with XFCE4 Desktop GUI in Android using Termux:

  • Download and install Termux in Android. (Play Store release is no more updated, so is not recommended.)
  • Open Termux and run the following commands:
    apt update && apt install python python2 openssh -y
    
@jarvisniu
jarvisniu / 01.hello-world.c
Last active July 15, 2025 22:44
opengl-step-by-step
// gcc 01.hello-world.c -o 01.hello-world && ./01.hello-world
#include <stdio.h>
int main(int argc, char ** argv) {
printf("Hello World!");
return 0;
}