Skip to main content

Milestone of 7 days

 Today, 11/07/22, I am going to start my study as well as time management. I have to study for 7 days continuously without being disorganized. So, let's start the journey with a thumbs up. 

time= 6.34, asset yogi investing from beginners, studied up to 9 pm, wake up around-8.30, day time no study, I've read 5hours. good hours to getting started. 

dt- 12/7/22, stock market- 3.40-5 pm, I took a break. Hung out for 1 hour on my bicycle. 6.30-45= meditation. 7 pm- I will start coding web development. 

dt-13/7/22, woke up late, day time no study, 2.30- started studying networking tutorials. I've to wake up early around 6.30. , 2.30-5.30 studied good, 5.30-6.45 important work(cycle repairing), 6.45-78= brainstorming with natu bhanja. 8 started coding and ended at 9 pm. Again started 10.30 pm-11.3. I think I'm dumb at file explorer. I gotta know about it. 

dt-14/7/22 woke up late but was good as compared to previous days. day time no study, college is very frustrating, only wasting my time. came to the room at 11.30, and did some house chores up to noon. However, learned some learnings, and upload some business-related content on Badabusiness App. 12.30= I will watch some videos on file explorer to get my resolution. 12.30-1, watch some videos. I did some important work up to 4 pm. Now I will look into investing. 4-5.30 completed. I did meditation from 7-7.35 was motivating for me. Now I will begin studying coding my necessity. 10-11.10= brainstorming. 11.10-coding revise

dt-15/7/22 woke up at 7 am and wasted my time on the internet. However, today I will begin my journey in the morning. 10.30-11= file manager and do some research, 11- coding. was interrupted

at-16/7/22, forget to update it, not effective, even I did not read as I wanted

dt-17/7/22 did not wake up early(repeatedly doing the same mistakes), but from dt18 I won't do the same mistake for sure. I will study. today watch a UPSC series to get it into my mind. was pretty much beautiful. It's 2.46 and I'm writing this curriculum. Sunday is for youtube, blogging, and investing. I'm reading only about investing. Did meditation for around 15min. 7 pm-started studying investing, no study, watched YT videos. 


Let's sum up all= s+s+A+s+No+No+s(ultimately satisfied)

my repeating problems=

  1. waking up late= around 9.15 AM
  2. not studying in the morning
  3. networking= little bit of studying
  4. after dinner= I am less effective
  5. evening time less productive
  6. not bathing day time
  7. less practice in coding
  8. I waste my mobile net on useless stuff. I am ashamed of myself. I've to make it manage to bring changes. 

NEW milestones of 7 days from 18-24= I don't have to commit the same mistakes, the more productive you are, the fewer mistakes you have. 

18/7/22= day time no study(wasting my time), late waking up, 2.30= started some research, I will start networking. 2.30-4 pm=networking, 4.10, started investing=5.30, evening work=7.10 pm. did not study up to 10.45. I will study now. 

19/7/22=woke up at 7 am, doing nothing but, proud that I at least woke up. 9.41= started coding, I had some work to accomplish. But, I am proud. 2.10= started networking. 2.10=3.40, mind refresh 4.24, 4.24=started investing. 6.40-started networking=23.31

dt=20/7/22, woke up very late, 9.35, 10.33= started coding,11.30, went to college, after college went to Samanta's room not good, 3.50 came to the room. I will look into computer networking. I did not read in the afternoon time. 10am= started coding =11.30, But I am not satisfied. 

dt=21/7/22=woke up at 7 PM, and watched business-related content on Youtube. 9.45=started coding=10.45, Sumanta's room= afternoon, time sleeping, freelancing, night=conversation political

dt=22/7/22=woke up=7AM, 8 am= started coding, no study.
dt=23/7/22= wasting time=I am very kamchor, overthinking person. 4pm= started investing. satisfied

dt=24/07/22=day time=2.50 hours, 2.20= started networking




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