Skip to content

Instantly share code, notes, and snippets.

View argaghulamahmad's full-sized avatar
🎯
Focusing

Arga Ghulam Ahmad argaghulamahmad

🎯
Focusing
View GitHub Profile
@argaghulamahmad
argaghulamahmad / process of decompiling recompiling apk with APKTool and 7zip-zstd, zipalign, keytool and jarsigner.txt
Created June 17, 2020 23:11
process of decompiling recompiling apk with APKTool and 7zip-zstd, zipalign, keytool and jarsigner.txt
1. extract without source:
call "bin\apktool.cmd" --no-src d "myapp.apk"
2. modify Android.manifest - add:
android:debuggable="false" android:versionCode="90" android:versionName="3.3"
to
<application
get the versioncode and versionname information from 'apktool.yml',
the information is near the bottom of the file.
/* *******************************************************************************************
* GLOBAL CONFIG
* Vue.config is an object containing Vue’s global configurations.
* You can modify its properties listed below before bootstrapping your application.
* https://vuejs.org/v2/api/#Global-Config
* ******************************************************************************************* */
// Configure whether to allow vue-devtools inspection
Vue.config.devtools = true
@argaghulamahmad
argaghulamahmad / README.md
Created July 17, 2018 04:14 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@argaghulamahmad
argaghulamahmad / ubuntu-install-applications.md
Created September 24, 2017 06:49
Ubuntu 16.04 Unity configs and apps
@argaghulamahmad
argaghulamahmad / ubuntu_agnoster_install.md
Created September 23, 2017 11:44 — forked from renshuki/ubuntu_agnoster_install.md
Ubuntu 16.04 + Terminator + Oh My ZSH with Agnoster Theme

Install Terminator (shell)

sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator

Terminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").

Install ZSH

@argaghulamahmad
argaghulamahmad / zsh.md
Created September 23, 2017 02:41 — forked from tsabat/zsh.md
Getting oh-my-zsh to work in Ubuntu