jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Tech / Stack Overflow · hot matching “advice”

5 shown · updated 38s ago · read only
  1. Multiple similar scanners with GNU Flex (stackoverflow.com)stack

    24 points by Simon Richter in stackoverflow.com · 1h ago · stack

    I have two similar but different enough inputs formats and would like to build two different scanners for these, using GNU Flex. My two options are make one big definition, with two separate start conditions. This requires me to keep track of what kind of file I'm scanning, beca…
    filed under adviceflex-lexer
  2. Is my method for managing individual event driven tasks in python asyncio overkill? (stackoverflow.com)stack

    17 points by iamthebull in stackoverflow.com · 2d ago · stack

    In my app I have resources that will create tasks that: are created by asynchronous events are independent from each other (i.e. cancellation of one task should not affect the others) have a finite life span shorter than the life span of the resource should have errors handled i…
  3. Does ML Kit On-device Translation require written permission if the API is never executed on Android TV or Automotive? (stackoverflow.com)stack

    16 points by user33034655 in stackoverflow.com · 3d ago · stack

    We are developing an Android application that supports smartphones, Android TV, and Automotive/embedded Android devices. Our application uses ML Kit Image Description to generate an English description of an image. We then use ML Kit On-device Translation to translate the descri…
    filed under advicegoogle-mlkit
  4. In C# what is the best way to detect that an optional parameter wasn't specified? (stackoverflow.com)stack

    15 points by Symfony-Wonderer in stackoverflow.com · 3d ago · stack

    I'm programming in C#, but I don't know -- see below, using Visual Studio 2022 (see below for the version), and I want to know how to best detect that an optional class constructor's parameter has been specified when called by the the new call. I know about using a default value…
  5. Playwright Login Logout Session Maintenance (Browser Context) (stackoverflow.com)stack

    14 points by Ivan in stackoverflow.com · 5d ago · stack

    Our company has a bank application where it requires maker/checker process. For instance, maker creates record, checker approves it. Thus, resulted following application flow. Maker log in and add records Maker log out Checker log in Checker approve and records insert into db I…