Skip to content

Instantly share code, notes, and snippets.

View ju-popov's full-sized avatar

Julian Popov ju-popov

  • SumUp
  • Sofia, Bulgaria
View GitHub Profile
@ju-popov
ju-popov / golang_developer.md
Created August 15, 2024 07:37
Golang Developer

Position: Golang Developer

We are seeking a skilled Go developer with a solid foundation in software engineering to join our team.

Responsibilities:

Feature Development: Architect and implement new features for our server components, ensuring scalability and performance.

Code Integration and Debugging: Collaborate with the development team to design, develop, integrate, and debug code on Linux systems.

@ju-popov
ju-popov / keybase.md
Created April 1, 2020 10:03
keybase.md

Keybase proof

I hereby claim:

  • I am ju-popov on github.
  • I am jupopov (https://keybase.io/jupopov) on keybase.
  • I have a public key ASC659ubn_G9p5qdTNq7riNXTVgv1pK3USUmJU14wz24uAo

To claim this, I am signing this object:

@ju-popov
ju-popov / timestamp.py
Last active April 7, 2021 16:09
Python DateTime / Timestamp Convertion
######################################################################
# CURRENT AWARE LOCAL DATETIME
######################################################################
from datetime import datetime
from tzlocal import get_localzone
local_tz = get_localzone()
local_dt = datetime.now(local_tz)