Skip to content

Instantly share code, notes, and snippets.

View mioe's full-sized avatar
🐣
top secret

Misha Gezha mioe

🐣
top secret
View GitHub Profile
@jofftiquez
jofftiquez / github-workflow-guide.md
Last active March 14, 2025 11:44
CI/CD - Github Workflow + Firebase Hosting Guide

Template

Below is a template of GitHub's Workflow Action config file. Workflow is GitHub's CI/CD tool, like CircleCI.

Directory relative to the root of your application - .github/workflows/main.yml.

name: Deploy

on: 
anonymous
anonymous / renamer.py
Created August 8, 2017 09:55
Renames bad files
import os
for old in os.listdir('img'):
os.rename(os.path.join('img', old),
os.path.join('img', bytes(old,'iso-8859-1').decode('utf-8')))
@zmts
zmts / tokens.md
Last active April 23, 2025 08:56
Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

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

Last major update: 25.08.2020

  • Что такое авторизация/аутентификация
  • Где хранить токены
  • Как ставить куки ?
  • Процесс логина
  • Процесс рефреш токенов
  • Кража токенов/Механизм контроля токенов
@tsabat
tsabat / zsh.md
Last active April 21, 2025 07:22
Getting oh-my-zsh to work in Ubuntu