Corne Chocolate Low Profile v2.1.0
Parts
Required
Name | Count | Remarks |
---|---|---|
PCB | 2 pieces | https://jlcpcb.com/ |
Top plate | 2 pieces | https://jlcpcb.com/ |
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"theme": "Ayu Mirage", |
from PyPDF2 import PdfReader, PdfWriter | |
from gtts import gTTS | |
import sys | |
# python3 main.py --pdf Documents/book.pdf --range 30:31 --output preface.mp3 | |
_opts = [opt for opt in sys.argv[1:] if opt.startswith("-")] | |
args = [arg for arg in sys.argv[1:] if not arg.startswith("-")] | |
pdfFile, rangePages, audioFile = args |
const luckyNumber = Number( | |
document.querySelector('.thismonthsnumber').textContent | |
); | |
const winnerNumber = Array.from( | |
document.querySelectorAll( | |
'.thismonthsentriestable tr td:first-child' | |
) | |
) | |
.map((element) => { |
Name | Count | Remarks |
---|---|---|
PCB | 2 pieces | https://jlcpcb.com/ |
Top plate | 2 pieces | https://jlcpcb.com/ |
start new:
tmux
start new with session name:
tmux new -s myname
C-x: press the x key while holding down the Control key M-x: press the x key while holding down the Meta key (if your computer doesn’t have a Meta key, see No Meta key) M-C-x: press the x key while holding down both Control and Meta C-M-x: a synonym for the above LFD: Linefeed or Newline; same as C-j RET: Return, sometimes marked Enter; same as C-m DEL: Delete, usually not the same as Backspace; same as C-? (see Backspace invokes help, if deleting invokes Emacs help) ESC: Escape; same as C-[
defmodule MyAppWeb.PageLiveTest do | |
use MyAppWeb.ConnCase | |
import Phoenix.LiveViewTest | |
@tag :tmp_dir | |
test "disconnected and connected render", %{conn: conn, tmp_dir: tmp_dir} do | |
{:ok, page_live, disconnected_html} = live(conn, "/") | |
assert disconnected_html =~ "Welcome to Phoenix!" |