New Know How

To begin customizing your site go to Appearance -> Customizer and select Theme Options. Here's you'll find custom options to help build your site.

Read More

Step 2 - Setup Slider

To add a slider go to Theme Options -> Homepage and choose page slider. The slider will use the page title, excerpt and featured image for the slides.

Read More

Step 3 - Create Homepage

To add featured content go to Theme Options -> Homepage (Featured) and turn the switch on then add the content you want for each section.

Read More

.Net 8 IExceptionHandler

Before this we used to use a filter (GlobalExceptionFilter) to handle exceptions at one place. .Net 8 has a new IExceptionFilter middleware which can be used to filter the exceptions. For more look at: Handle errors in ASP.NET Core | Microsoft Learn The new exception handler keeps information in Features property. So, If you face

Read More

Access Realm in Realtime for a React Native App on iOS

If you’re running your app in one of Xcode’s simulators, then the Realm files are stored in your Mac’s file system. They’re typically somewhere along the lines of ~/Library/Developer/CoreSimulator/Devices/???????/data/Containers/Data/Application/???????/Documents/mongodb-realm/???????/????????/???????.realm. While my app’s in development, I’ll normally print the location of a Realm’s file whenever I open it. Don’t worry if you’re not explicitly opening your

Read More

ADB location windows Android Studio

The exact default location of ADB installation is: You can it to your environment variables for easy access in command line prompt. It could be different if you have changed your directories for tool installation. More at: Android Debug Bridge (adb)  |  Android Studio  |  Android Developers Cheers and Peace out!!!