Top 10 Git Commands Every Developer Should Know 🧠⚡️
🔹 git init – Start a repo
🔹 git clone – Copy a remote repo
🔹 git add . – Stage changes
🔹 git commit -m "" – Commit changes
🔹 git push – Push to remote
🔹 git pull – Pull from remote
🔹 git branch – See branches
🔹 git checkout -b – Create & switch branch
🔹 git merge – Merge branches
🔹 git log – View history
React ❤️ for more!
🔹 git init – Start a repo
🔹 git clone – Copy a remote repo
🔹 git add . – Stage changes
🔹 git commit -m "" – Commit changes
🔹 git push – Push to remote
🔹 git pull – Pull from remote
🔹 git branch – See branches
🔹 git checkout -b – Create & switch branch
🔹 git merge – Merge branches
🔹 git log – View history
React ❤️ for more!
👍1
I started programming using this video 5 years ago. Every developer has their own way of starting their programming journey — for me, I just loved what I was doing. I was coding HTML and CSS on my phone (lol, I was crazy). When I got to JavaScript, just creating a button and making an alert felt like booooom — I’m a hero 🤣. Oh, those times! Anyway, I have so much to be thankful for, especially to Yosef Kassaye, my first programming teacher 🙏🏼🙏🏼🙏🏼.
Google expanding AI into flight deals, a startup offering to buy Google's Chrome browser, and AI-powered tools being used to fraudulently boost music streams. Other notable developments include SoundHound giving its AI the power of sight, Meta's leaked AI rules allowing romantic chats with kids, and Buzzy AI startup Multiverse creating two of the smallest high-performing models ever. 🫡
function highlight(strings, ...values) {
return strings.reduce((result, str, i) => {
const value = values[i] ? `<span>${values[i]}</span>` : '';
return result + str + value;
}, '');
}
const language = 'JavaScript';
const years = 10;
const result = highlight`I have been coding in ${language} for ${years} years`;
console.log(result);what is the out put ?
Anonymous Quiz
0%
I have been coding in <span>JavaScript</span> for <span>10</span>
25%
I have been coding in <span>JavaScript</span> for <span>10</span> years
50%
I have been coding in JavaScript for 10 years
25%
I have been coding in <span>JavaScript</span> for <span>10</span> yearsundefined
This app (MedLink) took me over 3 months to build. Funny thing is, I even managed to finish 2 other projects while working on it—my bad lol. Now it’s finally complete and ready to deploy!
I really focused on making the UI user-friendly for our community. Building this app has been my childhood dream, and I’m so glad I finally did it. I researched similar apps, and while there are platforms like this in big hospitals, I couldn’t find anything like it for our community.
The difference with MedLink is that it comes with many more features and activities. Honestly, I don’t plan to stop adding new features on top of what’s already here. But even as it stands now, it’s already a boom—something seamless and much-needed in our country.
Sorry for not showing how the live meeting works between doctor and patient—it will be included once I make a video after deploying it. Thanks!
I really focused on making the UI user-friendly for our community. Building this app has been my childhood dream, and I’m so glad I finally did it. I researched similar apps, and while there are platforms like this in big hospitals, I couldn’t find anything like it for our community.
The difference with MedLink is that it comes with many more features and activities. Honestly, I don’t plan to stop adding new features on top of what’s already here. But even as it stands now, it’s already a boom—something seamless and much-needed in our country.
Sorry for not showing how the live meeting works between doctor and patient—it will be included once I make a video after deploying it. Thanks!
🔥2👍1