Skip to content

Instantly share code, notes, and snippets.

View aaalgieee's full-sized avatar
:shipit:
'Why is This Happening?'

Al Gabriel aaalgieee

:shipit:
'Why is This Happening?'
View GitHub Profile
@aaalgieee
aaalgieee / agents.md
Last active January 15, 2026 11:27
Laravel+Vue AI Assist
# Laravel + Vue Development Guidelines

You are an expert in PHP, Laravel 11, TypeScript, Vue 3, Inertia.js, Shadcn Vue, Radix Vue, VueUse, and Tailwind CSS.

## Code Style and Structure

### Frontend (Vue/TypeScript)
- Write concise, technical TypeScript code with accurate examples
- Use Composition API and declarative programming patterns; avoid Options API [web:2][web:4]
@aaalgieee
aaalgieee / research1.md
Created May 15, 2025 07:55
Technopre Research by GEMINI

Research Summary: Solving Attention Span Issues for College Students in Davao City

Date: May 15, 2025 Objective: To understand the problem of declining attention spans among college students in Davao City and explore potential tech-based startup solutions.

1. The Core Problem: Declining Attention Spans & Increasing Distractions

1.1. General Observations

  • There's a recognized global trend of decreasing average attention spans, particularly among young adults immersed in digital technology (the "attention crisis").
  • This crisis impacts academic performance: difficulty engaging deeply with material, poorer long-term information retention, and struggles connecting complex ideas.
# compose
``` yaml
version: '3.8'
services:
web:
build: .
ports:
- "8080:80"
depends_on:
@aaalgieee
aaalgieee / customer.dart
Created December 4, 2024 12:16
TLA 3 (PRELIM)
class Customer{
String name;
String email;
Customer({required this.name, required this.email});
@override
String toString() {
return '$name (Email: $email)';
}
@aaalgieee
aaalgieee / main.dart
Created December 4, 2024 12:14
TLA 1 (PRELIM)
import 'dart:io';
List<String> todos = [];
void main() {
bool isRunning = true;
while (isRunning) {
print('\nSimple To-Do List Application');
print('A Add a To-Do');
https://api.aaalgieee.xyz/clients/bee68603-4ca5-4508-9ecf-4b35b896c962/deploy/
auth = 3e607674c0633fc426eea0051720742cbcd1b541a19151237e8ee2e6bae3ea4d
ee93b06abd1e937f7799e61c7ebc7bc8804390b2f91ffddfc3ed8cafc49c3251
import java.util.Scanner;
public class BST {
// Root Node
class Node {
int data, counter = 1;
Node leftChild, rightChild;
public Node(int data) {
package sample2;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class Sample2 {