Quantcast
Channel: Query Admin
Browsing all 550 articles
Browse latest View live

Download and Install OpenVPN Client on Windows 10

1) Download and install OpenVPN client from here: https://openvpn.net/community-downloads/ For example: OpenVPN-2.5.0-I601-amd64.msi * During installation it will download .NET Framework 4 * You will...

View Article



Check if a Trademark is already registered

Here are a few online tools I use to search for Trademarks: Check a Trademark in United States of America (USA): http://tmsearch.uspto.gov/ Check a Trademark in Europe (EU):...

View Article

Use MariaDB and MySQL without Password (MySQL Backup)

On older MySQL versions you could use: /etc/mysql/debian.cnf To get MySQL username and password to use for backup purposes. On newer MySQL v8+ versions you just need to run this command as root user:...

View Article

Fix MariaDB 10.5 “Can’t create test file” errors

I found some issues on recent MariaDB 10.5 installation. The problems seem related to the new protections applied by MariaDB. Here is how I fixed them: 1) Could not increase number of max_open_files...

View Article

Detect Microsoft Virtual PC Virtual Machine

How to detect Virtual PC Virtual Machine via WMIC: wmic baseboard get manufacturer, product /format:list The output is like this: Manufacturer=Microsoft Corporation Product=Virtual Machine Another way...

View Article


Detect VMWare Virtual Machine

How to detect VMWare Virtual Machine via WMIC: wmic bios get serialnumber /format:list The output is like this: SerialNumber=VMware-56 4d 95 b1 5a fa 05 0f-28 d0 2d d4 a3 fe e2 5d Alternatively you can...

View Article

Use cURL to authenticate with JWT Bearer tokens

Example to pass the Bearer token in the Authorization header: curl -H 'Accept: application/json' -H "Authorization: Bearer ${TOKEN}" https://api.website.com/v1/users If you need to get the Bearer token...

View Article

GeneratePress – a Lightweight WordPress Theme 2021

GeneratePress https://generatepress.com/ View example sites here: https://generatepress.com/site-library/ Here is an example site in Korean language: https://soohyunet.com/ The post GeneratePress – a...

View Article


Programmatically create desktop icon with InnoSetup

Inside “ssPostInstall” of CurStepChanged() add this code: //create user desktop shortcut ShortcutPath := ExpandConstant('{userdesktop}') + '\YourApp.lnk'; CreateShellLink(ShortcutPath, 'YourApp',...

View Article


How to pass custom command-lien parameters in InnoSetup

You can read custom parameters with the {param} constant, example: if ExpandConstant('{param:Mode|DefaultMode}') = 'DefaultMode' then begin Log('Installing for default mode'); end else begin...

View Article

Add Desktop shortcut for all Windows PC users

Add your application’s .lnk shortcut in this folder: C:\Users\Public\Desktop The post Add Desktop shortcut for all Windows PC users appeared first on Query Admin.

View Article

AMD Radeon 7400 Drivers for Windows 10

I installed Windows 10 as dual boot using Apple Boot Camp in my MacBook Pro 2011, initially there were problems with the drivers for the graphics card AMD Radeon 7400 series, so if you’re looking for...

View Article

AMD Chipsets & Graphics Card Drivers for Windows 7, 8, 10

Here you can download drivers for any AMD Radeon chipset and graphics card: https://www.amd.com/en/support They work on Windows 7, 8, 10 and also on the ancient Windows XP (legacy drivers). The post...

View Article


Add New Path to Delphi 10.4 Sydney on Library Path

Library Path on Delphi 10.4 Sydney is found here: Tools->Options->Language->Delphi Options->Library Here is an example of “Library path” field:...

View Article

Best Clean Monospace Web Fonts 2021

Here are some awesome monospace web fonts I just love: Baloo Da 2 https://fonts.google.com/specimen/Baloo+Da+2 Mulish https://fonts.google.com/specimen/Mulish Shippori Mincho B1...

View Article


Working Timestamp URLs for Code Sign 2021

Here are timestamp URLs I use when signing Windows PE files: SHA1 Timestamp Server: http://timestamp.comodoca.com SHA256 Timestamp Server: http://rfc3161timestamp.globalsign.com/advanced Following ones...

View Article

The following signatures were invalid: EXPKEYSIG B188E2B695BD4743

If you get this error message while apt-get update: The following signatures were invalid: EXPKEYSIG B188E2B695BD4743 DEB.SURY.ORG It means you need to update the APT signing key. To fix this issue...

View Article


Create Custom Rest Endpoints for WP Rest API

I found a very nice WordPress plugin that can be used to add custom rest endpoints for WP Rest API without touching the PHP code! You can complex custom routes easily, for example you can create a GET...

View Article

How to fix “Text too small to read”

How to fix “Text too small to read” error reported on Google Search Console? A possible solution is to make sure your website uses bigger fonts on mobile devices, such as font size 15px on desktops –...

View Article

How to fix “Clickable elements too close together”

How to fix “Clickable elements too close together” error reported on Google Search Console? A possible solution is to make all interactive elements at least 10px apart (via margins, padding, spacing...

View Article
Browsing all 550 articles
Browse latest View live




Latest Images