Debian: how to add memtest86 entry to the boot menu
Simply run:
apt-get install memtest86+
It will install memtest and reconfigure the menu.
Simply run:
apt-get install memtest86+
It will install memtest and reconfigure the menu.
# python >>> x = 3.1415926 >>> format(x, '.2f') '3.14'
You can get this error if you try to install lxml library:
As simple as:
yum install libxslt-devel libxml2-devel
for Centos or
apt-get install libxml2-dev libxslt1-dev
for Ubuntu.
python -m SimpleHTTPServer 8080
It will serve current directory accessible via HTTP on port 8080.
DeprecationWarning: Python 2.6 is no longer supported by the Python core team, please upgrade your Python.
If you get this deprecation warning and you can’t upgrade to a newer Python version, it’s possible to disable this warning:
import warnings warnings.filterwarnings("ignore", category=DeprecationWarning)
Server-Name-Indication, or SNI, is an official extension to SSL where the client tells the server what hostname it is contacting. It allows to host multiple SSL enabled website on one IP. To get SNI working with requests 2.2.1 you would need the following steps.
To install next packages:
If it works for you, that’s great. But if doesn’t, you might want to make sure:
Once you have all these packages you should be able to use Requests which is able to talk to SNI enabled servers.
sudo yum install cmake git clone https://github.com/zrax/pycdc.git cd pycdc cmake ./ make ./pycdc app.pyc > app.py
If you get this error while trying to install some Python package it simply means that you don’t have setuptools module. To install it run:
sudo apt-get install python-setuptools
Now you can proceed.
Sending a message over Jabber from Python is a simple task. Let’s install Python Jabber/XMPP implementation called pyxmpp2:
python-pip install pyxmpp2
Now download client example:
wget https://raw.github.com/Jajcus/pyxmpp2/master/examples/send_message_client.py
And run:
python send_message_client.py
After you enter all data a message will be sent.