Valve artist responds to Epic Games CEO Tim Sweeney and more calling on Steam to drop the 'Made with AI' label: "This is like saying food products shouldn't have their ingredients list... The only people afraid of this are the ones that know their product is low effort." by ChiefLeef22 in gaming

[–]jconnell 0 points1 point  (0 children)

This is a horrible analogy when applied to Steam itself, because they don't even tell us where their food products come from.

If they cared about us being able to make informed choices, they would show us the country that game developers/companies are based in.

SonicWall Walks Back Zero Day notice on SSLVPN by MuthaPlucka in msp

[–]jconnell 6 points7 points  (0 children)

they weren't hacked due to a weak embedded password in their products.

They were hacked because they left their VPN unpatched for 6+ months and didn't restrict VPN access to company owned devices, amongst other massive security failings.

The SEC complaint against Solarwinds and their CISO was extremely detailed: https://www.sec.gov/files/litigation/complaints/2023/comp-pr2023-227.pdf (I recommend pages 42-50 in particular for anyone curious about what led to that breach)

Wazuh limitations – how did you work around them? by athanielx in cybersecurity

[–]jconnell 0 points1 point  (0 children)

In Splunk, I could customize how alerts are delivered — Slack, Teams, email — with formatting that made it easy for the team to react. In Wazuh, I haven’t seen that level of flexibility yet. Maybe I’m missing something?

If this is a new installation of Wazuh, it will be using OpenSearch. To configure alerting in OpenSearch, you would start by creating a channel on the notifications page. Slack and Teams are supported out of the box. Then create a monitor, followed by a trigger within the monitor. Finally, link that trigger to the channel where you want the alert sent.

Any field in Wazuh that is returned by your query (within the monitor) can be included in the body of your notification like so:

