Skip to content

Instantly share code, notes, and snippets.

View AlFirous's full-sized avatar
💭
I may be slow to respond.

Al Firous AlFirous

💭
I may be slow to respond.
View GitHub Profile
@aelxxs
aelxxs / actual.user.css
Last active November 28, 2025 22:23
Actual Budget Catppuccin Theme
/* ==UserStyle==
@name budget.alexis.lol/budget
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Actual — Catppuccin Theme
@author Alexis Vielma (https://alexis.lol)
@preprocessor stylus
@var select theme "Theme" {
"Mocha": "Mocha",
@saikotek
saikotek / OBSIDIAN-SYNC-SETUP.md
Last active October 19, 2025 04:44
Easy setup Obsidian Sync (or Livesync or Remotely Save) with Git

Setting Up Obsidian Sync (or Livesync or Remotely Save) with Separate Git Backup

This guide describes how to set up an Obsidian vault that syncs across devices while maintaining a separate Git backup without interfering with the sync mechanism. This guide should work with either official Obsidian Sync solution or with unofficial sync plugins like Obsidian Livesync or Remotely Save.

Prerequisites

  • Git installed on your system
  • Obsidian installed
  • Either Obsidian Sync subscription or LiveSync plugin configured
  • Basic familiarity with command line
@0asa
0asa / usage.html
Last active April 18, 2023 15:49 — forked from aloncarmel/randombg.js
A minimal HTML example to grab a random background from unsplash.com using their API and apply to a div.
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" type="text/javascript"></script>
<script>
function GetRandomBackground()
{
var app_id = 'YOUR_APPLICATION_ID'
var url = 'https://api.unsplash.com/photos/random?client_id=' + app_id;
$.ajax({
url: url,