#rehman_coding
Explore tagged Tumblr posts
Photo

. Have anything to add? Feel free to leave your questions or ideas or just say hi in the comments :) Happy !๐ ๐๐ฌ๏ธโ๏ธโ๏ธ โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman And let me know you if you liked the video by liking, sharing and commenting ๐๐ Hashtags: #reactjs #react #reactnative #reactdeveloper #learn #code #rehman_coding #mernstack #mernstackdeveloper #javascript #jsdeveloper #interview #interviewtips #frontend #ui #uiux #developer #developers#css #cssgrid #css3#html #csstricks #cssinformation #cssflex #csslearning #cssanimation (at Islamabad, Pakistan) https://www.instagram.com/p/ChQLqR5De5s/?igshid=NGJjMDIxMWI=
#reactjs#react#reactnative#reactdeveloper#learn#code#rehman_coding#mernstack#mernstackdeveloper#javascript#jsdeveloper#interview#interviewtips#frontend#ui#uiux#developer#developers#css#cssgrid#css3#html#csstricks#cssinformation#cssflex#csslearning#cssanimation
1 note
ยท
View note
Photo

Peace โ๏ธ . Have anything to add? Feel free to leave your questions or ideas or just say hi in the comments :) Happy !๐ ๐๐ฌ๏ธโ๏ธโ๏ธ โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: www.a-rehman.com โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/. ... . . . . . . . .#girlwhocodes #codergirl #100daysofcode #coding #reactjs #webdesign #uidesign #javascript #machinelearning #womenintech #codinglife #webdeveloper #reactjs #computerscience #delltechworld #technology #ui #codingbootcamp #programming #programmer #frontenddeveloper #devlife #setup #technology #devlife #worldcode #codingbootcamp #reactjsdeveloper #reactnative #reactjsdevelopmentuae 19w https://www.instagram.com/p/CeNLp-7qTqZ/?igshid=NGJjMDIxMWI=
#girlwhocodes#codergirl#100daysofcode#coding#reactjs#webdesign#uidesign#javascript#machinelearning#womenintech#codinglife#webdeveloper#computerscience#delltechworld#technology#ui#codingbootcamp#programming#programmer#frontenddeveloper#devlife#setup#worldcode#reactjsdeveloper#reactnative#reactjsdevelopmentuae
0 notes
Photo
SCOPES IN JAVASCRIPTโจ So, What is Scope? โจScope determines the visibility or accessibility of a variable or other resource in the area of your code. โจThere are 3 types of scope:
โ
Block scope โ
Function scope โ
Global scope
โกBLOCK SCOPE โจBefore ES6 (2015), JS had only Global Scope and Function Scope, ES6 introduced two important keywords: let and const which provide Block Scope in JS. Var keyword can NOT have block scope.
A Block Scope is the area within if, switch conditions or for and while loops. Generally speaking, whenever you see {curly brackets}, itโs a block. It means that these variables exist only within the corresponding block. (all examples are in carousel)
โกFUNCTION SCOPE
JavaScript has function scope: Each function creates a new scope. Variables defined inside a function are not accessible (visible) from outside the function. Variables declared with var, let and const are quite similar when declared inside a function.
โกLOCAL SCOPE
Variables declared within a JavaScript function, become LOCAL to the function.
โกGLOBAL SCOPE
There's only one Global scope in the JavaScript document. The area outside all the functions is considered to be in the global scope and the variables defined inside the global scope can be accessed and altered in any other scopes.
โIn JavaScript, objects and functions are also variables.โ
โกTHE LIFETIME OF JAVASCRIPT VARIABLES
The lifetime of a JavaScript variable starts when it is declared. Function (local) variables are deleted when the function is completed.
0 notes
Photo

