Skip to content

Instantly share code, notes, and snippets.

View mkmark's full-sized avatar

Mark Ma mkmark

View GitHub Profile
@J3n5en
J3n5en / Frida_JD_COOKIE.js
Last active June 29, 2024 21:38
Frida_JD_COOKIE
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active July 26, 2024 13:03
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 July 25, 2024 02:20
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 July 26, 2024 11:55
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');