https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/
- install adb tools
- list devices
adb devices
- access shell
adb shell
- Command grep app namespace
{ | |
"compilerOptions": { | |
"jsx": "react", | |
"target": "ES6", | |
"allowSyntheticDefaultImports": true, | |
"baseUrl": "./", | |
"paths": { | |
"@app/*": ["app/*"], | |
"@internals/*": ["internals/*"] | |
} |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"profiles": { |
https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/
adb devices
adb shell
// create a bookmark and use below code (w/o comments) as the URL, you can now toggle the css on/off | |
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3 | |
javascript: (function() { | |
var elements = document.body.getElementsByTagName('*'); | |
var items = []; | |
for (var i = 0; i < elements.length; i++) { | |
if (elements[i].innerHTML.indexOf('* { background:#000!important;color:#0f0!important;outline:solid #f00 1px!important; background-color: rgba(255,0,0,.2) !important; }') != -1) { | |
items.push(elements[i]); | |
} | |
} |
To make it works like a charm, or just works nearly-like a Mac environment, or just an adaptive for a PC 10 years old, instead disable too much features as tweak registry keys, or some tips like Windows 7 optimization.
package services | |
import ( | |
"database/sql" | |
"reflect" | |
"regexp" | |
"testing" | |
"github.com/DATA-DOG/go-sqlmock" | |
"github.com/volatiletech/sqlboiler/boil" | |
) |
; put this content into ~/.gitconfig | |
[core] | |
editor = 'code' --wait | |
[url "ssh://redirect-to-somewhere"] | |
insteadOf = https://scm-git-private.server.com/ | |
[alias] | |
; https://dev.to/nishina555/how-to-ignore-files-already-managed-with-git-locally-19oo |