- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license)
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
| # The path to store the cache files, limit the folder to 100MB | |
| fastcgi_cache_path /var/run/nginx-cache levels=1:2 keys_zone=WORDPRESS:100m; | |
| # A unique request is defined by this cache key | |
| fastcgi_cache_key "$scheme$request_method$host$request_uri"; | |
| # Show the cached version if upstream gives a timeout or a HTTP 500 error | |
| fastcgi_cache_use_stale error timeout invalid_header http_500; | |
| # Don't use the following headers to define the cache variables |
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
| /* SET THE HOST AND PORT OF WooCommerce | |
| * *********************************************************/ | |
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "8080"; | |
| } | |
| # SET THE ALLOWED IP OF PURGE REQUESTS | |
| # ########################################################## |
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
| #![allow(dead_code)] | |
| extern crate rand; | |
| use std::cmp::Ord; | |
| use std::cmp::Ordering; | |
| use std::fmt::Debug; | |
| use std::iter::Iterator; | |
| use std::iter::IntoIterator; | |
| use rand::Rng; |
本笔记根据以下博客系列文章整理:
- Demystifying memory management in modern programming languages
- Visualizing memory management in JVM(Java, Kotlin, Scala, Groovy, Clojure)
- Visualizing memory management in V8 Engine (JavaScript, NodeJS, Deno, WebAssembly)
- Visualizing memory management in Golang
- Visualizing memory management in Rust
- Avoiding Memory Leaks in NodeJS: Best Practices for Performance