Update to AMD Ryzen 1700 and power sleep failure

I had written about a fix for my machine because it has a slightly older AMD Ryzen 1700 CPU. I recently re-installed an older version of OpenSUSE (wiping out the previous OS drive contents and replacing it). This did what I wanted it to do; but, it also wiped out the fix for the power sleep problem. I went back, and tried to implement the same fix, but it didn’t work. So here’s my note about a better fix.

I still am using the script in /etc/init.d which I named set_c6_acpi_state_disabled.sh

I did have to edit it to invoke python3 instead of just python.

#!/bin/sh 
# ScriptName=set_c6_acpi_state_disabled 
/usr/bin/python3 /home/blah/zenstates.py --c6-disable

zenstates.py can be found here.

But instead of messing with symbolic links to script files in places, I’m just adding a crontab entry to the root user:

@reboot /etc/init.d/set_c6_acpi_state_disabled.sh

XCOM2 is great

I don’t yet have any of the DLC, so I’m playing plain vanilla. But man vanilla is a wonderful flavor! 😀

It’s kind of funny – I didn’t really take to XCOM(1). I’d tried installing it on Steam on Linux, and wow did the mouse control ever not work. Just impossible, so I turned my back on it and muttered under my breath “stupid game” and patted myself on the back for avoiding the trouble.

A couple posts back, I talked about other strategy video games that I tried or liked. Stellaris was definitely a disappointment; so I was looking. Because I was looking for something I liked better than Endless Space and Stellaris, I was going through some game review sites. There was some mention of XCOM2 as “Best Game of 2016” somewhere.

Steam happened to have XCOM2 on sale.

I can tell you are shocked. 😉

Man, this game is good.

The only downside seems to be that it it a little buggy. Sometimes screens just fail, and there is rarely a way to see why or an ability to recover. So I completely understand where people use the Bronzeman mod, because Ironman would make me swear off all games forever if they trashed my game on the final scene. Which, by the way, XCOM2 did. Thankfully, I was able to load the most recent savegame, and then play my way through the ending again. This time, it turns out there are a four page statistics summary that was interesting.

I also see two almost completely black screens where cut-screens ought to go. But there are tiny little dots of white, and sometimes some swirly stuff going on. I kind of wish I knew someone on X Box or Playstation with the game so I could see if there really is supposed to be something there.

But bugs aside, the game play is great. The game is challenging. It is also interesting to try out different strategies and methods. There is a large variety of scenarios, and the timed ones add pressure. The game is just great. 😀

What I would suggest for Fireaxis / Take-Two for XCOM3 is to enhance the character modification process so that I can customize my character faces to look exactly like myself or people I know. So do the whole face customization thing, with 18 face shapes from oval to square to round; let me pinch or spread eyes, ditto the relation between eyes and end of nose, end of nose to centerline on mouth. Twelve different nose styles with 50% – 200% size scale, and yes, even for the mouth, there should be styles (including RBF). Gobs of eyebrow styles, and a better selection of hair colors. BTW, I’m pretty bald, but I don’t shave my head completely. Could that be an option? For the eyes, there should be the ability to set the eyeballs deeper in to, or out of their sockets. Turns out that’s a primary skull difference between females and males: the skull ridge above the eyes. So, can we get that customization? I want to take a picture of myself, and be comparing it to the face sculptor in XCOM3 and keep tweaking the settings until it looks exactly like me.

That would be wonderful.

Web browsers and automation, oh my!

At work, one of my job tasks is e-discovery, which means logging in to an email archive web application, doing searches, and tagging the items that meet the search criteria. The web application was originally written by one guy (I think) and although the back-end stuff is amazing, the actual web pages I interact with are twitchy. There are more than 110 million emails in this archive; and the search and indexing features are great. But the results pages? Sometimes I have to deal with a lot of them, and the smart way to go is automation.

(As I write this, the one automation script is working it’s way through 88 pages of results, and the script tells me it will likely be done in about 15 minutes)

When I say the results pages are twitchy, what I mean is that the buttons on the page move, after they have been clicked. Usually, but not always – and that is dependent on the web browser.

I’m using WinBatch to automate driving the web page. Specifically, there is a start cycle process, where I go through the motions of which buttons to press; but, I don’t press them, WinBatch does. To signal WinBatch that the mouse co-ordinates are correct, I tap the Shift key. There is a super tight loop in the WinBatch script which is recording where the mouse pointer is (it’s a 1000 * 1000 virtual x-y coordinate system). It reads the x-y coordinates, checks to see if the Shift key has been depressed, and if so, it records the coordinates for that button, and then moves through to the location of the next button that needs to be defined.

This works fine if the buttons do not move. But under some browsers, clicking a button moves elements on the web page. I’m sure this is a CSS / Javascript thing that happens because the initial development was all about how to wrangle millions of emails, and not about web page design.

So, under Google Chrome, the web page is the least twitchy. But Google with their Chrome browser are a bunch of rat-bastard bullies, so I can’t really use it. We have an internal (private) domain name, which means our SSL certificates are self-signed. Yeah, Google Chrome hates on that. Most recently, the problem is that the server is old. We ran into a problem trying to upgrade, so we didn’t. But that means the SSL on the web page is TLS 1.2 – to which Google helpfully tells me to go kick rocks.

Okay, what about my favorite browser, Firefox? It is the most friendly when it comes time to just get things done; but, it is the most twitchy. Sometimes the email archive server gets in a state where the web page dialog boxes pop up off screen; this only happens with Firefox. I had actually opened up a technical support ticket with the email archive vendor for this, and they told me to stop Tomcat, Apache, MySQL, empty a cache directory, and start everything back up. That worked, so the vendor never actually tried to figure out what was going wrong. Recently, I’m having to share the server with people doing email exports, so I can’t just willy-nilly bounce the services. If the services have been bounced recently, Firefox works fine. But if it’s been a few days, then I can’t. I don’t want to re-write a portion of my WinBatch script to try to find the top of the web page, then the bottom of the web page, just to support this twitchy behavior by Firefox.

Okay, what about Microsoft’s Edge browser? It’s based on Google Chrome, so it might have better HMTL element layout like Chrome has. Alas, during the loop to track where the mouse pointer is, Edge just really doesn’t like refreshing the screen / sharing anything with any other program (WinBatch). So I could not actually get the location of the buttons on the web pages to play the mouse clicks back later.

Finally, I have tried the Brave web browser. I’m not terribly fond of it. It looks to me rather like a front by Google to try to get people who are suspicious of Google’s privacy violating lifeblood to use the Chrome browser anyway. But, it has the advantage of being based on the Chromium engine (which creates the least amount of twitch).

Nicely enough, it isn’t trying to be the bully that gives me the finger for trying to access a self-signed cert web site over TLS 1.2. I can actually get work done now.

Weirdly, it’s the only browser that causes the “Next” button (to advance to the next page of search results) to twitch horizontally. I need to position the mouse pointer over the “t” in Next, let go of the mouse, and tap the Shift key to set the position. Sometimes the Next button shifts to the right, and sometimes it does not. But if it does, then when the mouse pointer gets played back to the same position, is still over the “N” in Next, and the button press does work.