Skip to main content

Posts

Showing posts with the label Source Code

Creating an Instagram YouTube Downloader using PHP

 Creating an Instagram YouTube Downloader using PHP Source Code :-  GitHub  - Repl.it

Google Drive File Thumbnail Downloader Website + Script For Blogger or any website

 Google Drive File Thumbnail Downloader Website + Script For Blogger or any website Download :-  Download Direct :-  https://raw.githubusercontent.com/Toolade/GDThumb/main/singlepage.html Download GitHub :- https://github.com/Toolade/GDThumb/blob/main/singlepage.html Visit and Demo :-  Visit ToolAde :- https://toolade-home.blogspot.com/ See Demo GDThumb :- https://gdthumb.blogspot.com/

Sopplayer Integration - HTML5 Stylish Video Player

Sopplayer Integration - HTML5 Stylish Video Player See Demo :-      Visit GitHub  - Codepen  - Repl.it Demo Sopplayer Screenshot See Video Documentation : -  Steps :-       1. Use  class = "sopplayer" in Your <video> Tag .      2. And Add  data-setup = "{}" , attribute like this . <video id="my-video" class="sopplayer" controls preload="auto" data-setup="{}" width="500px"> <!--Use class="sopplayer" and data-setup="{}" --> <source src="https://cdn.jsdelivr.net/gh/SH20RAJ/SopPlayer@main/sample.mp4" type="video/mp4" /> </video>      3. Add the Css CDN before  </ head >  Tag . <link href="https://cdn.jsdelivr.net/gh/SH20RAJ/SopPlayer@main/sopplayer.css" rel="stylesheet" /> <!--Here is the Css Library-->      4. Add t

How to turn any GitHub repo into a CDN Using jsDeliver

How to turn any GitHub repo into a CDN Last week I discovered  jsDeliver , a service that let’s you turn any GitHub repository into a CDN. Example :- https://cdn.jsdelivr.net/gh/SH20RAJ/BlondBtun@latest/blondbtun.css Recommendation :- Always Use @latest in URL to get the latest version and file. ( Hat tip to  Sarah Dayan, aka Frontstuff , for this one. ) Here’s how it works. The base URL is  https://cdn.jsdelivr.net/gh/{username}/{repo}/ , where you replace  {username}  with the GitHub username and  {repo}  with the repository name for the project. Append that URL with the path to the file you want to access in the project. For example, for my  Atomic XHR plugin , the JavaScript file is located in the  /dist  directory. You’d use this.  html <script src="https://cdn.jsdelivr.net/gh/cferdinandi/atomic/dist/atomic.js"></script> You can also take advantage of semantic versioning by adding  @{version-number}  to the repository name. You can target major, minor, and pa

Create a URL Shortener Website like bit.ly

We can create 3 types of Services  1. Create Without using Database ..... Examle :- https://bit.ly/?url= https://example.com/  2.Using Database Examle :- https://bit.ly/?id= uniqueid  3. Using Database and .htaccess Both Examle :- https://bit.ly/ uniqueid 1. Create Without using Database Only This File Source Code :- https://github.com/SH20RAJ/urlshortener/blob/main/index1-without-using-database.php Full Website Source Code :- https://github.com/SH20RAJ/urlshortener 2. Using Database

Random Posts