dhcp-script=/etc/detect_new_device.sh
Reference:
dhcp-script=/etc/detect_new_device.sh
Reference:
| // .stglobalignore | |
| // These prevent SyncThing from trying to sync data that's locked, constantly changing, going to be thrown out, unimportant, etc. | |
| // Lots of conflicts/issues disappeared using these ignores, but do check to prevent major disappointment! | |
| // *.log and *cache* are in there, just so you know.. but firefox' startupCache and offlineCache will be synced. | |
| // Ignores are case sensitive. | |
| // Put both .stignore and this .stglobalignore in the root of your sync folder(s) (where .stfolder resides) | |
| $RECYCLE.BIN | |
| $WINDOWS.~BT |
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
We need to generate a unique SSH key for our second GitHub account.
ssh-keygen -t rsa -C "your-email-address"
Be careful that you don't over-write your existing key for your personal account. Instead, when prompted, save the file as id_rsa_COMPANY. In my case, I've saved the file to ~/.ssh/id_rsa_work.
Though we're focused more on server setup procedure in this document, I will still give a very brief explanation in laymen terms for ELK. To those who are starting new in this stack, must have already heard of MVC (Model View Controller), so take it like this:
=> Elasticsearch (for Storage, Indexing & Search)=> Kibana (for DataViz & G-Man, yeah the one in half life ๐)=> Logstash (For Logs & Filtering)Picking the right architecture = Picking the right battles + Managing trade-offs
| /** | |
| * Using Apache Common Bean Utils. | |
| */ | |
| import org.apache.commons.beanutils.BeanUtils; | |
| import java.util.HashMap; | |
| public class ApacheCommonExample throws IllegalAccessException, | |
| InvocationTargetException, NoSuchMethodException { | |
| public HashMap<String,Object> convert(Person person) { |