title | author | date | source | snippet | gist |
---|---|---|---|---|---|
MSBuild Version Properties Cheatsheet |
natemcmaster |
September 18, 2019 |
Based on Stack Overflow
/* Modern Font Stacks */ | |
/* System */ | |
font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; | |
/* System (Bootstrap 5.2.0) */ | |
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | |
/* Times New Roman-based serif */ | |
font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif; |
#!/bin/bash | |
target_branch="production" | |
working_tree="PATH_TO_DEPLOY" | |
while read oldrev newrev refname | |
do | |
branch=$(git rev-parse --symbolic --abbrev-ref $refname) | |
if [ -n "$branch" ] && [ "$target_branch" == "$branch" ]; then | |
Offset Size Content | |
------ ----- ---------------------------------- Header Block, Size 0x1004 (4100) bytes --------------------------------------------- | |
0x0000 2 byte 0x1701 Constant. | |
0x0000 126 byte All Nulls.Constant | |
------ ----- ---------------------------------- This next part is rewritten when playback completes/pauses | |
It seems to contain information about the recording | |
0x0080 string 254 byte max Recording file path e.g. "/media/sda1/My Video/" (not needed when creating hmt) | |
0x017F string 256 byte max Recording date-extended file name e.g. "The One Show_21010816_1817" | |
0x0280 4 byte 0x11223344 Recording start time (Epoch format) | |
0x0284 4 byte 0x11223344 Recording end time (Epoch format) |
[Unit] | |
Description=FastCGI mono server 4 | |
After=network.target | |
[Service] | |
Environment=MONO_IOMAP=all | |
EnvironmentFile= | |
Type=simple | |
ExecStart=/usr/bin/fastcgi-mono-server4 /applications=*:/:/srv/www/mvc/ /socket=tcp:127.0.0.1:9000 | |
User=www-data |
package main | |
import ( | |
"context" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"time" | |
) |
title | author | date | source | snippet | gist |
---|---|---|---|---|---|
MSBuild Version Properties Cheatsheet |
natemcmaster |
September 18, 2019 |
Based on Stack Overflow