[any specific settings before testing? other test data than usual? etc]
- [simple actions to perform, keep them short]
- [continue as needed, preferably one action per step]
- [etc]
// This is the basic principle of a minimalistic jQuery based widget system. | |
// Every widget has one root element, with a unique classname prefix. Here I used "w-". | |
// Put these two methods globally in any way you like. Here I put them on the jQuery object. | |
$ = $.extend($, { | |
// This allows you to register a widget. | |
registerWidget: function (selector, callback) { | |
$(document).on('w-init', function (e) { | |
$(selector, e.target).each(function () { |
# Episerver AB Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects ("Projects") made available by Episerver AB | |
or its affiliates ("Episerver AB"). This Individual Contributor License Agreement ("Agreement") sets out the terms | |
governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, | |
materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any | |
manner, to Episerver AB in respect of any of the Projects (collectively "Contributions"). If you have any questions | |
respecting this Agreement, please contact [email protected]. | |
Run with npx https://gist.github.com/seriema/b1c00036175cbfc374548b499bafcb27
.
# Copied from https://hub.docker.com/repository/registry-1.docker.io/seriema/retro-cloud/builds/38183daf-6bd1-432a-ada0-ada85af1ec02 | |
Cloning into '.'... | |
Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. | |
Switched to a new branch 'develop' | |
Pulling cache layers for index.docker.io/seriema/retro-cloud:develop... | |
Done! | |
KernelVersion: 4.4.0-1060-aws | |
Components: [{u'Version': u'18.03.1-ee-3', u'Name': u'Engine', u'Details': {u'KernelVersion': u'4.4.0-1060-aws', u'Os': u'linux', u'BuildTime': u'2018-08-30T18:42:30.000000000+00:00', u'ApiVersion': u'1.37', u'MinAPIVersion': u'1.12', u'GitCommit': u'b9a5c95', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.10.2'}}] | |
Arch: amd64 |
Cloning into '.'... | |
Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. | |
Switched to a new branch 'develop' | |
Pulling cache layers for index.docker.io/seriema/retro-cloud:develop... | |
Done! | |
KernelVersion: 4.4.0-1060-aws | |
Components: [{u'Version': u'18.03.1-ee-3', u'Name': u'Engine', u'Details': {u'KernelVersion': u'4.4.0-1060-aws', u'Os': u'linux', u'BuildTime': u'2018-08-30T18:42:30.000000000+00:00', u'ApiVersion': u'1.37', u'MinAPIVersion': u'1.12', u'GitCommit': u'b9a5c95', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.10.2'}}] | |
Arch: amd64 | |
BuildTime: 2018-08-30T18:42:30.000000000+00:00 | |
ApiVersion: 1.37 |
javascript:(function(){ $(".__shared-presentation__wishlist-item-cell__cfd0d.ember-view").each((index, game) => { if (!game.querySelectorAll(".price-display__strikethrough").length) game.style.display = "none" }) ;})(); |
<?xml version="1.0" encoding="utf-8" ?> | |
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration"> | |
<ProjectFileGenerator> | |
<Format>VisualStudio2019</Format> | |
</ProjectFileGenerator> | |
<WindowsPlatform> | |
<Compiler>VisualStudio2019</Compiler> | |
<CompilerVersion>14.22.27905</CompilerVersion> | |
<WindowsSdkVersion>10.0.18362.0</WindowsSdkVersion> | |
</WindowsPlatform> |
#include "MyConfigModule.h" | |
#include <Core/Public/Misc/MessageDialog.h> | |
#include <CoreUObject/Public/Misc/DataValidation.h> | |
#include <CoreUObject/Public/Misc/UObjectToken.h> | |
#include <UnrealEd/Public/Editor.h> | |
#include "MyConfig/ProjectSetting/MyConfig.h" | |
namespace |