Moja lekcja

 0    17 fiche    jakitaki
Télécharger mP3 Imprimer jouer consultez
 
question English réponse English
Install redis cli and server
commencer à apprendre
sudo dnf install redis
initialize redis server
commencer à apprendre
sudo systemctl start redis
start redis on boot
commencer à apprendre
sudo systemctl enable redis
redis config file
commencer à apprendre
sudo nano /etc/redis/redis. conf
list outdated python packages
commencer à apprendre
pip list -o
update outdated packages in python
commencer à apprendre
pip install --upgrade your_package
python command to write all necessary packages for the project to a file
commencer à apprendre
pip freeze > requirements. txt
python command to install necessary packages from a file
commencer à apprendre
pip install -r requirements. txt
What shortcut will prompt a dialog in pycharm where you can find any command, setting, code construct, or a project file?
commencer à apprendre
shift + shift
shortcut in pycharm to move code block up or down
commencer à apprendre
left alt + up (or down arrow)
shortcut in pycharm to scroll
commencer à apprendre
left ctrl + up) or down arrow)
shortcut in pycharm to go to definition/declaration
commencer à apprendre
ctrl+B or ctrl+Click
shortcut in pycharm to extend/shrink code selection
commencer à apprendre
ctrl+W/ctrl+shift+W
shortcut in pycharm to view recently opened files
commencer à apprendre
ctrl+E
Which string method converts the first character of each string to upper case in python?
commencer à apprendre
title()
What do you call the automatic conversion of values from one data type to another, allowing two operands of different types to be combined in an expression.
commencer à apprendre
type coercion
keyboard shortcut to format code in Intellij
commencer à apprendre
ctrl+alt+L

Vous devez vous connecter pour poster un commentaire.