$ du -h filename # shows the size in kiB/MiB/GiB (1024 increments) $ du -h --si filename # shows the size in kB/MB/GB (1000 increments)
This file contains 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
# Get the ID and security principal of the current user account | |
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent() | |
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID) | |
# Get the security principal for the Administrator role | |
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator | |
# Check to see if we are currently running "as Administrator" | |
if ($myWindowsPrincipal.IsInRole($adminRole)) | |
{ |
This file contains 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
$f = new-object System.IO.FileStream C:\Temp\test.dat, Create, ReadWrite | |
$f.SetLength(40MB) | |
$f.Close() |
This file contains 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
query { | |
repository( | |
owner: "YakDriver", | |
name: "pyppyn" | |
) { | |
release(tagName: "0.2.3") { | |
name | |
id | |
releaseAssets(first:10) { | |
nodes { |
This file contains 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
# named operation | |
query GetRelease($owner: String!, $repo: String!, $tag: String!) { | |
repository( | |
owner: $owner, | |
name: $repo | |
) { | |
release(tagName: $tag) { | |
name | |
id | |
releaseAssets(first:10) { |
This file contains 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
import sys | |
import os | |
import glob | |
for path in sys.path: | |
for afile in glob.glob(os.path.join(path, '*')): | |
print(os.path.join(path, afile)) |
This file contains 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
shasum -a 256 filename.txt |
This file contains 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
sudo su | |
yum install epel-release | |
yum --enablerepo=epel install docker-io | |
# centos 7 | |
systemctl start docker | |
# centos 6 | |
service docker start |
First, you want to make sure that your upstream is setup. Here origin
is your fork and upstream
is the forked repo.
$ git remote -v
origin https://github.com/YakDriver/watchmaker.git (fetch)
origin https://github.com/YakDriver/watchmaker.git (push)
upstream https://github.com/plus3it/watchmaker.git (fetch)
upstream https://github.com/plus3it/watchmaker.git (push)
This file contains 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
2018/10/01 13:41:49 [INFO] Terraform version: 0.11.8 7a5c1d221ac209bbac66947c369815cd9ca70ed5 | |
2018/10/01 13:41:49 [INFO] Go runtime version: go1.10.1 | |
2018/10/01 13:41:49 [INFO] CLI args: []string{"/usr/local/bin/terraform", "init", "-input=false"} | |
2018/10/01 13:41:49 [DEBUG] Attempting to open CLI config file: /Users/yakdriver/.terraformrc | |
2018/10/01 13:41:49 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/10/01 13:41:49 [INFO] CLI command args: []string{"init", "-input=false"} | |
2018/10/01 13:41:49 [DEBUG] command: loading backend config file: /Users/yakdriver/dev/fardvag/sg_bug | |
2018/10/01 13:41:49 [INFO] command: empty terraform config, returning nil | |
2018/10/01 13:41:49 [DEBUG] command: no data state file found for backend config | |
2018/10/01 13:41:49 [DEBUG] New state was assigned lineage "44b3fe01-e94a-ab5c-dde8-904093ff412d" |