Skip to content

Instantly share code, notes, and snippets.

View lymieux's full-sized avatar
🏍️
riding my enfield

Gabriel Morales lymieux

🏍️
riding my enfield
View GitHub Profile
@lymieux
lymieux / haskell.md
Last active March 2, 2022 16:09
A quick Haskell reference sheet
Non-strict, strong, static, compiled language

non-strict - lazy evaluation
strong - no variable def, like python
static - cannot change var type, like 12+"hello" not allowed

Basic Data Types:
  Number
    Dynamically typed, no need for variable ttype declaration
Quick Arch Linux Install Quide for Filesystem with Swap, proper sudoers.d use, conf on KEYMAPS and LOCALE and basic Grub config

The default console keymap is US. Available layouts can be listed with:

ls /usr/share/kbd/keymaps/**/*.map.gz

To modify the layout, append a corresponding file name to loadkeys(1)

# FOO is layout from /usr/share/kbd/keymaps/**/*.map.gz
@lymieux
lymieux / cmd-invoker.bat
Created January 31, 2022 14:14
Command Prompt w/ Unix style and Compat Layer set to Invoker
@echo off
cd "%userprofile%"
set __COMPAT_LAYER=RunAsInvoker
:run
TITLE %cd% - Command Prompt: Invoker
set dirf=%cd%
call set dirf=%%dirf:%userprofile%=~%%
set /p task="%username%@%computername% %dirf%: "
call %task%
set task=
@lymieux
lymieux / wpilib-pi-gist.md
Last active January 31, 2022 14:14
Description for all folders and files ran in wpilib-pi to build image to recreate on any distro

Breakdown of all importnat build files used in WPI Lib Raspberry Pi, formerly know as FRC Vision Pi Genereator to be used to recreate the "optimizations" they imploy in the repo on other Linux distros not based on Debain. Does not contain specifics but summarys on the use/role of a file to properly implement on a different distro. If specifics are wanted, view the wpilibpi repo

Hover over a file name to read its description. A more detailed Google Doc

Stage 0:


┣ 00-configure-apt

@lymieux
lymieux / arch-arm-install.md
Last active October 5, 2023 20:55
Arch Linux Arm Desktop Instructions

Arch Linux Arm Desktop Environment Tutorial:


  • Tutorial on how to setup a desktop environment on Arch Linux Arm, specifically for the Raspberry Pi 3*
  • Any questions on the steps can be left on a comment, or checking the Arch Wiki
  • Newer kernel versions are being tested, as well as Wayland instead of X
  • If you have questions or errors, leave a comment! - moral-g

Boot:


@lymieux
lymieux / frc-radio-config.py
Last active January 29, 2022 08:32
FRC Radio Flash Util in python
import socket, re, sys
class RadioConfig():
def __init__(self):
self.team_num = 0
"""1-9999"""
self.radio_name = ''
"""1-31 char"""
self.wpa_key = 0
"""8-30 char"""
@LambdAurora
LambdAurora / optifine_alternatives_fabric.md
Last active June 7, 2024 18:40
Recommended OptiFine alternatives on Fabric

The list is moving out!

If you share this list, please use this link instead: https://lambdaurora.dev/optifine_alternatives

It may still be only a redirection link, but it will have a better web display of the list soon. And the list being on GitHub/GitHub pages improves load times.

The gist version of this list will stop being updated.

Why?