Links to stuff that doesn’t fint elsewhere
- Pandoc 2 PDF
- an-introduction-to-serenity-bdd-with-cucumber
- JBehave Getting started
- [Selenium, Cucumber Java]](https://github.com/selenium-cucumber/selenium-cucumber-java/blob/master/doc/canned_steps.md#assertion-steps)
- Selenium Cucumber, Java - Volker
- MAC Lookup, Passwords, Geeky stuff
String Replace w sed
Replace everything
This example replaces all occurences of ‘ORM’ with ‘ORM w JPA’ in orm_en.html
Simple and easy - No Headache.
sed -ie 's/ORM/ORM w JPA/g' orm_en.html
SSH
Copy RSA-ID to remote host
Passwordless login makes use of public keys and is really neat.
But one hurdle: you’ve to transfer the public part of the public-/private keypair to the remote host.
The private counter part is yours - and yours alone. Dont share it - dont even post it on facebook ;-)
On some system theres a command called
ssh-copy-id` do perform the transfer. How about the absence of this tool?
You can use the following bash command - requires you to enter the password for the last time:
cat ~/.ssh/id_rsa.pub \
| ssh user@123.45.56.78 \
"mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
ImageMagick
Watermaks
MQTT
- Cattle Crew Mosquitto & Docker
- Eclipse Mosquitto on Docker
- GoodToKnow DB - FuseBits
- Meteor, Heroku, MongoDB
XML
My xml files sooner or later look horrible.
There’s xmlint
to the rescue:
cat source_file.xml |xmllint --format - |cat > destination.xml -