Tumgik
rehman-coding ยท 7 months
Note
Social media sites
Tumblr media
2 notes ยท View notes
rehman-coding ยท 10 months
Text
Tumblr media
5 notes ยท View notes
rehman-coding ยท 10 months
Text
1 note ยท View note
rehman-coding ยท 10 months
Text
1 note ยท View note
rehman-coding ยท 11 months
Text
0 notes
rehman-coding ยท 1 year
Text
Tumblr media
4 notes ยท View notes
rehman-coding ยท 1 year
Note
Hi! As someone who doesnโ€™t even know where to start can you please share some insight on where to start programming from
Yes please I love to guide you. Contact me on my WhatsApp +923035353388
0 notes
rehman-coding ยท 1 year
Text
8 notes ยท View notes
rehman-coding ยท 1 year
Text
web development updates!
#javascript #js #webdevelopment #webdesign #programmer #programming #coding #coder #code #technology #tech #software #angularjs #angular #react #nodejs #html #css #css3 #html5 #coding #codinglife #startup #entreprenuer #onlinebusiness
1w
Tumblr media
7 notes ยท View notes
rehman-coding ยท 1 year
Text
5 notes ยท View notes
rehman-coding ยท 1 year
Text
web development updates!
#javascript #js #webdevelopment #webdesign #programmer #programming #coding #coder #code #technology #tech #software #angularjs #angular #react #nodejs #html #css #css3 #html5 #coding #codinglife #startup #entreprenuer #onlinebusiness
1w
2 notes ยท View notes
rehman-coding ยท 1 year
Photo
Tumblr media
๐Ÿ๐ŸŽ ๐Œ๐ฎ๐ฌ๐ญ-๐Š๐ง๐จ๐ฐ ๐†๐ข๐ญ ๐‚๐จ๐ฆ๐ฆ๐š๐ง๐๐ฌ ๐“๐ก๐š๐ญ ๐š๐ซ๐ž ๐ค๐ง๐จ๐ฐ๐ง ๐›๐ฒ ๐Ÿ๐ž๐ฐ๐ž๐ซ ๐ฉ๐ž๐จ๐ฉ๐ฅ๐ž (newbie). ๐Ÿ. ๐€๐๐/๐‚๐จ๐ฆ๐ฆ๐ข๐ญ ๐€๐ฅ๐ฅ Standard way: git add . git commit -m "Message" Another way: git commit -a -m "Message" ๐Ÿ. ๐€๐ฅ๐ข๐š๐ฌ๐ž๐ฌ With aliases, you can write your own Git commands that do anything you want. Eg: git config --global alias.ac '!git add -A && git commit -m' (alias called ac, git add -A && git commit -m will do the full add and commit) ๐Ÿ‘. ๐‘๐ž๐ฏ๐ž๐ซ๐ญ The revert command simply allows us to undo any commit on the current branch. Eg: git revert 486bdb2 Another way: git revert HEAD (for recent commits) ๐Ÿ’. ๐‘๐ž๐Ÿ๐ฅ๐จ๐  This command lets you easily see the recent commits, pulls, resets, pushes, etc on your local machine. Eg: git reflog ๐Ÿ“. ๐๐ซ๐ž๐ญ๐ญ๐ฒ ๐‹๐จ๐ ๐ฌ Gives you the ability to print out a pretty log of your commits/branches. Eg: git log --graph --decorate --oneline ๐Ÿ”. ๐’๐ž๐š๐ซ๐œ๐ก๐ข๐ง๐  ๐‹๐จ๐ ๐ฌ One can also use the log command to search for specific changes in the code. Eg: git log -S "A promise in JavaScript is very similar" ๐Ÿ•. ๐’๐ญ๐š๐ฌ๐ก This command will stash (store them locally) all your code changes but does not actually commit them. Eg: git stash ๐Ÿ–. ๐‘๐ž๐ฆ๐จ๐ฏ๐ž ๐ƒ๐ž๐š๐ ๐๐ซ๐š๐ง๐œ๐ก๐ž๐ฌ This command will delete all the tracking information for branches that are on your local machine that are not in the remote repository, but it does not delete your local branches. Eg: git remote update --prune ๐Ÿ—. ๐๐ข๐ฌ๐ž๐œ๐ญ For finding which commits caused certain bugs Eg: git bisect start git bisect bad git bisect good 48c86d6 ๐Ÿ๐ŸŽ. ๐ƒ๐ž๐ฌ๐ญ๐ซ๐จ๐ฒ ๐‹๐จ๐œ๐š๐ฅ ๐‚๐ก๐š๐ง๐ ๐ž๐ฌ One can wipe out all changes on your local branch to exactly what is in the remote branch. Eg: git reset --hard origin/main ๐Ÿš€ Follow @rehman_coding for more daily web development tips and tricks. #content #webdev #coding #css #webdevelopment #comment #contentcreation #devcontent #frontend #frontenddevelopment #HTML #Javascript #react #codewithcoffee #grid #codewithcoffeeindia #future #share #connections #like #css3 #csstip #html #htmltip #csslayout #cssgrid #grid #cssgrid #gridlayout #terminology Ruby, etc. (at I-8 Markaz Islamabad) https://www.instagram.com/p/Coo4IHtg9Wc/?igshid=NGJjMDIxMWI=
4 notes ยท View notes
rehman-coding ยท 1 year
Photo
Tumblr media
Programming Languages VS Scripting Languages --------------------------------------- --------------------------------------- Most programming languages require the code to be compiled into machine code before it can be executed. --------------------------------------- Scripting languages are interpreted and executed line by line. Many programming languages have strict typing, where variables must be declared with a speciic data type. --------------------------------------- Scripting languages often have dynamic typing, where the data type of a variable is determined at runtime. Programming languages often require manual memory management. --------------------------------------- Scripting languages have automatic memory management. Due to their compiled nature, programming languages can be faster than scripting languages. --------------------------------------- Scripting languages are usually easier to develop with and faster to write. ๐Ÿ“ŒJust like Flexbox containers we have Grid containers but have different container properties. โ‡’ Simplifying GRID layout for you in this post โ™ฅ๏ธ Hit like, if you found it useful!! ๐Ÿ”– Save it for the future ๐Ÿ“ค Share it with your connections ๐Ÿ’ญ Comment your thoughts ๐Ÿš€ Follow @rehman_coding for more daily web development tips and tricks. #content #webdev #coding #css #webdevelopment #comment #contentcreation #devcontent #frontend #frontenddevelopment #HTML #Javascript #react #codewithcoffee #grid #codewithcoffeeindia #future #share #connections #like #css3 #csstip #html #htmltip #csslayout #cssgrid #grid #cssgrid #gridlayout #terminology https://www.instagram.com/p/CoiU3fRAPrz/?igshid=NGJjMDIxMWI=
2 notes ยท View notes
rehman-coding ยท 1 year
Photo
Tumblr media
๐Ÿ“ŒJust like Flexbox containers we have Grid containers but have different container properties. โ‡’ Simplifying GRID layout for you in this post โ™ฅ๏ธ Hit like, if you found it useful!! ๐Ÿ”– Save it for the future ๐Ÿ“ค Share it with your connections ๐Ÿ’ญ Comment your thoughts ๐Ÿš€ Follow @rehman_coding for more daily web development tips and tricks. #content #webdev #coding #css #webdevelopment #comment #contentcreation #devcontent #frontend #frontenddevelopment #HTML #Javascript #react #codewithcoffee #grid #codewithcoffeeindia #future #share #connections #like #css3 #csstip #html #htmltip #csslayout #cssgrid #grid #cssgrid #gridlayout #terminologytuesday https://www.instagram.com/p/Coc7aQBS9r0/?igshid=NGJjMDIxMWI=
0 notes
rehman-coding ยท 1 year
Photo
Tumblr media
๐Ÿ‘‰ 7 ES6 code snippets to save time ๐Ÿ“Œ If this post was useful then like๐Ÿ‘ and share ๐Ÿ” this ๐Ÿ“Œ Follow/connect Vishwanath. Chiniwar for more such updates. #javascriptdevelopers #programming #javascriptdeveloper #frontenddeveloper #jsdeveloper #javascripttutorial #freshers #freshers2022 #freshers2021 #freshers2023 #interviewexperience #webdevelopment #frontenddevelopment #webdeveloper #es6 #fullstackdeveloper #javascript #appdevelopment #programming #freshers2022 #backenddevelopment #reactjs #reactjsdeveloper #reactjsdevelopment #reactdeveloper #reactjsjobs #freshersjobs #interview #interviewpreparation #interviewquestions #coding https://www.instagram.com/p/CoQPaXdg4Zq/?igshid=NGJjMDIxMWI=
2 notes ยท View notes
rehman-coding ยท 1 year
Photo
Tumblr media
Don't Forget To Like โ™ฅ๏ธ | Share ๐Ÿ“ฒ | Save ๐Ÿ“ฅ Turn On Your Post Notifications ๐Ÿ”” For Daily Updates Hashtags : #engineering #engineer #software #developer #programming #programmer #coding #coder #code #web #website #design #designer #development #developer #webdesign #webdesigner #webdevelopment #webdeveloper #frontend #backend #frontenddeveloper #backenddeveloper #html5 #html #css3 #css #javascript #js #reactjsjobs https://www.instagram.com/p/Cn7rMyuDeN-/?igshid=NGJjMDIxMWI=
2 notes ยท View notes
rehman-coding ยท 1 year
Photo
Tumblr media
Important CSS Questions with Answers for Front-End Developer interview Preparation. #javascript #js #angularjs #reactjs #angular #web #webdeveloper #html #css #css3 #html5 #frontend #frontenddeveloper #vuejs #expressjs #nodejs #coder #coding #programmer #programming #software #informationtechnology #java #python #php #frontendjob github #content #git #opensource #gsoc #opensourcedevelopment #dailycoding https://www.instagram.com/p/Cn2G7fGv4pr/?igshid=NGJjMDIxMWI=
0 notes