Skip to content

Instantly share code, notes, and snippets.

View kaungzawhein543's full-sized avatar
πŸ“š
Learning

Kaung Zaw Hein kaungzawhein543

πŸ“š
Learning
View GitHub Profile
@eimg
eimg / typescript.md
Last active December 8, 2025 09:21
TypeScript - α€œα€­α€―α€α€­α€―α€›α€Ύα€„α€Ία€Έ

TypeScript - α€œα€­α€―α€α€­α€―α€›α€Ύα€„α€Ία€Έ

JavaScript α€Ÿα€¬ Dynamic Type Language တစ်ခုပါ။ Data Type တွေကို Language α€€ α€œα€­α€―α€žα€œα€­α€― α€‘α€œα€­α€―α€‘α€œα€»α€Ύα€±α€¬α€€α€Ί α€•α€Όα€±α€¬α€„α€Ία€Έα€œα€²α€‘α€œα€―α€•α€Ία€œα€―α€•α€Ία€•α€±α€Έα€α€²α€·α€‘α€α€½α€€α€Ί α€›α€±α€Έα€žα€¬α€Έα€žα€°α€€ Type α€€α€­α€…α€Ήα€… α€žα€­α€•α€Ία€α€±α€«α€„α€Ία€Έα€…α€¬α€Έα€”α€±α€…α€›α€¬α€™α€œα€­α€―α€˜α€² ရေးစရာရှိတဲ့ကုဒ်တွေကို ခပ်မြန်မြန် α€›α€±α€Έα€žα€½α€¬α€Έα€œα€­α€―α€·α€›α€•α€«α€α€šα€Ία‹

let value;        // undefined
value = "Alice";  // string
value = 42;       // number
value = true;     // boolean
@rjescobar
rjescobar / extend-trial-jetbrains-windows.bat
Created August 31, 2021 02:53
JetBrains IDE trial reset windows
REM Delete eval folder with licence key and options.xml which contains a reference to it
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do (
for /d %%a in ("%USERPROFILE%\.%%I*") do (
rd /s /q "%%a/config/eval"
del /q "%%a\config\options\other.xml"
)
)
REM Delete registry key and jetbrains folder (not sure if needet but however)
rmdir /s /q "%APPDATA%\JetBrains"