📝 Docker's "failed to register layer" error on macOS/OrbStack.
failed to register layer: rename /var/lib/docker/image/overlay2/layerdb/tmp/write-set-xxx /var/lib/docker/image/overlay2/layerdb/sha256 /<sha>: file exists
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true| package main | |
| import ( | |
| "flag" | |
| "io" | |
| "log" | |
| "net" | |
| "net/http" | |
| "strings" | |
| ) |
| const webSocket = new WebSocket('wss://echo.websocket.org'); | |
| //Event listeners are the pillars upon which WebSockets are built. This event fires when the WebSocket is considered 'OPEN', | |
| //which means that it has connected successfully. | |
| webSocket.addEventListener('open', function(event) { | |
| console.log('websocket connected successfully') //log this into the browser console so we can check if the websocket connected | |
| }); | |
| //This is a global reference to the websocket that we created. We need this because otherwise multiple JS |
| [user] | |
| email = your_email | |
| name = your_username | |
| [alias] | |
| # git clone | |
| cl = !git clone | |
| # Git shallow clone for large repos | |
| clq= !git clone --depth=1 | |
| s = status | |
| co = checkout |
| def marc_to_dict(marcobj): | |
| control_fields = ('001', '002', '003', '004', '005', '006', '007', '008', '009') | |
| jsonobj = {} | |
| jsonobj['leader'] = marcobj.leader | |
| jsonobj['fields'] = [] | |
| for field in marcobj.fields: | |
| if field.tag in control_fields: | |
| jsonobj['fields'].append( { field.tag : re.escape(field.data) } ) | |
| else: | |
| subdict = {} |
| """ | |
| Usage: | |
| Make sure that redis is running on localhost (or adjust the url) | |
| Install uvicorn or some other asgi server https://asgi.readthedocs.io/en/latest/implementations.html | |
| pip install -u uvicorn | |
| Install dependencies |
| Label | Count |
|---|---|
| auto-migrated | 1062577 |
| Priority-Medium | 852268 |
| Type-Defect | 783536 |
| enhancement | 505553 |
| bug | 377913 |
| Type-Enhancement | 155995 |
| question | 102693 |
| feature | 60043 |
| [ | |
| { name_pl: "Afganistan", name_en: "Afghanistan", code: "AF" }, | |
| { name_pl: "Albania", name_en: "Albania", code: "AL" }, | |
| { name_pl: "Algieria", name_en: "Algeria", code: "DZ" }, | |
| { name_pl: "Andora", name_en: "Andorra", code: "AD" }, | |
| { name_pl: "Angola", name_en: "Angola", code: "AO" }, | |
| { name_pl: "Anguilla", name_en: "Anguilla", code: "AI" }, | |
| { name_pl: "Antarktyka", name_en: "Antarctica", code: "AQ" }, | |
| { name_pl: "Antigua i Barbuda", name_en: "Antigua and Barbuda", code: "AG" }, | |
| { name_pl: "Arabia Saudyjska", name_en: "Saudi Arabia", code: "SA" }, |
| version: '3.3' | |
| services: | |
| db: | |
| volumes: | |
| - app-db-data:/var/lib/postgresql/data/pgdata | |
| deploy: | |
| placement: | |
| constraints: | |
| - node.labels.${STACK_NAME}.app-db-data == true | |
| es01: |