HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kuriho

no profile record

comments

kuriho
·letztes Jahr·discuss
This years management goals have been crafted with the help of our in-house AI assistant.

The development and project teams I primarily work with are all encouraged to identify suitable use cases for GenAI. Most development teams have already started trials with AI assisted coding but reported a relatively low adoption rate of 5–10%.
kuriho
·vor 2 Jahren·discuss
Switzerland uses mostly 64-96kbps as per this outdated(?) list https://de.wikipedia.org/wiki/Liste_der_DAB-Sender_in_der_Sc...
kuriho
·vor 2 Jahren·discuss
SAP ABAP's OpenSQL allowes you to write both:

     SELECT FROM scarr
       FIELDS carrid, carrname
       ORDER BY carrid
       INTO TABLE @DATA(result1).
and

     SELECT carrid, carrname
       FROM scarr
       ORDER BY carrid
       INTO TABLE @DATA(result2).
https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/a...