andrew

joined 6 months ago
[–] andrew@lemmy.stuart.fun 18 points 2 years ago

Also optionally can be puppies for much longer but without the downsides.

[–] andrew@lemmy.stuart.fun 4 points 2 years ago (3 children)

I'm not gonna lie, I haven't seen ABAP in 10 years and was only briefly familiar with it. But I did what one does and asked GPT4 for some tax computation ABAP.

DATA: lv_income TYPE P DECIMALS 2 VALUE '50000',
      lv_tax_rate TYPE P DECIMALS 2,
      lv_tax_amount TYPE P DECIMALS 2.

* Select the appropriate tax rate from the tax table based on income
SELECT SINGLE TAX_RATE INTO lv_tax_rate 
FROM ZTAX_TABLE 
WHERE INCOME >= lv_income 
ORDER BY INCOME ASCENDING.

IF sy-subrc = 0.
  lv_tax_amount = lv_income * lv_tax_rate / 100.
  WRITE: / 'Income:', lv_income,
         / 'Tax Rate:', lv_tax_rate,
         / 'Tax Amount:', lv_tax_amount.
ELSE.
  WRITE: / 'No tax rate found for income', lv_income.
ENDIF.
[–] andrew@lemmy.stuart.fun 11 points 2 years ago (8 children)

Are you not blind after staring at ABAP?

[–] andrew@lemmy.stuart.fun 17 points 2 years ago

People reading that bumper sticker:

[–] andrew@lemmy.stuart.fun 2 points 2 years ago

One who speaks in tunnels is a tunnel linguist.

[–] andrew@lemmy.stuart.fun 4 points 2 years ago* (last edited 2 years ago)

Who?

I guess I'm the one who subscribed to this community. But not for good news! ಠ_ಠ

[–] andrew@lemmy.stuart.fun 20 points 2 years ago* (last edited 2 years ago) (1 children)

Does life insurance have to pay out on miscarriage? Find ways to make rich people lose money with this and I'll bet you'll start finding solutions.

[–] andrew@lemmy.stuart.fun 3 points 2 years ago

Oh man I read that as OMVS and thought you were homelabbing an IBM mainframe.

[–] andrew@lemmy.stuart.fun 19 points 2 years ago* (last edited 2 years ago)

And don't forget the 18 zero days, including 4 for RCE, found around WiFi calling that had them suggesting everyone turn it off for a few months.

[–] andrew@lemmy.stuart.fun 3 points 2 years ago (1 children)

This is the kind of thing I'd probably just monitor with prometheus' blackbox exporter if I wanted the list, and to be able to see trends and/or alerts for http response time, http response code, cert expiration, all that.

[–] andrew@lemmy.stuart.fun 12 points 2 years ago

You have to be rich enough to call it summering and then it's allowed.

[–] andrew@lemmy.stuart.fun 2 points 2 years ago (3 children)

Well yeah. They get a ton of extra wind tunnel time and CFD time because they were at the back of the grid so they come in with more tested ideas. But then the rest of the year they're on more or less equal footing from a testing angle.

view more: ‹ prev next ›