Skip to content

Instantly share code, notes, and snippets.

@Cariaga
Cariaga / Flutter login example
Last active January 8, 2026 06:03
Flutter login example
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
void main() => runApp(const MaterialApp(home: SimpleLoginPage()));
class SimpleLoginPage extends StatelessWidget {
const SimpleLoginPage({super.key});
@override
Widget build(BuildContext context) {
@Cariaga
Cariaga / Flutter FL_charts Pie Charts
Created January 8, 2026 05:53
Flutter FL_charts Pie Charts
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Color(0xff2c3e50),
body: Center(child: InteractivePieChart()),
),
@Cariaga
Cariaga / Flutter FL_charts Bar charts
Created January 8, 2026 05:51
Flutter FL_charts Bar charts
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Color(0xff232d37),
body: Center(child: MyBarChart()),
),
@Cariaga
Cariaga / Flutter Accordion
Created January 8, 2026 06:02
Flutter Accordion
import 'package:flutter/material.dart';
void main() => runApp(const MaterialApp(home: AccordionExample()));
class AccordionExample extends StatefulWidget {
const AccordionExample({super.key});
@override
State<AccordionExample> createState() => _AccordionExampleState();
}
@burkeholland
burkeholland / llmcoder.md
Last active January 8, 2026 06:00
Opus 4.5 Custom Agent
name model description
Opus 4.5 Custom
Claude Opus 4.5 (copilot)
Writes code for LLMs, not humans. Optimize for model reasoning, regeneration, and debugging.

You are an AI-first software engineer. Assume all code will be written and maintained by LLMs, not humans. Optimize for model reasoning, regeneration, and debugging — not human aesthetics.

Your goal: produce code that is predictable, debuggable, and easy for future LLMs to rewrite or extend.

@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@eylenburg
eylenburg / msoffice_in_linux.md
Last active January 8, 2026 05:55
Installing Microsoft Office in Linux

Step by step guide: How to install Microsoft Office in any Linux distribution

There are multiple options how to install MS Office on Linux.

VM-based - Integrate Windows apps running in a Windows virtual machine as native-looking in Linux

  1. LinOffice - Microsoft Office Launcher for Linux, my own fork of Winapps which is focused on only running Microsoft Office, with some Office-specific improvements over Winapps and a fully automated setup. Eventually I would like to create a GUI for it. Decribed below
  2. Winapps, based on KVM, QEMU, Docker/Podman and FreeRDP. Still actively maintained (getting Github commits). Decribed below
  3. Cassowary, based on KVM, QEMU, libvirt/virt-manager, and FreeRDP. Last release in Feb 2022 and seems to be abandoned.
@txoof
txoof / PowerQuery_Notes.md
Last active January 8, 2026 05:50
Guide for things that can and should not be done when creating power queries.

PowerQuery Creation Notes

Notes

Returned Column References

The columns section of the XML document refer to the columsn that will be offered in the Data Export Manager screens. The text of the column name is arbitrary and can be anything, but the <column column="TABLE.FIELD"> portion must refer to a "core" table of powerschool. When in doubt, use column="STUDENTS.ID" Avoid using DCID of any table in the column parameter as it might render the query disabled in DEM (grayed out). Reason being the DCID of most tables, starting with Students, is a non-editable identifier key even for system admin roles. Having DCID in SQL and in feild access is acceptable.

@Cariaga
Cariaga / Flutter FL_Chart line graph
Created January 8, 2026 05:49
Flutter FL_Chart line graph
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
// 1. ADD THIS MAIN FUNCTION
void main() {
runApp(const MaterialApp(home: Scaffold(body: Center(child: SimpleLineChart()))));
}
class SimpleLineChart extends StatelessWidget {
const SimpleLineChart({super.key});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.