Posts

Voice Change & Voice Effects

 ðŸŽ¤ Transform your voice and have fun!   With Voice Change & Voice Effects, you can easily record your voice and apply a wide range of funny voice effects to surprise your friends or create hilarious audio clips. Whether you're looking to sound like a robot, alien, monster, squirrel, or helium — we've got you covered!  ðŸ”§ Key Features: - 🎙️ Real-Time Voice Recorder – Instantly record your voice and apply effects. - 😂 Funny Voice Effects – Choose from tons of unique voice filters like helium, monster, robot, and more. - 📂 Save & Share Audio – Save your funny recordings and share them with friends via WhatsApp, Messenger, or any social app. - 🎧 Listen Anytime – Access all your saved clips and enjoy them anytime. - 🔒 Privacy First – Your voice recordings stay on your device. We don’t collect any personal data.  ðŸŽ¯ Why Choose Voice Change & Voice Effects? -   Easy to use with a simple and fun interface. -   High-quality voice pro...

Privacy Policy - Voice Changer : Voice Effects

Privacy Policy   Effective Date: 17 April, 2025 Voice Changer & Voice Effects (“we", "our", or "us") is committed to protecting your privacy. This Privacy Policy explains how we handle your information when you use our mobile application Voice Changer & Voice Effects (the "App").  1. No Data Collection We do not collect, store, or share any personal information from users of our app.   All features, including voice recording and applying sound effects, function locally on your device. - Microphone access is used only during voice recording and is not transmitted or stored. - Audio files are not uploaded to any server — they remain on your device unless you choose to save or share them yourself.  2. Third-Party Advertising To support our free app, we display ads provided by trusted third-party ad networks: - Google AdMob - Meta Audience Network These ad networks may collect non-personal device information, such as: - Device identifiers (e.g., A...

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 , '.' ) , ...

Satya Mev Jayte..

Tera rung aisa chadh gaya Koi aur rang naa chadh sake Tera naam seene pe likha Har koi aake padh sakey Hai junoon hai junoon hai Tere ishq ka ye junoon hai Rag rag mein ishq tera daudta Yeh bawraa sa khoon hai Tune hi sikhaya sachchaiyon ka matlab Tere paas aake jaana maine zindagi ka maqsad Satyamev... satyamev... satyamev jayate Sachcha hai pyaar tera, satyamev jayate Tere noor ke dastoor mein Na ho salwatein na shikan rahe Meri koshishein toh hai bas yahin Rahein khushbooein gulshan rahe Teri zulf suljhane chala Tere aur paas aane chala Jahan koi sur na ho be-sura Woh geet main gaane chala Tera rang aisa chadh gaya Tha nasha jo aur bhi badh gaya Teri barishon ka karam hai ye Main nikhar Gaya main sanwar gaya Jaisa bhi hoon apna mujhe Mujhe ye nahin hai bolna Qaabil tere main ban sakoo Mujhe dwaar aisa kholna Saanson ki iss raftaar ko Dhadkan ke iss tyohaar ko Har jeet ko har haar ko Khud apne iss sansaar ko Badloonga main tere liye Mujhe khud ko...

The year 2038 problem : Unix Millennium Bug, Y2K38 or Y2.038K

The year 2038 problem : Unix Millennium Bug, Y2K38 or Y2.038K Hey friends, some systems which are using unix timestamp at various step may cause error after 2038. The problem affects all software and systems that stores both system time as a signed 32-bit integer. For such sytems time beyond 19 Jan 2038  will "wrap around" and be stored internally as a negative number, which will counted as a date in 1901 rather than 2038. Affect of this in PHP: php's strtotime function fails to create timestamp if date is above then year 2038 and the server stores timestamp with 32 bit signed integer. (my local packages fails to create timestamp ) Solution : There is no particular system solution have been arrived yet for this. First solution from some people is to use unsigner 32 bit integer for time stamp so it will increase the availibility of time stamp till 2106 but still after that it will not useful and may create other problems in system. same way ...

Creating nodes programmatically in Drupal (including cck and location fields)

Creating a new node in drupal is trivial, but when the node includes custom cck fields, then a few things can trip you up. To save time and energy, here’s a quick guide and some tips to make your drupal life easier. Creating a basic node: global $user; //get current logged in user $new_node = new stdClass(); $new_node->type = 'YOUR_NODE_TYPE_HERE'; $new_node->uid = $user->uid; //you can specify some other userID here if you want $new_node->name = $user->name; $new_node->title = $YOUR_NODE_TITLE; $new_node->body = $YOUR_NODE_BODY; $new_node->status = 1; // published node_save($new_node); The function node_save() does a few things behind the scene. It checks if the nid property is empty to determine if this is a new insert or an update, then calls the appropriate functions so that you would not have duplicates. Put simply, if you want to do an update, populate the nid, and leave it out otherwise. Creatnig a node with CCK fields involves ...

How to Reinstall Windows XP Without Having to Reactivate With Microsoft

To tell you the truth, I have never understood what the big deal is with product activation. The fact is that software piracy is rampant, and Microsoft is the target for a large percentage of the piracy due to their dominance in the market. They have a right to try to stop or at least control that privacy, and the product activation seems to be a fair way of ensuring that only legitimate software owners get to benefit from using it. That said, I know many users abhor the process. It may be because they have had problems activating and have had to call the toll-free number and wait to talk to a Microsoft support agent who then read them some 278-character long activation code. (OK, that’s slight exaggeration.) Or maybe they just feel that it is some sort of invasion of privacy or that Microsoft is acting as “Big Brother” and monitoring their actions. No matter the reason, there are plenty of users who would rather never go through the product activation process again. Unf...

Check Out For Sonar Tools

http://docs.codehaus.org/display/SONAR/Install+Sonar#InstallSonar-Requirements it is a great one......

GET 50 Rs off for your Booking

Hello Friends, How If u can get a 50 rs off for your any ticket booked. ? It's wonderful as I can feel... so http://www.travelyaari.com/ go there book your ticket use coupon code 07944820000 or 08044820000 and get 50 Rs off. Have a great Journey. ..............
Implementing a note service (resource) Create a noteresource module that will contain our service implementation. The info file could look something like this: name = Note Resource description = Sample resource implementation package = Notes example core = 6.x php = 5.2 To get a really simple example I'll create an api for storing notes. In a real world scenario notes would probably be stored as nodes, but to keep things simple we'll create our own table for storing notes. // noteresource.install /** * Implements hook_install(). */ function noteresource_install () { drupal_install_schema ( 'noteresource' ); } /** * Implements hook_uninstall(). */ function noteresource_uninstall () { drupal_install_schema ( 'noteresource' ); } /** * Implements hook_schema(). */ function noteresource_schema () { return array( 'note' => array( '...