Skip to main content

milestone of 1 month

 from 6th june to 6th july

6-right 

7th- right

8th- ongoing day time failed due to something, was little bit difficult me to study, in other words, my got wiped out because of hangout that held with my family friends. 

9th- lets see how it goes- wiped out

10th- day time wiped out, evening, night lets see wiped out

11th- day time barbad, night time 1 hour only 

i did not commit as expected wiped out

ill watch some yt videos

12 th running 1 hour plus, not best but up to the mark, satisfied

for me im addicted to whatsapp status. I have to go away from it. I know it overwhelms me. 

13th disturbing-; not able to focus apparantly, went good, but night study was not as helpful as expected. 

14th= littel bit study, shifted to sunamudi to get rakhi, 10.30= writing time management tips

then i ve to study 

let's see how it does. 

4pm op but only web development, no internet learnings, and investing, satisfied

night study is little bit exhausting for me. but i read little. 

15th- 10 am started coding, my body is not good, i will try, afternoon time body was week, took a rest, night study 8.50 pm=10pm

16th 8.40=1.2 hour

4.15- ongoing stock market, one video deeply understood, 

8.30- coding

17th-; 9.15=coding

day time less productive, afternoon i destroyed, 

8pm- investing nighy time 1.5 hours. 

18th= 11am= book reading, sound pollution is held around me. 

4 pages. 11.55

let's have a break

2.17= networking

18-22, i did not read even a word. 

The key problem is, i can't sustain things on a daily basis. 

but i have to do if not possible drag myself. i will do definitely for sure. i will chase for everything. I won't publish status for sure. 

i will not open bada business app for 3 days. master= 22-23= no master

meditate, reading book, regular tweets,. my focus on web development is decreasing. I have to keep my eye on it. 

today, i will study 7pm. 

somehow, i did up to 12.33AM. 

23date= day time no

evening no

night time= 9.30 book reading. 15min, done 

time to code. 11.4 by 

23-28 no study 

I've read 6days out of 22 days which is very ;;;;;;;;;;;;;;;;;;;

I ashamed of myself. 

I did not read upto 7th july. 

New time table from 7th july to 14th july

i'll definitely accomplish it anyway. try to help my community either.  all time management will work upon. 



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', '...