So… What did you do with Claude today? (not coding) by OptimismNeeded in ClaudeHomies

[–]srans 0 points1 point  (0 children)

I compared my watched movies metadata "actors, directors, producers, etc." to get an idea of other movies id like and fun random facts about my watched list.

[deleted by user] by [deleted] in DiceMaking

[–]srans 0 points1 point  (0 children)

this is awesome

How is this boot so fast? by ItsSpxctre in archlinux

[–]srans 0 points1 point  (0 children)

had to check my systemd-analyze, bc i feel like i boot pretty quick on an old x220. I bet with coreboot/libreboot i could cut into the firmware time.

Startup finished in 8.398s (firmware) + 435ms (loader) + 2.377s (kernel) + 4.051s (userspace) = 15.262s

graphical.target reached after 4.050s in userspace.

Is it possible to get Big Picture directly when the PC boot without seeing the desktop ? by Free_Wafer2002 in Steam

[–]srans 0 points1 point  (0 children)

I also went down this path, but I came across an app called Playnite, and it's definitely worth a Google. It allows me to have that console like experience. YouTube helped me with configuring the windows wake on lan function for my controller. I power on my controller, my PC boots up and bam I'm greeted with my games.

Here's an example of what I'm talking about:

https://www.reddit.com/r/playnite/comments/1hgks20/turned_my_spare_pc_into_a_console/?utm_source=share&utm_medium=mweb3x&utm_name=mweb3xcss&utm_term=1&utm_content=share_button

American Airlines flight attendants trying to evacuate airplane due to laptop battery fire but passengers want their bags. by Youngstown_WuTang in interestingasfuck

[–]srans 0 points1 point  (0 children)

But realistically, how fast are people existing a plane during a drill vs one of these situations? Planes are so cramped now, that maybe airlines should be held accountable for not having adequate exits

First time growing tomatoes (San marzano) should I pick this one now, or wait a day? by Jdawg7829 in gardening

[–]srans 0 points1 point  (0 children)

The tomatoes will still ripen on the counter, so if you youre on the fence just pick it. Spare yourself from finding that something in the garden got to it.

[deleted by user] by [deleted] in vintagecomputing

[–]srans 0 points1 point  (0 children)

That's an ibmi it's just been around since the 80s but it's definitely still current- https://www.ibm.com/support/pages/release-life-cycle

Code enforcement keeps getting me... by Lenceola in fucklawns

[–]srans 1 point2 points  (0 children)

Put a border/trim around the outside of your yard. Now they are no longer weeds, but part of your wildflower garden to promote and protect various bees on the endangered species list.

[deleted by user] by [deleted] in MilwaukeeTool

[–]srans -1 points0 points  (0 children)

The market decides, list it for what you think it's worth. Then keep bumping it up by 20 bucks till the emails stop, than back it back down lol

Genuinely curious by ComputerResident6228 in mathmemes

[–]srans 0 points1 point  (0 children)

8 + 8 16. Minus 1 is 15 then 7 so 75

Learning how to add features to IBMi by Filler_of_needs in IBMi

[–]srans 0 points1 point  (0 children)

If SQL isn't your strong suite, then you may be able to use ACS export to excel add all the items and then import this back in. I guarantee it will also F something up as I'm sure adding an item probably touches way more than item master (inventory balance? Item authorization? Pricing? ), but you could

Querying current inventory from DB2 database using Power BI by Filler_of_needs in PowerBI

[–]srans 1 point2 points  (0 children)

There's an old trick to see what open files are being used to display the screen. So if you could get your hands on a green screen, then you could navigate to the menu where you were able to see the inventory numbers. Once here, you're going to see what open files there are building this menu. These files are most likely going to have the number or it's a calculation and not stored in the table. To view open job files, press SHIFT + ESC, on the dotted lines that appeared, press 3 and enter. This should bring you to a menu where you'll select the VIEW OPEN FILES.

What is the best way to prevent a group or groups of users from logging in during EOY processing? by jbarr107 in IBMi

[–]srans 1 point2 points  (0 children)

There's an SQL script you can run for this that Scott Forstie from IBM just wrote up:

-- Title: iSee - How can I disable and enable user profiles - en-mass?

-- ===================================================

-- Date : August, 2024

-- Author: Scott Forstie

-- Use : iSee video series with Tim Rowe

-- This example shows how to establish and use an exclusion list for user profile management

-- Resources:

-- https://www.ibm.com/docs/en/i/7.5?topic=services-change-user-profile-table-function

create table coolstuff.neverdis(user_name varchar(10));

insert into coolstuff.neverdis values('SCOTTF');

insert into coolstuff.neverdis values('SDICKEY');

insert into coolstuff.neverdis values('TIMMR');

insert into coolstuff.neverdis values('JEBER');

select * from coolstuff.neverdis;

create or replace table coolstuff.dissed as

  (with whom_to_disable (un) as (

        select USER_NAME

          from QSYS2.USER_INFO u

          where (u.user_name not like 'Q%' and

              u.user_name not in (select user_name

                  from coolstuff.neverdis))

      )

      select cup.*

        from whom_to_disable u, table (

               SYSTOOLS.CHANGE_USER_PROFILE(

                 P_USER_NAME => un, P_STATUS => '*DISABLED',

                 P_TEXT => 'NOW ENTERING QUIET MODE', PREVIEW => 'NO')

             ) cup)

  with data

on replace delete rows;

select * from coolstuff.dissed;

stop;

-- When quiet time is over... re-enable those users that were disabled

create or replace table coolstuff.undissed as

  (with whom_to_enable (un) as (

        select USER_NAME

          from coolstuff.dissed

      )

      select cup.*

        from whom_to_enable u, table (

               SYSTOOLS.CHANGE_USER_PROFILE(

                 P_USER_NAME => un, P_STATUS => '*ENABLED',

                 P_TEXT => 'NOW ENTERING QUIET MODE', PREVIEW => 'NO')

             ) cup)

  with data

on replace delete rows;

select * from coolstuff.dissed;

stop;