Refer official docs [https://conda.io/docs/user-guide/tasks/manage-environments.html]
Simplified: https://medium.freecodecamp.org/why-you-need-python-environments-and-how-to-manage-them-with-conda-85f155f4353c
conda create --help
Refer official docs [https://conda.io/docs/user-guide/tasks/manage-environments.html]
conda create --help
error: key "CEB167EFB5722BD6" could not be looked up remotely error: required key missing from keyring error: failed to commit transaction (unexpected error)
$ sudo pacman-key --lsign-key CEB167EFB5722BD6
if this gives error ERROR: CEB167EFB5722BD6 could not be locally signed.
$ sudo pacman-key --refresh-keys
| <?php | |
| function readable_number($number, $discharge = 0, $fractional = null, $fractional_count = 1) | |
| { | |
| $int_number = intval($number); | |
| if($int_number > 999) | |
| { | |
| $num = substr($int_number, 0, strlen($int_number) - 3); | |
| $discharge++; |
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.{{Command}}
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Play
| <?php | |
| use Swagger\Annotations as SWG; | |
| /** | |
| * @SWG\Swagger( | |
| * basePath="/v1", | |
| * host="api.local", | |
| * schemes={"http"}, | |
| * produces={"application/json"}, |
| <?php | |
| /** | |
| * 08 02 22 97 38 15 00 40 00 75 04 05 07 78 52 12 50 77 91 08 | |
| * 49 49 99 40 17 81 18 57 60 87 17 40 98 43 69 48 04 56 62 00 | |
| * 81 49 31 73 55 79 14 29 93 71 40 67 53 88 30 03 49 13 36 65 | |
| * 52 70 95 23 04 60 11 42 69 24 68 56 01 32 56 71 37 02 36 91 | |
| * 22 31 16 71 51 67 63 89 41 92 36 54 22 40 40 28 66 33 13 80 | |
| * 24 47 32 60 99 03 45 02 44 75 33 53 78 36 84 20 35 17 12 50 | |
| * 32 98 81 28 64 23 67 10 26 38 40 67 59 54 70 66 18 38 64 70 |
| image: ruby:latest | |
| before_script: | |
| - which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y ) | |
| - eval $(ssh-agent -s) | |
| - ssh-add <(echo -e "$SSH_PRIVATE_KEY") | |
| - gem install capistrano | |
| stages: | |
| - deploy |
| library(rgdal) | |
| library(ggplot2) | |
| library(dplyr) | |
| # clone NepalMaps from https://github.com/anjesh/NepalMaps | |
| # read shapefile | |
| nepal.adm3.shp <- readOGR(dsn="./NepalMaps/baselayers/NPL_adm", layer="NPL_adm3", stringsAsFactors = FALSE) | |
| # fortify shapefile data to data frame |