Note: See the NixOS manual for discussion of the --darwin-use-unencrypted-nix-store-volume option.
sh <(curl -L https://nixos.org/nix/install) --darwin-use-unencrypted-nix-store-volume --no-daemonNote: See the NixOS manual for discussion of the --darwin-use-unencrypted-nix-store-volume option.
sh <(curl -L https://nixos.org/nix/install) --darwin-use-unencrypted-nix-store-volume --no-daemon| FROM centos:7 | |
| MAINTAINER Marek Goldmann <mgoldman@redhat.com> | |
| # Install packages necessary to run EAP | |
| RUN yum update -y && yum -y install xmlstarlet saxon augeas bsdtar unzip java-1.8.0-openjdk-devel && yum clean all | |
| # Create a user and group used to launch processes | |
| # The user ID 1000 is the default for the first "regular" user on Fedora/RHEL, | |
| # so there is a high chance that this ID will be equal to the current user | |
| # making it easier to use volumes (no permission issues) |
| <?php | |
| ## Generate a Github user token at https://github.com/settings/tokens | |
| $githubToken = 'EnterYourGithubTokenHere'; | |
| ## Your organization name (from https://github.com/yourOrganizationName) | |
| $organization = 'yourOrganizationName'; | |
| ## Enter the name of the remote file you want to place | |
| $remoteFile = "pull_request_template.md"; |
| brew update | |
| brew link yasm | |
| brew link x264 | |
| brew link lame | |
| brew link xvid | |
| brew install ffmpeg | |
| ffmpeg wiki: | |
| https://trac.ffmpeg.org/wiki/Encode/MP3 |
| #!/bin/sh | |
| # | |
| # festivaltts-install.sh | |
| # ----- | |
| # | |
| # Installation and setup of a Festival based TTS system. | |
| # Following instructions from: | |
| # - [http://ubuntuforums.org/showthread.php?t=751169] | |
| # |
| # ======================================================== | |
| # Setup a Dumb AP, Wired backbone for OpenWRT / LEDE | |
| # ======================================================== | |
| # Set lan logical interface as bridge (to allow bridge multiple physical interfaces) | |
| uci set network.lan.type='bridge' | |
| # assign WAN physical interface to LAN (will be available as an additional LAN port now) | |
| uci set network.lan.ifname="$(uci get network.lan.ifname) $(uci get network.wan.ifname)" | |
| uci del network.wan.ifname | |
| # Remove wan logical interface, since we will not need it. | |
| uci del network.wan |
| # ==================================================================================== | |
| # Steps for Main Router (must have connected internet on WAN port) | |
| # ==================================================================================== | |
| # Set your network IP address configuration default is 192.168.1.0/24 | |
| uci set network.lan.ipaddr='192.168.1.1' | |
| # Recommended, to identify on network and when logged on | |
| uci set system.@system[0].hostname='MainRouter' | |
| uci set network.lan.hostname="`uci get system.@system[0].hostname`" |
| [Unit] | |
| Description=Consul service discovery agent | |
| Requires=network-online.target | |
| After=network.target | |
| [Service] | |
| User=consul | |
| Group=consul | |
| PIDFile=/run/consul/consul.pid | |
| Restart=on-failure |