Re: How Can Small Businesses Effectively Compete in Digital Marketing? Digital Media Digital Marketing by asadalig > use social media platforms to connect directly with customers Absolutely! A small business will benefit from the trust with the customer that builds via a direct connection. Thank you for your contribution! Re: Delete unused MySQL indexes Programming Databases by toneewa … activity. It would be the same scenario as if the database was restarted or reset, because the schema data is reset… Re: Remove Qemu/kvm snashots Hardware and Software Linux and Unix by Dani Salem linked to it (thank you!), but it seems succinct enough that I'm going to include it here in case the link were to disappear in the future. # qemu-img snapshot [ -l | -a snapshot | -c snapshot | -d snapshot ] filename -l: lists all snapshots -a: reverts the image to the snapshot -c: creates a snapshot -d: deletes the snapshot Re: Getting in touch with Cloudflare billing Hardware and Software Cloud-based Apps by toneewa …. +1 (888) 99 FLARE A disputed charge back on a C/C always gets their attention, and billing would probably call you… Re: Getting in touch with Cloudflare billing Hardware and Software Cloud-based Apps by Dani …) 99 FLARE > > A disputed charge back on a C/C always gets their attention, and billing would probably call you… Re: how can I build or make new programming language Programming by Dani You could ask [this guy](https://www.daniweb.com/profiles/1010298/bjarne-stroustrup-31) ;) [Here's the full interview](https://www.daniweb.com/programming/software-development/interviews/313564/interview-with-bjarne-stroustrup-creator-of-c) Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention Programming Web Development by Dani CDNs such as Cloudflare offer hotlink protection via a toggle switch you could enable. But, yeah, the primary benefit of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own site without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink … Re: Data storage and retrieval - cache or database Programming Mobile Development by jonathannweyer If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then store it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads. Hello Everyone - Newbie Here Community Center Say Hello! by Ramesh sharama …, and I’m always keen to learn, share knowledge, and connect with like-minded professionals from around the world. Looking forward… Re: Optimizing working with big data Programming Software Development by whackksports Utilizing efficient tools and techniques, such as data filtering, storage solutions, and analytics platforms, is essential for optimizing work with big data. Automating processes, leveraging cloud computing, and ensuring scalability are also required. Re: Cannot run exe from asp.net Programming Web Development by lennyli … = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client_socket.connect(('REMOTE_IP_ADDRESS', 9999)) # Replace with the server's …in this case). (LENNY:) OK NOW, I connect two computers over its own independent wifi router.…~~~~^^ File "C:\Users\maxwi\client.py", line 6, in main client_socket.connect(('192.168.0.2… Re: Delete unused MySQL indexes Programming Databases by Dani Creating and removing database indexes is very complex and is not a matter of … for most of that time we need to bring the database offline, as it's too resource intensive to add an… Re: How Can Small Businesses Effectively Compete in Digital Marketing? Digital Media Digital Marketing by aseena naseeb use social media platforms to connect directly with customers Re: Delete unused MySQL indexes Programming Databases by Reverend Jim … decided to create their own copy I heard that their database people were trash talking my setup behind my back. I… Re: Delete unused MySQL indexes Programming Databases by Dani I can see your rationale, but I don't necessarily agree with a separate table in the database for every month. There are much more elegant ways of handling that use case these days, especially in MySQL. You didn't specify how long ago this was. Either way, still hoping a MySQL expert can come along and answer my question here. Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim …1. My Music B:\My Music 2. My Pictures C:\Users\rjdeg\OneDrive\Pictures 3. My Video D:\My… Videos D. Personal C:\Users\rjdeg\OneDrive\Documents Note that I numbered the … installed Windows) I had to resort to going to C:, renaming the target folder to <folder>.old… Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim … D is so that I can restore an image to C if necessary without losing any user files. With OneDrive active…, anything that goes into My Documents gets stored on C. Not only that, but those files get copied to the… Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim First app is Macrium Reflect so I can take an image of the fresh install. Then I repartition to C/D, move my user folders (documents, pictures, etc.) to D. Then I take another image. After that I begin installing my base apps before imaging one more time. Re: How to make an Iphone App? Programming Mobile Development by jonathannweyer … the right programming language, whether it's Swift or Objective-C, really depends on your team's experience and long-term… Re: Hello Everyone - Newbie Here Community Center Say Hello! by Reverend Jim Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules). Re: Problem with the external hard drive Hardware and Software Microsoft Windows by asadalikhan Don't format it! Try using recovery software like Recuva, EaseUS, or TestDisk to recover your files. If that fails, a professional data recovery service may be needed. Database Connection Failing in MySQL – Need to Hire Developers in the USA Programming by YashSmith I'm facing a database connection error in my MySQL-based application. The credentials are … expert developers in the USA to resolve and optimize the database connection. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by rproffitt Thanks for the MVE (minimum viable example). But it's just bad code. c, c++ and a lot of language won't stop you from going out of bounds. Segmentation Fault in C++ Program – Need Debugging Programming Software Development by YashSmith I’m getting a segmentation fault in my C++ program when trying to access an array element. Here’s … Re: Database Connection Failing in MySQL – Need to Hire Developers in the USA Programming by rproffitt Isn't that a little basic for the Dev Technosys company to not fix themselves? What happened to the coders and developers you had? Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Reverend Jim Don't try to access past the end of the array. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Dani You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4]. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Salem It should be obvious by now from their posting history that the OP is a troll. Re: How to connect to the Pinterest API using PHP? Programming Web Development by Dani Oh, it looks as if the tutorial was for the old DaniWeb API that no longer exists. The [DaniWeb Connect API](https://www.daniweb.com/connect/developers) is also OAuth-based and has some of its own documentation. Re: How to connect to the Pinterest API using PHP? Programming Web Development by Dani … create one [here](https://developers.pinterest.com/docs/getting-started/connect-app/) as that's the first step. Also, it looks…