Web development – Telegram
Web development
3.97K subscribers
410 photos
31 videos
80 files
87 links
Web development learning path

Frontend and backend resources.

HTML, CSS, JavaScript, React, APIs and project ideas.

Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
CSS Positioning
PDF Chat with Node.js, OpenAI, and ModelFusion

In this blog post, we'll build a console app capable of searching and understanding PDF content to answer questions using Node.js, OpenAI, and ModelFusion. You'll learn how to read and index PDFs for efficient search and deliver precise responses by retrieving relevant content from the PDFs.

You can find the complete code for the chatbot here: github/com/lgrammel/modelfusion/examples/pdf-chat-terminal

We use Mozilla's PDF.js via the pdfjs-dist NPM module to load pages from a PDF file. The loadPdfPages function reads the PDF file and extracts its content. It returns an array where each object contains the page number and the text of that page.


Source-Link: modelfusion
Git Commands
2👍1
How do we write comments in HTML?
Anonymous Quiz
18%
</…….>
59%
<!……>
13%
</……/>
10%
<…….!>
Explanation:
Browser ignores comment in a code. There are always two types of command i.e. single line command and multiple line command. If one wants to add a comment in code, add the text between these characters <!…..comment….>. It will not visible in the user’s browser.
👍1
Next.js 14 is released

Since Next.js 13, we've been working to improve local development performance in Next.js in both the Pages and App Router.

Previously, we were rewriting next dev and other parts of Next.js to support this effort. We have since changed our approach to be more incremental. This means our Rust-based compiler will reach stability soon, as we've refocused on supporting all Next.js features first.

5,000 integration tests for next dev are now passing with Turbopack, our underlying Rust engine. These tests include 7 years of bug fixes and reproductions.

As we announced at Next.js Conf, Next.js 14 is our most focused release with:

Turbopack: 5,000 tests passing for App & Pages Router
53% faster local server startup
94% faster code updates with Fast Refresh


Source-Link: nextjs
Git workflow
Structure of URL
3👍1
Which of the following elements in HTML5 defines video or movie content?
Anonymous Quiz
55%
<video>
5%
<movie>
4%
<audio>
35%
<media>
Explanation:
The media to which linked document is optimized is given by <media> tag. Before HTML5, videos could only be played with a plug-in (like flash). The HTML5 video element specifies a standard way to embed a video in a webpage. As like <video> elements, <audio> element contains additional files or streams like music, recording, etc.
👍2
The Complete Responsive Web Design Course

Enhances your skills in responsive web design and create professional websites

Rating ⭐️: 4.1 out 5
Students 👨‍🎓 : 31,920
Duration : 3hr 4min of on-demand video
Created by 👨‍🏫: Zenva Academy, Pablo Farias Navarro

🔗 Course Link

#web_development #web_design

👉Join @web_dev_bds for more👈
👍3
Form Tags

<form method="POST" action="api/login">
<label for="mail">Email: </label>
<input type="email" id="mail" name="mail">
<br/>
<label for="pw">Password: </label>
<input type="password" id="pw" name="pw">
<br/>
<input type="submit" value="Login">
<br/>
<input type="checkbox" id="ck" name="ck">
<label for="ck">Remember me</label>
</form>
👍73
fullstack-vue-the-complete-guide-to-vuejs_compress.pdf
18.6 MB
Full stack Vue: The Complete Guide To Vue.js
👍1🔥1
CSS Flexbox
JavaScript_Iterators,_Objects,_and_Classes_Iterators_Cheatsheet.pdf
256.5 KB
JavaScript Iterators, Objects, and Classes_ Iterators Cheat sheet
👍3
Which of the following is not the element associated with the HTML table layout?
Anonymous Quiz
24%
alignment
12%
size
25%
color
40%
spanning
There are three elements in HTML table layout i.e. size, spanning and alignment. Layout type can be achieved by setting Rows elements layout attribute to Fixed or Auto. Auto attribute relies on browser compatibility whereas fixed layout relies on developer specification.