Skip to main content

Posts

Showing posts from November, 2020

What is full stack developer | How to become a full stack developer | what is Front end and Back end

 Full Stack Developer What actually is a full stack development? and how to become a full stack developer?   “.. a Full Stack Developer is someone with familiarity in each layer, if not mastery in many and a genuine interest in all software technology … ”     In our Programming language,   “… a full-stack web developer is someone who has honed skills in both front-end web design/development and back-end/server coding. You can count on a fullstack web developer to design, code, implement and maintain a fully functional modern interactive website on his/her own … ”                                      For better understanding you must watch codoblog's youtube video..                                                                                                👇👇👇👇

How to Generate Barcode || code for Barcode

|| Random Barcode Generator || Barcode on the basis length of text || #CODE :                 Barcode.html ==>        <html>        <head>            <title>Barcode Generator</title>            <link rel="stylesheet" href="Barcode.css">     </head>     <body>         <div>Barcode Generator</div>         <input type="text" placeholder="Type..."/>         <button onclick="generate()">Generate Barcode</button>           <svg id="barcode"></svg>           <script src="https://cdnjs.cloudflare.com/ajax/libs/jsbarcode/3.11.0/JsBarcode.all.min.js"></script>           <script>               JsBarcode("#barcode","#Hello",{                   background:"#161748",                   lineColor:"#ffffff"               });               function generate(){                   var val = docu