Tuesday, December 12, 2017

How to create a file, write, read and append to file in python

In the post I will show how to create a File, Write, read and append in python.

Before that lets see the File Modes in Python


File Modes in Python
Mode
Description
'r'
Open a file for reading. (by default)
'w'
Open a file for writing. Creates a new file if it does not exist or deleates the file if it exists.
'x'
Open a file for exclusive creation. If the file already exists, the operation fails.
'a'
Open for appending at the end of the file without replacing it. Creates a new file if it does not exist.
't'
Open in text mode. (by default)
'b'
Open in binary mode.
'+'
Open a file for updating (reading and writing)


Sunday, November 26, 2017

Saturday, July 1, 2017

How to set up your user account to Hibernate on critical battery level in Ubuntu

In this post I will show how to hibernate Ubuntu on critical battery level.
In the previous posts I had shown How to...
Set critical battery percentage using the command in terminal

gsettings get org.gnome.settings-daemon.plugins.power percentage-critical

To modify this value, set to 20% by using the below command in the terminal

How can I hibernate on Ubuntu 16.04?

In this post I will show how to Enable Hibernate in Ubuntu.

In the previous posts I had shown How to...
OutPut:

Cannot Start Omnisharp [ERROR] Error: spawn cmd ENOENT VS Code

In the previous posts I had shown How to...

As the title says Cannot Start Omnisharp [ERROR] Error: spawn cmd ENOENT VS Code in Windows 10, follow the below steps.

Press WindowsKey + x and select System as shown below