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
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
server_name ateamrebuild.com www.ateamrebuild.com; | |
root /var/www/html/ateamrebuild.com/public_html; | |
index index.html; | |
location / { | |
try_files $uri $uri/ =404; | |
} |
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
[options] | |
font = Fira Mono for Powerline 9 | |
clickable_url = true | |
browser = firefox | |
[colors] | |
# special | |
foreground = #c0c5ce | |
foreground_bold = #c0c5ce |
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
Packets Pings | |
Host Loss% Snt Last Avg Best Wrst StDev | |
1. 192.168.0.1 0.0% 81 0.5 0.8 0.3 17.4 1.9 | |
2. 96.120.12.33 0.0% 81 18.0 50.3 5.7 141.8 29.3 | |
3. ae-206-sur02.littleton.co.denver.comcast.net 0.0% 81 18.2 51.2 5.8 139.1 29.6 | |
4. ae-10-sur03.littleton.co.denver.comcast.net 0.0% 81 16.0 49.6 5.9 132.1 27.2 | |
5. ae-22-ar01.denver.co.denver.comcast.net 0.0% 81 21.3 50.6 10.0 143.7 28.0 | |
6. be-33652-cr01.1601milehigh.co.ibone.comcast.net 0.0% 81 20.7 49.3 5.1 138.7 29.2 | |
7. be-11719-cr02.denver.co.ibone.comcast.net 0.0% 81 28.3 52.5 9.7 140.9 29.3 | |
8. be-11724-cr02.dallas.tx.ibone.comcast.net |
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
#!/bin/bash | |
num_mon=$(bspc query -M | wc -l) | |
while read -r line; do | |
case $line in | |
W*) | |
wm_infos="" |
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
module.exports = function (API_KEY, deals, activities, app, type, pbl, address, test){ | |
const request = require('request-promise'); | |
const moment = require('moment'); | |
// Basic reimpl of Bluebird's Promise.try | |
const promiseTry = function (syncFn) { return new Promise(function (resolve) { return resolve(syncFn()); }); }; moment().format(); | |
var soon = {}; | |
var soonPart = {}; | |
var later = {}; | |
var laterPart = {}; |
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
module.exports = function (API_KEY, deals, activities, app, type, pbl, address, test){ | |
const request = require('request-promise'); | |
const moment = require('moment'); | |
// Basic reimpl of Bluebird's Promise.try | |
const promiseTry = function (syncFn) { return new Promise(function (resolve) { return resolve(syncFn()); }); }; | |
moment().format(); | |
var soon = {}; | |
var soonPart = {}; | |
var later = {}; |
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
const request = require('request-promise'); | |
//const set4506T = require('./4506T.js'); | |
const set4506T = require('./new4506T.js'); | |
// const set1003 = require('./1003.js'); | |
const set1003 = require('./new1003.js'); | |
const setBCert = require('./bCert.js'); | |
const setW2 = require('./w2.js'); | |
const setPaystubs = require('./paystubs.js'); | |
const set1040 = require('./1040.js'); | |
const setPBL = require('./pbl.js'); |
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
module.exports = function (API_KEY, deals, activities, app, type, pbl, address, test){ | |
const request = require('request-promise'); | |
const moment = require('moment'); | |
moment().format(); | |
var soon = {}; | |
var soonPart = {}; | |
var later = {}; | |
var laterPart = {}; | |
var have = {}; |
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
module.exports = function (API_KEY, deals, activities, app, type, pbl, address, test){ | |
const request = require('request-promise'); | |
const moment = require('moment'); | |
moment().format(); | |
var soon = {}; | |
var soonPart = {}; | |
var have = {}; | |
deals.map(function(deal) { |
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
module.exports = function (API_KEY, deals) { | |
const request = require('request-promise'); | |
var junk = 'nothing'; | |
var dealsObj = {}; | |
function getIt (url) { | |
return request(url).then(function (body) { | |
return JSON.parse(body).data; | |
}); |
NewerOlder