Step 1: Install VeraCrypt from https://www.veracrypt.fr
To create a file as a encrypted container select Create an encrypted file container
.
#!/bin/bash | |
# ================================================================================ | |
# This script will push source code to two repositories at a time to maintain the | |
# same commit history. | |
# Version: 1.0 | |
# | |
# Coded by: | |
# Md. Mahmudul Hasan Shohag | |
# [email protected] |
/** | |
* Difference between with, run, let, also and apply in Kotlin. | |
* | |
* Official doc: https://kotlinlang.org/docs/scope-functions.html#functions | |
* | |
* Awesome blog posts: | |
* - https://www.journaldev.com/19467/kotlin-let-run-also-apply-with | |
* - https://medium.com/@fatihcoskun/kotlin-scoping-functions-apply-vs-with-let-also-run-816e4efb75f5 | |
* - https://medium.com/@elye.project/mastering-kotlin-standard-functions-run-with-let-also-and-apply-9cd334b0ef84 | |
*/ |
import android.annotation.SuppressLint; | |
import android.content.ContentUris; | |
import android.content.Context; | |
import android.database.Cursor; | |
import android.net.Uri; | |
import android.os.Build; | |
import android.os.Environment; | |
import android.provider.DocumentsContract; | |
import android.provider.MediaStore; |
#!/bin/bash | |
xrandr --newmode $(cvt 1920 1080 60 | grep Mode | sed -e 's/.*"/1920x1080/') 2> /dev/null | |
xrandr --addmode VGA-1 1920x1080 | |
xrandr --output VGA-1 --mode 1920x1080 |
#!/bin/bash | |
# ================================================================================ | |
# This script will push source code to other repository. | |
# Version: 1.0 | |
# | |
# Coded by: | |
# Md. Mahmudul Hasan Shohag | |
# [email protected] | |
# github.com/ImaginativeShohag |
To create a file as a encrypted container select Create an encrypted file container
.
import java.util.List; | |
import okhttp3.MultipartBody; | |
import okhttp3.RequestBody; | |
import retrofit2.Call; | |
import retrofit2.http.Multipart; | |
import retrofit2.http.POST; | |
import retrofit2.http.Part; | |
public interface ApiInterface { |
import okhttp3.OkHttpClient; | |
import okhttp3.logging.HttpLoggingInterceptor; | |
import retrofit2.Retrofit; | |
import retrofit2.converter.gson.GsonConverterFactory; | |
public class ApiClient { | |
private static Retrofit retrofit = null; | |
private static OkHttpClient buildClient() { |
<?php | |
/** | |
* Gist by: | |
* Md. Mahmudul Hasan Shohag | |
* [email protected] | |
* | |
* Help Doc: | |
* - https://firebase.google.com/docs/cloud-messaging/http-server-ref | |
* | |
* How to get FCM Server Kay: |