jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Knowledge / Stack Overflow · hot matching “vi”

13 shown · updated 15m ago · read only
  1. How do I make an IRIS list/array property queryable per-element in SQL, without updates rewriting the whole list? (stackoverflow.com)stack

    29 points by Svetik May in stackoverflow.com · 28m ago · stack

    I’ve got a CRM.Contact class where each contact has multiple phone numbers plus some free-form metadata. started with the obvious thing: Class CRM.Contact Extends (%Persistent, %Populate) { Property FullName As %String(MAXLEN = 100); Property PhoneNumbers As list Of %String; Pro…
  2. Error adding SDL window icon, what to do? (stackoverflow.com)stack

    27 points by Etotheili 25 in stackoverflow.com · 54m ago · stack

    I've made some code in C to make a game prototype in SDL, but when I added an SDL_Surface to get an icon at the top-left of the screen with the SDL_SetWindowIcon() command, my program crashed at runtime giving this message: Error making icon: wayland: cannot set icon; required x…
  3. AWS Cognito how to handle verification failure and signIn (stackoverflow.com)stack

    22 points by Vivek Khandekar in stackoverflow.com · 1h ago · stack

    I have a query for signup flow in my app Signup flow is like this: User enters info in form info is submitted via aws amplify SignIn methode A aws cognito record is created with status "Unconfirmed" User navigate to verify email screen. User gets OTP on his provided email. Confi…
  4. can I make choosing a file count as a user gesture? (stackoverflow.com)stack

    18 points by Geoff Nunes in stackoverflow.com · 18h ago · stack

    I am making a very simple video player. I want the video to display in full screen mode. I give the user two ways to choose a file to play. One works and one does not. The way that works listens to a div for a 'drop' event. The even triggers a routine that enters full screen and…
  5. How are Playwright features being used in test automation? [closed] (stackoverflow.com)stack

    17 points by Sri Ramya in stackoverflow.com · 26h ago · stack

    I’ve been exploring Playwright for test automation and one thing I’ve been thinking about is how efficiently teams are actually using it beyond simply automating test cases. Playwright provides features such as auto-waiting, web-first assertions, parallel execution, browser cont…
  6. How to implement Google reCAPTCHA v3 in an Android app? (stackoverflow.com)stack

    13 points by Ravi Ghadiya in stackoverflow.com · 3y ago · stack

    I'm building an Android app and I want to implement Google reCAPTCHA v3 to prevent bots from submitting forms. I've already implemented reCAPTCHA on my website for web and server side, but I'm not sure how to do it in my Android app. Can someone help me with the steps to impleme…
  7. How to fix android SDK file not found (stackoverflow.com)stack

    12 points by naer in stackoverflow.com · 4y ago · stack

    can someone please help me cause i've been trying to fix this problem for hours now flutter doctor picture SDK tools picture [✓] Flutter (Channel stable, 2.5.3, on Microsoft Windows [Version 10.0.22000.318], locale en-US) [!] Android toolchain - develop for Android devices (Andr…
  8. Unix/Perl/Python: substitute list on big data set (stackoverflow.com)stack

    9 points by Subbeh in stackoverflow.com · 7y ago · stack

    I've got a mapping file of about 13491 key/value pairs which I need to use to replace the key with the value in a data set of about 500000 lines divided over 25 different files. Example mapping: value1,value2 Example input: field1,field2,**value1**,field4 Example output: field1,…
  9. What do these double-dash-prefixed CSS properties do? (stackoverflow.com)stack

    7 points by Finesse in stackoverflow.com · 9y ago · stack

    I met this strange CSS code here : :root { --color-link: #04b; --color-link-visited: #551a8b; --color-link-minor: #669; --color-black: #000; --color-grey: #999; --font-thin: HelveticaNeue-thin,sans-serif-thin; --font-light: HelveticaNeue-Light,sans-serif-light; --text-s: 11px; -…
    filed under css
  10. Illegal access to loading collection (hibernate.LazyInitializationException) (stackoverflow.com)stack

    2 points by Satish Kumar in stackoverflow.com · 15y ago · stack

    I am using JPA with Hibernate persistence provider. I have one to many mapping, I used @OneToMany(mappedBy = "mSearchPreference", cascade = CascadeType.ALL, fetch=FetchType.EAGER) I can see the one to many SQL statements on the console, eventhough i am getting the exception ille…
    filed under jpa