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
#!/bin/bash | |
############################## DEV_SCRIPT_MARKER ############################## | |
# This script is used to document and run recurring tasks in development. # | |
# # | |
# You can run your tasks using the script `./dev some-task`. # | |
# You can install the Sandstorm Dev Script Runner and run your tasks from any # | |
# nested folder using `dev run some-task`. # | |
############################################################################### | |
set -e |
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 | |
namespace MyPackage\Site; | |
use Neos\Flow\Log\ThrowableStorage\FileStorage; | |
use Neos\Media\Exception\NoThumbnailAvailableException; | |
/* | |
After implementing Kaleidoscope for Images and SourceSets we got an uncontrollably growing exception folder |
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
// RUN with a recent node.js version, using "node gen-types.mjs" | |
// DEPENDS on typescript and ts-morph | |
import { Project } from "ts-morph"; | |
import { writeFileSync } from "fs"; | |
const project = new Project({ | |
tsConfigFilePath: "tsconfig.json", | |
}); |
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
#!/bin/bash | |
set -ex | |
go build -o rancher_gitlab_proxy main.go | |
GOOS=linux go build -o rancher_gitlab_proxy_linux main.go |
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 | |
namespace My\Package\Command; | |
use Neos\ContentRepository\Domain\Model\NodeInterface; | |
use Neos\ContentRepository\Domain\Service\ContextFactoryInterface; | |
use Neos\ContentRepository\Domain\Service\NodeServiceInterface; | |
use Neos\Flow\Cli\CommandController; | |
use Neos\Flow\Annotations as Flow; |
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
### Keybase proof | |
I hereby claim: | |
* I am skurfuerst on github. | |
* I am skurfuerst (https://keybase.io/skurfuerst) on keybase. | |
* I have a public key ASDTRmPo5bjrl-KEiVuvtxPSJvkgbSCeYXMk_-817HKbcAo | |
To claim this, I am signing this object: |
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
{ | |
"name": "neos/neos-development-distribution", | |
"description" : "Neos Development Distribution", | |
"license": "GPL-3.0+", | |
"support": { | |
"email": "[email protected]", | |
"slack": "http://slack.neos.io/", | |
"forum": "https://discuss.neos.io/", | |
"wiki": "https://discuss.neos.io/c/the-neos-project/project-documentation", | |
"issues": "https://jira.neos.io/browse/NEOS", |
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 | |
/** | |
* Created by IntelliJ IDEA. | |
* User: sebastian | |
* Date: 18.07.15 | |
* Time: 11:19 | |
*/ | |
namespace TYPO3\NeosDemoTypo3Org; |
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
/* General Adjustmens to the Neos Backend - we only do that if "neos-controls" is visible, that is we are NOT in full-screen mode. */ | |
/* Bootstrap gives the "container" specific widths (inside media queries); which breaks the margins Neos adds to the body. | |
Thus, we need to reset these settings. */ | |
.neos-controls .container { | |
width: inherit !important; | |
} | |
/* The topbar of neos needs some space, so we push the top navigation lower */ | |
.neos-controls .page-topNavigation { |
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
# This stylesheet is only loaded when the Neos UI is shown | |
page.head.stylesheets.backend = TYPO3.TypoScript:Tag { | |
tagName = 'link' | |
attributes { | |
rel = 'stylesheet' | |
href = TYPO3.TypoScript:ResourceUri { | |
package = 'Acme.Demo' | |
path = 'Styles/Backend.css' | |
} | |
} |
NewerOlder