Category: BE
Quotient Calculator
// QC means Quotient Calculator , so this file named Qc.java import java.util.Scanner; public class Qc { public static void […]
Length Converter
// LC means Length Converter , so this file named Lc.java import java.util.Scanner; public class Lc { public static void […]
Distance Converter
// DC means Distance Converter , so this file named Dc.java import java.util.Scanner; public class Dc { public static void […]
GCD LCM
/* @startuml class GcdLcm { +main(String[] args) -getIntegerInput(Scanner scan, String prompt) : int -computeGCD(int a, int b) : int -computeLCM(int […]
+=, a++, ++a
public class CalExer{ public static void main(String[] args){ int j = 10; int k = 20; int m = j […]
Replace Website Url by SQL
UPDATE wp_options SET option_value = replace(option_value, ‘old.domain.com’,’new.domain.com’) ; UPDATE wp_posts SET post_content = replace(post_content, ‘old.domain.com’,’new.domain.com’) ; UPDATE wp_comments SET […]
Mysqldump
1.Usage 2. Paramaters 3.Examples
Mysql User Rights
Table prefix Batch Replacements in Mysql
Step 1: Enable the “allowMultiQueries” function is you utilize any SSH database tool, such as Dbeaver, Navicat and so on. […]