I hereby claim:
- I am andriisoldatenko on github.
- I am andriisoldatenko (https://keybase.io/andriisoldatenko) on keybase.
- I have a public key ASBPtNAX3foHxN9y3Noj24HIZweea9gdmfScyLiKSugZgAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"kind": "youtube#videoListResponse", | |
"etag": "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/CCMKJ4Yog67Jfq11ExS2XxNDDQ0\"", | |
"pageInfo": { | |
"totalResults": 28, | |
"resultsPerPage": 28 | |
}, | |
"items": [ | |
{ | |
"kind": "youtube#video", |
FROM golang AS builder | |
WORKDIR /src | |
RUN go get -u github.com/go-delve/delve/cmd/dlv | |
ADD . /src | |
RUN cd /src && go build -o goapp | |
FROM alpine | |
WORKDIR /app | |
COPY --from=builder /src/goapp /app/ | |
ENTRYPOINT ./goapp |
astro_0.8.2_windows_386.zip
and move astro.exe
somewhere in your %PATH%
C:\Windows\system32>astro version
Astro CLI Version: 0.8.2
Git Commit: f5cdab8f832da3c6184a7ac167b491e3bac3c022
Made with ❤️and golang tools 🛠 by @a_soldatenko
Interesting bloggers in twitter
def fopen(filename, default=sys.stdin): | |
""" | |
This function helps you do not see errors during upload solutions | |
because you forget to switch back to sys.stdin and also you can easily | |
debug your code with ipdb or another python debuggers | |
""" | |
try: | |
f = open(filename) | |
except FileNotFoundError: | |
f = default |
#!/usr/bin/env ruby | |
# consumeraffairs/.git/hooks/commit-msg | |
# Finds the story number from the branch name and injects it | |
# into the commit message. For instance, if we're on branch | |
# | |
# BRAND-1234-Some-Feature | |
# | |
# And we had committed with | |
# | |
# git commit -m "I did some feature" |
import importlib | |
import sys | |
# Import your lambda python module | |
mod = importlib.import_module(sys.argv[1]) | |
function_handler = sys.argv[2] | |
lambda_function = getattr(mod, function_handler ) | |
event = {'name': 'Andrii'} |
I hereby claim:
To claim this, I am signing this object:
from django.core.files.storage import get_storage_class | |
from storages.backends.s3boto3 import S3Boto3Storage | |
class StaticS3Boto3Storage(S3Boto3Storage): | |
file_overwrite = True | |
class CachedS3BotoStorage(S3Boto3Storage): | |
""" |