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
| // ==UserScript== | |
| // @name WME Street to River or Building | |
| // @description This script create a new river landmark in waze map editor (WME). It transforms the the geometry of a new unsaved street to a polygon. | |
| // @namespace https://greasyfork.org/scripts/1879-wme-street-to-river-plus | |
| // @grant none | |
| // @version 16.07.20 | |
| // @include https://www.waze.com/editor/* | |
| // @include https://www.waze.com/*/editor/* | |
| // @include https://beta.waze.com/* | |
| // ==/UserScript== |
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 myproject | |
| New python executable in myproject/bin/python | |
| Installing setuptools............done. | |
| Installing pip...............done. | |
| virtualenvwrapper.user_scripts creating /opt/env/myproject/bin/predeactivate | |
| virtualenvwrapper.user_scripts creating /opt/env/myproject/bin/postdeactivate | |
| virtualenvwrapper.user_scripts creating /opt/env/myproject/bin/preactivate | |
| virtualenvwrapper.user_scripts creating /opt/env/myproject/bin/postactivate | |
| virtualenvwrapper.user_scripts creating /opt/env/myproject/bin/get_env_details | |
| (myproject)~$ pip install django pytest-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
| #!/bin/bash | |
| reset(){ | |
| rm -rf /tmp/pcre-8.21 | |
| rm -rf cElementTree-1.0.5-20051216 | |
| rm -rf silvercity | |
| rm -rf scintilla | |
| rm -rf sgmlop-1.1.1-20040207 | |
| } |