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
| /* | |
| Frankford Arsenal X-10 Bullet Sensor microcontroller code by Tom Kazakov | |
| Licensed under CC-BA-SA 4.0 | |
| Full project description: | |
| https://www.thingiverse.com/thing:6844333 | |
| */ | |
| #include <OneBitDisplay.h> | |
| #include <RunningMedian.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
| /* | |
| Frankford Arsenal X-10 Autodrive microcontroller code by Tom Kazakov | |
| Licensed under CC-BA-SA 4.0 | |
| Full project desription: | |
| https://www.thingiverse.com/thing:6810400 | |
| */ | |
| #include <BasicStepperDriver.h> | |
| #include <RunningMedian.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
| /* | |
| Frankford Arsenal X-10 Alarm Hub microcontroller code by Tom Kazakov | |
| Licensed under CC-BA-SA 4.0 | |
| Full project desription: | |
| https://www.thingiverse.com/thing:6732279 | |
| */ | |
| #include <Adafruit_SH110X.h> | |
| Adafruit_SH1106G display = Adafruit_SH1106G(128, 64, &Wire, -1); |
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
| /* global showElement divDisplay */ | |
| // ==UserScript== | |
| // @name FraudGuard | |
| // @namespace http://hometap.com/ | |
| // @version 0.19 | |
| // @include https://fraudguard.interthinx.com/Fraudguard/loandata.aspx* | |
| // @require http://code.jquery.com/jquery-3.4.1.min.js | |
| // @description Go HOps! <3 | |
| // @copyright 2020, Hometap |
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
| {"key": "value"} |
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
| [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (v1, line 0) | |
| [Error] Error: GraphQL Error (Code: 404): {"response":{"error":"Object not found","status":404},"request":{"query":"query ($id: ID!) {\n grant(id: $id) {\n \nid\nnamePrefix\nnameSuffix\nunitGoalCount\nunitNamePlural\nunitNameSingular\nstatus\ndescription\nlead\npublished\nsumTotal\nsumFoundation\nsumDonations\ntags\norganizationName\norganization {\n id\n name\n}\n\n }\n }","variables":{"id":"9"}}} | |
| (anonymous function) (1f261d87d387ab93f8d2.main.js:1:1876041) | |
| [Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error) (v1, line 0) | |
| [Error] Error: GraphQL Error (Code: 500): {"response":{"error":"<!DOCTYPE html>\n<html>\n<head>\n <title>We're sorry, but something went wrong (500)</title>\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <style>\n .rails-default-error-page {\n background-color: #EFEFEF;\n color: #2E2F30;\n |
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
| Pacific/Midway -1100 | |
| Pacific/Niue -1100 | |
| Pacific/Pago_Pago -1100 | |
| Pacific/Honolulu -1000 | |
| Pacific/Johnston -1000 | |
| Pacific/Rarotonga -1000 | |
| Pacific/Tahiti -1000 | |
| Pacific/Marquesas -930 | |
| America/Adak -900 | |
| Pacific/Gambier -900 |
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
| Africa/Abidjan, +0000 | |
| Africa/Accra, +0000 | |
| Africa/Addis_Ababa, +0300 | |
| Africa/Algiers, +0100 | |
| Africa/Asmara, +0300 | |
| Africa/Bamako, +0000 | |
| Africa/Bangui, +0100 | |
| Africa/Banjul, +0000 | |
| Africa/Bissau, +0000 | |
| Africa/Blantyre, +0200 |
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
| cat crash-2017-03-30_15.05.30-server.txt | |
| ---- Minecraft Crash Report ---- | |
| WARNING: coremods are present: | |
| Brandon's Core (BrandonsCore-1.10.2-2.1.4.92-universal.jar) | |
| IvToolkit (IvToolkit-1.3.2.1-1.10.jar) | |
| MalisisCorePlugin (malisiscore-1.10.2-4.3.0.jar) | |
| LoadingPlugin (ResourceLoader-MC1.9.4-1.5.1.jar) | |
| CoreMod (tickprofiler-1.10.2.jenkins.31.jar) | |
| CCLCorePlugin (CodeChickenLib-1.10.2-2.5.6.233-universal.jar) |
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 Parser(object): | |
| def __init__(self, debug=False): | |
| self.logger = cube.log.get_logger('parser', debug=debug) | |
| self._activity_parser = ComplexBinaryClassifier(corpus_file_name='activity.csv') | |
| self._phrase_type_parser = ComplexBinaryClassifier(corpus_file_name='phrase_type.csv', selectors=('query', 'info', 'feedback')) | |
| db_connector = Dictionaries() | |
| self._company_parser = CompanyParser(db_connector) | |
| self._price_parser = PriceParser(db_connector) |