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
| { | |
| "name": "npm-node-sass", | |
| "version": "0.0.1", | |
| "devDependencies": { | |
| "autoprefixer": "^6.3.3", | |
| "browserify": "^13.0.0", | |
| "cssnano": "^3.5.2", | |
| "jshint": "^2.9.1", | |
| "node-sass": "^3.4.2", | |
| "postcss": "^5.0.16", |
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
| find . -name "*.pyc" -type f -print0 | xargs -0 /bin/rm -f |
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
| Function.prototype.bind=(function(){}).bind||function(b){if(typeof this!=="function"){throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");}function c(){}var a=[].slice,f=a.call(arguments,1),e=this,d=function(){return e.apply(this instanceof c?this:b||window,f.concat(a.call(arguments)));};c.prototype=this.prototype;d.prototype=new c();return d;}; |
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
| window.dispatchEvent(new Event('resize')); |
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
| from django.core.management.base import BaseCommand, CommandError | |
| from apps.mainpage.models import Contacts | |
| class Command(BaseCommand): | |
| def handle(self, *args, **options): | |
| Contacts.objects.create(name="Social") | |
| self.stdout.write(self.style.SUCCESS('Successfully creeate Contacts Obj')) |
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
| gunicorn woodshed.wsgi --bind=localhost:8001 --daemon |
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
| <meta name="viewport" content="width=device-width, initial-scale=0.6, maximum-scale=1.0, user-scalable=1"> |
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
| /** @jsx React.DOM */ | |
| var React = require('react') | |
| , mui = require('material-ui') | |
| , { TextField } = mui | |
| , $ = require('jquery'); | |
| require('jquery.inputmask'); | |
| var MaskedTextField = React.createClass({ |
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
| git config --global user.name "Vlad Feninets" | |
| git config --global user.email v.feninets@gmail.com | |
| git config --global color.ui true | |
| git config --global core.autocrlf input |
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
| 1) mkdir venv_new | |
| 2) virtualenv venv_new/ --always-copy | |
| 3) source ./bin/activate | |
| 4) pip install Django |