<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
| { | |
| "statusCode": 0, | |
| "body": { | |
| "pageState": { | |
| "regionAppId": 1233, | |
| "os": "windows", | |
| "region": "US", | |
| "baseURL": "m.tiktok.com", | |
| "appType": "m", | |
| "fullUrl": "https://m.tiktok.com/share/item/list?id=6614616633741737990&type=1&count=48&minCursor=0&maxCursor=0&_signature=reEdRhAX8RqkrWdTZLFJvq3hHV" |
| FROM ubuntu:17.10 | |
| # We don't optimize the size of fslayer here... | |
| RUN apt-get update | |
| RUN apt-get install -y \ | |
| software-properties-common \ | |
| ttf-ubuntu-font-family \ | |
| fonts-ubuntu-title \ | |
| fonts-ubuntu-font-family-console | |
| RUN add-apt-repository -y \ |
Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...
What this guide covers:
| import discord | |
| from discord.ext import commands | |
| import sys, traceback | |
| """This is a multi file example showcasing many features of the command extension and the use of cogs. | |
| These are examples only and are not intended to be used as a fully functioning bot. Rather they should give you a basic | |
| understanding and platform for creating your own bot. | |
| These examples make use of Python 3.6.2 and the rewrite version on the lib. |
| import Eureka | |
| open class _SearchablePushRow<T: Equatable, Cell: CellType> : TableSelectorRow<Cell, SearchableViewController<T>> where Cell: BaseCell, Cell: TypedCellType, Cell.Value == T, T: SearchableItem, T: CustomStringConvertible { | |
| public required init(tag: String?) { | |
| super.init(tag: tag) | |
| onCreateControllerCallback = { [weak self] _ in | |
| let controller = SearchableViewController<T>() | |
| controller.searchPlaceholder = self?.searchPlaceholder | |
| return controller |
| FROM traefik:camembert | |
| ADD traefik.toml . | |
| EXPOSE 80 | |
| EXPOSE 8080 | |
| EXPOSE 443 |
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
| from functools import wraps | |
| from flask import Flask, request | |
| app = Flask(__name__) | |
| key = "ya29.bwLu0ruxXdXe_RMOSYgfiCPORNMHLkf9rCDmV1rKtWu90TuF1d8B2SmdUlrjeOWNYThkgMM" | |
| def secure(f): | |
| @wraps(f) | |
| def check_authorization(*args, **kwargs): | |
| if request.headers.get("Authorization") == key: | |
| return f() |
| package cz.kinst.jakub.themedsnackbar; | |
| import android.content.Context; | |
| import android.support.design.widget.Snackbar; | |
| import android.util.TypedValue; | |
| import android.view.View; | |
| /** | |
| * Created by jakubkinst on 25/06/15. |