Skip to content

Instantly share code, notes, and snippets.

View cjamcu's full-sized avatar
🏠
Working from home

Carlos Javier cjamcu

🏠
Working from home
View GitHub Profile
@cjamcu
cjamcu / eaipc.json
Last active October 25, 2025 22:08
{
"data": [
{
"code": "SKUC",
"city": "Arauca",
"name": "Santiago Perez Quiroz",
"url": "https://eaip-colombia.atnaerocivil.gov.co/eaip/A%2069-25_2025_10_02/eAIP/AD%202%20SKUC%20-%20ARAUCA%20-%20SANTIAGO%20PEREZ%20QUIROZ-es-CO.html#AD-2-SKUC---ARAUCA---SANTIAGO-PEREZ-QUIROZ",
"type": "controlled",
"icaoCode": "SKUC",
"trafficType": [
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
// Color constants
class AppColors {
static const Color red300 = Color(0xFFFF727F);
static const Color primary500 = Color(0xFF02FB7E);
static const Color neutral300 = Color(0xFF979797);
static const Color neutral50 = Color(0xFFE3E3E3);
static const Color neutral900 = Color(0xFF191919);
#!/bin/bash
# Script to install RouterOS without VNC requirement
# WARNING: This script will COMPLETELY REMOVE Ubuntu
set -e
echo "=== RouterOS Automated Installation Script ==="
echo "⚠️ WARNING: This will completely replace Ubuntu!"
echo "Press Ctrl+C now to cancel or any key to continue..."
@cjamcu
cjamcu / cursor_remove_double_window.sh
Last active March 11, 2025 19:44
Cursor Remove Double window header on Gnome
#!/bin/bash
# Exit on error, print commands
set -e
# Color codes for logging
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
@cjamcu
cjamcu / install_docker.sh
Created July 31, 2023 18:33
Docker Installation Script for Debian-based Systems
#!/bin/bash
# Paso 1: Actualizar lista de paquetes
sudo apt update
# Paso 2: Instalar dependencias necesarias
sudo apt install -y apt-transport-https ca-certificates gnupg2 curl software-properties-common
# Paso 3: Agregar la clave GPG de Docker al sistema
sudo curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -