Skip to content

Instantly share code, notes, and snippets.

View judaew's full-sized avatar

Vadym-Valdis Yudaiev judaew

  • Ukraine, Poltava
  • 10:50 (UTC +02:00)
View GitHub Profile
@sma
sma / js.dart
Last active December 25, 2023 19:24
A simple Lisp interpreter in Dart
const fib = [
'define',
['fib', 'n'],
[
'if',
['<', 'n', 3],
1,
[
'+',
[
@Th3Whit3Wolf
Th3Whit3Wolf / arch_sec_install.sh
Last active August 26, 2024 04:24
Install arch on btrfs(w/ swapfile) on luks with rEFInd bootloader
#!/bin/bash
# 0 - SSH
# This isn't necessary but if you ssh into the computer all the other steps are copy and paste
# Set a password for root
passwd
# Get network access
iwctl
"""
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active November 17, 2024 20:40
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@zmts
zmts / tokens.md
Last active November 17, 2024 14:22
Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

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

Last major update: 25.08.2020

  • Что такое авторизация/аутентификация
  • Где хранить токены
  • Как ставить куки ?
  • Процесс логина
  • Процесс рефреш токенов
  • Кража токенов/Механизм контроля токенов
@wanyakun
wanyakun / LLDB Debugger commands.txt
Created November 8, 2016 03:03
LLDB Debugger commands
Debugger commands:
apropos -- List debugger commands related to a word or subject.
breakpoint -- Commands for operating on breakpoints (see 'help b' for
shorthand.)
bugreport -- Commands for creating domain-specific bug reports.
command -- Commands for managing custom LLDB commands.
disassemble -- Disassemble specified instructions in the current
target. Defaults to the current function for the
current thread and stack frame.