Skip to content

Instantly share code, notes, and snippets.

View l00sed's full-sized avatar
🎱
Ask again later.

Daniel Tompkins l00sed

🎱
Ask again later.
View GitHub Profile
@l00sed
l00sed / lualine.lua
Created December 30, 2022 20:26
Lualine config, debugging square edges on the first and last characters (_bubbles_ theme fork).
local cmd = vim.cmd
-- Lualine configuration
local non_language_ft = {
'Startify',
'NVimTree',
}
local gruvbox = function()
local colors = { -- Gruvbox Dark
darkgray = "#282828",
@l00sed
l00sed / script.deb.sh
Created May 18, 2022 03:29
Naomi setup using Conda as a substitute for virtualenv
#!/bin/bash
#########################################
# Installs python and necessary packages
# for deb based Naomi. This script will install python
# into the ~/.config/naomi/local/bin directory and
# install naomi & requirements in their
# respective directories.
#########################################
BLACK='\033[1;30m'
# ========================== ~/.bashrc
# Alacritty Colors
# --------------------------
# Requires colortty:
# https://github.com/shuhei/colortty
# Requires perl:
# https://learn.perl.org/installing/unix_linux.html

Keybase proof

I hereby claim:

  • I am l00sed on github.
  • I am l00sed (https://keybase.io/l00sed) on keybase.
  • I have a public key ASDjVCSGz7AISe8dv0iXKIGgJcAf8Ug9MOsYJbMz6ur2rwo

To claim this, I am signing this object:

@l00sed
l00sed / agevis.js
Created November 7, 2017 02:00
D3 Brush and eventhandling
/*
* AgeVis - Object constructor function
* @param _parentElement -- the HTML element in which to draw the visualization
* @param _data -- the actual data
*/
AgeVis = function(_parentElement, _data){
this.parentElement = _parentElement;
this.data = _data;