๐๐ ๐๐ฎ๐ฌ๐ญ-๐๐ง๐จ๐ฐ ๐๐ข๐ญ ๐๐จ๐ฆ๐ฆ๐๐ง๐๐ฌ ๐๐ก๐๐ญ ๐๐ซ๐ ๐ค๐ง๐จ๐ฐ๐ง ๐๐ฒ ๐๐๐ฐ๐๐ซ ๐ฉ๐๐จ๐ฉ๐ฅ๐ (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=
#content#webdev#coding#css#webdevelopment#comment#contentcreation#devcontent#frontend#frontenddevelopment#html#javascript#react#codewithcoffee#grid#codewithcoffeeindia#future#share#connections#like#css3#csstip#htmltip#csslayout#cssgrid#gridlayout#terminology
4 notes
ยท
View notes
Photo

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=
#content#webdev#coding#css#webdevelopment#comment#contentcreation#devcontent#frontend#frontenddevelopment#html#javascript#react#codewithcoffee#grid#codewithcoffeeindia#future#share#connections#like#css3#csstip#htmltip#csslayout#cssgrid#gridlayout#terminology
3 notes
ยท
View notes
Photo

โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/ .Tags โฌ๏ธ- #webdeveloper #webdevelopment #web #reactjs #reactjsdeveloper #reactjsdevelopment #reactjsdevelopers #angularjs #angular #angulardeveloper #angulardevelopers #angulardevelopment #htmlcoding #htmlcss #kalilinux #vuejs #vuejsdeveloper #vuejsdevelopment #setup #setupgaming #setupcode #setupinspiration #dev #webdev #programminglife #programacion #software #softwaredeveloper #codemyjourneys https://www.instagram.com/p/CkMD8pnjnpy/?igshid=NGJjMDIxMWI=
#webdeveloper#webdevelopment#web#reactjs#reactjsdeveloper#reactjsdevelopment#reactjsdevelopers#angularjs#angular#angulardeveloper#angulardevelopers#angulardevelopment#htmlcoding#htmlcss#kalilinux#vuejs#vuejsdeveloper#vuejsdevelopment#setup#setupgaming#setupcode#setupinspiration#dev#webdev#programminglife#programacion#software#softwaredeveloper#codemyjourneys
3 notes
ยท
View notes
Photo

โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/โ
If you find this content useful, tap the โค๏ธ Icon, share and consider giving me a follow Thanks. . #html #css #git #github #frontend #reactjs #javascript #coding #programming #khattakdev #crash #course #development #web #technologies #typescript #chrome #developerpodcast https://www.instagram.com/p/ClJ9w_mDp5p/?igshid=NGJjMDIxMWI=
#html#css#git#github#frontend#reactjs#javascript#coding#programming#khattakdev#crash#course#development#web#technologies#typescript#chrome#developerpodcast
4 notes
ยท
View notes
Photo

hanks for the support ๐ฅ . . . . . . . .๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: www.a-rehman.com โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/. ... .. . . .Follow the Front End guide for more html, css, JavaScript and ReactJs lessons, tips and tricks ๐๐ #frontend #html #css #javascript #reactjs #developer #programming #webdevelopment #softwaredevelopment #coder #fullstack #programminglife #fullstackdev #html5 #website #htmlcss #coding #programmer #frontendguide #redux https://www.instagram.com/p/CkX5RObj7bU/?igshid=NGJjMDIxMWI=
#frontend#html#css#javascript#reactjs#developer#programming#webdevelopment#softwaredevelopment#coder#fullstack#programminglife#fullstackdev#html5#website#htmlcss#coding#programmer#frontendguide#redux
6 notes
ยท
View notes
Photo

โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: www.a-rehman.com โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/. ... . . . . . . #html #html5 #css #css3 #javascript #javascriptdeveloper #angular #angularjs #angularlearning #masterangular #angularmaterial #angulardeveloper #typescript #reactjs #frontenddeveloper #softwaredeveloper #webdeveloper #coding #programmer #webdevelopment #uidesigner #javascripts #javascripttutorial #javascript30 #javascriptengineer #frontendchallenge #interviewtips #interviewquestions #angular6 https://www.instagram.com/p/CkT4gj2jQ3g/?igshid=NGJjMDIxMWI=
#html#html5#css#css3#javascript#javascriptdeveloper#angular#angularjs#angularlearning#masterangular#angularmaterial#angulardeveloper#typescript#reactjs#frontenddeveloper#softwaredeveloper#webdeveloper#coding#programmer#webdevelopment#uidesigner#javascripts#javascripttutorial#javascript30#javascriptengineer#frontendchallenge#interviewtips#interviewquestions#angular6
3 notes
ยท
View notes
Photo

โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/ .Tags โฌ๏ธ- #webdeveloper #webdevelopment #web #reactjs #reactjsdeveloper #reactjsdevelopment #reactjsdevelopers #angularjs #angular #angulardeveloper #angulardevelopers #angulardevelopment #htmlcoding #htmlcss #kalilinux #vuejs #vuejsdeveloper #vuejsdevelopment #setup #setupgaming #setupcode #setupinspiration #dev #webdev #programminglife #programacion #software #softwaredeveloper #codemyjourneys https://www.instagram.com/p/CkMSVuwjV4s/?igshid=NGJjMDIxMWI=
#webdeveloper#webdevelopment#web#reactjs#reactjsdeveloper#reactjsdevelopment#reactjsdevelopers#angularjs#angular#angulardeveloper#angulardevelopers#angulardevelopment#htmlcoding#htmlcss#kalilinux#vuejs#vuejsdeveloper#vuejsdevelopment#setup#setupgaming#setupcode#setupinspiration#dev#webdev#programminglife#programacion#software#softwaredeveloper#codemyjourneys
6 notes
ยท
View notes
Photo

. . Have anything to add? Feel free to leave your questions or ideas or just say hi in the comments :) Happy !๐ ๐๐ฌ๏ธโ๏ธโ๏ธ โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/ . . . #code #programming #developer #coding #wordpress #programmer #webdeveloper #javascript #softwaredeveloper #girlswhocode #devlife #worldcode #csharp #learntocode #reactjs #developerlife #frontenddeveloper #angularjs #100daysofcode #peoplewhocode #fullstackdeveloper #techconference #backenddeveloper #itconference #mobiledevelopment #womanintech #freelance #programador #ะฟัะพะณัะฐะผะผะธัะพะฒะฐะฝะธะต https://www.instagram.com/p/Cizk1B8DuaZ/?igshid=NGJjMDIxMWI=
#code#programming#developer#coding#wordpress#programmer#webdeveloper#javascript#softwaredeveloper#girlswhocode#devlife#worldcode#csharp#learntocode#reactjs#developerlife#frontenddeveloper#angularjs#100daysofcode#peoplewhocode#fullstackdeveloper#techconference#backenddeveloper#itconference#mobiledevelopment#womanintech#freelance#programador#ะฟัะพะณัะฐะผะผะธัะพะฒะฐะฝะธะต
2 notes
ยท
View notes
Photo

