Skip to content
View Gotszalk's full-sized avatar
🦇
Threads in Python
🦇
Threads in Python

Block or report Gotszalk

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. cv-gen cv-gen Public

    CV generator in XSL

    HTML

  2. LG-remote-control LG-remote-control Public

    LG remote control as flask HTML/Python app

    Python

  3. MemoMai MemoMai Public

    simple html5 game

    JavaScript

  4. gcd-lcm.js gcd-lcm.js
    1
    const lcm_fn = (x,y) => (x*y)/gcd_fn(x,y); // the least common multiple
    2
    const gcd_fn = (x,y) => (y<=0)? x : gcd_fn(y,x%y); // the greatest common divisor
  5. test_runner test_runner Public

    web test automation using Python, pytest, Selenium

    Python