Prepared on 2026-05-12 as a linked PrismarineJS/Mineflayer compatibility update for Minecraft 26.1.2.
- macOS, arm64
- Java:
26.0.1 - Vanilla server jar: Minecraft
26.1.2 - GitHub user/fork namespace used for PR preparation:
mneuhaus
| {"lastUpload":"2022-01-06T11:54:52.110Z","extensionVersion":"v3.4.3"} |
| # ----------------------------------------------------------------------# | |
| # Live environment # | |
| # ----------------------------------------------------------------------# | |
| production/host = foo.com | |
| production/user = bar | |
| production/port = 22 | |
| production/path = /var/www/foo.com/ | |
| define production/shell | |
| ssh $(production/user)@$(production/host) -p$(production/port) 'cd $(production/path) &&$1' |
| <?php | |
| class ProductMapping extends AbstractMapping { | |
| /** | |
| * Type/Name of the coremedia content | |
| * | |
| * @var string | |
| */ | |
| protected $sourceType = 'pim_product'; |
| <?php | |
| class ApiController { | |
| /** | |
| * @Route("/api/search") | |
| */ | |
| public function searchAction(Request $request){ | |
| $request->get('value'); | |
| ...do a search... | |
| } |
| <?php | |
| class BEAUTIFUL { | |
| public function __call($action, $arguments) { | |
| switch($action) { | |
| case: 'terrificMethod': | |
| return 'build a wall and ' . $arguments[0] . '!'; | |
| default: | |
| die('FAKE METHOD'); | |
| } |
| { | |
| "constants": { | |
| "activeFieldTrialGroups": [], | |
| "addressFamily": { | |
| "ADDRESS_FAMILY_IPV4": 1, | |
| "ADDRESS_FAMILY_IPV6": 2, | |
| "ADDRESS_FAMILY_UNSPECIFIED": 0 | |
| }, | |
| "certStatusFlag": { | |
| "AUTHORITY_INVALID": 4, |
| <?php | |
| $structure = [ | |
| 'type' => 'Form', | |
| 'id' => 'test', | |
| 'label' => 'Some form', | |
| 'children' => [ | |
| 'default' => [ | |
| 'type' => 'Sheet', | |
| 'label' => 'Sheet label', | |
| 'description' => 'Sheet description', |
| SELECT | |
| *, | |
| ( | |
| CASE | |
| WHEN title LIKE "%keyword%" AND crdate > 1400000090 THEN 1 | |
| WHEN textmodules LIKE "%keyword%" AND crdate > 1400000090 THEN 2 | |
| WHEN title LIKE "%keyword%" THEN 3 | |
| WHEN textmodules LIKE "%keyword%" THEN 4 | |
| ELSE 10 | |
| END |
| {namespace v=FluidTYPO3\Vhs\ViewHelpers} | |
| {namespace flux=FluidTYPO3\Flux\ViewHelpers} | |
| {namespace t=Famelo\Template\ViewHelpers} | |
| <f:layout name="Content" /> | |
| <f:section name="Configuration"> | |
| <flux:form id="event-registration" options="{group: 'forms'}" label="Registrierungsformular für Veranstaltung"> | |
| <flux:field.input name="title" label="Veranstaltungsname" required="1" /> | |
| <flux:field.text name="introduction" label="Einleitung" rows="3" enableRichText="1" /> | |
| <flux:field.text name="information" label="Veranstaltungsinformationen" rows="3" enableRichText="1" /> |