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
.Dd June 27, 2019 | |
.Dt LAZYGIT 1 | |
.Os lazygit 0.8.1 | |
.Sh NAME | |
.Nm lazygit | |
.Nd Simple terminal UI for git commands | |
.Sh SYNOPSIS | |
.Nm | |
.Sh DESCRIPTION | |
.Nm |
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
--------------- | |
AI 서버 (주)더블오 | |
ai-server.dodev doubleO Co., Ltd. | |
--------------- | |
CPU : 24 Cores 1 x 12th Gen Intel(R) Core(TM) i9-12900K | |
Memory : 128 GiB 4 x 32 GiB Samsung DDR5-4800 | |
Disk : 16 TiB 1 x 4 TiB Samsung 990 PRO | |
VRAM : 48 GiB 2 x 24 GiB NVIDIA RTX 4090 | |
--------------- | |
1) 계정명, 암호 더블오 ID |
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
#!/bin/sh | |
export SHELL_NAME="$(ps -p $$ -o comm=)" | |
export NANDBASE_GIT='https://github.com/doubleo-dev/nand-base.git' | |
export NANDBASE_ROOT="$HOME/nand-base" | |
export CONDA_INSTALLER_PATH="$NANDBASE_ROOT/Anaconda3-Linux-x86_64.sh" | |
export CONDA_PAGE_URL='https://www.anaconda.com/download/success' | |
export CONDA_LATEST_URL_REGEX='https://repo.anaconda.com/archive/Anaconda3-[^"]*-Linux-x86_64.sh' |
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
#!/bin/bash | |
find . -path "./RIOT/build" -prune -o -type d -name "include" -print | sort |
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
require 'uuid7' | |
def update_ids(model_class) | |
ActiveRecord::Base.transaction do | |
records = if model_class.column_names.include?('seq') | |
# Sort by the 'seq' column if the model has it, as it describes the sequence of the records | |
model_class.order(:seq) | |
elsif model_class.column_names.include?('created_at') | |
# Sort by the 'created_at' column, which is automatically generated by Ruby on Rails with 't.timestamps' | |
model_class.order(:created_at) |
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
require 'uuid7' | |
def update_ids(model_class) | |
ActiveRecord::Base.transaction do | |
records = if model_class.column_names.include?('seq') | |
# Sort by the 'seq' column if the model has it, as it describes the sequence of the records | |
model_class.order(:seq) | |
elsif model_class.column_names.include?('created_at') | |
# Sort by the 'created_at' column, which is automatically generated by Ruby on Rails with 't.timestamps' | |
model_class.order(:created_at) |
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
#!/bin/bash | |
LIST_PATH="$1" | |
LIST="$(cat $LIST_PATH)" | |
for pkg in $LIST | |
do | |
echo "" | |
echo "------------------------------------------------------" | |
echo "$pkg" |
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
sudo apt build-dep lazygit | |
iThe following package was automatically installed and is no longer required: | |
linux-image-6.12.17-amd64 | |
Use 'sudo apt autoremove' to remove it. | |
Installing: | |
golang-github-adrg-xdg-dev golang-github-kardianos-osext-dev | |
golang-github-atotto-clipboard-dev golang-github-kyokomi-emoji-dev | |
golang-github-cloudfoundry-jibber-jabber-dev golang-github-lucasb-eyer-go-colorful-dev | |
golang-github-creack-pty-dev golang-github-mattn-go-runewidth-dev |
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
['scale-monitor-framebuffer', 'xwayland-native-scaling'] |
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
From 423319693132e1b28ed8e81a72078f45cb00863d Mon Sep 17 00:00:00 2001 | |
From: Jongmin Kim <[email protected]> | |
Date: Thu, 10 Apr 2025 20:28:34 +0900 | |
Subject: [PATCH] pkg/exp32: fix ESP-IDF build conflicts | |
Signed-off-by: Jongmin Kim <[email protected]> | |
--- | |
...x-undefined-reference-to-rtc_gpio_fo.patch | 29 +++++++++++++++++++ | |
...newlib-guard-sys-uio.h-for-RIOT-only.patch | 27 +++++++++++++++++ | |
2 files changed, 56 insertions(+) |
NewerOlder