Skip to content

Instantly share code, notes, and snippets.

View DaggerJackfast's full-sized avatar
🎯
Focusing

Aibek Abdykasymov DaggerJackfast

🎯
Focusing
  • Bishkek, Kyrgyzstan
View GitHub Profile
@DaggerJackfast
DaggerJackfast / tokens.md
Created March 24, 2021 12:15 — forked from zmts/tokens.md
Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Last major update: 25.08.2020

  • Что такое авторизация/аутентификация
  • Где хранить токены
  • Как ставить куки ?
  • Процесс логина
  • Процесс рефреш токенов
  • Кража токенов/Механизм контроля токенов
@DaggerJackfast
DaggerJackfast / selectfile.py
Created August 28, 2018 08:21 — forked from DrDub/selectfile.py
A file selection class build for ipywidgets without any extra dependencies.
import os
import ipywidgets as widgets
class FileBrowser(object):
def __init__(self):
self.path = os.getcwd()
self._update_files()
@DaggerJackfast
DaggerJackfast / pydelicious.py
Created September 10, 2017 21:48 — forked from takashi/pydelicious.py
pydelicious for python3
"""Library to access del.icio.us data via Python.
:examples:
Using the API class directly:
>>> a = pydelicious.apiNew('user', 'passwd')
>>> # or:
>>> a = DeliciousAPI('user', 'passwd')
>>> a.tags_get() # Same as: