This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // NOTE: All URLs must contain their protocol and must NOT have trailing slashes | |
| // Set the path for all JS / CSS / template imports | |
| update wp_options set option_value = 'new_domain' where option_id in (1, 2) | |
| // Update all links | |
| UPDATE wp_posts SET guid = replace(guid, 'old_url','new_url'); | |
| // Replace URL references in post content | |
| UPDATE wp_posts SET post_content = replace(post_content, 'old_url', 'new_url'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/hex" | |
| "log" | |
| "net" | |
| "time" | |
| ) | |
| const ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| org 3000 | |
| runLoop | |
| pop cn | |
| push bd a,5 | |
| bd (hl),a | |
| inc hl | |
| cp 191 | |
| jr uk | |
| ld de,5 |
OlderNewer