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
{ | |
"scanning_data": { | |
"admin": -1, | |
"fleet_speed": 0.041666666666666664, | |
"fleets": { | |
"15": { | |
"l": 0, | |
"lx": "2.78190182", | |
"ly": "0.75419964", | |
"n": "Pherkard I", |
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
https://pastebin.com/aCQaVavQ |
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
#!/usr/bin/python | |
#! -*- encoding: utf-8 -*- | |
# | |
# Created by @FlachyJoe | |
# | |
# this script is for easy use of OpenMVG and OpenMVS | |
# | |
#usage: SfM_MyPipeline.py input_dir output_dir | |
# [-h] [-f FIRST_STEP] [-l LAST_STEP] [--0 0 [0 ...]] | |
# [--1 1 [1 ...]] [--2 2 [2 ...]] [--3 3 [3 ...]] |
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
//default is port 3000 | |
meteor --port 8080 |
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
http://vim.wikia.com/wiki/VimTip83 | |
Makes tabs 2 spaces in width: | |
set expandtab | |
set shiftwidth=2 | |
set softtabstop=2 |
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
RUN LOCAL RECIPE BOOK | |
chef-client --local-mode [recipe book filename | |
REFERENCE FOR FILE RESOURCE | |
https://docs.chef.io/resource_file.html | |
DELETE A FILE RECIPE | |
file 'C:\Users\Administrator\chef-repo\settings.ini' do | |
action :delete | |
end |
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
CREATE NEW FILE: | |
New-Item [filename/path] type=file | |
SEE IF FILE EXISTS | |
Test-Path [filename/path] | |
SEE FILE CONTENT | |
Get-Content [filename/path] | |
WRITE DATA IN FILE |
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
1. Download jgit.sh from here: https://eclipse.org/jgit/download/ | |
(Yes -> it's a file with a .sh extension and we want to work in Windows, but download it!) | |
2. Rename the downloaded file to something easier to deal with. E.g. "jgit.sh" | |
3. Create a new file called jgit.bat and stick it in the same folder as jgit.sh. | |
4. Type the following into the jgit.bat file: |
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
1. Install Command Line Tool here: http://docs.aws.amazon.com/cli/latest/userguide/installing.html#install-msi-on-windows | |
2. Setup environmental variable: [DRIVE LETTER]:\Program Files\Amazon\AWSCLI | |
3. Command line examples: | |
//get some general help! | |
aws help | |
//setup credentials (get your credentials for the user from AWS Identity and Access Management |
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 winsound | |
def finishSound(): | |
for i in range(1, 10): | |
winsound.Beep(i*100, 200) | |
for i in range(9, 0, -1): | |
winsound.Beep(i*100, 200) | |
finishSound() |
NewerOlder