Skip to content

Instantly share code, notes, and snippets.

@J3n5en
J3n5en / Frida_JD_COOKIE.js
Last active June 12, 2025 09:22
Frida_JD_COOKIE
@FreddieOliveira
FreddieOliveira / docker.md
Last active December 15, 2025 20:49
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android 🐋📱

Edit 🎉

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active December 11, 2025 06:30
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

Note: This gist may be outdated, thanks to all contributors in comments.

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

@Thesharing
Thesharing / CloudMusic-HiDPI.md
Created September 15, 2018 11:31
网易云音乐解决高DPI屏幕中显示模糊的问题

在“网易云音乐”的快捷方式上右击进入快捷方式“属性”选项卡中,在“目标”一栏的末尾添加--force-device-scale-factor=2,其中2为显示缩放比例(200%为2, 175%为1.75,以此类推)

然后进入“兼容性”选项卡,选择“更改高DPI设置”(17134版本),在“替代高DPI缩放行为。缩放执行”处选择“应用程序”,然后“确定”即可。

通过此快捷方式打开的网易云音乐界面缩放正常且不会模糊,但是托盘菜单由于仍然是Qt渲染的,因此字体会变得特别小。

参考:

网易云音乐 windows 版啥时候可以支持 high DPI 啊

@yougg
yougg / proxy.md
Last active December 10, 2025 08:12
complete ways to set http/socks/ssh proxy environment variables

set http or socks proxy environment variables

# set http proxy
export http_proxy=http://PROXYHOST:PROXYPORT

# set http proxy with user and password
export http_proxy=http://USERNAME:PASSWORD@PROXYHOST:PROXYPORT

# set http proxy with user and password (with special characters)
@PurpleBooth
PurpleBooth / README-Template.md
Last active December 15, 2025 05:33
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@monperrus
monperrus / feeding-mysql-database-with-bibtexbrowser.php
Last active July 28, 2022 08:21
Feeds a database with the content of a bibtex file parsed with bibtexbrowser
<?php
/* Feeds a database with the content of a bibtex file parsed with bibtexbrowser
* See: http://www.monperrus.net/martin/feeding-mysql-database-with-bibtexbrowser
* Author: Martin Monperrus
* Last Modification Date: July 2013
* Creation Date: Feb 2012
*/
// if exists, should contain define('DB_PASSWORD', 'dssizyrekzbqsf');, etc.
@include('conf.local.php');