Rank | Bot | Approximate Server Count | Library |
---|---|---|---|
1 | MEE6 | 21,300,000 | Custom Python |
2 | Rythm 🪦 | 15,200,000 | JDA |
3 | carl-bot |
10,900,000 | Pycord |
4 | Groovy 🪦 | 10,100,000 | JDA, Discord4J |
5 | Dyno |
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 Foundation | |
import SwiftUI | |
#if canImport(UIKit) | |
import UIKit | |
#elseif canImport(AppKit) | |
import AppKit | |
#endif | |
extension Image { | |
/// Initializes a SwiftUI `Image` from data. |
You can use this diagram as a template to create your own git branching diagrams. Here's how:
- Create a new diagram with diagrams.net (formerly draw.io)
- Go to File > Open From > URL
- Insert this url (it points to the xml data below):
https://gist.githubusercontent.com/bryanbraun/8c93e154a93a08794291df1fcdce6918/raw/bf563eb36c3623bb9e7e1faae349c5da802f9fed/template-data.xml
- Customize as needed for your team.
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
## General info: | |
# Function starts with @ | |
# Variable starts with $ | |
# Return of the most recently run function made by $@ | |
# Key comments marked with ## | |
## Version of IV must be set first | |
~version: "2.1" | |
# Telegram doesn't support JW Player which is used in videoheaders |
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
// | |
// NoteTests.swift | |
// NoteTests | |
// | |
// Created by Roman Brovko on 6/17/19. | |
// Copyright © 2019 Roman Brovko. All rights reserved. | |
// | |
import XCTest | |
@testable import Note |
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
FROM arm64v8/ubuntu | |
RUN apt-get update | |
ARG LUA_VERSION=5.1 | |
RUN apt-get update && \ | |
apt-get -y upgrade && \ | |
apt-get -y install libreadline-dev libssl-dev lua5.1 liblua5.1-dev git make unzip redis-server curl libcurl4-gnutls-dev wget && \ | |
wget http://luarocks.org/releases/luarocks-2.2.2.tar.gz && \ | |
tar zxpf luarocks-2.2.2.tar.gz && \ | |
cd luarocks-2.2.2 && \ | |
sh ./configure --lua-version=${LUA_VERSION} && \ |
- remote SSH shell on macOS does not use
/etc/paths
- this is not an issue of ansible, it is the way macOS processes config files on remote shells:
- see
ssh localhost echo \$PATH
- ...if not specified otherwise and macOS does not read any startup files
- example:
[...]localhost '/bin/sh -c '"'"'sudo -H -S -n -u test /bin/sh -c '"'"'"'"'"[...]
- even
/bin/bash
does not read any startup files by default
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
const m3u = require('m3ujs'); | |
const {promisify} = require('util'); | |
const sanitize = require("sanitize-filename"); | |
const fetch = require('node-fetch'); | |
const ID3Writer = require('browser-id3-writer'); | |
const fs = require('fs'); | |
const path = require("path"); | |
const readFileAsync = promisify(fs.readFile); | |
const writeFileAsync = promisify(fs.writeFile); | |
const jsmediatags = require("jsmediatags"); |
Have a look at load.sh
file below, it contains all necessary commands to automate the process of changing system limits.
This guide has been tested on macOS High Sierra and Mojave. If you'd like to learn a theory, please continue reading.
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
_The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine
NewerOlder