I hereby claim:
- I am wahibhaq on github.
- I am wahibhaq (https://keybase.io/wahibhaq) on keybase.
- I have a public key whose fingerprint is E9FA E44B 8590 33A8 7A9B D585 0FD2 82B0 F238 F839
To claim this, I am signing this object:
/** | |
* This will help us to test our networking code while a particular API is not implemented | |
* yet on Backend side. | |
*/ | |
class MockInterceptor : Interceptor { | |
override fun intercept(chain: Interceptor.Chain): Response { | |
if (BuildConfig.DEBUG) { | |
val uri = chain.request().url().uri().toString() |
I hereby claim:
To claim this, I am signing this object:
#This code will help in renaming multiple files in a folder in a specific format. | |
# e.g $ ./customfilerename test/ will convert all files to Image0, Image1, Image2 etc. | |
# folder: no trailing slash $1 | |
folder=$1 | |
index=0; | |
files=`ls -1 $folder` | |
for file in $files ; do |