Skip to content

Instantly share code, notes, and snippets.

View AnwarKamel's full-sized avatar
🎯
Focusing

Anwar Kamel Ouail AnwarKamel

🎯
Focusing
View GitHub Profile
@levlaz
levlaz / font-awesome-and-laravel.md
Last active March 4, 2025 23:54
How To Use Font Awesome With Laravel

For some reason there is a whole thread on this seemingly simple tasks. In a bootstrapped Laravel 5.4 instance the following worked for me.

Install Font Awesome with NPM

npm install font-awesome

Import font-awesome in your app.scss file

@vxhviet
vxhviet / saveToExternalStorage.md
Last active March 3, 2024 20:19
Android saving Bitmap to external storage.

Source: StackOverflow

Question: How do I save Bitmap to extrenal storage in Android?

Answer:

Use this function to save your bitmap in SD card:

public void saveTempBitmap(Bitmap bitmap) {
        if (isExternalStorageWritable()) {