Posts

aXa Voice Command Assistant

 This app is list of commands which are use with smart devices. In this app commands are categories with it application. We can use this voice commands to our day to day life which are using smart home devices. In this app you can also find steps to connect devices. Note: "aXa  Voice Command Assistant" is a guide app and does not connect to or control any smart home devices directly. This app is for educational purposes only to help users understand and use devices effectively. App Download Link: https://play.google.com/store/apps/details?id=com.alexa.voice.android.echodot.echoplus.command.assistant

StoryScribe

🎉 StoryScribe - Your Gateway to Endless Personalized Adventures! 🎉 Welcome to AI Story, the app that revolutionizes storytelling with AI! Whether you’re looking to entertain kids, experience thrilling adventures, celebrate the holiday season, or dive into heartfelt romances, AI Story offers a world of immersive, personalized tales for everyone. 📚 Why Choose AI Story? AI Story isn't just another storytelling app—it’s your partner in creating meaningful, memorable narratives. Our unique features set us apart:           Diverse Story Categories : Explore Kids' Stories, Action-Packed Adventures, Romantic Tales, and Festive Christmas Stories, all in one app!           Personalized Experiences : Add your name or your loved ones' names to make each story uniquely yours.           Advanced Text-to-Speech : Sit back and let AI bring your stories to life with hands-free narration. Perfect for bedtime...

Privacy Policy - StoryScribe

  Privacy Policy Welcome to the StoryScribe app, available on the Google Play Store. Your privacy is important to us. This Privacy Policy explains how our app interacts with your data and the role of third-party services. By using the app, you agree to this privacy policy. 1. Information We Do Not Collect: We want to be clear that the app does not collect any personal information from its users. We do not collect, store, or share any personal data such as names, age, email addresses, phone numbers, or location data. 2. Third-Party Advertising Partners: While we do not collect any user data, the app integrates third-party advertising services to display ads. These services may collect data to serve relevant ads. The following third-party services are used in the app: 2.1 AdMob by Google           We use AdMob, a service provided by Google, to serve advertisements in our app. AdMob may collect and use certain information about your device to display pe...

Privacy Policy - aXa Voice Command Assistant

  Privacy Policy   Welcome to the "aXa Voice Command Assistant" app, available on the Google Play Store. Your privacy is important to us. This Privacy Policy explains how our app interacts with your data and the role of third-party services. By using the app, you agree to this privacy policy. 1. Information We Do Not Collect We want to be clear that the "Chat with Alexa" app **does not collect any personal information** from its users. We do not collect, store, or share any personal data such as names, email addresses, phone numbers, or location data.   2. Third-Party Advertising Partners While we do not collect any user data, the app integrates third-party advertising services to display ads. These services may collect data to serve relevant ads. The following third-party services are used in the app:                 2.1 AdMob by Google We use AdMob, a service provided by Google, to se...

Customize & Extend PHP Codesniffer ruleset for Sonar PHP Profile

Image
Customize & Extend PHP Codesniffer ruleset for Sonar PHP Profile Sonar the tool that we are using for our code review. For PHP sonar has plugin which uses a PHP Codesniffer PEAR package to sniff code for violations. Almost all of them are predefined. If there is a requirement to add few more rules to the default ruleset, there is a way to do it with PHP_Codesniffer pear package. How to customize default ruleset of PHP_Codesniffer ruleset for Sonar profile. Following are the steps when one needs to change the predefined value for a rule and make it configuratioble settings via sonar profile page user interface. Violation in your project, BREAK statement must be indented 4 spaces from SWITCH keyword. Here the statement is indented 2 space as per it's a code done for Drupal, but the rules show that we need 4 space which avoid the drupal standards . Here it is SwitchDeclarationBreakIndent is the rule name which is having that spe...

Sonar setup with local for PHP

Hi All, Please setup sonar in local machines. first validate your code in local, whatever you are committing the code should be 100% compliance. Please follow following instructions Installation Steps :         To setup a sonar for PHP we need to have following on our machine. JDK for Window/linux. Winant for Windows or ant for linux. PHP PEAR Install XDebug Sonar 3.6.3 http://dist.sonar.codehaus.org/sonar-3.6.3.zip Sonar PHP Plugin Code Sniffers for Drupal / Moodle and it's ruleset for sonar. build.xml file for creating a ant task. JDK for Window/Linux         Download and install the latest JDK from http://www.oracle.com/technetwork/java/javase/downloads/index.html on windows machine. Or can use smb://192.168.102.226/software/Java/Windows .         After installation Right click on “My Computer” >> ...

PHP Force Download – Keep Track of What’s Going Down

Thanks to my Friend Jainesh to suggest A force-download script can give you more control over a file download than you would have providing a direct link. Using a force-download script, you can: Validate that a person is logged in Increment a counter in a text file Connect to your database and log IP information, increment a counter, and so on. The code itself is pretty basic: // grab the requested file's name $file_name = $_GET [ 'file' ] ; // make sure it's a file before doing anything! if ( is_file ( $file_name ) ) { /* Do any processing you'd like here: 1. Increment a counter 2. Do something with the DB 3. Check user permissions 4. Anything you want! */ // required for IE if ( ini_get ( 'zlib.output_compression' ) ) { ini_set ( 'zlib.output_compression' , 'Off' ) ; } // get the file mime type using the file extension switch ( strtolower ( substr ( strrchr ( $file_name , '.' ) , ...