Mix.install([
{:kino_db, "~> 0.1.2"},
{:myxql, github: "watsy0007/myxql", ref: "4510f6c", override: true}
])
This file contains 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
Mix.install([ | |
{:ortex, "== 0.1.9"}, | |
:req, | |
{:nx, "== 0.7.0"}, | |
{:membrane_core, "~> 1.0"}, | |
{:membrane_file_plugin, "~> 0.17.0"}, | |
{:membrane_portaudio_plugin, "~> 0.19.2"}, | |
{:membrane_ffmpeg_swresample_plugin, "~> 0.20.2"}, | |
{:membrane_mp3_mad_plugin, "~> 0.18.3"}, | |
{:membrane_mp3_lame_plugin, "~> 0.18.2"} |
This file contains 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
defmodule Tree do | |
@type item :: any() | |
@type t :: %__MODULE__{l: t() | nil, v: item(), r: t() | nil} | |
defstruct [l: nil, v: nil, r: nil] | |
def new(v \\ nil), do: %__MODULE__{v: v} | |
@spec member(t(), item()) :: bool() |
This file contains 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
# cmd - return : /Applications/WezTerm.app/Contents/MacOS/wezterm | |
# | |
# Navigation | |
lalt - h : yabai -m window --focus west | |
lalt - l : yabai -m window --focus east | |
lalt - k : yabai -m window --focus north | |
lalt - j : yabai -m window --focus south | |
# Moving windows |
This file contains 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 sh | |
# global settings | |
yabai -m config \ | |
external_bar off:40:0 \ | |
menubar_opacity 1.0 \ | |
mouse_follows_focus off \ | |
focus_follows_mouse off \ | |
window_origin_display default \ | |
window_placement second_child \ |
This file contains 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
defmodule PeriodicWorker do | |
use GenServer | |
@impl true | |
def init(period_in_millis) do | |
# The `{:continue, :init}` tuple here instructs OTP to run `handle_continue` | |
# which in this case will fire the first `:do_stuff` message so the worker | |
# does its job once and then schedules itself to run again in the future. | |
# Without this you'd have to manually fire the message to the worker | |
# when your app starts. |
- 登陆地址:https://mail.yandex.com/
- 输入对应的账号密码登陆
注意:如果是俄文,可以通过切换,换成英文界面
登陆界面
NewerOlder