This file contains hidden or 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 collections | |
| import logging | |
| from collections.abc import MutableMapping | |
| import httpx | |
| from aiokafka.cluster import ClusterMetadata | |
| from aiokafka.coordinator.assignors.abstract import AbstractPartitionAssignor | |
| from aiokafka.coordinator.protocol import ( | |
| ConsumerProtocolMemberAssignment, | |
| ConsumerProtocolMemberMetadata, |
This file contains hidden or 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
| lucca_mission_group = { | |
| slot = 1 | |
| generic = no | |
| ai = yes | |
| potential = { | |
| tag = LUC | |
| } | |
| has_country_shield = yes | |
| # missions will go here |
This file contains hidden or 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 “Remove Sophos Home” | |
| sudo pkill -9 “Sophos*” | |
| sudo rm -r /Library/Sophos\ Anti-Virus | |
| sudo rm -r /Library/Sophos Anti-Virus | |
| sudo rm -r /Library/LaunchDaemons/com.sophos.* | |
| sudo rm -r /Library/LaunchAgents/com.sophos.* | |
| sudo rm -r /Library/Preferences/com.sophos.* | |
| sudo rm -r /Library/Logs/Sophos\ Anti-Virus.log | |
| sudo rm -r ~/Library/Logs/Sophos\ Anti-Virus/Scans/ |
This file contains hidden or 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
| class Specification: | |
| def __and__(self, other): | |
| return And(self, other) | |
| def __or__(self, other): | |
| return Or(self, other) | |
| def __xor__(self, other): | |
| return Xor(self, other) |
This file contains hidden or 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 asyncio | |
| import sys | |
| from asyncio.streams import StreamWriter, FlowControlMixin | |
| reader, writer = None, None | |
| @asyncio.coroutine | |
| def stdio(loop=None): |
This file contains hidden or 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 config. | |
| # You can change the default config with `make cnf="config_special.env" build` | |
| cnf ?= config.env | |
| include $(cnf) | |
| export $(shell sed 's/=.*//' $(cnf)) | |
| # import deploy config | |
| # You can change the default deploy config with `make cnf="deploy_special.env" release` | |
| dpl ?= deploy.env | |
| include $(dpl) |
This file contains hidden or 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
| mimes_map = { | |
| 'txt': 'text/plain', | |
| 'htm': 'text/html', | |
| 'html': 'text/html', | |
| 'php': 'text/html', | |
| 'css': 'text/css', | |
| 'js': 'application/javascript', | |
| 'json': 'application/json', | |
| 'xml': 'application/xml', | |
| 'swf': 'application/x-shockwave-flash', |
This file contains hidden or 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
| 2 - Autos & Vehicles | |
| 1 - Film & Animation | |
| 10 - Music | |
| 15 - Pets & Animals | |
| 17 - Sports | |
| 18 - Short Movies | |
| 19 - Travel & Events | |
| 20 - Gaming | |
| 21 - Videoblogging | |
| 22 - People & Blogs |
This file contains hidden or 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/sh | |
| ffmpeg -i input -c:v libx264 -preset slow -profile:v high -crf 18 -coder 1 -pix_fmt yuv420p -movflags +faststart -g 30 -bf 2 -c:a aac -b:a 384k -profile:a aac_low output |
This file contains hidden or 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
| litecoin_difficulty = 250000 | |
| farm_hashrate = 500e6 | |
| initial_block = 50 | |
| def calculate_block_time_found(difficulty, hashrate): | |
| return difficulty * 2**32 / hashrate | |
NewerOlder