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
| ================================================== | |
| INFORME DE ANÁLISIS DE MONTECARLO | |
| ================================================== | |
| PARÁMETROS DE LA SIMULACIÓN: | |
| - Misión: Penetrar 400.0m (Ida y Vuelta = 800.0m totales) a 28.0m de profundidad. | |
| - Velocidad Objetivo: 10.0 m/min | |
| - Equipo: | |
| * [Buceador] Fabio (RMV Base: 20.0 L/min) | |
| - Cilindros: 3 (6893.1 L totales de gas) | |
| - Regulador de Cilindro 1 (11.1L) (Fallo: 5e-05/min | Flujo: 100.0 L/min) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| grapevis_camera | 0x00007f43d77cfa00 2025-07-03 10:15:07.281481 [info] Starting FrameSource | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:07.282327 [info] Request open. Queued: 1 | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:07.282416 [info] Starting Vimba API | |
| grapevis_camera | 0x00007f43b834e700 2025-07-03 10:15:07.283077 [info] Starting WebSocket Server at :4206 | |
| grapevis_camera | 0x00007f43b39da700 2025-07-03 10:15:07.284592 [info] Starting Web Server at :4205 | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:07.288484 [info] Getting camera list | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:07.439776 [warning] Error getting camera list. Cause: Not found. | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:07.722251 [info] Request open ended: 0 | |
| grapevis_camera | 0x00007f43b8dff700 2025-07-03 10:15:11.722387 [info] Not any valid frame received for 4000 ms | |
| grapevis_camera | /grapevis/CeresiaCameraServer/src/ceresia/camera/source/vimba/VimbaController.cpp:90:49: runtime e |
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
| https://www.youtube.com/@ChuyMineR | |
| https://www.youtube.com/@ChuyMine | |
| https://www.youtube.com/@Fluttershy525 | |
| # minecraft | |
| https://www.youtube.com/@karimjuega1037 | |
| https://www.youtube.com/@byMassi88LM | |
| https://www.youtube.com/@dagar-minecraft | |
| https://www.youtube.com/@AwitaFria |
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
| >SELECT | |
| *, | |
| pg_size_pretty(table_bytes) AS table, | |
| pg_size_pretty(index_bytes) AS index, | |
| pg_size_pretty(toast_bytes) AS toast, | |
| pg_size_pretty(total_bytes) AS total | |
| FROM ( | |
| SELECT | |
| *, total_bytes - index_bytes - COALESCE(toast_bytes, 0) AS table_bytes | |
| FROM ( |
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
| import pandas as pd | |
| import ccxt | |
| from datetime import datetime | |
| from telegram import Update | |
| from telegram.ext import Updater, CommandHandler, CallbackContext | |
| def strategy(context): | |
| job = context.job | |
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
| LOAD 'auto_explain'; | |
| SET auto_explain.log_min_duration=0; | |
| SET auto_explain.log_analyze=0; | |
| SET auto_explain.log_nested_statements=on; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| fabio@fa-work:/usr/bin $ ldd telegram-desktop | grep crypt | |
| libgcrypt.so.20 => /usr/lib/libgcrypt.so.20 (0x00007f6105b85000) | |
| fabio@fa-work:/usr/bin $ ls /usr/lib/libgcrypt.so* -l | |
| lrwxrwxrwx 1 root root 19 jul 28 23:06 /usr/lib/libgcrypt.so -> libgcrypt.so.20.2.0 | |
| lrwxrwxrwx 1 root root 19 jul 28 23:06 /usr/lib/libgcrypt.so.20 -> libgcrypt.so.20.2.0 | |
| -rwxr-xr-x 1 root root 1163856 jul 28 23:06 /usr/lib/libgcrypt.so.20.2.0 |
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 numpy.random import choice | |
| choice([1, 2, 3, 4], 2, replace=False, p=[0.33, 0.33, 0.17, 0.17]) |
NewerOlder