Discover gists
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
<head> | |
<title>Хлебозавод</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header class="top-bar"> | |
<div class="logo"> |
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
blueprint: | |
name: Phát hiện AI bằng Google Vision (Camera) | |
description: Chụp ảnh khi có trigger, gửi Google Vision phân tích, nếu có người hoặc xe thì gửi Telegram | |
domain: automation | |
input: | |
camera_entity: | |
name: Camera | |
selector: | |
entity: | |
domain: camera |
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
protected void ASPxGridView1_HtmlDataCellPrepared(object sender, DevExpress.Web.ASPxGridViewTableDataCellEventArgs e) | |
{ | |
if (e.DataColumn.FieldName == "PEDIDO_COMPLETADO") | |
{ | |
e.Cell.ForeColor = Color.White; | |
if ((e.CellValue as string).Equals("COMPLETADO")) | |
e.Cell.BackColor = Color.ForestGreen; | |
else if | |
((e.CellValue as string).Equals("NO COMPLETADO")) | |
e.Cell.BackColor = Color.Orange; |
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
extends CharacterBody3D | |
@onready var arrow = $Arrow | |
@onready var timer = $DeleteTimer | |
@onready var trail = $Trail | |
@onready var coll = $CollisionShape3D | |
@export var force : float = 30.0 | |
var cur_velocity : Vector3 | |
var speed : float = 1.0 |
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
#ifdef GL_ES | |
precision highp float; | |
#endif | |
uniform float time; | |
uniform vec2 resolution; | |
uniform vec2 mouse; | |
uniform vec3 spectrum; | |
uniform sampler2D texture0; |
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
Script started on 2025-04-15 23:45:47+08:00 [COMMAND="/home/luppy/nuttx-release/run-job-special.sh arm-01 2" TERM="tmux-256color" TTY="/dev/pts/8" COLUMNS="157" LINES="16"] | |
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job-special.sh arm-01 2 | |
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci-special.sh | |
+ job=arm-01 | |
+ [[ arm-01 == '' ]] | |
+ instance=2 | |
+ set | |
+ grep TMUX | |
+ true | |
+ neofetch |
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
[ | |
{ | |
"Id": "06a4fd9f711189b002c69c9444a4019c0c73afff44a4f993db6174b08c597d9e", | |
"Created": "2025-04-04T23:31:42.813924125Z", | |
"Path": "/usr/local/bin/entrypoint", | |
"Args": [ | |
"/sbin/init" | |
], | |
"State": { | |
"Status": "running", |
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
{ | |
"url": "https://portfel.me", | |
"name": "Portfel", | |
"iconUrl": "https://ton-connect.portfel.me/portfel-logo.png" | |
} |
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
import { Prisma, PrismaClient } from '@prisma/client' | |
import logger from '../../helpers/logger' | |
(async () => { | |
const prisma = new PrismaClient() | |
const LIMIT = 100 | |
let lastId: bigint = BigInt(0) | |
let hasMore = true | |
let page = 0 | |
const count = await prisma.account.count({ |
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
blueprint: | |
name: Phát hiện AI bằng Google Vision (Camera) | |
description: Chụp ảnh khi có trigger, gửi Google Vision phân tích, nếu có người hoặc xe thì gửi Telegram | |
domain: automation | |
input: | |
camera_entity: | |
name: Camera | |
selector: | |
entity: | |
domain: camera |
NewerOlder