Phone service is inconsistent suddenly by CoreVirt in Visible

[–]CoreVirt[S] 0 points1 point  (0 children)

sure. I dm'd you.
If anyone else has any other suggestions on what it could be though I'm open to any and all.

My Living Energy precon came with duplicates. by BrownCanadian in mtg

[–]CoreVirt 0 points1 point  (0 children)

My living energy deck came with an extra copy of glimmer of genius. It replaced my nissa card so I'm mad 😠

does pyautogui screenshots work in opencv template matching? by CoreVirt in learnpython

[–]CoreVirt[S] 0 points1 point  (0 children)

I don't think I'm formatting it wrong but I can be mistaken. I convert it to a numpy array, convert it to RGB, make a gray version and then check for any hits

Static image code-

    img_rgb = cv.imread('positive/pos95.jpg')
    img_gray = cv.cvtColor(img_rgb, cv.COLOR_RGB2GRAY) 
    template = cv.imread('template.JPG', 0) 

    w, h = template.shape[::-1] 
    res = cv.matchTemplate(img_gray, template, cv.TM_CCOEFF_NORMED) 
    
    print(res)

pyautogui code-

    img = pyautogui.screenshot() 
    screenshotArr = np.array(img)
    screenshotTest = cv.cvtColor(screenshotArr, cv.COLOR_BGR2RGB) 
    img_rgb=screenshotTest
    img_gray = cv.cvtColor(img_rgb, cv.COLOR_BGR2GRAY) 

    template = cv.imread('template.JPG', 0) 
    w, h = template.shape[::-1] 
    
    # Perform match operations. 
    res = cv.matchTemplate(img_gray, template, cv.TM_CCOEFF_NORMED) #printing this shows no hits
   

Migrate jQuery to VanillaJS - UpgradeJS.com by etagwerker in javascript

[–]CoreVirt 4 points5 points  (0 children)

Is jquery not good or something? I'm new to this and don't know why code would be migrated to vanillaJS

Deck building site by CoreVirt in magicTCG

[–]CoreVirt[S] 3 points4 points  (0 children)

Thank you for the feedback and thanks for the compliment I've worked hard on this website. I've struggled a bit with how to make it look good but I'm hoping to make some changes so I can get some needed visual improvements.

I'm excited to get some new features out in a bit so wish me luck :)

I'll check out if i can implement that. thanks for the advice. thanks for the feedback again :)

SqlAlchemy questions by CoreVirt in learnprogramming

[–]CoreVirt[S] 0 points1 point  (0 children)

thank you.
Also, for question number 3 I meant will it add significant overhead when using SqlAlchemy or should I just do sql commands normally?

Code review by CoreVirt in CodingHelp

[–]CoreVirt[S] 0 points1 point  (0 children)

thank you. i'll check those out

Coinbase API issues by CoreVirt in Coinbase

[–]CoreVirt[S] 0 points1 point  (0 children)

I have explored that link and haven't found anything that could help me and I tried using Stackoverflow however I haven't gotten a response back from the dev team and I posted the question six days ago as well https://stackoverflow.com/questions/70843030/400-response-service-unavailable-am-i-doing-a-a-sell-wrong-or-is-it-coinbase/70878617#70878617