This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Alexis Dumas", | |
| "label": "Software Developer", | |
| "email": "[email protected]", | |
| "url": "https://www.linkedin.com/in/alexis-purslane-49874624a/", | |
| "summary": "I'm a passionate software developer; I've been programming since seven, and I excel in systems thinking, software architecture, and versatility.", | |
| "location": { | |
| "city": "Pittsburgh", | |
| "countryCode": "US", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "[email protected]", | |
| "phone": "(123) 456-7890", | |
| "url": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "[email protected]", | |
| "phone": "(123) 456-7890", | |
| "url": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| make distclean | |
| # Environment Setup | |
| export LDFLAGS="-L$(brew --prefix libmps)/lib -L$(brew --prefix tree-sitter)/lib" | |
| export CPPFLAGS="-I$(brew --prefix libmps)/include -I$(brew --prefix tree-sitter)/include" | |
| export CFLAGS="-O3 -march=native -fno-finite-math-only -fno-trapping-math -fassociative-math -freciprocal-math" | |
| ./configure \ | |
| --with-ns \ | |
| --with-mps \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; gptel-perplexica.el --- implements a Perplexica backend for GPTel -*- lexical-binding: t -*- | |
| ;;; Perplexica | |
| (require 'gptel) | |
| (require 'gptel-transient) | |
| (require 'gptel-openai) | |
| (cl-defstruct (gptel-perplexica (:constructor gptel--make-perplexica) | |
| (:copier nil) | |
| (:include gptel-openai)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; copy-file-async.el --- Asynchronous file copying via SCP | |
| ;; Version: 1.0 | |
| ;; Author: Alexis Dumas <[email protected]> | |
| ;; Package-Requires: ((emacs "25.1")) | |
| ;;; Commentary: | |
| ;; Provides `copy-file-async` command to copy files to remote hosts | |
| ;; via SCP asynchronously with live progress updates. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| /* --- Commenting UI Styles --- */ | |
| :root { | |
| --comment-highlight-bg: rgba(51, 255, 153, 0.4); | |
| --comment-ui-bg: #1a2a1a; | |
| --comment-ui-text: #e8f8e8; | |
| --comment-ui-accent: #33ff99; | |
| --comment-ui-border: #6a826a; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| original_location=$(pwd) | |
| command=podman | |
| command_args="run --gpus all -it -v ".:/app" --replace --name whisperx --pull=newer ghcr.io/jim60105/whisperx:base-en --" # might need to change for docker, hence the variable | |
| filename=${@: -1} | |
| basename=$(basename ${filename}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun user/home-page-sitemap (title list) | |
| "Create a sitemap that allows the user to add a custom preamble, and has not just the top level file structure of your org mode project, but also the top level headings of the top level files, in case you use top level files as categories in a note ontology as I do." | |
| (concat | |
| " | |
| #+begin_export html | |
| <div> | |
| <style scoped>li { padding-top: 0px; }</style> | |
| #+end_export | |
| " | |
| (org-with-file-buffer (concat quake-org-home-directory "blog/sitemap-preamble.org") |
NewerOlder