This file contains 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
{% load i18n %} | |
{% if app_list %} | |
{% for app in app_list %} | |
<div | |
id="django-app-{{ app.app_label }}" | |
class="app-{{ app.app_label }} module{% if app.app_url in request.path|urlencode %} current-app{% endif %}" | |
draggable="true" | |
style="cursor: move;" | |
> |
This file contains 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 | |
# The script takes 3 args. | |
# -s for size (default: 1024) | |
# -i for input folder (default: current dir) | |
# -o for output folder (default: resized) | |
# | |
# For example: | |
# ./resize-image.sh -i pexels -o output_folder -s 1800 | |
# Default Values |
This file contains 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 | |
# | |
# Hook script for QEMU | |
# | |
# adds port forwards via IPtables and ARP to your VMs | |
# | |
# Implement: Erico Mendonca ([email protected]) | |
# Change: Mohammadhossein Shahmohammadi ([email protected]) | |
# 2020/Jul | |
# |
This file contains 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
# Without Walrus Operator | |
n = len("Hello, World") | |
if n > 10: | |
print(f"WoW, {n} is Tooooo Large!") | |
# With Walrus Operator | |
if (n := len("Hello, World")) > 10: | |
print(f"WoW, {n} is Tooooo Large!") |
This file contains 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 | |
echo $CERTBOT_TOKEN | |
echo $CERTBOT_VALIDATION > $CERTBOT_TOKEN | |
ftp -n $FTP_ADDR << END_SCRIPT | |
quote USER $FTP_USER | |
quote PASS $FTP_PASS | |
binary | |
put "$CERTBOT_TOKEN" | |
quit |
This file contains 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
import os | |
import sys | |
import json | |
import base64 | |
user_input = ' '.join(sys.argv[1:]) | |
# Payload that we should send to google api | |
payload = '{"input":{"text":"%s"},"voice":{"languageCode":"en-US","name":"en-US-Wavenet-D"},"audioConfig":{"audioEncoding":"LINEAR16","pitch":"0.00","speakingRate":"1.00"}}' % user_input |
This file contains 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
import graphene | |
from graphene_django.filter import DjangoFilterConnectionField | |
class CustomDjangoFilterConnectionField(DjangoFilterConnectionField): | |
@classmethod | |
def connection_resolver(cls, resolver, connection, default_manager, max_limit, | |
enforce_first_or_last, filterset_class, filtering_args, | |
root, info, **args): | |
filter_kwargs = {k: v for k, v in args.items() if k in filtering_args} | |
qs = filterset_class( |
This file contains 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
@mod_auth.route('/handle_sns', methods = ['GET', 'POST', 'PUT']) | |
def handle_sns(): | |
try: | |
notification = json.loads(request.data) | |
notification_type = notification["Type"] | |
if notification_type == 'SubscriptionConfirmation': | |
if 'SubscribeURL' in notification: | |
url = notification['SubscribeURL'] | |
print("Click for subscribe -> %s" % url) | |
# There is another state for unsubscribe confirmation, |