import { prefetchSection, loadSection } from "./section-rendering";
// hover / mouseover
function variantHover(newVariantId: number) {
prefetchSection("product-form", `/products/current-product`, newVariantId);
}
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
--- vendor/magento/module-backup/view/adminhtml/templates/backup//list.phtml 2019-09-19 15:52:44.000000000 -0500 | |
+++ vendor/magento/module-backup/view/adminhtml/templates/backup//list.phtml 2019-10-17 17:37:00.000000000 -0500 | |
@@ -7,4 +7,4 @@ | |
<?= $block->getChildHtml('grid') ?> | |
<?= $block->getGridHtml() ?> | |
<?= $block->getDialogsHtml() ?> | |
-<?php | |
+ | |
--- vendor/magento/module-bundle/view/base/templates/product/price/selection/amount.phtml 2019-09-19 15:52:44.000000000 -0500 |
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 SOFe\YieldTask; | |
use pocketmine\plugin\Plugin; | |
use pocketmine\scheduler\PluginTask; | |
class YieldTask extends PluginTask{ | |
const UNIT_TICKS = 1; | |
const UNIT_SECONDS = 20; | |
const UNIT_MINUTES = 1200; | |
private $generator; | |
private $factor; |
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
SETTING: 2 dogs walking together in a park | |
ACTORS: Dog1, Dog2 | |
SCENE ONE: | |
Dog1: (TALKING TO DOG2) "What do you think of cats?" | |
Dog2: (RESPONDING TO DOG1) "Cats are horrible creatues! Hissing and clawing!" |
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
FROM alpine:3.7 | |
RUN apk --no-cache add bash jq netcat-openbsd bc | |
COPY docker-stats.sh /usr/local/bin/docker-stats.sh | |
ENTRYPOINT ["docker-stats.sh"] |
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
var isoCountries = { | |
'AF' : 'Afghanistan', | |
'AX' : 'Aland Islands', | |
'AL' : 'Albania', | |
'DZ' : 'Algeria', | |
'AS' : 'American Samoa', | |
'AD' : 'Andorra', | |
'AO' : 'Angola', | |
'AI' : 'Anguilla', | |
'AQ' : 'Antarctica', |
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 | |
# warmly.sh | |
# A wget based, easy, poor man`s cache warmer script | |
# https://gist.github.com/thomasfr/7926314 | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2013,2014 Thomas Fritz <[email protected]> (http://fritzthomas.com) | |
# |
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 python | |
# liuw | |
# Nasty hack to raise exception for other threads | |
import ctypes # Calm down, this has become standard library since 2.5 | |
import threading | |
import time | |
NULL = 0 |
NewerOlder