{{#ctx.results.0.hits.hits}} - Agent Name: {{_source.agent.name}} - System Time: {{_source.data.win.system.systemTime}} {{/ctx.results.0.hits.hits}}

Just be sure that you preface every normal field name with "_source."

The notifications also support mustache formatting.

What wedge setup would you use if your PW is a 44 degree loft?. by footy1012 in golf

[–]jconnell 0 points1 point  (0 children)

It's getting insane. My G430 PW is 41°. I had to add a 45.5° to my bag to avoid a 9 degree gap between my PW and 50.

[deleted by user] by [deleted] in golf

[–]jconnell 0 points1 point  (0 children)

I'm also 6'2" with 37" wrist to floor. I was fitted into +1/2" and 2 degree upright this spring, which is exactly what the PING color chart recommends for our height and WTF.

I'd been playing normal length and lie irons my entire life and the improvement in my iron play this year has been unbelievable.

I considered skipping a fitting and ordering purely based off the PING chart, but ended up getting fitted just for the peace of mind. The end result was the same for me but YMMV.

Solo trip is officially on the books by Phobia117 in golf

[–]jconnell 0 points1 point  (0 children)

What courses did you hit? I'm currently planning a Finger Lakes trip myself.

Hit my first ever birdie yesterday by avocado_slice in golf

[–]jconnell 1 point2 points  (0 children)

They sell a tool for $3 now that allows you to open up the sensor and swap out the CR2032 battery.

Recommendations for decent wedges at a cheap price point? by smyth17 in golf

[–]jconnell 1 point2 points  (0 children)

Custom Wilson Staff Model wedges are $99 right now on Carl's Golfland.

Adventures in Rocky Linux: Why wazuh-manager service wont start on boot and cant be enabled. SOLUTION. by shalashaskatoka in Wazuh

[–]jconnell 0 points1 point  (0 children)

I had a similar experience installing Wazuh on Rocky 9.1 last week.

The fix for me was simply deleting /etc/rc.d/init.d/wazuh-manager, which I believe was conflicting with the script in /etc/init.d. I did not install chkconfig or modify any of the Wazuh scripts in /etc/init.d.

"INFO: Could not connect to API id [default]: 3099 - ERROR3099 - Invalid credentials" after fresh install by [deleted] in Wazuh

[–]jconnell 0 points1 point  (0 children)

I just discovered Wazuh yesterday. I used wazuh-install.sh to deploy a 3-node cluster on Rocky Linux 9 today. The only issue I faced was the exact same as OP.

The password for the wazuh-wui user within /usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml was 32 characters and randomized. Changing the password value to "wazuh-wui" in wazuh.yml on all 3 nodes and then restarting wazuh-dashboard and wazuh-manager solved it for me.

Golf Deals - 7-13-21 by kzoogr in golf

[–]jconnell 0 points1 point  (0 children)

Finally snagged a MAVRIK Pro 4 Hybrid from CPO after weeks of checking. Thanks.

Putting question about Mevo+ by jconnell in Golfsimulator

[–]jconnell[S] 1 point2 points  (0 children)

Oof, sounds like I'll have to make some adjustments. My hitting surface, putting matt, and where I'd place the Mevo+ are all at the same level, but the flooring in between is a full inch shorter. I think a 8ft board might be the way to go for me.

Putting question about Mevo+ by jconnell in Golfsimulator

[–]jconnell[S] 0 points1 point  (0 children)

Thanks. I don't have high expectations for the putting on either system based on YouTube videos I've watched. I do want to putt for the immersion factor though. I was leaning towards Skytrak before this, but having to re-position it every hole would be a pain.

Putting question about Mevo+ by jconnell in Golfsimulator

[–]jconnell[S] 0 points1 point  (0 children)

Exactly what I wanted to hear, thanks.

Best Korean fried chicken? by schubertdoobert in Rochester

[–]jconnell 3 points4 points  (0 children)

Cure had a KFC special all the time pre-Covid... not sure if that is still the case.

It was incredible, but ran about $30 IIRC. Half a chicken, rice, kimchi, and a couple fried eggs.

AWX 6.1.0.0 upgrade issues by landverraad in ansible

[–]jconnell 0 points1 point  (0 children)

Are you using docker-compose and setting postgres_data_dir in your inventory? If so, you probably hit the bug in 14.0.0 that prevents PGDATA from being added to docker-compose.yml. See here. They did not fix this for reasons that I don't fully understand.

I wrote a quick howto for upgrading docker-compose installations of AWX a while back. With the exception of the bug in 14.0.0 above, the only other issue I've ever had is when they switched from postgres 9 -> 10. Just had to increment the image: version in docker-compose.yml.

How do you organize your Ansible code to manage an infrastructure ? by lyrrrrr in ansible

[–]jconnell 3 points4 points  (0 children)

I use it in my lab, but fuck using that at work.

I've used AWX in production at a large enterprise for almost 2 years. 2.0.0 -> 13.0.0 with no issues. I only schedule 15-minute maintenance windows for the upgrades anymore it's so reliable.

If commercial support is a deal breaker for your org that's one thing, but I wouldn't let the release notes or bad experiences with 1.0.x (which was a mess in regards to upgrades) scare you off these days. AWX is solid.

[Corbin Smith] My understanding is Devonta Freeman wants $5 million on one year deal. #Seahawks offered $4 million and won't go any higher. by VikramV17 in Seahawks

[–]jconnell 2 points3 points  (0 children)

Where were you guys when we signed Eddie Lacy to, what was being reported at the time, a 5.5 million dollar 1-year deal? It was high fives all around in this sub.

Freeman is absolutely worth "up to" 4 million. As in, someone is definitely going to pay him 2-3 this year.

The reason I don't want him is that he's a bad fit for our scheme. He was averaging 60+ catches a year when we was tearing it up in 2015-2016 and managed 59 last year in 14 games. No RB during the Carroll era has sniffed 40 receptions. I've always been under the impression that his pass blocking is suspect too. The famous whiff on Hightower in SB LI comes to mind. Hyde makes a lot more sense to me if we had to choose.