I'm was figuring out the values of EC memory based on MSI Center setting. Thanks to RW-Everything for the amazing tool.
address: 0xD7
possible values: 0xE4 ( stop 100% ), 0xD0 ( under 70%, stop at 80% ), 0xBC ( under 50%, stop at 60% )
I'm was figuring out the values of EC memory based on MSI Center setting. Thanks to RW-Everything for the amazing tool.
address: 0xD7
possible values: 0xE4 ( stop 100% ), 0xD0 ( under 70%, stop at 80% ), 0xBC ( under 50%, stop at 60% )
| # HIIIiN's todoapp | |
| # line 27 ကို စကြည့်ပါ။ | |
| import os, strformat, json, strutils | |
| proc printHelp() = | |
| # ဒါကထွေထွေထူးထူးမရှိပါဘူး။ multiline string ကိုသုံးပြီး output ထုတ်ရုံပဲ။ | |
| const helpString = """ | |
| todo v1.0.0. Just a simple todo app. |
| #!/usr/bin/env bash | |
| brew install pkg-config iconv openssl oniguruma postgresql libzip | |
| export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
| export LDFLAGS="-L /usr/local/opt/[email protected]/lib -L /usr/local/opt/readline/lib" | |
| export CPPFLAGS="-I /usr/local/opt/[email protected]/include -I /usr/local/opt/readline/include" | |
| export PKG_CONFIG_PATH="/usr/local/opt/[email protected]/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig" | |
| ./configure --prefix=$HOME/opt/php \ |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "heinthanth/moddable", | |
| "description": "Simple, Hackable, Mini PHP MVC framework", | |
| "type": "project", | |
| "license": "MIT", | |
| "authors": [ | |
| { | |
| "name": "Hein Thanth", | |
| "email": "[email protected]" | |
| } |
| var pattern = /^[A-Z][a-z]+(\s[A-Z][a-z]+)*$/; | |
| var str1 = "Hein Thant Maung Maung"; | |
| var str2 = "Huang Ying Yue"; // not my name; my in-game name LOL | |
| var str3 = "H31iUM"; | |
| console.log(str1.test(pattern)); // true | |
| console.log(str2.test(pattern)); // true | |
| console.log(str3.test(pattern)); // false |
| var str = "Hello, World! I'm Hein Thanth"; | |
| var pattern = /[aeiou]/i; | |
| var result = str.match(pattern); | |
| // now result = [e, o, o, I, e, i, a] |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <style> | |
| nav { | |
| color: blue; /* selection with tag name */ | |
| } | |
| .demo1 { | |
| color: red; /* selection with class name */ |