Coding Master
11K subscribers
288 photos
13 videos
219 files
3.02K links
ADMIN : @Coding_Master πŸ‘¨πŸΌβ€πŸ’Ό

Hello guys, I Created This Telegram Channel To Share Useful Content On Web Development & Programming.

πŸ‘‰ Free Ebooks
πŸ‘‰ Free Tools & Resources Links
πŸ‘‰ Free Projects Source Code

So Stay Tuned With Us & Keep Learning πŸ˜‰
Download Telegram
11. Write a JavaScript program to find which 1st January is being a Sunday between 2014 and 2050.

<script>
console.log('--------------------');

for (var year = 2014; year <= 2050; year++)
{

var d = new Date(year, 0, 1);
if ( d.getDay() === 0 )
console.log("1st January is being a Sunday "+year);
}

console.log('--------------------');
</script>
A Deep Dive Into Queues in Node.js

Find out what queueing in Node is all about, including how it works with the event loop, its various types, and how it can help with async operations. - http://amp.gs/woCC

#nodejs
1. Java Programming: Complete Beginner to Advanced
https://www.udemy.com/course/java-programming-complete-beginner-to-advanced/?couponCode=8FFA466895

2. Blender 2.79 Illustration . Easy Modeling for Beginners
https://www.udemy.com/course/easy-3d-illustration-with-blender-3d-modeling-for-beginners/

3. Blockchain Web Development on Ethereum [2020]
https://www.udemy.com/course/complete-blockchain-web-application-course-on-ethereum/?couponCode=F1C4FBFE4C02DA692D31

4. Build An MP3 Player With Python And TKinter GUI Apps
https://www.udemy.com/course/build-an-mp3-player-with-python-and-tkinter-gui-apps/?couponCode=FREETODAY

5. Learn Android App development from scratch with Java
https://www.udemy.com/course/learn-android-app-development-from-scratch-with-java/?couponCode=BC4BE14F2ED1140B7C3C

6. Adobe Photoshop CC 2020 - Become a Super User - 10 Projects
https://www.udemy.com/course/learn-basic-photoshop/?couponCode=TRY10FREE80

7. Analytical Techniques for Business Analysis (IIBA - ECBA)
https://www.udemy.com/course/analytical-techniques-for-business-analysis-iiba-ecba/?couponCode=7DA3D48577D9EC2E1B93

8. Git & GitHub Crash Course: Let’s GIT it on Git Hub(Search UdemyFree4You)
https://www.udemy.com/course/git-and-github-crash-course/?couponCode=NEW_COURSE2

9. Learn the Art of Massage
https://www.udemy.com/course/learn-the-art-of-massage/?couponCode=FE9A56BAF40216944FA8

10. Projects Cost Management, Estimating, Budgeting and Control.
https://www.udemy.com/course/cost-management/?couponCode=20200727

11. Mastering COLREGs | Marine navigation rules
https://www.udemy.com/course/mastering-colregs-marine-navigation-rules/?couponCode=COLREGJULY

12. Shopify guide: The complete shopify store creation course
https://www.udemy.com/course/the-complete-shopify-store-creation-course/?couponCode=6658F8F2151CA2AAC71F

13. After Effects Expressions KickStart course (2020)
https://www.udemy.com/course/after-effects-expressions-kickstart-course/?couponCode=6895712D316CF5246BAE

14. Learn 39 Different Ways to Make Money Online!
https://www.udemy.com/course/learn-to-make-money-online/?couponCode=61860A7F52C79BE54DA4

15. Supply Chain Analytics
https://www.udemy.com/course/supply-chain-analytics/?couponCode=SUPPLY
Ways to Create Components in React

We can always relate to any sort of analogy that involves LEGO. Components are like LEGO blocks. Now it all makes sense. That said, just as not all LEGO blocks are created equal, neither are components. Here’s a clear, concise differentiation between Class and Functional components in React. - http://amp.gs/w5n3

#react
Animated Parallax Card Effect.zip
1.4 KB
Source Code
Write a JavaScript program to check if two numbers are in range 40..60 or in the range 70..100 inclusive.

function numbers_ranges(x, y) {
if ((x >= 40 && x <= 60 && y >= 40 && y <= 60)
||
(x >= 70 && x <= 100 && y >= 70 && y <= 100))
{
return true;
}
else
{
return false;
}
}

console.log(numbers_ranges(44, 56));
console.log(numbers_ranges(70, 95));
console.log(numbers_ranges(50, 89));
Fillping Card Hover Effect.zip
204.8 KB
Source Code
Top Telegram Channels Useful For Developers πŸ‘‡πŸ‘‡
Welcome to the Amazing PHP Channel! Here you can find a lot of interesting articles/news about PHP, frameworks, tools and development. Contact with author: @askarfz. Have questions? @amzphp
https://t.me/phpme