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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.40000000596046448</real> |
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
[tool.poetry] | |
name = "test" | |
version = "0.1.0" | |
description = "" | |
authors = [] | |
[tool.poetry.dependencies] | |
python = "^2.7 || ^3.6" | |
botocore = [ |
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
#!/usr/bin/env python | |
""" Print all of the clone-urls for a GitHub organization. | |
It requires the pygithub3 module, which you can install like this:: | |
$ sudo yum -y install python-virtualenv | |
$ mkdir scratch | |
$ cd scratch | |
$ virtualenv my-virtualenv |
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
# Use the light version of the image that contains just the latest binary | |
FROM hashicorp/terraform:light | |
# The app folder will contain all our files | |
WORKDIR /app | |
# Put all your configration files in the same folder as the Dockerfile | |
COPY . /app | |
# Initalize terraform with local settings and data |
- Customize your search engine (go DDG!)
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
<scheme name="One Monokai (PB)" version="142" parent_scheme="Darcula"> | |
<metaInfo> | |
<property name="created">2019-04-22T17:54:05</property> | |
<property name="ide">idea</property> | |
<property name="ideVersion">2019.1.1.0.0</property> | |
<property name="modified">2019-04-22T17:54:35</property> | |
<property name="originalScheme">One Monokai (PB)</property> | |
</metaInfo> | |
<colors> | |
<option name="CARET_COLOR" value="f8f8f0" /> |
Prerequisites: install jetbrains toolbox - use it to install IntelliJ (need ultimate edition for remote debugging; requires a license)
Full comparison. The main advantages of Ultimate:
- Has all the functionality of DataGrip (SQL)
- Has plugins for Ruby, Go, PHP, Node.js, Angular, React, and more
- Supports Coffee/Type/Javascript
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 is the path to snakeviz executable in a dedicated venv | |
alias snake='/Users/pavel/dev/venvs/snakeviz/bin/snakeviz' | |
profile() { | |
tmp_file=$(mktemp) | |
python -m cProfile -o $tmp_file "$@" | |
snake $tmp_file | |
rm $tmp_file | |
} |
NewerOlder