This file contains 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
## sets the value to literal empty string | |
SOMEVARIABLE := aaa | |
.PHONY: default | |
default: | |
@echo "showing the value of SOMEVARIABLE inside this make rule:" | |
@env | grep SOMEVARIABLE || echo "(not set)" | |
@echo "showing the value of ANOTHERVARIABLE inside this make rule:" | |
@env | grep ANOTHERVARIABLE || echo "(not set)" |
This file contains 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
# https://github.com/charmbracelet/mods | |
# Default model (gpt-3.5-turbo, gpt-4, ggml-gpt4all-j...). | |
default-model: gpt-4o | |
# Text to append when using the -f flag. | |
format-text: | |
markdown: 'Format the response as markdown without enclosing backticks.' | |
json: 'Format the response as json without enclosing backticks.' | |
# List of predefined system messages that can be used as roles. | |
roles: | |
default: |
This file contains 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
call plug#begin() | |
Plug 'catppuccin/vim', { 'as': 'catppuccin' } | |
call plug#end() | |
" In iTerm / other terms that support real colors... | |
if $TERM_PROGRAM != "Apple_Terminal" | |
set termguicolors | |
if $LIGHTMODE == "1" | |
colorscheme catppuccin_latte | |
else |
This file contains 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
{ | |
"window.titleBarStyle": "native", | |
"apc.menubar.compact": true, | |
"workbench.colorCustomizations": { | |
"focusBorder": "#ff000000", | |
"sideBar.background": "#00000000", | |
"activityBar.background": "#00000000", | |
"sideBarSectionHeader.background": "#00000000", | |
"statusBar.background": "#00000000", | |
"list.hoverBackground": "#00000000" |
This file contains 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
version: "3.6" | |
services: | |
testdb: | |
image: postgres:15 | |
environment: | |
POSTGRES_PASSWORD: password | |
restart: unless-stopped | |
volumes: | |
# Uses a tmpfs volume to make tests extremely fast. The data in test | |
# databases is not persisted across restarts, nor does it need to be. |
This file contains 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 | |
# Put this at /etc/init.d/lorri | |
# then you can do | |
# | |
# service lorri start | |
# service lorri status | |
# service lorri stop | |
# service lorri restart | |
# | |
# as a regular user |
This file contains 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
#!/usr/bin/env zsh | |
# Opens the FZF preview in full-screen mode, and re-runs a command with any | |
# given arguments while allowing paging. | |
# | |
# Arguments: | |
# $1 = command to preview. | |
# | |
# Example: | |
# preview nix-search | |
# |
This file contains 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
# this setting will allow passing arguments through to tasks, see the docs here | |
# https://just.systems/man/en/chapter_24.html#positional-arguments | |
set positional-arguments | |
# print all available commands by default | |
default: | |
just --list | |
# run the test suite | |
test *args='./...': |
This file contains 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
{ | |
"claims": [ | |
{ | |
"timestamp": 1580933800, | |
"type": "ACCOUNT", | |
"address": "0x9A4B4f0469E5A871A27cc9451cE69A6cF769d757" | |
} | |
], | |
"meta": { | |
"address": "0xa23049064DdC56b436BB95f6B1512C553AB61D22", |
This file contains 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
{ | |
"claims": [ | |
{ | |
"url": "http://138.197.234.92", | |
"timestamp": 1580933954, | |
"type": "ATTESTATION_SERVICE_URL" | |
}, | |
{ | |
"timestamp": 1580933959, | |
"type": "ACCOUNT", |
NewerOlder