ESPN's hidden API endpoints
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
# generated by Git for Windows | |
test -f ~/.profile && . ~/.profile | |
test -f ~/.bashrc && . ~/.bashrc |
// Place your key bindings in this file to override the defaultsauto[] | |
// some useful notes: | |
// - to toggle between various files open in editor: `ctrl + tab` | |
// - to jump between open panes of editor: `ctrl + 1` for left one, `ctrl + 2` for right one | |
// - to toggle between terminal and editor (custom): `ctrl + <backtick>` | |
// - to jump back to editor from wherever (custom): `ctrl + opt/alt + cmd` | |
// - to open Copilot Chat (custom): `ctrl + shift + a` | |
[ | |
{ |
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
[battery] | |
full_symbol = "• " | |
charging_symbol = "⇡ " | |
discharging_symbol = "⇣ " | |
unknown_symbol = "❓ " | |
empty_symbol = "❗ " | |
[erlang] | |
symbol = "ⓔ " |
set bell-style none |
# 2024-09-23 Alias list from Oh My Zsh git plugin | |
# Increase history size | |
HISTSIZE=10000 | |
HISTFILESIZE=20000 | |
# Save multi-line commands as a single entry | |
shopt -s cmdhist | |
# Append to the history file, don't overwrite it |
Stop playing gitignore whack-a-mole! This gitignore approach excludes everything except for what we want to track.
From: https://www.billerickson.net/code/sample-gitignore/
Note the update to line 2 to include a slash before **
. That is critical. See: https://git-scm.com/docs/gitignore
{ config, pkgs, lib, ... }: | |
with lib; | |
let | |
cfg = config.local.dock; | |
stdenv = pkgs.stdenv; | |
in | |
{ | |
options = { | |
local.dock.enable = mkOption { | |
description = "Enable dock"; |
# apt install postgresql-client | |
# apt-get -y install bash-completion wget | |
# wget --no-check-certificate --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - | |
# echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list | |
# apt-get update | |
# apt-get -y install postgresql-client-12 | |
namespace :db do | |
desc "Dumps the database to backups" |
<script type="text/javascript"> | |
function idleTimer() { | |
var t; | |
//window.onload = resetTimer; | |
window.onmousemove = resetTimer; // catches mouse movements | |
window.onmousedown = resetTimer; // catches mouse movements | |
window.onclick = resetTimer; // catches mouse clicks | |
window.onscroll = resetTimer; // catches scrolling | |
window.onkeypress = resetTimer; //catches keyboard actions |