Skip to content
View pR13S7's full-sized avatar
🌻
Help Ukraine against russian invasion - https://savelife.in.ua/
🌻
Help Ukraine against russian invasion - https://savelife.in.ua/

Block or report pR13S7

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Seed-project-for-Cypress Seed-project-for-Cypress Public

    Project`s seed for Cypress E2E tests

    JavaScript 1

  2. Compare two CSV files and output dif... Compare two CSV files and output diff to CSV
    1
    with open('STAGE_medications_new.csv', 'r') as t1, open('STAGE_medications_old.csv', 'r') as t2:    
    2
        new_csv = [item.lower() for item in t1.readlines()]
    3
        old_csv = [item.lower() for item in t2.readlines()]
    4
        
    5
    with open('diff.csv', 'w') as t3:            
  3. Check sort order for response in Pos... Check sort order for response in Postman
    1
    pm.test('Check sort', ()=>{
    2
        //==== parse and store your response
    3
        let responseBody = pm.response.json()   
    4
        
    5
        //==== sort by id property + acs
  4. Get access OAuth2 token Get access OAuth2 token
    1
    from oauthlib.oauth2 import BackendApplicationClient
    2
    from requests_oauthlib import OAuth2Session
    3
    from requests.auth import HTTPBasicAuth
    4
    
    
    5
    
    
  5. NeoVIM_config NeoVIM_config Public

    Lua

  6. Check A and CNAME DNS records for do... Check A and CNAME DNS records for domain was provided as argument. Run requests in parallel.
    1
    import json
    2
    import requests
    3
    import sys
    4
    import time
    5
    import concurrent.futures