- 567 Framing: https://www.yelp.com/biz/567-framing-new-york
- Brooklyn Frame Works: https://brooklynframeworks.com/
- City Frame: http://www.cityframe.com/8uud2uwhz12j6674l5yjmcink13iok
- Fine Art Frameworks: http://www.fineartframeworks.com/
- FrameArt NYC: https://www.yelp.com/biz/frameart-nyc-brooklyn-4
- Peter Muscato Framing: https://www.yelp.com/biz/peter-muscato-framing-brooklyn
- Skyframe & Display: https://skyframe.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ~/.config/nvim/init.lua | |
| -- | |
| -- A GUESSED reconstruction of Dave Thomas's (pragdave) Neovim config. | |
| -- Dave has never published his actual dotfiles or given a talk on this setup, | |
| -- so nothing here is confirmed -- it's inferred from public clues: | |
| -- | |
| -- 1. He forked nvim-lua/kickstart.nvim on GitHub, so this uses kickstart's | |
| -- structure: single init.lua, lazy.nvim as the plugin manager, minimal | |
| -- "understand every line" philosophy rather than a mega-distro. | |
| -- 2. He recommended oil.nvim on X ("edit your filesystem like a buffer"). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Remove duplicate items from a Bitwarden JSON export. | |
| An item is considered a duplicate of another if all of its meaningful | |
| content matches (name, login/card/identity/secure-note fields, folder, | |
| etc.) once volatile bookkeeping fields are ignored: | |
| id, creationDate, revisionDate, passwordHistory | |
| When duplicates are found, the item with the earliest creationDate is kept | |
| (the "original"); the rest are dropped. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IEx.configure( | |
| colors: [ | |
| enabled: true, | |
| eval_result: [ :cyan, :bright ], | |
| eval_error: [ :light_magenta ], | |
| ], | |
| default_prompt: [ | |
| "\r\e[38;5;220m", # a pale gold | |
| "%prefix", # IEx context | |
| "\e[38;5;112m(%counter)", # forest green expression count |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Vagrant.configure("2") do |config| | |
| config.vm.box = "bento/ubuntu-22.04" | |
| config.vm.provider "vmware_desktop" do |v| | |
| v.memory = 8192 | |
| v.cpus = 2 | |
| end | |
| config.vm.define "cp-node" do |cp| | |
| cp.vm.hostname = "cp" |
Upgrade snap store. This command will tell you the PID you need to kill before the command will succeed.
sudo snap refresh snap-store
Install ruby prequisites
sudo apt-get install autoconf patch build-essential rustc libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libgmp-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev uuid-devsudo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": "ev_169vvoU3YUvqS75n", | |
| "occurred_at": 1707265233, | |
| "source": "admin_console", | |
| "user": "admin@vvrkshop.art", | |
| "object": "event", | |
| "api_version": "v2", | |
| "content": { | |
| "subscription": { | |
| "id": "169vvoU3YUvoI75i", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| update auth.users set raw_user_meta_data=JSONB_BUILD_OBJECT('netvvrk_role', 'admin'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ storytest git:(main) yarn rw g page home / | |
| ✔ Generating page files... | |
| ✔ Successfully wrote file `./web/src/pages/HomePage/HomePage.stories.jsx` | |
| ✔ Successfully wrote file `./web/src/pages/HomePage/HomePage.test.jsx` | |
| ✔ Successfully wrote file `./web/src/pages/HomePage/HomePage.jsx` | |
| ✔ Updating routes file... | |
| ✔ Generating types... | |
| ✔ One more thing... | |
| Page created! A note about <MetaTags>: | |
| At the top of your newly created page is a <MetaTags> component, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # reversing array/list | |
| mylist[::-1] | |
| # slices are up to, not including, 2nd number | |
| list = [1,2,3,4,5] | |
| list[1:3] # => [2, 3] |
NewerOlder