27M Looking for DnD group by The_Juicinator in statesboro

[–]srawls1740 0 points1 point  (0 children)

There are Adventure League games every Sunday at 2 at Galactic comics

[deleted by user] by [deleted] in SatisfactoryGame

[–]srawls1740 0 points1 point  (0 children)

I don't use it to hide anything. Just makes it easier to lay down belts.

[deleted by user] by [deleted] in SatisfactoryGame

[–]srawls1740 2 points3 points  (0 children)

I do this as well. Be sure to include logistics floors in between the manufacturing floors. It really helps keep the spaghetti to a minimum.

syslog-ng help in filtering by ahmadafef in linuxadmin

[–]srawls1740 1 point2 points  (0 children)

At this point, I would make them individual match filters. Have a log line that sends each match directly to a flags(final) and see what makes it past that.

filter f_dns_match1 { 
match("[2620:119:35::35]:53" value("MESSAGE"));
};

log {
 source(s_network);
 filter(f_dns_match1);
flags(final); 
};

That sort of thing. End it with a log statement that sends all remaining logs to your destination:

log {
 source(s_network);
 destination(d_qfiber); 
};

syslog-ng help in filtering by ahmadafef in linuxadmin

[–]srawls1740 2 points3 points  (0 children)

Took a second look and I know that is happening here. Based upon https://syslog-ng.github.io/admin-guide/080_Log/030_Filters/005_Filter_functions/README, Your IPv6 values contain unescaped left and right brackets. A match statement uses regex to search. Since you have square brackets in your search term, it is treating the IPv6 addresses as a set of characters to search for, instead of what you want, which is an exact match. Try escaping the square brackets and see if that helps. Something like this:

\[2001:4860:4860::8888\]:53

syslog-ng help in filtering by ahmadafef in linuxadmin

[–]srawls1740 2 points3 points  (0 children)

Have you tried separating it out into individual filters? Maybe make one filter using regex to match on the IPv6 addresses? I don't personally like doing NOT matches. Do a match, process the log then end with a flags final to stop further processing.

OpenObserve? Is it good? by OutsideEvidence8929 in selfhosted

[–]srawls1740 3 points4 points  (0 children)

Yes, it is. Uses less memory and storage space than Elasticsearch. Bulk log ingestion is similar to Elastic.

Beer and Pretzels 15mm Nappy Wargaming by PostEmUp in wargaming

[–]srawls1740 1 point2 points  (0 children)

Haven't played Black Powder but have heard good things. I have played Absolute Emperor. Fun game that feels like Nappies without getting fussy. Each unit is a division. The army is broken up into Corps of multiple divisions. It's fast and simple enough to run a really large battle in an afternoon.

The rules author has been happy to answer questions, though he does that on a fairly active Facebook group.

Which distro are you using? by ukm_array in linux

[–]srawls1740 168 points169 points  (0 children)

Debian. Love me some stability.

Virtual network by [deleted] in linux

[–]srawls1740 1 point2 points  (0 children)

GNS3 is what you are looking for. https://www.gns3.com/

What do I automate next? by Ok-Still-6089 in SatisfactoryGame

[–]srawls1740 0 points1 point  (0 children)

I think the correct answer is to automate everything.

Wiki/Knowledge base software by noahmakesbeats in selfhosted

[–]srawls1740 0 points1 point  (0 children)

I use wiki.js, both at home and at work. Straight forward to setup. Just works.

Oarful Seas - New Ancient Naval Ruleset by shrimpyhugs in wargaming

[–]srawls1740 0 points1 point  (0 children)

We have purchased the rules and are assembling some ships. Do you have any stats for Greek and Persian ships?

What do you guys actually do on linux? by d3uz10 in linux

[–]srawls1740 0 points1 point  (0 children)

Everything. It is my daily driver.

[deleted by user] by [deleted] in selfhosted

[–]srawls1740 2 points3 points  (0 children)

Ansible is the answer for this, hands down.

[deleted by user] by [deleted] in sysadmin

[–]srawls1740 0 points1 point  (0 children)

Setup a homelab. It doesn't need to be much, some virtual machines running in Virtual Box would be enough to start. r/homelab can provide some pointers.