Skip to main content

on pn sir physics

starting

Well, I totally love this place. thank you all for coming out on this warm day. the overwhelming sunlight
Priyabarta sir, HOD sir, board members, faculty, and graduates of the finest university in western Odisha. 
I'm honored to be with you today. First of all, make sure, I'm not a public speaker or professional speaker which will make you energetic, and enthusiastic about something. I am just a normal student who will provide some of his insights, and experiences on priyabarta, sir, on his farewell day. Thanks to my senior for giving me chance to share, especially to Om Padhan, my big brother. 

let's get started, 
hi sir, keep your smile on.   
All Students and especially PN sir will be very happy to get this insight. Once, I was in PN sir's class and students were talking about that you are a Sambalpur singer on youtube. Later, I talked to my mom on dial-up and told her about you. meanwhile, after a couple of days, somehow she popped up on your channel and informed me. And I was like shocked. She told me, your teacher has multi-personality and is such a fascinating, passionate boy. 
You may already know that PN sir has retained his top position in helping me in my studies whether it is thermodynamics or life lessons at the roadside many times through brainstorming. I can not forget this. I adore you for that. 
It is a sad thing for students, you will no longer be available in class. To be honest, no one can fill up that void. However, it is also true that you are stepping towards your goal. Moreover, I am an optimist for your future. 
In the end sir, I am not aware of that whether we will get in touch with each other or not. However, one thing is for sure, you will always be a part of my life and it will remain constant in terms of physics. 



Comments

Popular posts from this blog

CSS by research

how to center elements inside container using text-align:center in css The `text-align: center;` property in CSS is primarily used to horizontally center inline or inline-block elements within their parent container. If you want to center block-level elements, you'd typically use other methods like margin auto, flexbox, or grid. Here's how you can use `text-align: center;` to horizontally center inline or inline-block elements: ### Example with `text-align: center;`: ```html <div class="container">     <p class="centered-element">This is a centered element.</p> </div> ``` ```css .container {     text-align: center; } .centered-element {     display: inline-block;     /* Other styling if needed */ } ``` In this example, the `text-align: center;` is applied to the `.container`, and the `.centered-element` is set to `display: inline-block;`. This makes the paragraph centered within its parent container. Keep in mind that `text...

Networking tutorials by bitten tech

 Networking computer network= A collection of computing devices that are connected in various ways in order to communicate and share resources. Usually, the connections between computers in a network are made using physical wires or cables. However, some connections are wireless, using radio waves or infrared signals.  The generic term node or host refers to any device on a network. Date transfer rate= is the speed with which data is moved from one place on a network to another.  Data transfer rate is a key issue in computer networks.  File server= A computer that stores and manages files for multiple users on a network.  Web server= A computer dedicated to responding to requests(from the browser client) for web pages. Types of Networks(LAN) A network that connects a relatively small number of machines in a relatively close geographical area.     Various configurations, called topologies, have been used to administer LANs Ring topology= A configur...

JS research

simplify it let gameOver= false; when should i use this in simple terms  In simple terms, `let gameOver = false;` is like telling your program that the game is not over yet. You use this when you want to keep track of whether the game is still being played or if it has finished.  For example, imagine you're writing code for a video game. At the start, you'd set `gameOver` to `false` because, well, the game hasn't ended yet. As the game progresses, if certain conditions are met (like a player winning or losing), you might change `gameOver` to `true` to signal that the game is finished. So, `let gameOver = false;` is a way to let your program know the initial state of the game, and you'll change it later on when the game comes to an end. make me understand this js code in simple terms let boxText = ['Apple', 'Banana', 'Cherry', 'Date', 'Fig']; let e = [2, 4]; let boxText = ['Apple', 'Banana', 'Cherry', '...