Skip to main content

Blog #1

Its 3:03 am in the morning 24/06/2020, I don't know what to do right now. I have shit loads of  work in my to do list but I don't want to work right now. Probably going to sleep after writing aka talking to myself using the excuse of blogging. I started this blog just to document my thoughts when I am in front of my computer(aka forever friend) and also while I am coding. Blogger interface/UI is looking very simple and boring. But I like this. Probably the beck-end developers of google knows a little bit of CSS. For those who don't know what the fucking CSS is, its a front-end language to design colorful websites and this(CSS) motherfucker fucks me on a regular basis while I am coding. I usually copy paste CSS code from lovely internet but still sometimes it confuses me, so. These I fall in love with coding tbh. I do share my thoughts and doing some random shits in twitter. Nowadays I started #100DaysOfCode challenge, lets see how far I can go with this challenge. I have lots of things to do as I told you.Coding is something I can do whole day otherwise I am a lazy ass. My problem solving skills improving btw.
Its 3:21 folks. Time to go to bed but before I have to do some little works in my pc. 
So bye.
See you soon may be tomorrow :)
<Thanks for reading/>

Comments

Popular posts from this blog

Got an error while coding in django

 error is in an element name "price" in model.py. error:    return field.get_db_prep_save(self._effective_default(field), self.conne ction)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 823, in get_db_prep_save     return self.get_db_prep_value(value, connection=connection, prepared=Fal se)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 818, in get_db_prep_value     value = self.get_prep_value(value)   File "C:\Users\Shubrajit Acharjee\PycharmProjects\untitled\lib\site-packag es\django\db\models\fields\__init__.py", line 1776, in get_prep_value     raise e.__class__( ValueError: Field 'price' expected a number but got ''. solution:Go to migrations file and delete all the auto generated migration files related to element "price" and code correctly in models.py file and ru...