https://www.virtualbox.org/wiki/Downloads Choose the version for the host machine, so if you’re on Windows, choose that, if Mac, choose that.
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 | |
/** | |
* Implements template_preprocess_fieldset(). | |
*/ | |
function muh_module_preprocess_fieldset(&$variables) { | |
// Figure out if this is a "date field" fieldset | |
$hasElementValueType = isset($variables['element']) && isset($variables['element']['value']) && isset($variables['element']['value']['#type']); | |
if ($hasElementValueType && $variables['element']['value']['#type'] == 'datetime' && isset($variables['element']['value']['#date_timezone'])) { | |
// Show what timezone the date field is using as the fieldset description |
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
# Should go in /sites/localdev.services.yml, or wherever the container_yamls setting in settings.local.php is set to look for it | |
# Local development services. | |
# | |
# To activate this feature, follow the instructions at the top of the | |
# 'example.settings.local.php' file, which sits next to this file. | |
parameters: | |
http.response.debug_cacheability_headers: true | |
twig.config: | |
debug: true |
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
/** | |
* Most up to date version here: | |
* https://gist.github.com/wesruv/cc6e733f1ab059393a0615e233a180ab | |
*/ | |
body { | |
font-family: 'Liberation Sans', Helvetica, Arial, sans-serif; | |
font-size: 1rem; | |
line-height: 1.6; | |
color: #111; |
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
'en': { | |
primaryListLabel: 'Quick links: redhat.com, Customer Portal, Red Hat\'s developer site, Red Hat\'s partner site', | |
youAreHere: 'You are here', | |
redHatDescription: 'Learn about our open source products, services, and company.', | |
portalDescription: 'Get product support and knowledge from the open source experts.', | |
developersDescription: 'Read developer tutorials and download Red Hat software for cloud application development.', | |
connectDescription: 'Get training, subscriptions, certifications, and more for partners to build, sell, and support customer solutions.', | |
productsHeading: 'Products & tools', | |
ansibleDescription: 'Learn about and try our IT automation product.', | |
ecosystemDescription: 'Find hardware, software, and cloud providers―and download container images―certified to perform with Red Hat technologies.', |
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
import { EditorView, basicSetup } from "codemirror"; | |
import { keymap } from "@codemirror/view"; | |
import { EditorState, Compartment } from "@codemirror/state"; | |
import { indentWithTab } from "@codemirror/commands"; | |
import { markdown } from "@codemirror/lang-markdown"; | |
import { color, oneDark, oneDarkHighlightStyle, oneDarkTheme } from "@codemirror/theme-one-dark"; | |
// Setup to update settings? | |
let language = new Compartment, tabSize = new Compartment; |
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 | |
switch ($environment) { | |
case 'local': | |
$config['environment_indicator.indicator']['name'] = 'Local'; | |
$config['environment_indicator.indicator']['fg_color'] = '#ffffff'; | |
$config['environment_indicator.indicator']['bg_color'] = '#005fab'; | |
break; | |
case 'dev': | |
case 'preview': | |
$config['environment_indicator.indicator']['name'] = 'Dev'; |
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
java.nio.file.FileSystemException: /home/wruvalca/juno/asciidoc_local_render/output/rhel-8/titles/RHEL-System-Roles-7.9/administration-and-configuration-tasks-using-system-roles-in-rhel-7.9/modules/proc_requesting-a-new-certificate-from-idm-ca-using-the-certificate-system-role.adoc: Too many open files | |
at sun.nio.fs.UnixException.translateToIOException(UnixException.java:91) | |
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) | |
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) | |
at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214) | |
at java.nio.file.Files.newByteChannel(Files.java:361) | |
at java.nio.file.Files.newByteChannel(Files.java:407) | |
at java.nio.file.spi.FileSystemProvider.newInputStream(FileSystemProvider.java:384) | |
at java.nio.file.Files.newInputStream(Files.java:152) | |
at com.redhat.ganymede.asciidoctorj.core.Converter.hash(Converter.java:211) |
https://www.virtualbox.org/wiki/Downloads Choose the version for the host machine, so if you’re on Windows, choose that, if Mac, choose that.
!IMPORTANT: On Windows, run the install for Virtualbox as Admin, if you do not network drivers for the VM won't be installed and VM's won't be able to connect to the internet.
NewerOlder