A Pen by Robert Claypool on CodePen.
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
# Static information about the filesystems. | |
# See fstab(5) for details. | |
# <file system> <dir> <type> <options> <dump> <pass> | |
# /dev/mapper/root LABEL=ARCH | |
UUID=ee476e65-d3ed-4a27-8181-3a4302bb6342 / btrfs rw,noatime,nodiratime,compress=zstd:3,ssd,space_cache,subvolid=256,subvol=/@,subvol=@ 0 0 | |
# /dev/nvme0n1p1 | |
/dev/nvme0n1p1 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2 |
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
# To install run: | |
# bash -c "$(curl -fsSL http://bit.ly/IGFWL-install)" | |
#!/bin/bash | |
FW=("kblgucver914.tar.bz2" "kbldmcver101.tar.bz2" "kblhucver02001810.tar.bz2" "sklgucver61.tar.bz2" "skldmcver126.tar.bz2" "sklhucver01071398.tar.bz2" "bxtgucver87.tar.bz2" "bxtdmcver107.tar.bz2" "bxthucver01071398.tar.bz2") | |
echo "Starting Install..." | |
mkdir fw | |
cd fw | |
for i in "${FW[@]}" | |
do |
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
imports: | |
- { resource: parameters.yml } | |
- { resource: security.yml } | |
- { resource: services.yml } | |
framework: | |
#esi: ~ | |
#translator: { fallbacks: ["%locale%"] } | |
secret: "%secret%" | |
router: |
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
'use strict'; | |
// Expand a JSON-LD document. | |
// Needed to be sure that every docs have the same format | |
function expandJsonLdDoc($q, $log, url, options) { | |
return $q(function (resolve, reject) { | |
jsonld.expand(url, options, function (err, doc) { | |
if (err) { | |
$log.log('An error occurred while expanding the JSON-LD document.'); | |
reject(); |