Skip to content
View 8wgf3b's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report 8wgf3b

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
8wgf3b/README.md

Hello there, I'm Rohith 👋

Linkedin: Rohith Personaldiscord

My Github stats

Top Langs

Anurag's github stats

Pinned

  1. time-and-time-again time-and-time-again Public

    Time series POC projects

    q 1

  2. rpi_server rpi_server Public

    discord bot

    Python

  3. letsee letsee Public

    Advent of Code and Project Euler

    q

  4. server.q server.q
    1
    / handle websocket messages
    2
    .z.ws: {value x}
    3
    
                  
    4
    / handle closure of websockets 
    5
    .z.wc: {delete from `subs where handle = x}
  5. sub.py sub.py
    1
    import websockets
    2
    import json
    3
    import asyncio
    4
    
                  
    5
    
                  
  6. client.py client.py
    1
    import asyncio
    2
    import websockets
    3
    
                  
    4
    uri = "ws://localhost:5511"
    5