Credits to @TheOnlyAnil-@Firelord[^stackoverflow]
-
Requirements: a) stock recovery + rooted phone b) custom recovery
-
Files changed:
//------------------------------------------------------------------------------ | |
// pdbdump.c - dump symbols from .pdb and executable files (public domain). | |
// - to compile; cl.exe /Ox /Zi pdbdump.c | |
// - | |
// - Martin Ridgers, pdbdump 'at' fireproofgravy.co.uk | |
//------------------------------------------------------------------------------ | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <DbgHelp.h> |
//To fetch a branch, you simply need to: | |
git fetch origin | |
//This will fetch all of the remote branches for you. With the remote branches | |
//in hand, you now need to check out the branch you are interested in, giving | |
//you a local working copy: | |
git checkout -b test origin/test |
[CCode (cheader_filename = "frida-core.h", cprefix = "Frida", lower_case_cprefix = "frida_")] | |
namespace Frida { | |
public static void init (); | |
public static void shutdown (); | |
public static void deinit (); | |
public static unowned GLib.MainContext get_main_context (); | |
public class DeviceManager : GLib.Object { | |
public DeviceManager (); |
/* | |
Change Log: | |
v1.12 (2017-01-18) - Fixed OnExit not exiting | |
v1.11 (2017-01-17) - Added an internal function Ensure_Admin_And_Compiled() | |
v1.10 (2015-10-22) - Added support for sending characters that needs to press {shift} key, such as "@" or "A". | |
v1.00 (2015-07-25) | |
Dependency files: | |
WinRing0_v1.3.1.19.zip -- https://drive.google.com/file/d/0B7yNOlCgfluzMTE2UFc2ZHp5Z1E/view?usp=sharing |
# npm using https for git | |
git config --global url."https://github.com/".insteadOf [email protected]: | |
git config --global url."https://".insteadOf git:// | |
# npm using git for https | |
git config --global url."[email protected]:".insteadOf https://github.com/ | |
git config --global url."git://".insteadOf https:// |
! Title: Disqus click-to-load | |
# Copy-paste the static filters below into your "My filters" pane in the | |
# dashboard. | |
# Purpose is to load Disqus comments on demand only, so that no connection | |
# to `disqus.com` occurs by default when you land on a site which uses | |
# Disqus comments widget. | |
# Not connecting to Disqus by default is a good thing for such a | |
# ubiquitous server as `disqus.com`, which can be used to build a |
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Produced by Beyond Compare 4 from Scooter Software --> | |
<!-- | |
This is an extension of the work done by Nate Finch: | |
https://npf.io/2014/05/diffing-go-with-beyond-compare/ | |
The regular expressions for identifiers have been updated | |
to match on lowercase and allow numbers to be included anywhere | |
after the first character of the word. | |
// 2022-04-03, tested with Chrome 99.0.4844.84 on MacBook Pro m1 | |
/* | |
Open chrome://flags/ | |
F12 open developer console, swtich to tab "Console" | |
Paste below codes | |
- input backup() to download flags backup file | |
- input restore() to select one backup to restore | |
*/ | |
function saveFile(filename, data) { |