This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "keys": ["tab"], | |
| "command": "expand_abbreviation_by_tab", | |
| // put comma-separated syntax selectors for which | |
| // you want to expandEmmet abbreviations into "operand" key | |
| // instead of SCOPE_SELECTOR. | |
| // Examples: source.js, text.html - source | |
| "context": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo '' >> ~/.bashrc && echo 'source virtualenvwrapper.sh' >> ~/.bashrc | |
| source virtualenvwrapper.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkvirtualenv --python=/usr/bin/python3.5 django19 && workon django19 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| which pip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pip install django |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| django-admin.py startproject default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import sys | |
| path = '/home/{mi usuario}/default' | |
| if path not in sys.path: | |
| sys.path.append(path) | |
| from django.core.wsgi import get_wsgi_application | |
| os.environ.setdefault("DJANGO_SETTINGS_MODULE", "default.settings") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Profile config | |
| username: ubuntu | |
| server: localhost/127.0.0.1 or <public_network_ip> (Vagrantfile) | |
| ssh: 22 or <custom_port_ssh> | |
| initial directory: /vagrant or /home/<any_user_in_vagrant> | |
| authentication method: | |
| private key file: | |
| <vangrat_folder>/.vagrant/machines/default/virtualbox/private_key | |
| remote server command: sudo -i nuclide-start-server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .= .- := =:= __ | |
| == != === !== =/= | |
| <-< <<- <-- <- <-> -> --> ->> >-> | |
| <=< <<= <== <=> => ==> =>> >=> | |
| >>= >>- >- <~> -< -<< =<< | |
| <~~ <~ ~~ ~> ~~> | |
| <<< << <= <> >= >> >>> | |
| <|||<|| <| <|> |> ||> |||> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import angular from 'angular'; | |
| import UIkit from 'uikit'; | |
| import template from 'app/components/menumobile/menumobile.pug'; | |
| const MenuMobileComponent = { | |
| bindings: { | |
| user: '=', | |
| }, | |
| controller: class MenuMobileController { | |
| static $inject = ['$rootScope', '$scope']; |
OlderNewer