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
<?xml version="1.0" encoding="UTF-8"?> | |
<module type="PYTHON_MODULE" version="4"> | |
<component name="NewModuleRootManager"> | |
<content url="file://$MODULE_DIR$" /> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
</component> | |
<component name="TestRunnerService"> | |
<option name="PROJECT_TEST_RUNNER" value="Unittests" /> | |
</component> |
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
// ---- Quick OrderForm --- // | |
(function quick_order_form(){ | |
var $button = $('#js-quick-add-button, .js-quick-add-button'), | |
form_selector = '.js-quick-add-form', | |
$container = $('.js-quick-add'), | |
doing_adpr = 0; | |
var init = function(){ | |
$(document).on('submit', form_selector, function(e){ | |
e.preventDefault(); |
ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
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
<?php | |
/** | |
* @author Ivan Melgrati | |
* @copyright 2018 | |
*/ | |
function YouTube_Check_ID($videoID) | |
{ | |
$is_valid = true; |
- Download and upload diagnostic module
- Update
/cgi-bin/mivavm.conf
to specify logging settings. View this forum post for other log level references
logfile=diagtool.log
loglevel=144
logcookie=mivadiagtool
- Visit page(s) that you're trying to troubleshoot
- Download
/private/mivadata/diagtool.log
file
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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "1.0", | |
"title": "Ecwid API v3", | |
"description": "TODO: Add Description" | |
}, | |
"host": "app.ecwid.com", | |
"basePath": "/api/v3/14732441", | |
"schemes": [ |
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
<Provision oncomplete="archive|delete"> | |
<Domain> | |
<Store_Create> | |
<Code>GES</Code> | |
<Name>Garth's Equipment Shoppe</Name> | |
<Manager>admin</Manager> | |
<LicenseNumber>mvsup-3NMBCP01101</LicenseNumber> | |
<Owner>McCollough Enterprises</Owner> | |
<Email>[email protected]</Email> | |
<Company>miva test</Company> |
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
# -*- coding: utf-8 -*- | |
# | |
# required packages: ndeflib, crc8 | |
# | |
from crc8 import crc8 | |
import ndef | |
import uuid | |
class UltimakerMaterialRecord(ndef.record.GlobalRecord): |
OlderNewer