Programming Language တွေကို ဘယ်သူတွေ ဖန်တီးခဲ့ကြတာလဲ? Get link Facebook X Pinterest Email Other Apps November 04, 2020 1. Guido Van Rossum ( Python )2. Dennis Ritchie (C)3. Bjarne Stroustrup (C++)4. James Gosling (Java)5. Brendan Eich (Javascript)6. Rasmus Lerdorf (PHP) Get link Facebook X Pinterest Email Other Apps Comments
ဖုန်းထဲက ဘယ် Apps တွေနဲ့ programming လေ့လာလို့ရမလဲ? November 10, 2020 အားလုံးပဲ မဂ်လာပါ ဒီတစ်ခါမှာတော့ ဖုန်းထဲက ဘယ် apps တွေက Programming လေ့လာလို့ရသလဲဆိုတာပြောပြပေးသွားမှာဖြစ်ပါတယ်။ ဒါက android တစ်ခုထဲ မဟုတ်ပဲ ios တွေမှာပါသုံးလို့ရပါတယ်။ 1. Udemy 2. SoloLearn 3. Mimo 4. Encode 5. Kahn Academy တို့ပဲဖစ်ပါတယ် တခြားအများကြိီးရှိပါသေးတယ် အဲ့ထဲက အကောင်းဆုံး 5 ခုကို ရွေးပေးထားတာဖြစ်ပါတယ်။ ကျေးဇူးတင်ပါတယ်။ Read more
Cool Shadow Effect HTML+CSS November 01, 2020 HTML & CSS နဲ့ loading effect လေးလုပ်ကြည့်မယ်။ HTML code 👇 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Box Effect</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="box"></div> </body> </html> CSS code 👇 body{ background: #0e153a; } .box{ cursor: pointer; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 75px; height: 75px; border-radius: 50%; animation: anim 3s infinite linear; } @keyframes anim{ 0%{ box-shadow: 0 0 0 0px rgba(10,90,255,0.47); } 20%{ box-shadow: 0 0 0 20px rgba(10,90,255,0.47); } 40%{ box-shadow: 0 0 0 20px rgba(10,90,255,0.47),... Read more
Comments
Post a Comment