Skip to content

Instantly share code, notes, and snippets.

View lukalot's full-sized avatar

Luka N Arnold lukalot

View GitHub Profile
{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
@lukalot
lukalot / 1dca.c
Last active June 1, 2021 01:01
One Dimensional Cellular Automata ( C Practice Project )
#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;
@lukalot
lukalot / rbwi.fish
Last active December 12, 2020 19:35
Interface script for RBW Bitwarden Tool
#! /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)