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
FROM docker.io/library/almalinux:latest | |
# LibreOffice version - find the latest at https://downloadarchive.documentfoundation.org/libreoffice/old/latest/rpm/x86_64/ | |
ARG LIBREOFFICE_VERSION=25.2.0.3 | |
ENV LIBREOFFICE_VERSION=${LIBREOFFICE_VERSION} | |
# Install all dependencies for LibreOffice |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>GraphiQL</title> | |
<meta name="robots" content="noindex" /> | |
<style> | |
html, body { | |
height: 100%; | |
margin: 0; |
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
front-server: | |
webpack-dev-server --config _dev/webpack/devserver.config.js --colors --port 9020 --hot | |
front-build: | |
webpack --config _dev/webpack/production-config.js |
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
"use strict"; | |
import React, {Component} from 'react'; | |
import calcContentHeight from './dom-textarea-measure'; | |
class AutogrowingTextarea extends Component { | |
constructor(props) { | |
this.props = props; | |
this.state = {}; | |
this.textareaProps = sanitizeChildProps(props); |
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 Foo\Core\Doctrine; | |
use Doctrine\ORM\Query\Expr as DoctrineExpr; | |
/** | |
* Contains custom ORM expressions for comparisons, regexps, case-insensitive matches etc | |
* Used instead of the regular Query\Expr() class http://docs.doctrine-project.org/en/2.0.x/reference/query-builder.html#the-expr-class | |
*/ |
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
serviceA: | |
class: Amazing\Class | |
arguments: [[@serviceB, @serviceC]] |