office365: purge an inactive mailbox

i encountered a scenario where an employee returned to the organization after their office365 persona was past the 30 day soft-delete limit. normally, that is no big deal; they’d just end up with a new mailbox. however, in this case i believe since a litigation hold was enabled on the mailbox, the mailbox was retained […]

Posted in: IT by resinblade Comments Off on office365: purge an inactive mailbox

destiny (xbox one)

i originally played the destiny beta on the xbox 360. i had fun with it. i wasn’t really that compelled by any of the story elements, but the gameplay, loot grabs, & leveling had me hooked. so i eventually bought destiny pretty late in it’s life cycle (like right before rise of iron came out). […]

Posted in: Games by resinblade Comments Off on destiny (xbox one)

canvas: installation on ubuntu

quick start method: https://github.com/instructure/canvas-lms/wiki/Quick-Start i had to run the following to get ./CODES.sh –full setup to successfully complete: gem list bundler sudo gem uninstall bundler sudo gem install bundler -v 1.12.5 production method: https://github.com/instructure/canvas-lms/wiki/Production-Start i had to uninstall some other versions of ruby and standardize on ruby2.3. check ruby version with: ruby -v after the […]

Posted in: IT by resinblade Comments Off on canvas: installation on ubuntu

netcat

in ubuntu, uninstall the netcat-openbsd version by running: sudo apt-get remove –purge netcat-openbsd then run: sudo apt-get install netcat-traditional verify the traditional netcat version is installed by running: nc -h if the -e option is listed then traditional is installed port scanning: nc -v -w 1 192.168.1.10 -z 1-1000 mirabox.local [192.168.1.10] 53 (domain) open mirabox.local […]

Posted in: IT by resinblade Comments Off on netcat