See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
#!/bin/bash | |
set -e | |
## The following commented environment variables should be set | |
## before running this script | |
# export GOVC_USERNAME='[email protected]' | |
# export GOVC_PASSWORD='xxx' | |
# export GOVC_INSECURE=true |
#include <ESP8266WiFi.h> | |
extern "C" { | |
#include "user_interface.h" | |
#include "wpa2_enterprise.h" | |
#include "c_types.h" | |
} | |
// SSID to connect to | |
char ssid[] = "TEST_KRA"; |
<?php | |
#################################### | |
# Dynamic Inventory Build Script | |
# usage: php doin.php > inventory | |
#################################### | |
$DO_API_TOKEN = 'YOUR_DIGITALOCEAN_API_TOKEN'; | |
$GROUP_NAME = 'servers'; | |
$endpoint = "https://api.digitalocean.com/v2/droplets"; |
% | |
% As found on StackOverflow: | |
% https://tex.stackexchange.com/questions/238898/in-line-graphics-in-text-to-represent-a-loading-bar-for-language-skills-in-a-cv | |
% | |
\documentclass{report} | |
\usepackage{tikz} | |
\definecolor{frontColor}{rgb}{0.22,0.45,0.70} % light blue |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
function horizon() { | |
dir=${PWD} | |
case "$1" in | |
"start") | |
if [[ $(ps aux | grep "php $dir/artisan horizon" | grep -v grep | awk '{print $2}') ]]; then | |
echo "horizon is already running" | |
else | |
nohup php $dir/artisan horizon </dev/null >/dev/null 2>&1 & | |
echo "horizon started with pid: $(ps aux | grep "php $dir/artisan horizon" | grep -v grep | awk '{print $2}')" |
// Package main is a sample macOS-app-bundling program to demonstrate how to | |
// automate the process described in this tutorial: | |
// | |
// https://medium.com/@mattholt/packaging-a-go-application-for-macos-f7084b00f6b5 | |
// | |
// Bundling the .app is the first thing it does, and creating the DMG is the | |
// second. Making the DMG is optional, and is only done if you provide | |
// the template DMG file, which you have to create beforehand. | |
// | |
// Example use: |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: frp | |
--- | |
apiVersion: v1 | |
kind: LimitRange | |
metadata: |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Http\Request; | |
use Illuminate\Http\Response; | |
use Symfony\Component\DomCrawler\Crawler; | |
class PjaxMiddleware |