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
<?php | |
use PhpTwinfield\Customer; | |
use PhpTwinfield\CustomerAddress; | |
use PhpTwinfield\CustomerBank; | |
use PhpTwinfield\Exception; | |
use PhpTwinfield\Supplier; | |
use PhpTwinfield\SupplierAddress; | |
use PhpTwinfield\SupplierBank; |
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
// ==UserScript== | |
// @name Fix Alert Tables | |
// @namespace http://bixie.org/ | |
// @version 0.1 | |
// @description Kill the frogs! | |
// @author You | |
// @match https://www.ingress.com/intel | |
// @grant none | |
// ==/UserScript== |
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 asyncio | |
from urllib.request import urlopen | |
import plugins | |
def _initialise(bot): | |
plugins.register_user_command(["lmgtfy"]) | |
plugins.register_user_command(["shorten"]) |
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 time | |
import plugins | |
def _initialise(bot): | |
plugins.register_user_command(["events"]) | |
bot.register_shared("plugin_events_shared", tldr_shared) | |
def events(bot, event, *args): |
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 asyncio, json, re | |
import urllib | |
import plugins | |
TAG_RE = re.compile(r'<[^>]+>') | |
ELLIP_RE = re.compile(r'…') | |
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 asyncio, aiohttp, io, logging, time | |
import urllib | |
import plugins | |
logger = logging.getLogger(__name__) | |
# somethin new | |
# somethin new |
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 asyncio, json, logging | |
import urllib | |
import plugins | |
logger = logging.getLogger(__name__) | |
def _initialise(bot): |
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
<template> | |
<div id="bix-cart"> | |
<v-modal v-ref:modal modifier="uk-modal-dialog-blank"> | |
<partial :name="modal_template"></partial> | |
</v-modal> | |
</div> | |
</template> |
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
<?php | |
namespace Bixie\Freighthero\Helpers; | |
use Pagekit\Application as App; | |
class DateHelper { |
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
<template> | |
<div class="uk-form-password uk-width-1-1"> | |
<a v-show="search != ''" @click="clearAddress" class="uk-form-password-toggle uk-icon-close uk-icon-hover"></a> | |
<input type="text" v-el:search v-model="search" :class="inputclass" @keyup.enter.stop=""> | |
</div> | |
</template> | |
<script> |
NewerOlder