Category: BE

GCD LCM

/* @startuml class GcdLcm { +main(String[] args) -getIntegerInput(Scanner scan, String prompt) : int -computeGCD(int a, int b) : int -computeLCM(int […]

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 […]

Scroll to Top