Skip to content

Instantly share code, notes, and snippets.

View Hoss3inf's full-sized avatar
🚀
Focusing

Hossein Farrokhi Hoss3inf

🚀
Focusing
  • Ragham
  • Shiraz, Iran
View GitHub Profile
@Hoss3inf
Hoss3inf / latest-android-studio-direct-link.txt
Last active October 20, 2021 09:19
latest android studio direct download link
@Hoss3inf
Hoss3inf / intent dumpl.java
Created March 10, 2020 07:18
dumping intent in android
Bundle bundle = intent.getExtras();
if (bundle != null) {
Set<String> keys = bundle.keySet();
Iterator<String> it = keys.iterator();
Log.e(TAG, "Dumping Intent start");
while (it.hasNext()) {
String key = it.next();
Log.e(TAG, "[" + key + "=" + bundle.get(key) + "]");
}
Log.e(TAG, "Dumping Intent end");
@Hoss3inf
Hoss3inf / awesome_commands.md
Created January 4, 2019 10:33
most useful commands in terminal

code -r something.js => opens the file in vscode

git checkout -b new_branch ==> start and swithc to a new branch

git add filename.extension // to add an specific file to the git git add foldername git add * // to add all files to new commit git commit -m 'my desired description for the commit' // commit to the current branch

git push -u origin