I hereby claim:
- I am ravicious on github.
- I am ravicious (https://keybase.io/ravicious) on keybase.
- I have a public key ASDrHTWeOlKz84p48QhqWdIv5CfLLio1V2Dt84KhrZnKPQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
oh-my-zsh snippet that shows the closest Jujutsu bookmark when you're inside a jj repo, falling back to the git branch otherwise. Prefers mutable bookmarks (your
working branches) over immutable ones (main, tags). Runs in oh-my-zsh's async-prompt background process so it doesn't block prompt redraw.
It uses git's dirty marker because jj doesn't understand submodules yet. Because of how jj log works, bookmarks that are out of sync with origin will have * appended to their names, which I think is a nice bonus.
Works with any oh-my-zsh theme that uses the standard git_prompt_info function and ZSH_THEME_GIT_PROMPT_* variables — robbyrussell, garyblessington, fwalch, and most simpler themes.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Cross-Origin Isolation Repro</title> | |
| <style> | |
| body { font-family: monospace; padding: 2em; } | |
| .pass { color: green; } | |
| .fail { color: red; } | |
| </style> |
| describe('andMap', () => { | |
| const tests: Array<{ | |
| statusA: AttemptStatus; | |
| statusB: AttemptStatus; | |
| expectedStatus: AttemptStatus; | |
| }> = [ | |
| { | |
| statusA: 'success', | |
| statusB: 'success', | |
| expectedStatus: 'success', |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | |
| <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> | |
| <title>Hello World!</title> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | |
| <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"> | |
| <link href="./styles.css" rel="stylesheet"> | |
| <title>Hello World!</title> | |
| </head> | |
| <body> |
| const {setTimeout} = require('node:timers/promises') | |
| process.on('SIGTERM', () => { | |
| console.log('got SIGTERM') | |
| setTimeout(100).then(() => { | |
| console.log('Exiting') | |
| process.exit(0) | |
| }) | |
| }) |
Kilka podstawowych kwestii:
Cały proces zajmuje 2-3 tygodnie i prawie nic nie da się zrobić przez internet. Najlepiej zabrać się za to przynajmniej na dwa tygodnie przed terminem, od którego chcecie być ubezpieczeni. A można i nawet wcześniej, bo we wniosku składanym do NFZ wpisuje się, od kiedy chce się podlegać ubezpieczeniu.
Składka za ubezpieczenie dobrowolne jest niepodzielna. Czy zaczniecie być ubezpieczeni z pierwszym dniem miesiąca, czy z ostatnim, to i tak płacicie składkę za cały miesiąc.
Przez miesiąc czy tam 30 dni po zawieszeniu działalności wciąż jesteście ubezpieczeni z tytułu prowadzenia działalności.
Z tych właśnie powodów najlepiej zawiesić działalność z końcem miesiąca i podpisać umowę o ubezpieczenie z początkiem tego, od którego wygasa ubezpieczenie z tytułu prowadzenia działalności. Czyli np. zawieszam z końcem maja i od lipca ubezpieczam się dobrowolnie.
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <title>Hello, World!</title> | |
| <meta name="description" content="Basic HTML template"> | |
| </head> | |
| <body> | |
| </body> |
| # Change path to Postgres.app command line utilities based on the version of Postgres that's currently running. | |
| export PATH="/Applications/Postgres.app/Contents/Versions/$(psql -c 'show data_directory;' | perl -n -e '/Postgres\/var-(.+)$/ && print $1')/bin:$PATH" |