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
/* | |
Copyright 2013 Martin Hawksey | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
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
""" | |
Automatically add and update time stamps in your files. | |
On file open, will replace [timeStamp] with the current date and time. | |
Currently looks for two instances of this (example below). | |
To use, place the text [timeStamp] in your template file where you want it. | |
ex. | |
// CREATED: timeStamp | |
// MODIFIED: timeStamp |
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
Verifying that +cryptecks is my blockchain ID. https://onename.com/cryptecks |
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
Ten songs for each artist (if possible) UP TO and including St Paul & The Broken Bones. | |
Five each after that. | |
Missing entirely: | |
Colin Elmore & The Danville Train (see Youtube). | |
Could not get enough songs for 10 or 5 (accordingly): | |
5 more from Virtual Self | |
SuperJam (will add once leader is announced) | |
Grand Ole Opry (will add once details released) |
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
@echo off | |
set "Server=192.168.50.125" | |
set "RetryCount=0" | |
:CheckServer | |
rem Ping server only once with a time limit of 1000 ms. | |
%SystemRoot%\System32\ping.exe -n 1 -w 1000 %Server% >nul | |
if not errorlevel 1 goto MapDrive | |
rem Connection to server is not yet established. Give up after 30 seconds |
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
# folders and files to be ignored by git | |
############ | |
## Bones | |
############ | |
Bones.esproj/ | |
############ | |
## IDEs |
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
/* GLOBAL/Interface */ | |
.flux .item.website > a { margin-right: 10px; } | |
/* All Feeds */ | |
.content blockquote p { margin: 1em; } | |
/* Android Police */ | |
div[data-feed="3"] .content header, | |
div[data-feed="3"] .content header ~ div:first-of-type, | |
div[data-feed="3"] .content header ~ div:nth-last-child(3) { display: none; } |
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
/* Monitorr minimal - WillPresley fork - https://gist.github.com/WillPresley/b80072238c665ba1170e03cc092c0ab6 */ | |
body.embedded-view { | |
background: transparent !important; | |
margin-bottom: 0 !important; | |
} | |
body.embedded-view #footer {display:none !important;} | |
#headermin { | |
margin-top: 0; |
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
/* PrivateBin Bootstrap CSS Changes -- Will Presley -- https://gist.github.com/WillPresley/159b1027010f88eb3e2b026c8c66756e */ | |
footer h4 small { display: none; } | |
#aboutbox { font-size: 12px; text-align: right; line-height: 1.15; } | |
@media (min-width: 992px) { #aboutbox { padding-left: 75px; } } | |
@media (min-width: 1280px) { #aboutbox { padding-left: 200px; padding-left: 12vw; } } |
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
# Backup WSL2 virtual disks using native functions and compress them using 7zip | |
## Will Presley, 2020 | |
## willpresley.com | |
#### http://mats.gardstad.se/matscodemix/2009/02/05/calling-7-zip-from-powershell/ | |
# Alias for 7-zip | |
if (-not (test-path "$env:ProgramFiles\7-Zip\7z.exe")) {throw "$env:ProgramFiles\7-Zip\7z.exe needed"} | |
set-alias sz "$env:ProgramFiles\7-Zip\7z.exe" | |
#### Alternative native PS 7-zip: https://www.sans.org/blog/powershell-7-zip-module-versus-compress-archive-with-encryption/ |
OlderNewer