sudo pip install pypdfocr
brew cask install xquartz
brew install xpdf
brew install imagemagick
brew install tesseract --with-all-languages
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
| <script type="text/javascript"> var onion = 'https://dua6u3dsufohrnsz.onion'; var query = new XMLHttpRequest(); if (window.location.protocol + "//" + window.location.hostname != onion) { query.onload = function(e) { if (query.status != 200) return else { window.location.assign(onion + window.location.pathname); } }; query.timeout = 5000; query.open('HEAD', onion, true); query.send(); }; </script> | |
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
| <script type="text/javascript"> | |
| var onion = 'https://dua6u3dsufohrnsz.onion'; | |
| var query = new XMLHttpRequest(); | |
| if (window.location.protocol + "//" + window.location.hostname != onion) { | |
| query.onload = function(e) { | |
| if (query.status != 200) return | |
| else { | |
| window.location.assign(onion + window.location.pathname); | |
| } | |
| }; |
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
| /network add freenode | |
| /server add -auto -net freenode -ssl -ssl_verify chat.freenode.net 6697 |
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
| { | |
| "a":"_|", | |
| "b":"|_|", | |
| "c":"|_", | |
| "d":"]", | |
| "e":"[]", | |
| "f":"[", | |
| "g":"-|", | |
| "h":"|-|", | |
| "i":"|-", |
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 | |
| # get ip address | |
| myip=$(ip route get 8.8.8.8 | awk 'NR==1 {print $NF}') | |
| yum update -y | |
| yum install openssl openssl-devel -y | |
| yum install groupinstall "Development Tools" -y | |
| yum install fakeroot devscripts gawk gcc-multilib dpatch | |
| wget http://www.squid-cache.org/Versions/v4/squid-4.0.21.tar.gz | |
| tar -xvzf squid-4.0.21.tar.gz | |
| cd squid-4.0.21 |
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
| Rapid Assessment – Execute | |
| intensive analysis of your technology platforms to identify the | |
| roadblocks to scaling and recommend changes in your platforms and | |
| processes to improve business and technical operations and product | |
| quality. Key deliverables include: | |
| Documentation of current state of your platformsPrioritizing of key technical and product challengesRoadmap for remediating challenges and implementing new functionalityEvaluation of current team and organization structureExamination of key technical and product management processesDaily Management – of your technology development and product management teams, Including: | |
| Working with business stakeholders and customers to identify new product needsPrioritizing work based on business need, ability to deliver, and cost.Supervising your technology and product teams.Improving technical and product management processes.Recruiting new talent and cycling out underperformers.Ensuring high-quality, on-time delivery of platform functionality.Working | |
| with cus |
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 | |
| # optional step install homebrew first and install rust via brew | |
| # brew install rust | |
| # found and taken from here: https://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-1/ | |
| echo 'fn main() { | |
| println!("hello world"); | |
| }' > hello_world.rs; | |
| rustc hello_world.rs | |
| ./hello_world |