Skip to content

Instantly share code, notes, and snippets.

View AddoSolutions's full-sized avatar

Nick Artman AddoSolutions

View GitHub Profile
@AddoSolutions
AddoSolutions / list.txt
Created October 9, 2023 14:17
PanOS EDL Compatible O365 IP List
40.92.0.0/15
40.107.0.0/16
52.100.0.0/14
104.47.0.0/17
2a01:111:f400::/48
2a01:111:f403::/48
40.92.0.0/15
40.107.0.0/16
52.100.0.0/14
52.238.78.88/32

Can I Take @NickArtman?

Hey, my name is Nick... Artman it turns out. Would you mind if I was able to take the @NickArtman username as you appear to have switched away from it?

Feel free to email me, it's my first name at addosolutions.com

Thanks :)

@AddoSolutions
AddoSolutions / quotes.txt
Last active May 26, 2023 06:49
Standup Template
“The Christian does not think God will love us because we are good, but that God will make us good because He loves us.”
― C.S. Lewis
“I believe in Christianity as I believe that the sun has risen: not only because I see it, but because by it I see everything else.”
― C.S. Lewis
“God can’t give us peace and happiness apart from Himself because there is no such thing.”
― C.S. Lewis
“If we find ourselves with a desire that nothing in this world can satisfy, the most probable explanation is that we were made for another world.”
@AddoSolutions
AddoSolutions / README.md
Last active October 22, 2015 15:22
Standup Script

This is kinda hacked together for personal use, but at Casy's request, I put it up here.

  1. Download composer & run composer.phar install
  2. Go here and get an API key: https://trello.com/1/appKey/generate
  3. Update the $key and $secret on line 16 and 17 with that info
  4. Run the PHP file in the server (sudo php -S localhost:80 works, just make sure whatever you use is on port 80)
  5. Open the script in the browser, and authorize the app when prompted
  6. When it comes back, copy the oauth token and oauth secret to lines 19 and 20
  7. You can now use this script both in the CLI and in the browser if you wish.
  8. You should also update $gist on line 8 for your choice of gist file locations
@AddoSolutions
AddoSolutions / meanioStack.sh
Last active March 2, 2017 15:43
Install Mean.io Stack on CentOS
#!/bin/bash
# Install Node.JS
source <(curl -s https://raw.githubusercontent.com/qrpike/CentOS-6-Quick-Install-Scripts/master/installNodeJS.sh)
# Install Mongo
source <(curl -s https://raw.githubusercontent.com/qrpike/CentOS-6-Quick-Install-Scripts/master/installMongoDB.sh)
npm install -g grunt-cli
@AddoSolutions
AddoSolutions / gist:9694163
Created March 21, 2014 19:26
Install Git on cPanel
cd ~
wget http://git-core.googlecode.com/files/git-1.9.0.tar.gz
tar zxvf git-1.9.0
cd git-1.9.0
./configure --prefix=/home/$USER
make
make install
echo 'PATH=$PATH:$HOME/bin' >> $HOME/.bashrc
source $HOME/.bashrc
cd ..
@AddoSolutions
AddoSolutions / qssh
Created November 4, 2013 16:43
This little bash script will check if you are already set up with a ssh configuration for a given domain, if not, it will create a private key for you, and if possible, upload it to the remote server for future use, it will also update your local ssh_config file with the correct key and username.
#!/bin/bash
DOMAIN=$1
KEYPATH="~/.ssh/servers/"
# Check for already set-up configuration, if so, jsut connect
echo ~/.ssh/servers/$DOMAIN
if [ -f ~/.ssh/servers/$DOMAIN ];
then
echo "Connecting you to $DOMAIN"
.visible-ipad, .visible-iphone, .visible-retina, .visible-non-retina, .visible-retina-iphone, .visible-non-retina-iphone, .visible-ios { display: none; }
.hidden-ipad, .hidden-iphone, .hidden-retina, .hidden-non-retina, .hidden-retina-iphone, .hidden-non-retina-iphone, .hidden-ios { display: block; }
/* ---------- iPad Only ---------- */
@media only screen and (device-width: 768px) {
.visible-ipad { display: block; }
.hidden-ipad { display:none; }
.visible-ios { display: block; }
.hidden-ios { display:none; }
}