Get Group from AD
Get-QADGroupMember oldMoep\WRF-universal | select ntaccountname > C:\ad\WRF-universal.txtRemove spaces
get-Content .\WRF-universal.txt | Foreach {$_.TrimEnd()} | Set-Content .\WRF-universal1.txt
Import TXT into AD Groups
Get-Content .\WRF-universal1.txt | Add-QADGroupMember -identity Moep\WRF-universal
Month: April 2017
add another tomcat instance
docker ps show name
docker stats $(docker ps –format={{.Names}})
Cannot connect to the Docker daemon
docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
Delete your file under /etc/default/docker
reboot and all is fine
ubuntu add swap
see here
https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
fallocate -l 4G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
nano /etc/fstab
add/swapfile none swap sw 0 0
svn migrate to git
git svn clone –no-metadata https://snvkonkretor.com/myproject/oldstuff
git remote add origin https://konkretor@git.konkretor.com/legacy/legacy.git
git remote -v
git config http.sslVerify false
git push –all
found here with
svn2git example
https://www.troyhunt.com/migrating-from-subversion-to-git-with/
gem ignore certificate error windows
Replace the ssl gem source with non-ssl as a temp solution:
- gem sources -r https://rubygems.org/
- gem sources -a http://rubygems.org/
found here
P2P anonymous Services
atom editor show whitespace
Atom => Config
editor: invisibles: {} showInvisibles: true
Found here
https://www.khattam.info/howto-show-space-tabs-and-newlines-invisibles-in-atom-1-x-2015-12-07.html