Skip to content

Instantly share code, notes, and snippets.

@Kkuzzua
Kkuzzua / index.html
Created April 15, 2025 16:51
vEEByPM
<head>
<title>Хлебозавод</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="top-bar">
<div class="logo">
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
@Joseda-hg
Joseda-hg / Grilla.aspx.cs
Last active April 15, 2025 16:50
Colorear Celdas
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;
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
#ifdef GL_ES
precision highp float;
#endif
uniform float time;
uniform vec2 resolution;
uniform vec2 mouse;
uniform vec3 spectrum;
uniform sampler2D texture0;
@nuttxpr
nuttxpr / ci-arm-01.log
Created April 15, 2025 16:49
[arm-01] Special CI Log for nuttx @ e6c67ac4b5cbb8f4a39a48bb93a8efa52418101b / nuttx-apps @ 33bad8e36945c2aba2cea53515bb779b71242608
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
[
{
"Id": "06a4fd9f711189b002c69c9444a4019c0c73afff44a4f993db6174b08c597d9e",
"Created": "2025-04-04T23:31:42.813924125Z",
"Path": "/usr/local/bin/entrypoint",
"Args": [
"/sbin/init"
],
"State": {
"Status": "running",
{
"url": "https://portfel.me",
"name": "Portfel",
"iconUrl": "https://ton-connect.portfel.me/portfel-logo.png"
}
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({
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