. . Have anything to add? Feel free to leave your questions or ideas or just say hi in the comments :) Happy !๐ ๐๐ฌ๏ธโ๏ธโ๏ธ โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: https://a-rehman.com/ โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/ . . . #code #programming #developer #coding #wordpress #programmer #webdeveloper #javascript #softwaredeveloper #girlswhocode #devlife #worldcode #csharp #learntocode #reactjs #developerlife #frontenddeveloper #angularjs #100daysofcode #peoplewhocode #fullstackdeveloper #techconference #backenddeveloper #itconference #mobiledevelopment #womanintech #freelance #programador #ะฟัะพะณัะฐะผะผะธัะพะฒะฐะฝะธะตะดะตััะผ (at Islamabad, Pakistan) https://www.instagram.com/p/ChFwqn3jjyL/?igshid=NGJjMDIxMWI=
#code#programming#developer#coding#wordpress#programmer#webdeveloper#javascript#softwaredeveloper#girlswhocode#devlife#worldcode#csharp#learntocode#reactjs#developerlife#frontenddeveloper#angularjs#100daysofcode#peoplewhocode#fullstackdeveloper#techconference#backenddeveloper#itconference#mobiledevelopment#womanintech#freelance#programador#ะฟัะพะณัะฐะผะผะธัะพะฒะฐะฝะธะตะดะตััะผ
3 notes
ยท
View notes
Photo

Hello Developers , here we put small difference between , inline - block , inline block... ๐ฅ Follow๐๐ป@rehman_coding๐ฅ ๐ฅ Follow๐๐ป@rehman_coding๐ฅ ๐ฅ Follow๐๐ป@rehman_coding๐ฅ . . . .. โญLIKE | SAVE | SHARE | COMMENT . . . . โญVisit my profile to learn moreโค๏ธ . ๐Turn on Post notifications! . . โค๏ธKeep learning, Keep coding! ๐คฉ โฉ you will understand easily this CSS diffrence.. โฉ If you're working or learning on Html css javascript python Java then you should follow our page โฉ Because here we are put many kind of tips and tricks about Html , css , javascript, python, java etc etc language.. โฉ Here you will get all type of programming related knowledge that will help you to grow your journey.. โฉ Just check once our profile, and don't forget to follow โบ๏ธโบ๏ธ โฉ I Hope. You will like this post , so don't forget to share with your programming buddy ,and stay here for more programming knowledge โฉ Collaboration with ๐ฅ Follow๐๐ป@rehman_coding๐ฅ ๐ฅ Follow๐๐ป@rehman_coding๐ฅ ๐ฅ Follow๐๐ป@rehman_coding๐ฅ . . . .. โญLIKE | SAVE | SHARE | COMMENT . . . . โญVisit my profile to learn moreโค๏ธ . ๐Turn on Post notifications! . . โค๏ธKeep learning, Keep coding! ๐คฉ _________________________________ _________________________________ เฅคเฅค Like เฅคเฅค โฅ๏ธ เฅคเฅค เฅคเฅค Comment เฅคเฅค ๐ เฅคเฅค เฅคเฅค Share เฅคเฅค ๐ซ เฅคเฅค _________________________________ _____ Hashtag : #htmlcoding #html_css #html5 #htmlacademy #htmlindonesia #htmlandcss #htmlcssjs #htmltags #htmltutorial #cssakuhinpost #css #cssgrid #cssinformation #csscoding #webdesign #webapp #websitedevelopment #webdevelopment #webdesigns #web3 #webtips #webdeveloping #websitemaker #developpement#html #javascript https://www.instagram.com/p/CfyEfqXt4oL/?igshid=NGJjMDIxMWI=
#htmlcoding#html_css#html5#htmlacademy#htmlindonesia#htmlandcss#htmlcssjs#htmltags#htmltutorial#cssakuhinpost#css#cssgrid#cssinformation#csscoding#webdesign#webapp#websitedevelopment#webdevelopment#webdesigns#web3#webtips#webdeveloping#websitemaker#developpement#html#javascript
3 notes
ยท
View notes
Photo

