Skip to main content

Posts

Creating an Instagram YouTube Downloader using PHP

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

Mediaelement YouTube Embed Player Integration

 Mediaelement YouTube Embed Player Integration Firstly Check This Things :- Insert MediaElements.js Html5 Video player   HTML5 Audio Player Using Media Elements.js See Demo :-  https://repl.it/@SH20RAJ/mediaelement#youtube-embed.html Steps To Integrate :-  1. Add src in <video/> Tag <video width="640" height="360"> <source src="https://www.youtube.com/watch?v=RroiPxzCYac" type="video/youtube"> </video> 2. Add Css CDN. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.6/mediaelementplayer.css"/> 3. Add JavaScript CDN. And it's done now. <script src="https://cdn.jsdelivr.net/gh/CDNSFree2/Mediaelements.js@main/mediaelements.js"></script> See Demo Here :- Tips :-   You can also add a poster attribute to show a

Creating tiktok like website using pure JavaScript - ft. JSTikTok

Creating tiktok like website using pure JavaScript - ft. JSTikTok 😮 Download :-  https://github.com/SH20RAJ/JSTikTok   Demo :-  https://github.com/SH20RAJ/JSTikTok Note :- Tikee (Made from JSTikTok ) is now in building phase. Check it out :-  https://tikee.sh20raj.repl.co/ ToolAde :-  https://github.com/ToolsAde/

Convert HTML to Entities Using JavaScript Function

Convert HTML to Entities Using JavaScript Function   htmlentities() is a PHP function which converts special characters (like <) into their escaped/encoded values (like &lt;). This allows you to show to display the string without the browser reading it as HTML. JavaScript doesn’t have a native version of it. If you just need the very basics to so that the browser won’t interpret as HTML, this should work fine (via James Padolsey and I got a a similar idea from David Walsh). function htmlEntities(str) { return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); } The  PHP.js project , which is a project to port over all of PHP’s native functions to JavaScript, contains an example as well. I tried it and it works, but I’ve been warned much of the code from that project is poorly written, so I’ve kept it simple and used the above. Download

Embed GitHub Repo Files or Codes your Website or Blogger - ft. GitCodeEmbedder

Embed GitHub Repo Files or Codes your Website or Blogger - ft. GitCodeEmbedder GitCodeEmbedder :- https://gitcodeembedder.blogspot.com/ GitCodeEmbedder - Free Embedder of GitHub Repo To Your Website / Blog Copy Paste This iframe Code to Your Website and change the src of iframe = https://gitcodeembedder.blogspot.com/?gh=[User]/[Repo]/main/[File Url]  See Examples Here :- 1. GitHub Embed Example :- https://github.com/twbs/bootstrap/blob/main/dist/css/bootstrap.css Code :- <iframe frameborder="0" height="700px" src="https://gitcodeembedder.blogspot.com/?gh=twbs/bootstrap/main/dist/css/bootstrap.css&amp;lang=css" width="100%"></iframe> Result :- 2. URL Embed Example :-  https://code.jquery.com/jquery-3.6.0.js Code :- <iframe frameborder="0" heigh

Display Codes on website or Blogger with Copy Option ft. Prismjs.com

 Show Codes on website or Blogger with Copy Option ft. Prismjs.com Steps :-     1. Add PrismJS Library To Your Website .         (i)  Add CSS CDN . <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/CDNSFree2/PrismJS@latest/prism.min.css">        (ii) Add Javascript CDN <script src="https://cdn.jsdelivr.net/gh/CDNSFree2/PrismJS@latest/prism.min.js"></script>     2. Now, Use The Combo of <pre> and <code> Tag To Show Your Code . <pre> <code class="language-javascript"> function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),

Unlock PDF or Remove Password From PDF File ft. ilovepdf.com

  Unlock Your PDF Here :-  https://www.ilovepdf.com/unlock_pdf Disclaimer  :- For Educational or Emergency Purpose .

Random Posts