What is QDE short for?
https://www.qde.com Quant Data ExplorerQuant Data EngineeringQuick Data Entry Quality Domains ExchangeQuick Deal Escrow Qatar Digital ExchangeQualified Database ExpertsQuantum Device Engineering Queen’s Deluxe ExpressQueen’s Discovery ExpressQuantitative & Digital Earth Quarterly Digest of Energy / Economy / Education Quadrillion Dollars EmpireQuadrillion Dollars EconomyQuadrillion Dollars Enterprise Qatar Defense ExpoQuebec Drug ExportsQuality Drugs Expert Qualified Doctor/Dentist ExaminationsQuick / Quant …
What Current Technology is Used in Gaming
The gaming industry continues to evolve alongside technology, transforming the way we play and creating truly immersive experiences. However, you can’t immerse yourself in new worlds without the right tools and tech. From gaming headsets to AR and cloud gaming technology, the world of gaming has changed a lot over the last few decades. Here …
Office 365 Outlook emails forwarding to external email addresses not working?
By default, Office 365 is not allowing forwarding to external email addresses via inbox top right Settings > View all Outlook settings > Forwarding. To enable Office 365 Outlook to forward to external email addresses, we need to manually enable it in the organization security policies. Log in Office 365 as admin, and go to …
Office 365 Outlook emails forwarding to external email addresses not working? Read More »
How to replace a string in all posts in WordPress database?
We had some anomalies in our WordPress sites that some of them old posts have the wrong interpretation of single quotes and double quotes so we had to manually replace all the wrong strings to the correct quotes. In cpanel, you can open up phpmyadmin to run the following MySQL queries, but first, you need …
How to replace a string in all posts in WordPress database? Read More »
Change Default Graphics Processor / GPU in Windows (NVIDIA)
If you have two different GPUs or graphics processors in your laptop, chances are Windows could be using the wrong one performance wise. Benchmarking always come out with the inferior one with a lower score. How to change the default graphics card in Windows for an Nvidia GPU? Search “nvidia control panel” in Start, click …
Change Default Graphics Processor / GPU in Windows (NVIDIA) Read More »
SMTP server telnet connection refused on Linux?
I was testing the WP Mail SMTP plugin to send emails in WordPress via SMTP servers but when it was trying to connect to the remote SMTP server, it kept getting error “Connection refused”. So I tried: telnet smtp.xxxx.com 587 To test the connection. Turned out my own server is preventing the outgoing request because …
Office365 SMTP Send Emails as Shared Mailbox via smtp.office365.com
Go to Office.com admin center > Users > Active users. Create a standalone user for the purpose of SMTP authentication, e.g. [email protected] with password XXYYZZ112233, as you don’t want to give the password of your existing users to apps (e.g. WordPress) that need to access your SMTP. Edit the created account enabling SMTP authentication by …
Office365 SMTP Send Emails as Shared Mailbox via smtp.office365.com Read More »
When to use NoSQL (e.g. MongoDB) and when to use SQL (e.g. MySQL)?
NoSQL is mostly about document databases while SQL is about relational databases. NoSQL vs. SQL Documents vs. Tables MongoDB vs. MySQL Property vs. Entity The trick is 4: Property vs. Entity Design your data models on a piece of paper. Use MongoDB if … If you see more trivial *entities* such as category, tag, brand, …
When to use NoSQL (e.g. MongoDB) and when to use SQL (e.g. MySQL)? Read More »
Content Creation 101: How To Start
Content creation can help any digital marketing strategy take off. If you’ve found your digital marketing efforts haven’t brought in as many new customers or promoted as many sales as you like, it might be time to take a look at your content. Creating content can sometimes be as simple as using photoshop to create …
How To Proactively Manage Your Programming and Personal Lives
Managing your business and personal lives can help you get more work done and lead a happier, healthier life. However, instead of cracking down on yourself to get more done in a day, consider giving yourself free time that can help you spend time enjoying life. Even if you love your job as a programmer, …
How To Proactively Manage Your Programming and Personal Lives Read More »
9 Things to Look for When Purchasing B2B Email Lists
Email marketing has been considered a great tool to create leads and enhance sales for years. A recent forecast of Statista declares that the global revenue of the email marketing industry was 7.5 billion USD in 2020, and it will reach up to 17.9 billion USD by 2027. Similarly, the number of email users is …
9 Things to Look for When Purchasing B2B Email Lists Read More »
Put process in background by nohup command in Linux
For example, a command like this could run a few days if there are so many images: tar zcf xxxx.images.tgz * So it’s best to put it in background when started, by nohup: nohup tar zcf xxxx.images.tgz * > nohup.log 2>&1 &
Whitelist server IPs for SSH connection against ERROR – ssh: connect to host port: Connection refused
If you have multiple servers you’d probably need rsync to transfer files among servers via SSH. An error like this, however, will occur when CSF protects the servers against malicious SSH connection attempts: The solution is very simple. Just whitelist each server IP on the other server and vice versa: Wherein 1.1.1.1 is the other …
10 Best Mass Emailing Tools
Many studies have been done, all with the same results. The average email marketing campaign yields low conversion rates. Marketing Insider reports that only 1 in 5 of your email recipients are going to open your email, and even worse, for every 100 marketing emails you send, 3 will convert to a subscription, purchase, or …
What is Code Signing? How it Works?
Background Times have always been changing, bringing newer opportunities and challenges for us to explore and learn more. It is a similar case with technology, we have experienced a steep spike in technological evolution over the last few decades, this has come with its own set of challenges. We are seldom buying software products we …
CloudFlare and SSH Connection Timeout
Switched one of our sites to CloudFlare DNS and in our code routines, we connect to the site via SSH by its domain as the host. Apparently it kept timing out as we were connecting to the wrong IP resolved by CloudFlare DNS which wasn’t the real IP for our server at all. So we …
Archetypethemes.co Review: 5/5 Best Premium Shopify Theme I Know of Thus Far
I have started several Shopify stores that are now still online and making money for me since 2017. It’s been a terrific experience as Shopify has made so many things so simple after the golden old days when you had to provision and manage a server yourself with hand coded websites on your own garage …
Archetypethemes.co Review: 5/5 Best Premium Shopify Theme I Know of Thus Far Read More »
Clone any static site by a simple Linux command WGET
Just use this and the WGET command will start crawling the target site and download certain levels of pages from the starting URL, including all its assets such as images or CSS files. wget -k -K -E -r -l 1 -p -N -F –convert-links -H -Dcdn.shopify.com,v.shopify.com,www.yoursite.com,your-site.myshopify.com –restrict-file-names=windows https://www.yoursite.com/ The -D option specifies all the hosts …
Clone any static site by a simple Linux command WGET Read More »