Skip to content

Instantly share code, notes, and snippets.

View bhavyathacker's full-sized avatar
🏠
Working from home

bhavyathacker

🏠
Working from home
View GitHub Profile
@bhavyathacker
bhavyathacker / gitignore
Created October 19, 2019 12:53
gitignore pattern for Android Studio Project
*.iml
*.iml.*
.gradle
*build
*.idea
*.log
*.apk
local.properties
.DS_Store
/captures
git tag -am "annotation goes here" tagname_goes_here # cut a tag
git tag -d tagname_goes_here # burn it
git tag -am "annotation goes here" tagname_goes_here # cut another tag
git push --tags # push tags to remote
git push origin :refs/tags/tagname_goes_here # delete tag from remote
@bhavyathacker
bhavyathacker / README.md
Created October 19, 2019 12:26 — forked from joyrexus/README.md
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@bhavyathacker
bhavyathacker / ffmpeg.md
Created October 19, 2019 12:23 — forked from protrolium/ffmpeg.md
using ffmpeg to extract audio from video files

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:

@bhavyathacker
bhavyathacker / svn_to_git.rst
Created October 19, 2019 12:10 — forked from epicserve/svn_to_git.rst
Convert SVN Repositories to Git Repositories

Convert SVN Repositories to Git Repositories

This guide on how to convert an SVN repository to a git repository was mostly taken from John Albin Wilkins post on Converting a Subversion repository to Git.

1. Retrieve a list of all Subversion committers