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
#!/bin/sh | |
### | |
# Inspired by https://blog.urbanslug.com/posts/2016-09-11-dm-crypt-systemd-boot-and-efi-on-archlinux.html | |
### | |
#!/bin/sh | |
# | |
# a simple way to parse shell script arguments |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<h1>External JavaScript</h1> | |
<p id="demo">A Paragraph.</p> | |
<button type="button" onclick="myFunction()">Try it</button> |
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
#!/usr/bin/env bash | |
# Reset | |
color_off='\033[0m' # Text Reset | |
# Regular Colors | |
color_black='\033[0;30m' # Black | |
color_red='\033[0;31m' # Red | |
color_green='\033[0;32m' # Green | |
color_yellow='\033[0;33m' # Yellow |
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 | |
/** | |
* Repository factory replacement for generating repositories injected | |
* with dependencies using Doctrine and Symfony2. | |
* | |
* This is simply a proof of concept | |
*/ | |
namespace Acme; |