- প্রশ্নঃ 2898 => মেসওয়াকের ফযীলত এবং তা কতটুকু লম্বা হতে হবে?
- প্রশ্নঃ 2897 => হারাম কাজে ডেকোরেশন সামগ্রী ভাড়া দেয়া যাবে কি?
- প্রশ্নঃ 2896 => বাবা মাকে না জানিয়ে বিয়ে ও বিবাহপূর্ব গোনাহ থেকে তওবার বিধান!
- প্রশ্নঃ 2895 => বিতর নামাযে রুকু থেকে উঠে দুআয়ে কুনুতের কথা মনে পড়লে কী করবে?
- প্রশ্নঃ 2894 => বিধর্মীদের সাথে বন্ধুত্ব করার হুকুম কী?
- প্রশ্নঃ 2893 => নাজায়েজ কাপড় তৈরী ও নারী কর্মী দিয়ে গার্মেন্টস ব্যবসা করা শরীয়ত সম্মত?
- প্রশ্নঃ 2892 => বন্ধককৃত দোকান বন্ধকগ্রহীতা ব্যবহার করতে পারবে?
- প্রশ্নঃ 2891 => স্ত্রীর যৌনাঙ্গে আঙ্গুল প্রবেশ করালে কি স্ত্রীর উপর গোসল ফরজ হয়?
- প্রশ্নঃ 2890 => পপি তথা আফিম চাষ করা এবং তা বিক্রি করে উপার্জন করার হুকুম কী?
- প্রশ্নঃ 2889 => [মান্নতের গহনা নানুর বো
View ahlehaqmedia.md
View alehaqmedia.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title":"মেসওয়াকের ফযীলত এবং তা কতটুকু লম্বা হতে হবে?", | |
"link":"https://ahlehaqmedia.com/11064/" | |
}, { | |
"title":"হারাম কাজে ডেকোরেশন সামগ্রী ভাড়া দেয়া যাবে কি?", | |
"link":"https://ahlehaqmedia.com/11043/" | |
}, { | |
"title":"বাবা মাকে না জানিয়ে বিয়ে ও বিবাহপূর্ব গোনাহ থেকে তওবার বিধান!", | |
"link":"https://ahlehaqmedia.com/11055/" |
View enable_nativebridge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/system/bin/sh | |
PATH=/system/bin:/system/xbin | |
houdini_bin=0 | |
dest_dir=/system/lib$1/arm$1 | |
binfmt_misc_dir=/proc/sys/fs/binfmt_misc | |
if [ -z "$1" ]; then | |
if [ "`uname -m`" = "x86_64" ]; then |
View Ubuntu Software.md
JDK 8/9 install
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java9-installer
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
View Java 8 Thread.md
Java 8 Thread Create
class Main
{
public static void main(String args[])
{
Runnable task = () -> {
String threadName = Thread.currentThread().getName();
System.out.println(threadName);
};
View Pthread Qt.md
C Project
Proj.pro
QMAKE_CXXFLAGS += -std=c++0x -pthread
LIBS += -pthread
main.c
#include <stdio.h>
#include <stdlib.h>
View MinGW Compatible VCC 11 Headers.md
C++ MinGW & VCC 11 Compatible Headers
// Utilities library
#include <cstdlib> // General purpose utilities: program control, dynamic memory allocation, random numbers, sort and search
#include <csignal> // Functions and macro constants for signal management
#include <csetjmp> // Macro (and function) that saves (and jumps) to an execution context
#include <cstdarg> // Handling of variable length argument lists
#include <typeinfo> // Runtime type information utilities
#include <typeindex> // (since C++11) std::type_index
#include <type_traits> // (since C++11) Compile-time type information
View Visual C++ 11 Headers.md
Visual C++ All Headers
// Utilities library
#include <cstdlib> // General purpose utilities: program control, dynamic memory allocation, random numbers, sort and search
#include <csignal> // Functions and macro constants for signal management
#include <csetjmp> // Macro (and function) that saves (and jumps) to an execution context
#include <cstdarg> // Handling of variable length argument lists
#include <typeinfo> // Runtime type information utilities
#include <typeindex> // (since C++11) std::type_index
#include <type_traits> // (since C++11) Compile-time type information
View Android.md
Stores temporary apks after installation
>> /data/local/tmp
View msbuild.md
Parallel Build MsBuild Solution File
>> msbuild /p:Configuration=Release BigProj.sln /m
[ /m = Parallel Build]
Build Universal Window Program From Command Line
>> MSBuild mysolution.sln /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="x86|x64|ARM"
NewerOlder