It is not possible to resolve conflicts of package-lock.json in GitHub's merge tool and you need to do a manual merge.
- Update the
master
branch with the latest changes:git checkout master git pull
- Merge your feature branch into
master
:
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Fergus Ruston", | |
"label": "Developer - interested in remote contract opportunities working with Javascript/React", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "https://dribbble.com/ergusto", | |
"summary": "", |
I hereby claim:
To claim this, I am signing this object:
Verbs, Nouns & Adverbs
dap
- Delete Around Paragraphyib
- Yank In Bracketsyap
- Yank Around Paragraphdas
- Delete Around Sentencedi'
- Delete in quotes<ii
- Shift current block to the left (provided by vim-indent-object)Find & Search within file
ctrl-b z
Zoom in and out of a single pane.
Simpler way to manage dotfiles
https://www.atlassian.com/git/tutorials/dotfiles
https://github.com/ergusto/.dotfiles
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
git clone --bare [email protected]:ergusto/.dotfiles.git $HOME/.dotfiles
cd ~ && dotfiles checkout
#!/bin/sh | |
WEBHOOK_URL="put your url here" | |
JSON="{\"content\":null,\"embeds\": [{\"color\": \"16237652\"},{\"timestamp\": \"YYYY-MM-DDTHH:MM:SS.MSSZ\"},{\"fields\": [{\"name\": \"Grabbed Movie\",\"value\": \"$radarr_movie_title\"},{\"name\": \"Release Name\",\"value\": \"$radarr_release_title\"},{\"name\": \"Quality\",\"value\": \"$radarr_release_quality\",\"inline\": true},{\"name\": \"Source\",\"value\": \"$radarr_release_indexer\",\"inline\": true},{\"name\": \"Size\",\"value\": \"$radarr_release_size\"}]}]}\" | |
curl -d "$JSON" -H "Content-Type: application/json" "$WEBHOOK_URL" |
import os, boto3 | |
from botocore.client import Config | |
from django.conf import settings | |
from rest_framework import parsers | |
from rest_framework.permissions import IsAuthenticated | |
from rest_framework.views import APIView | |
from rest_framework.response import Response | |
from rest_framework.renderers import JSONRenderer |
import functools | |
from channels.handler import AsgiRequest | |
from rest_framework.exceptions import AuthenticationFailed | |
from rest_framework.settings import api_settings | |
authenticators = [auth() for auth in api_settings.DEFAULT_AUTHENTICATION_CLASSES] | |
""" | |
Fix for some issues with the original code from Heroku: | |
https://devcenter.heroku.com/articles/s3-upload-python | |
This example is also designed for use with Django, not Flask as in the original. | |
""" | |
import base64 | |
import hashlib | |
import hmac |