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
Building dependency packages/libandroid-support if necessary... | |
libandroid-support@22 built - skipping (rm /data/data/.built-packages/libandroid-support to force rebuild) | |
Building dependency packages/ndk-sysroot if necessary... | |
ndk-sysroot@16-8 built - skipping (rm /data/data/.built-packages/ndk-sysroot to force rebuild) | |
Building dependency packages/libbthread if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libbthread to force rebuild) | |
Building dependency packages/libicu if necessary... | |
[email protected] built - skipping (rm /data/data/.built-packages/libicu to force rebuild) | |
Building dependency packages/ca-certificates if necessary... | |
ca-certificates@20180307 built - skipping (rm /data/data/.built-packages/ca-certificates to force rebuild) |
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
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) | |
#IncludeRegexScan: ^.*$ | |
#IncludeRegexComplain: ^$ | |
#IncludeRegexTransform: | |
/data/data/com.termux/files/usr/include/bthread.h | |
pthread.h |
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* [uidensity="compact"] */ | |
/* changes padding of toolbar buttons */ | |
toolbar .toolbarbutton-1 { | |
margin-left: -1px | |
margin-right: 1px; |
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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match> | |
<edit mode="prepend" name="family"><string>Source Sans Pro</string></edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>serif</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Source Serif Pro</string></edit> | |
<edit name="family" mode="prepend_first"><string>Noto Color Emoji</string></edit> |
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
Screen 0: minimum 8 x 8, current 3520 x 1080, maximum 16384 x 16384 | |
DVI-I-0 disconnected (normal left inverted right x axis y axis) | |
DVI-I-1 connected 1600x900+0+78 (normal left inverted right x axis y axis) 443mm x 249mm | |
1600x900 60.00*+ | |
1440x900 59.89 | |
1280x1024 60.02 | |
1280x720 60.00 | |
1024x768 60.00 | |
800x600 60.32 | |
640x480 59.94 |
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
# Maintainer: David Radford <croxis gmail com> | |
# Contributor: Faule Socke <[email protected]> | |
# Contributor: Robin Baumgartner <[email protected]> | |
# Contributor: Hubert Grzeskowiak <arch at nemesis13 de> | |
pkgname=panda3d-git | |
pkgver=v1.9.4.r749.g532ac77 | |
pkgrel=1 | |
pkgdesc="A 3D game engine with Python bindings. SDK package. Git Version. Optional dependencies you want to support need to be installed before panda3d." | |
url="http://www.panda3d.org" |
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
async def ad_roll(): | |
async def ad_roll_loop(adnum): | |
async with aiofiles.open('keys.json', 'r') as k: | |
interval = json.loads(await k.read())['interval'] | |
async with aiofiles.open('ads.json', 'r') as a: | |
ad = json.loads(await a.read())['ads'] | |
if adnum > len(ad): | |
await ad_roll_loop(0) | |
await bot.sendMessage(-1001132937659, ad[adnum]) | |
dt = datetime.now() + timedelta(minutes=int(interval)) |
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 sys | |
import telepot, telepot.aio | |
import asyncio, aiofiles, aiohttp | |
import json | |
import datetime | |
from datetime import datetime, timedelta | |
import time | |
import os | |
import random | |
import regex |
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
async def ad_roll(): | |
adnum = 0 | |
while 1: | |
async with aiofiles.open('keys.json', 'r') as k: | |
interval = json.loads(await k.read())['interval'] | |
async with aiofiles.open('ads.json', 'r') as a: | |
ad = json.loads(await a.read())['ads'] | |
if adnum > len(ad): | |
adnum = 0 | |
else: |
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
#!/usr/bin/env python3 | |
import requests | |
from multiprocessing import Queue | |
import json | |
from get_sec import get_sec | |
import regex | |
import time | |
import sys | |
import gi | |
import html |