Entradas

Mostrando las entradas de mayo, 2018

How to Calculate Your TOEFL Score

Imagen
How to Calculate Your TOEFL Score Have you taken your TOEFL test? If you have, I believe you already knew how much you get your score. But did you wonder where your score comes up from? Me, myself at first felt very confused because I've never got score with three digits before. If you have the same feeling like me, let's take a look how do we get our TOEFL Score. To find out our TOEFL score, there are at least 2 stages. First, we need to convert the correct answers that we have through TOEFL scoring table as follows: For example, if we have 35 correct answers in section 1, 30 correct answers in section 2 and 48 correct answers in section 3 then we can see how do we convert the score as follows: Section 1 Section 2 Section 3 The Correct Answers 35 30 48 Converted Score 54 54 65 The next stage: 1. sum up all of the converted scores :  54 + 54 + 65 = 173 2. divide into 3 : 173/3 = 57.7 3. times to 10 : 57.7 x 10 = 577

Creando apps en Raspbarrypi

[Desktop Entry] Version=1.0 Encoding=UTF-8 Type=Application Categories=Network; Name=BP Diagnosis Comment=Remote control solution. Exec=/home/pi/appBP/appBP.sh Icon=BP Location /usr/share/applications

Install pandas

sudo apt-get install python3-pandas With this also numpy is installed

Intall keras

Installar keras http://deeplearning.net/software_links/ pip install keras Installar Backend theano https://conda.io/miniconda.html conda install theano pygpu nano ~/.bashrc #Add this export MKL_THREADING_LAYER=GNU source ~/.bashrc Modificar keras.json cd .keras nano keras.json {     "image_dim_ordering": "th",     "floatx": "float32",     "epsilon": 1e-07,     "backend": "theano",     "image_data_format": "channels_last" }

permisos linux a todos los archivos de la ruta

chmod -R 777 .

Encontrar dispositivo serial en ubuntu

dmesg | grep tty

Cambiar python version desde la consola

19 down vote accepted Open your .bashrc file nano ~/.bashrc . Type alias python=python3 on to a new line at the top of the file then save the file with ctrl+o and close the file with ctrl+x. Then, back at your command line type source ~/.bashrc . Now your alias should be permanent. EDIT: For update alternatives, the priority is an integer. The priority represents which program should be the first used. This article sums it all up pretty well.

Pyqt4 installation and creation of a python file from terminal linux

sudo apt-get install python-qt4 qt4-designer sudo apt install pyqt4-dev-tools pyuic4 -x -o ./example.py ./example.ui for python 3 sudo apt-get install python3-pyqt4