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
{pkgs, ...}: let | |
pname = "cursor"; | |
version = "0.32.2"; | |
src = pkgs.fetchurl { | |
# this will break if the version is updated. | |
# unfortunately, i couldn't seem to find a url that | |
# points to a specific version. | |
# alternatively, download the appimage manually and | |
# include it via src = ./cursor.AppImage, instead of fetchurl |
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
#include<stdio.h> | |
#include<stdint.h> | |
#include<string.h> | |
#include<stdlib.h> | |
#include<time.h> | |
#include<stdbool.h> | |
// Enables or disables random initialization | |
const int RANDOM_INIT = true; |
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/fish | |
# "r-bitwarden interface" | |
# uses rbw with fzf to make console password management easy | |
function rbwi -d "Easy interface script for rbw using fzf" | |
# get formatting codes | |
set bold (tput bold) | |
set normal (tput sgr0) |