Skip to content

Instantly share code, notes, and snippets.

View aidrecabrera's full-sized avatar
🔵
Recovering

Svene aidrecabrera

🔵
Recovering
View GitHub Profile
@aidrecabrera
aidrecabrera / hw.js
Last active March 18, 2024 17:46
Hello World!
console.log("Hello, World!");window.location.href = "https://github.com/aidrecabrera";
@aidrecabrera
aidrecabrera / svene.ps1
Created February 28, 2024 10:08
Svene Terminal (Oh My Posh Theme) $Profile Config
oh-my-posh init pwsh --config "https://raw.githubusercontent.com/aidrecabrera/Svene-Terminal/main/svene.omp.json" | Invoke-Expression
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows
@aidrecabrera
aidrecabrera / Tester.cs
Created September 18, 2023 05:30
(Revision?) - GUI Elements Tester: C# Lesson 1 / Object-Oriented Programming Concepts, specifically in the TOPIC 9 Polymorphism.
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Linq;
class Tester
{
private static List<FieldInfo> GetAllFields(List<FieldInfo> fields, Type type)
{
fields.AddRange(type.GetFields(BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public));
main( ) {
printf("Hello, World! I am Aidre Cabrera.");
}