100 Web Project Ideas

Whenever I start learning a new Language or Framework, I used to create small apps or programs to practice.

Always, I try to build ToDo app if I learn Web Framework or random number generator if it a programming language and guess the number game.

I wish to build a list of items to help beginners to practice when they are learning something new.

So here is my contribution.

I have created a GitHub repo to list 100 Web Project Ideas

https://github.com/PandiyanCool/100-project-ideas

I wish you should help me to reach this list to more people who actually in need.

Feel free to star or fork or send PR to the repository.

And if you are using Twitter, send me hi to motivate me. I love it.

Here is a twitter thread I have created to reach more Devs.

That’s for now.

Hey @pandiyan_cool I just checked out your #100WebProjects list.

If you are reading or trying this, do let me know. I will be very happy.

Cheers, Happy Coding!

Topics

  1. Quote generator
  2. Todo app
  3. Countdown timer
  4. Stopwatch
  5. Flip a coin app
  6. World clock dashboard
  7. Good morning slack bot
  8. Daily Journal bot
  9. Mail composer UI
  10. Interactive login form
  11. Offline page in PWA
  12. Toaster message
  13. Color picker jumbtron
  14. RSS Feed viewer
  15. Json viewer
  16. Syntax highlight
  17. Json to csv
  18. Simple calculator UI
  19. Free image library
  20. Messaging to webhook
  21. Leave reason generator
  22. Visual web bookmarker
  23. Pomodoro timer
  24. Css ruler
  25. Instagram logo in css
  26. BAFFLE effect in css
  27. Motivation bot
  28. Twitter hash tag viewer
  29. Minimalist twitter profile page
  30. Minimalist github profile page
  31. Site map into flex layout
  32. Twitter bot to fav your replies
  33. Twitter bot to welcome new followers
  34. Twitter bot to send weekly report
  35. Gif search engine
  36. Good first issue hunter
  37. One download page for your fav exe
  38. Virtual site map for fav sites
  39. PWA – funny sounds directory
  40. PWA – Scolding app if late sleep
  41. PWA – Stress burster – tap me 20 times in 3 seconds
  42. PWA – Internet connection game
  43. Quotes instead of loader
  44. Comments thread UI
  45. API document with swagger json
  46. Terminal effect in css
  47. CLI for daily activities
  48. Npm library to do text operation
  49. Quiz minimalist UI
  50. Yes or No fact checking UI
  51. Render Google map for location
  52. Selfie app with frames
  53. Flames game
  54. Guess the number game
  55. Sound match game
  56. Snake game
  57. Flight time check app
  58. Weather app
  59. Time sheet app
  60. Fan simulator
  61. Css loader
  62. Minimalist resume
  63. Virtual Visiting card
  64. Custom Birthday cards
  65. Work log app (punch machine)
  66. Catch me bug game
  67. Guess the card game
  68. Clipboard history
  69. Smiley UI mock
  70. Instagram story mock
  71. Tinder suggestion mock
  72. Fake api
  73. Pinterest view for github project
  74. CheatSheet generator
  75. Social media activities dashboard
  76. Birthday reminder
  77. Reminder app if you are leaving late at work
  78. Recipe tracker
  79. Sarcasm meter
  80. Why not analog calendar?
  81. Movie rating at one place
  82. Bookshelf
  83. Energy drainer visualisation
  84. YAGNI checklist
  85. Tweet scheduler mock
  86. Image crop tool
  87. Windows blue screen error page
  88. Never seen 404 page
  89. Sarcastic 401 page
  90. Play music when page offline
  91. Render tweet into gif
  92. CSS blob maker
  93. Cute animals video search results
  94. Mock duckduckgo results page
  95. 1000 pixels custom image
  96. Swappable 5×5 grids
  97. Moments celebration timer
  98. Youtube subscribers count mock
  99. Subscribe and bell icon gif
  100. A Perfect portfolio ✌️

Angular 9 – YouTube Player Component

Embedding a YouTube video into your angular application isn’t a straight forward work before angular 9.

Before angular 8.2, it needs lots of efforts to embed and YouTube video.

You need an npm plugin to do the operation. Or you might need to iframe and a URL which is sanitized.

What new in Angular 9?

Angular Team tried to reduce the complexity of building a reusable components in angular 9.

They have released lots of interesting components/Module like ClipboardModule, Google maps, YouTube player component in the angular 9.

Earlier, we have discussed about copy to clipboard CDK in our website.

In this post, we are going to discuss on how to embed a YouTube video in angular application in quick steps.

How to render a YouTube video in angular application?

Step 1: Install the YouTube package

You install the YouTube player npm package with following command at the home directory of your application.

npm install @angular/youtube-player

Step 2: Import YouTube Player modules

Import the YouTube Player modules in to your app .module.ts (or you can import in your target module)

import { YouTubePlayerModule } from "@angular/youtube-player";

...

 imports: [
    ....,
    YouTubePlayerModule,
    ...
  ],

Step 3: Add YouTube Player component in HTML

We can add YouTube player component in our target component as below with the YouTube video ID.

We can easily get any id of and YouTube video. The ID of YouTube video will present in the URL itself.

Example:

https://www.youtube.com/watch?v=GYAB4Td62zI

In this URL, GYAB4Td62zI is the id of the video.

<youtube-player 
  videoId="GYAB4Td62zI" 
  suggestedQuality="highres" 
  [height]="250" 
  [width]="500" 
  [startSeconds]="4"
  [endSeconds]="8">
</youtube-player>

Parameters details

  • [videoId]: string — YouTube Video ID to render. It’s the little hash at the end of the YouTube URL. For example, if your video is found at https://www.youtube.com/watch?v=GYAB4Td62zI, then your videoId is GYAB4Td62zI.
  • [height]: number — height of video player
  • [width]: number — width of video player
  • [startSeconds]: number — the moment when the player is supposed to start playing
  • [endSeconds]: number— the moment when the player is supposed to stop playing
  • [suggestedQuality]:— the suggested quality of the player. This can take the values 'default' , 'small''medium''large''hd720''hd1080', and'highres'
  • [showBeforeIframeApiLoads]: boolean— whether the iframe will attempt to load regardless of the status of the API on the page. Set this to true if you don’t want the onYouTubeIframeAPIReady field to be set on the global window

Step 4: Import Youtube API script in index.html

<script src="https://www.youtube.com/iframe_api"></script>

Step 5: Run the code and see the magic

Step 0: Watch the demo and code

Demo

To get latest updates you can follow or subscribe! #peace