#dropcode ... .โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: www.a-rehman.com โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94-8611505b/. ... . . โโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโ . . . . . . #100daysofcode #developement #programming #programmer #developer #softwaredeveloper #softwaredevelopment #code #coder #frontend #html #css #javascript #webdesign #nerd #buildtheweb #programmerrepublic #iosdevelopment#dev #coderalbum #codelikeagirl #peoplewhocode #devcommunity_ #dev_girls #informรกtica #webdeveloper #coder #programadora #sistemas https://www.instagram.com/p/CevB6aCggfx/?igshid=NGJjMDIxMWI=
#dropcode#100daysofcode#developement#programming#programmer#developer#softwaredeveloper#softwaredevelopment#code#coder#frontend#html#css#javascript#webdesign#nerd#buildtheweb#programmerrepublic#iosdevelopment#dev#coderalbum#codelikeagirl#peoplewhocode#devcommunity_#dev_girls#informรกtica#webdeveloper#programadora#sistemas
3 notes
ยท
View notes
Photo

. Have anything to add? Feel free to leave your questions or ideas or just say hi in the comments :) Happy !๐ ๐๐ฌ๏ธโ๏ธโ๏ฟฝ๏ฟฝ๏ฟฝ โโโโโโโโโโโโโโโโโโโโโโโโ โญ CAREER CHANGE TIPS โโโโโโโโโโโโโโโโโโโโโโโโ ๐ How to become a self-taught developer? โก Useful links and roadmaps in my bio! โโโโโโโโโโโโโโโโโโโโโโโโ ๐ Follow: @rehman_coding ๐ผ Portfolio: www.a-rehman.com โ๏ธ GitHub: https://github.com/MuhRehman ๐ LinkedIn: https://www.linkedin.com/in/abdul-rehman-%E2%9C%94- โโโโโโโโโโโโโโโโโโโโโโโโ.. . . #programming #web #codes #coding #developer #programmer #javascript #html #css #php #reactjs #nodejs #programminglanguage #csslanguage#programming #programmer #coding #developer #programmers #coder #java #javascript #webdeveloper #webdesign #technology #code #computerscience #softwareengineer #codinglife #python #html #hacking #programmingmemes #nodejs #php https://www.instagram.com/p/CbDi5fdOqHv/?utm_medium=tumblr
#programming#web#codes#coding#developer#programmer#javascript#html#css#php#reactjs#nodejs#programminglanguage#csslanguage#programmers#coder#java#webdeveloper#webdesign#technology#code#computerscience#softwareengineer#codinglife#python#hacking#programmingmemes
3 notes
ยท
View notes
Photo

Here comes the first part of Complete Beginner's Guide To Sass โจ If you found it useful, please express your appreciation by giving it a like! โจ Please feel free to comment your thoughts and queries. โจ Save it for later use and do share it with other people out there Follow โก @rehman_coding For More โจ Don't Forget To Like โฅ๏ธ | Share ๐ฒ | Save ๐ฅ Turn On Your Post Notifications ๐ For Daily Updatesโค๏ธ Thank you, Have a good day๐ I hope you have enjoyed reading this post. Please follow me for more posts like this. Don't forget to like, save, and share this post so others can learn from it as well. Tags-ignore - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #codingforbeginners #webdeveloperslife #learnprogramming #codingbootcamp #programmergirl #programminghumor #csstricks #htmlcode #codinghumour #htmlcoding #programmingtips #programminglove #vuejs #reactjs #worldcode #html5 #javascriptdeveloper #css3 #programmers #100daysofcode #100daysofcodechallenge #javaprogramming #frontenddeveloper #backenddeveloper #fullstackdeveloper #vscode #webdev #javascript #webdesigners #programmingstudents https://www.instagram.com/p/Ccl8koaDkeu/?igshid=NGJjMDIxMWI=
#codingforbeginners#webdeveloperslife#learnprogramming#codingbootcamp#programmergirl#programminghumor#csstricks#htmlcode#codinghumour#htmlcoding#programmingtips#programminglove#vuejs#reactjs#worldcode#html5#javascriptdeveloper#css3#programmers#100daysofcode#100daysofcodechallenge#javaprogramming#frontenddeveloper#backenddeveloper#fullstackdeveloper#vscode#webdev#javascript#webdesigners#programmingstudents
2 notes
ยท
View notes